1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
|
#include "MSPd.h"
#define F_LEN 16384
#define MAX_DELAY_TIME 3600000.0
#define OBJECT_NAME "vdp~"
#if __MSP__
void *vdp_class;
#endif
#if __PD__
static t_class *vdp_class;
#endif
typedef struct
{
float coef;
float cutoff;
float x1;
} t_lpf;
typedef struct {
float *b_samples;
long b_valid;
long b_nchans;
long b_frames;
t_symbol *wavename;
} t_guffer;
typedef struct _vdp
{
#if __MSP__
t_pxobject x_obj;
#endif
#if __PD__
t_object x_obj;
float x_f;
#endif
float sr;
t_lpf lpf;
short filter;
float speed;
float feedback;
float delay_time;
float delay_samps;
float maxdel;
float *delay_line ;
float *write_ptr;
float *startmem;
float *endmem;
int len;
int phs;
float tap;
short connections[4];
short feedback_protect;
short mute;
short interpolate;
short inf_hold;
t_guffer *destbuf;
long taper_count;
float taper_feedback;
} t_vdp;
t_int *vdp_perform(t_int *w);
void vdp_protect(t_vdp *x, double state);
void vdp_dsp(t_vdp *x, t_signal **sp, short *count);
void *vdp_new(t_symbol *s, int argc, t_atom *argv);
void vdp_assist(t_vdp *x, void *b, long m, long a, char *s);
void vdp_float(t_vdp *x, double f);
void vdp_mute(t_vdp *x, t_floatarg t);
void vdp_interpolate(t_vdp *x, t_floatarg t);
void vdp_show(t_vdp *x);
void vdp_coef(t_vdp *x, t_floatarg f);
void vdp_filter(t_vdp *x, t_floatarg t);
void vdp_init(t_vdp *x,short initialized);
void vdp_clear(t_vdp *x);
void vdp_inf_hold(t_vdp *x,t_floatarg state);
void vdp_copy_to_buffer(t_vdp *x, t_symbol *msg, short argc, t_atom *argv);
int vdp_setdestbuf(t_vdp *x, t_symbol *wavename);
void vdp_redraw(t_vdp *x);
void vdp_free(t_vdp *x);
#if __MSP__
void vdp_int(t_vdp *x, long f);
void main(void)
{
setup((t_messlist **)&vdp_class, (method)vdp_new, (method)vdp_free,
(short)sizeof(t_vdp), 0, A_GIMME, 0);
addmess((method)vdp_dsp, "dsp", A_CANT, 0);
addfloat((method)vdp_float);
addint((method)vdp_int);
addmess((method)vdp_assist, "assist", A_CANT, 0);
addmess((method)vdp_protect,"protect",A_FLOAT,0);
addmess((method)vdp_mute, "mute", A_FLOAT, 0);
addmess((method)vdp_filter, "filter", A_FLOAT, 0);
addmess((method)vdp_coef, "coef", A_FLOAT, 0);
addmess((method)vdp_show, "show", 0);
addmess((method)vdp_clear, "clear", 0);
addmess((method)vdp_inf_hold, "inf_hold", A_FLOAT, 0);
addmess((method)vdp_interpolate, "interpolate", A_FLOAT, 0);
addmess((method)vdp_copy_to_buffer, "copy_to_buffer", A_GIMME, 0);
dsp_initclass();
post("%s %s",OBJECT_NAME, LYONPOTPOURRI_MSG);
}
#endif
#if __PD__
void vdp_tilde_setup(void)
{
vdp_class = class_new(gensym("vdp~"),(t_newmethod)vdp_new,(t_method)vdp_free, sizeof(t_vdp), 0, A_GIMME,0);
CLASS_MAINSIGNALIN(vdp_class,t_vdp, x_f );
class_addmethod(vdp_class,(t_method)vdp_dsp,gensym("dsp"),A_CANT,0);
class_addmethod(vdp_class,(t_method)vdp_assist,gensym("assist"),A_CANT,0);
class_addmethod(vdp_class,(t_method)vdp_protect,gensym("protect"),A_FLOAT,0);
class_addmethod(vdp_class,(t_method)vdp_mute,gensym("mute"),A_FLOAT,0);
class_addmethod(vdp_class,(t_method)vdp_filter,gensym("filter"),A_FLOAT,0);
class_addmethod(vdp_class,(t_method)vdp_coef,gensym("coef"),A_FLOAT,0);
class_addmethod(vdp_class,(t_method)vdp_show,gensym("show"),0);
class_addmethod(vdp_class,(t_method)vdp_clear,gensym("clear"),0);
class_addmethod(vdp_class,(t_method)vdp_inf_hold,gensym("inf_hold"),A_FLOAT,0);
class_addmethod(vdp_class,(t_method)vdp_interpolate,gensym("interpolate"),A_FLOAT,0);
class_addmethod(vdp_class,(t_method)vdp_copy_to_buffer,gensym("copy_to_buffer"),A_GIMME,0);
post("%s %s",OBJECT_NAME, LYONPOTPOURRI_MSG);
}
#endif
void vdp_mute(t_vdp *x, t_floatarg t)
{
x->mute = (short)t;
}
void vdp_inf_hold(t_vdp *x, t_floatarg t)
{
x->inf_hold = (short)t;
x->taper_feedback = 1.0;
x->taper_count = 0;
}
void vdp_filter(t_vdp *x, t_floatarg t)
{
x->filter = (short)t;
}
void vdp_coef(t_vdp *x, t_floatarg f)
{
x->lpf.coef = (float)f;
}
void vdp_show(t_vdp *x)
{
post("feedback %f delay %f",x->feedback, x->delay_time);
}
void vdp_interpolate(t_vdp *x, t_floatarg t)
{
x->interpolate = (short)t;
}
t_int *vdp_perform(t_int *w)
{
t_vdp *x = (t_vdp *)(w[1]);
t_float *input = (t_float *)(w[2]);
t_float *delay_vec = (t_float *)(w[3]);
t_float *feedback_vec = (t_float *)(w[4]);
t_float *output = (t_float *)(w[5]);
int n = w[6];
float fdelay;
float insamp;
float outsamp = 0.0;
float frac;
float *write_ptr = x->write_ptr;
float *read_ptr;
float *startmem = x->startmem;
float *endmem = x->endmem;
int len = x->len;
float tap = x->tap;
float feedback = x->feedback;
float delay_samps = x->delay_samps;
short *connections = x->connections;
float sr = x->sr;
float msr = sr * 0.001;
short feedback_protect = x->feedback_protect;
short interpolate = x->interpolate;
t_lpf lpf = x->lpf;
short filter = x->filter;
float x1,x2;
int idelay;
short inf_hold = x->inf_hold;
if( x->mute ) {
memset( (char *)output, 0, n * sizeof(float) );
return (w+7);
}
fdelay = delay_samps;
idelay = floor(fdelay);
if(inf_hold){
while( n-- ){
read_ptr = write_ptr;
outsamp = *read_ptr;
*write_ptr++;
if( write_ptr >= endmem ){
write_ptr = startmem;
}
*output++ = outsamp;
}
x->write_ptr = write_ptr;
x->delay_samps = fdelay;
return (w+7);
}
while( n-- ){
insamp = *input++;
if ( connections[1]) {
fdelay = *delay_vec++ * msr;
if (fdelay < 0.0 )
fdelay = 0.0;
if( fdelay >= len )
fdelay = len - 1;
idelay = floor(fdelay);
}
if(connections[2]){
feedback = *feedback_vec++;
if( feedback_protect ) {
if( feedback > 0.99)
feedback = 0.99;
if( feedback < -0.99 )
feedback = -0.99;
}
}
if(fdelay < 0.0){
fdelay = 0.0;
}
else if(fdelay >= len){
fdelay = len - 1;
}
idelay = floor(fdelay);
if(interpolate){
frac = (fdelay - idelay);
read_ptr = write_ptr - idelay;
if( read_ptr < startmem ){
read_ptr += len;
}
x1 = *read_ptr--;
if( read_ptr < startmem ){
read_ptr += endmem - startmem;
}
x2 = *read_ptr;
outsamp = x1 + frac * (x2 - x1);
}
else {
read_ptr = write_ptr - idelay;
if( read_ptr < startmem ){
read_ptr += len;
}
outsamp = *read_ptr;
}
if(filter){
outsamp += lpf.x1 * lpf.coef;
outsamp /= (1.0+lpf.coef);
lpf.x1 = outsamp;
}
*write_ptr++ = insamp + outsamp * feedback;
if( write_ptr >= endmem ){
write_ptr = startmem;
}
*output++ = outsamp;
}
x->tap = tap;
x->feedback = feedback;
x->delay_time = fdelay;
x->delay_samps = fdelay;
x->write_ptr = write_ptr;
return (w+7);
}
void *vdp_new(t_symbol *s, int argc, t_atom *argv)
{
int i;
#if __MSP__
t_vdp *x = (t_vdp *)newobject(vdp_class);
dsp_setup((t_pxobject *)x,3);
outlet_new((t_object *)x, "signal");
x->x_obj.z_misc |= Z_NO_INPLACE;
#endif
#if __PD__
t_vdp *x = (t_vdp *)pd_new(vdp_class);
for(i = 0; i < 2; i++){
inlet_new(&x->x_obj, &x->x_obj.ob_pd,gensym("signal"), gensym("signal"));
}
outlet_new(&x->x_obj, gensym("signal") );
#endif
x->sr = sys_getsr();
if(!x->sr){
error("zero sampling rate - set to 44100");
x->sr = 44100;
}
x->maxdel = 50.0;
x->feedback = 0.5;
x->delay_time = 0.0;
x->maxdel = atom_getfloatarg(0,argc,argv);
x->delay_time = atom_getfloatarg(1,argc,argv);
x->feedback = atom_getfloatarg(2,argc,argv);
x->interpolate = atom_getfloatarg(3,argc,argv);
if(!x->maxdel)
x->maxdel = 50.0;
vdp_init(x,0);
return (x);
}
void vdp_free(t_vdp *x)
{
#if __MSP__
dsp_free((t_pxobject *)x);
#endif
free(x->delay_line);
}
void vdp_clear(t_vdp *x)
{
memset((char*)x->delay_line,0,(x->len + 2) * sizeof(float));
}
void vdp_init(t_vdp *x,short initialized)
{
if(!initialized){
x->feedback_protect = 0;
x->interpolate = 1;
x->filter = 0;
x->inf_hold = 0;
if( x->maxdel < .00001 ){
x->maxdel = .00001;
}
if( x->maxdel > MAX_DELAY_TIME ){
error("%s: %f is too long, delay time set to max of %f",OBJECT_NAME,x->maxdel, MAX_DELAY_TIME);
x->maxdel = MAX_DELAY_TIME;
}
x->len = x->maxdel * .001 * x->sr;
x->lpf.coef = 0.5;
x->lpf.x1 = 0.0;
x->delay_line = (float *) calloc((x->len + 2), sizeof(float));
x->destbuf = (t_guffer *) calloc(1,sizeof(t_guffer));
x->phs = 0;
x->mute = 0;
x->tap = 0;
} else {
x->len = x->maxdel * .001 * x->sr;
x->delay_line = (float *) realloc(x->delay_line, (x->len + 2) * sizeof(float));
memset((char*)x->delay_line,0,(x->len + 2) * sizeof(float));
}
x->startmem = x->delay_line;
x->endmem = x->startmem + x->len;
x->write_ptr = x->startmem;
}
void vdp_dsp(t_vdp *x, t_signal **sp, short *count)
{
#if __MSP__
x->connections[1] = count[1];
x->connections[2] = count[2];
#endif
#if __PD__
x->connections[1] = 1;
x->connections[2] = 1;
#endif
if(x->sr != sp[0]->s_sr){
x->sr = sp[0]->s_sr;
vdp_init(x,1);
}
dsp_add(vdp_perform, 6, x,
sp[0]->s_vec, sp[1]->s_vec, sp[2]->s_vec, sp[3]->s_vec,
sp[0]->s_n);
}
void vdp_int(t_vdp *x, long tog)
{
vdp_float(x,(float)tog);
}
void vdp_float(t_vdp *x, double df)
{
#if __MSP__
float f = (float)df;
int inlet = x->x_obj.z_in;
if (inlet == 1)
{
if(f > 0.0 && f < x->maxdel){
x->delay_time = f;
x->delay_samps = f * .001 * x->sr;
x->tap = 0;
} else {
error("delaytime %f out of range [0.0 - %f]",f,x->maxdel);
return;
}
}
else if (inlet == 2)
{
x->feedback = f;
if( x->feedback_protect ) {
if( x->feedback > 1.0)
x->feedback = 1.0;
if( x->feedback < -1.0 )
x->feedback = -1.0;
}
}
#endif
}
void vdp_protect(t_vdp *x, double state)
{
x->feedback_protect = state;
}
void vdp_copy_to_buffer(t_vdp *x, t_symbol *msg, short argc, t_atom *argv)
{
t_symbol *destname;
float *b_samples = x->delay_line;
long b_nchans = 1;
long b_frames = x->len + 2;
float *b_dest_samples;
long b_dest_nchans;
long b_dest_frames;
destname = atom_getsymarg(0,argc,argv);
if(! vdp_setdestbuf(x, destname)){
post("could not find buffer");
return;
}
b_dest_samples = x->destbuf->b_samples;
b_dest_nchans = x->destbuf->b_nchans;
b_dest_frames = x->destbuf->b_frames;
if(b_nchans != 1){
error("%s: buffer must be mono",OBJECT_NAME);
return;
}
if(b_dest_frames < b_frames ){
b_frames = b_dest_frames;
}
memset((char *)b_dest_samples, 0, b_dest_frames * 1 * sizeof(float));
memcpy(b_dest_samples, b_samples, b_frames * 1 * sizeof(float) );
#if __PD__
vdp_redraw(x);
#endif
}
int vdp_setdestbuf(t_vdp *x, t_symbol *wavename)
{
#if __MSP__
t_buffer *b;
if ((b = (t_buffer *)(wavename->s_thing)) && ob_sym(b) == gensym("buffer~")) {
if( b->b_nchans > 1 ){
error("%s; wavetable must be a mono",OBJECT_NAME);
return(0);
} else {
x->destbuf->b_nchans = b->b_nchans;
x->destbuf->b_frames = b->b_frames;
x->destbuf->b_samples = b->b_samples;
x->destbuf->b_valid = b->b_valid;
x->destbuf->wavename = wavename;
return(1);
}
} else {
error("%s: no such buffer~ %s",OBJECT_NAME, wavename->s_name);
return(0);
}
#endif
#if __PD__
t_garray *a;
int b_frames;
float *b_samples;
if (!(a = (t_garray *)pd_findbyclass(wavename, garray_class))) {
if (*wavename->s_name) pd_error(x, "%s: %s: no such array",OBJECT_NAME,wavename->s_name);
x->destbuf->b_valid = 0;
return 0;
}
else if (!garray_getfloatarray(a, &b_frames, &b_samples)) {
pd_error(x, "%s: bad array for %s", wavename->s_name,OBJECT_NAME);
x->destbuf->b_valid = 0;
return 0;
}
else {
x->destbuf->b_nchans = 1;
x->destbuf->b_frames = b_frames;
x->destbuf->b_samples = b_samples;
x->destbuf->b_valid = 1;
x->destbuf->wavename = wavename;
garray_usedindsp(a);
return(1);
}
#endif
}
void vdp_redraw(t_vdp *x)
{
#if __PD__
t_garray *a;
t_symbol *wavename = x->destbuf->wavename;
if (!(a = (t_garray *)pd_findbyclass(wavename, garray_class))) {
if (*wavename->s_name) pd_error(x, "%s: %s: no such array",OBJECT_NAME, wavename->s_name);
x->destbuf->b_valid = 0;
}
else {
garray_redraw(a);
}
#endif
}
void vdp_assist(t_vdp *x, void *b, long msg, long arg, char *dst)
{
if (msg==1) {
switch (arg) {
case 0: sprintf(dst,"(signal) Input");break;
case 1: sprintf(dst,"(signal/float) Delay Time");break;
case 2: sprintf(dst,"(signal/float) Feedback");break;
}
} else if (msg==2) {
switch (arg) {
case 0:
sprintf(dst,"(signal) Output ");
break;
}
}
}
|