File: adsr~.c

package info (click to toggle)
pd-lyonpotpourri 2.0%2Bgit20121009-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,176 kB
  • sloc: ansic: 18,330; makefile: 376
file content (441 lines) | stat: -rw-r--r-- 10,329 bytes parent folder | download | duplicates (3)
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
#include "MSPd.h"
/* internal metronome now redundant so disabled */
#if __PD__
static t_class *adsr_class;
#endif

#if __MSP__
void *adsr_class;
#endif

#define OBJECT_NAME "adsr~"

typedef struct _adsr
{
#if __MSP__
	t_pxobject x_obj;
#endif
#if __PD__
	t_object x_obj;
	float x_f;
#endif 
	
	// Variables Here
	float a;
	float d;
	float s;
	float r;
	int ebreak1;
	int ebreak2;
	int ebreak3;
	int asamps;
	int dsamps;
	int ssamps;
	int rsamps;
	int asamps_last;
	int dsamps_last;
	int ssamps_last;
	int rsamps_last;
	float tempo;
	float egain1;
	float egain2;
	int tempomode;
	int beat_subdiv;
	int tsamps;
	int counter;
	float srate;
	short manual_override;
	float click_gain; // input click sets volume too
	short mute;
} t_adsr;

void *adsr_new(t_symbol *s, int argc, t_atom *argv);

t_int *adsr_perform(t_int *w);
void adsr_dsp(t_adsr *x, t_signal **sp, short *count);
void adsr_assist(t_adsr *x, void *b, long m, long a, char *s);
void adsr_bang(t_adsr *x);
void adsr_manual_override(t_adsr *x, t_floatarg toggle);
void adsr_list (t_adsr *x, t_atom *msg, short argc, t_atom *argv);
void adsr_tempomode(t_adsr *x, t_atom *msg, short argc, t_atom *argv);
void adsr_set_a(t_adsr *x, t_floatarg f);
void adsr_set_d(t_adsr *x, t_floatarg f);
void adsr_set_s(t_adsr *x, t_floatarg f);
void adsr_set_r(t_adsr *x, t_floatarg f);
void adsr_set_gain1(t_adsr *x, t_floatarg f);
void adsr_set_gain2(t_adsr *x, t_floatarg f);
void set_tempo(t_adsr *x, t_floatarg f);
void adsr_mute(t_adsr *x, t_floatarg f);
#if __PD__
void atom_arg_getfloat(float *c, long idx, long ac, t_atom *av);
void atom_arg_getsym(t_symbol **c, long idx, long ac, t_atom *av);
#endif
#if __MSP__
void main(void)
{
	setup((t_messlist **)&adsr_class, (method)adsr_new, (method)dsp_free, 
		  (short)sizeof(t_adsr), 0, A_GIMME, 0);
	addmess((method)adsr_dsp, "dsp", A_CANT, 0);
	addmess((method)adsr_assist,"assist",A_CANT,0);
	addmess ((method)adsr_list, "list", A_GIMME, 0);
	//  addmess ((method)adsr_manual_override, "manual_override", A_LONG, 0);
	addmess ((method)adsr_mute, "mute", A_FLOAT, 0);
	//  addmess ((method)adsr_tempomode, "tempomode", A_GIMME, 0);
	addbang((method)adsr_bang);
	addfloat((method)adsr_set_a);
	addftx((method)adsr_set_d,5);
	addftx((method)adsr_set_s,4);
	addftx((method)adsr_set_r,3);
	addftx((method)adsr_set_gain1,2);
	addftx((method)adsr_set_gain2,1);
	dsp_initclass();
	post("%s %s",OBJECT_NAME, LYONPOTPOURRI_MSG);
}
void adsr_assist (t_adsr *x, void *b, long msg, long arg, char *dst)
{
	
	if (msg==1) {
		switch (arg) {
			case 0:
				sprintf(dst,"(float) Attack / (bang) Trigger");
				break;
			case 1:
				sprintf(dst,"(float) Decay");
				break;
			case 2:
				sprintf(dst,"(float) Sustain");
				break;
			case 3:
				sprintf(dst,"(float) Release");
				break;
			case 4:
				sprintf(dst,"(float) Gain1");
				break;
			case 5:
				sprintf(dst,"(float) Gain2");
				break;
			case 6:
				sprintf(dst,"(float) Tempo");
				break;
		}
	} else if (msg==2) {
		sprintf(dst,"(signal) ADSR Output");
	}
}
#endif

#if __PD__
void adsr_tilde_setup(void){
	adsr_class = class_new(gensym("adsr~"), (t_newmethod)adsr_new, 
						   0,sizeof(t_adsr), 0,A_GIMME,0);
	CLASS_MAINSIGNALIN(adsr_class, t_adsr, x_f);
	class_addmethod(adsr_class,(t_method)adsr_dsp,gensym("dsp"),0);
	class_addmethod(adsr_class,(t_method)adsr_mute,gensym("mute"),A_FLOAT,0);
	class_addmethod(adsr_class,(t_method)adsr_list,gensym("list"),A_GIMME,0);
	class_addmethod(adsr_class,(t_method)adsr_set_a,gensym("set_a"),A_FLOAT,0);
	class_addmethod(adsr_class,(t_method)adsr_set_d,gensym("set_d"),A_FLOAT,0);
	class_addmethod(adsr_class,(t_method)adsr_set_s,gensym("set_s"),A_FLOAT,0);
	class_addmethod(adsr_class,(t_method)adsr_set_r,gensym("set_r"),A_FLOAT,0);
	class_addmethod(adsr_class,(t_method)adsr_set_gain1,gensym("set_gain1"),A_FLOAT,0);
	class_addmethod(adsr_class,(t_method)adsr_set_gain2,gensym("set_gain2"),A_FLOAT,0);
	class_addbang(adsr_class,(t_method)adsr_bang);
	post("%s %s",OBJECT_NAME, LYONPOTPOURRI_MSG);
}
#endif

void adsr_mute(t_adsr *x, t_floatarg f)
{
    x->mute = (short)f;
}

void adsr_set_gain1(t_adsr *x, t_floatarg f)
{
	x->egain1 = f;
	return;
}

void adsr_set_gain2(t_adsr *x, t_floatarg f)
{
	x->egain2 = f;
	return;
}
void adsr_bang(t_adsr *x) {
	x->counter = 0;
	return;
}
void adsr_set_a(t_adsr *x, t_floatarg f)
{
	
	f /= 1000.0;
	
	x->a = f;
	x->asamps = x->a * x->srate;
	
	if( x->tempomode) {
		x->rsamps = x->tsamps - (x->asamps+x->dsamps+x->ssamps);	
		if( x->rsamps < 0 ) {
			x->rsamps = 0;
		}
	} else {	
		x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
	}
	x->ebreak1 = x->asamps;
	x->ebreak2 = x->asamps+x->dsamps;
	x->ebreak3 = x->asamps+x->dsamps+x->ssamps;
	return ;
}

void adsr_set_d(t_adsr *x, t_floatarg f)
{
	f /= 1000.0 ;
	
	x->d = f;
	x->dsamps = x->d * x->srate;
	
	if( x->tempomode) {
		x->rsamps = x->tsamps - (x->asamps+x->dsamps+x->ssamps);	
		if( x->rsamps < 0 ) {
			x->rsamps = 0;
		}
	} else {	
		x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
	}
	x->ebreak2 = x->asamps+x->dsamps;
	x->ebreak3 = x->asamps+x->dsamps+x->ssamps;
	return ;
}

void adsr_set_s(t_adsr *x, t_floatarg f)
{
	
	f /= 1000.0;
	
	x->s = f;
	x->ssamps = x->s * x->srate;
	
	if( x->tempomode) {
		x->rsamps = x->tsamps - (x->asamps+x->dsamps+x->ssamps);	
		if( x->rsamps < 0 ) {
			x->rsamps = 0;
		}
	} else {	
		x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
	}
	
	x->ebreak3 = x->asamps+x->dsamps+x->ssamps;
	return ;
}

void adsr_set_r(t_adsr *x, t_floatarg f)
{
	
	f /= 1000.0;
	
	if( x->tempomode) {
		return;
	} else {	
		x->r = f;
		x->rsamps = x->r * x->srate;		
		x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
	}
	
	return ;
}

void adsr_list (t_adsr *x, t_atom *msg, short argc, t_atom *argv)
{
	//  int i;
	//  float val;
	//  int sum;
	//  float fac;
	
	x->rsamps = x->tsamps - (x->asamps+x->dsamps+x->ssamps);	
	if( x->rsamps < 0 ) 
		x->rsamps = 0;
	
	x->a = (atom_getfloatarg(0,argc,argv)) * .001;
	x->d = (atom_getfloatarg(1,argc,argv)) * .001;
	x->s = (atom_getfloatarg(2,argc,argv)) * .001;
	x->r = (atom_getfloatarg(3,argc,argv)) * .001;
	
	x->asamps = x->a * x->srate;
	x->dsamps = x->d * x->srate;
	x->ssamps = x->s * x->srate;
	x->rsamps = x->r * x->srate;
	
	
    x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
    x->ebreak1 = x->asamps;
    x->ebreak2 = x->asamps+x->dsamps;
    x->ebreak3 = x->asamps+x->dsamps+x->ssamps;
	
}
/*
#if __PD__
	void atom_arg_getfloat(float *c, long idx, long ac, t_atom *av) {
		float tmp;
		tmp = atom_getfloatarg(idx, ac, av);
		*c = tmp;
	}
#endif
*/

void *adsr_new(t_symbol *s, int argc, t_atom *argv)
{
#if __MSP__
	t_adsr *x = (t_adsr *)newobject(adsr_class);
	dsp_setup((t_pxobject *)x,1); // no inputs
	outlet_new((t_pxobject *)x, "signal");
	x->x_obj.z_misc |= Z_NO_INPLACE;
	floatin((t_object *)x, 1);
	floatin((t_object *)x, 2);
	floatin((t_object *)x, 3);
	floatin((t_object *)x, 4);
	floatin((t_object *)x, 5);
	
#endif
	
#if __PD__
	t_adsr *x = (t_adsr *)pd_new(adsr_class);
	outlet_new(&x->x_obj, gensym("signal"));
#endif
	
	x->srate = sys_getsr();
	if(!x->srate){
		error("zero sampling rate, setting to 44100");
		x->srate = 44100;
	}
	
	x->a = 10;
	x->d = 50;
	x->s = 100;
	x->r = 100;
	x->egain1 = .7;
	x->egain2 = .1;
	atom_arg_getfloat(&x->a,0,argc,argv);
	atom_arg_getfloat(&x->d,1,argc,argv);
	atom_arg_getfloat(&x->s,2,argc,argv);
	atom_arg_getfloat(&x->r,3,argc,argv);
	atom_arg_getfloat(&x->egain1,4,argc,argv);
	atom_arg_getfloat(&x->egain2,5,argc,argv);
//	post("%f %f %f %f %f %f",x->a,x->d,x->s,x->r,x->egain1,x->egain2);
//	post("{Is Pd afraid of curly braces?} {{}}\n");
	x->a *= .001;
	x->d *= .001;
	x->s *= .001;
	x->r *= .001;
	
	x->asamps = x->a * x->srate;
	x->dsamps = x->d * x->srate;
	x->ssamps = x->s * x->srate;
	x->rsamps = x->r * x->srate;
	x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
	x->ebreak1 = x->asamps;
	x->ebreak2 = x->asamps+x->dsamps;
	x->ebreak3 = x->asamps+x->dsamps+x->ssamps;

	x->counter = 0;
	x->click_gain = 0.0;
	x->mute = 0;
	return (x);
}

t_int *adsr_perform(t_int *w)
{
	t_adsr *x = (t_adsr *) (w[1]);
	t_float *in = (t_float *)(w[2]);
	t_float *out = (t_float *)(w[3]);
	int  n = w[4];
	int tsamps = x->tsamps;
	int counter = x->counter;
	int ebreak1 = x->ebreak1;
	int ebreak2 = x->ebreak2;
	int ebreak3 = x->ebreak3;
	float egain1 = x->egain1;
	float egain2 = x->egain2;
	int asamps = x->asamps;
	int dsamps = x->dsamps;
	int ssamps = x->ssamps;
	int rsamps = x->rsamps;
	//  short manual_override = x->manual_override;
	float click_gain = x->click_gain;
	float etmp;
	float env_val;
	float input_val;
	/*********************************************/	
	if(x->mute){
		while(n--) *out++ = 0.0; 
		return w+5;
	}
	while(n--) {
		input_val = *in++;
		if(input_val){
			click_gain = input_val;
			counter = 0;
		}
		
		
		if( counter < ebreak1 ){
			env_val = (float) counter / (float) asamps;
		} else if (counter < ebreak2) {
			etmp = (float) (counter - ebreak1) / (float) dsamps;
			env_val = (1.0 - etmp) + (egain1 * etmp);
		} else if (counter < ebreak3) {
			etmp = (float) (counter - ebreak2) / (float) ssamps;
			env_val = (egain1 * (1.0 - etmp)) + (egain2 * etmp);
		} else if( counter < tsamps ){
			env_val = ((float)(tsamps-counter)/(float)rsamps) * egain2 ;
		} else {
			env_val = 0.0;
		}
		if(click_gain && env_val && (click_gain != 1.0) ){
			env_val *= click_gain;
		}
		*out++ = env_val;
		if(counter < tsamps)
			counter++;
	}
	x->counter = counter;
	x->click_gain = click_gain;
	return (w+5);
}		

void adsr_dsp(t_adsr *x, t_signal **sp, short *count)
{
	//  long i;
	
	if(x->srate != sp[0]->s_sr ){
		x->srate = sp[0]->s_sr;
		x->asamps = x->a * x->srate;
		x->dsamps = x->d * x->srate;
		x->ssamps = x->s * x->srate;
		x->rsamps = x->r * x->srate;
		x->tsamps = x->asamps+x->dsamps+x->ssamps+x->rsamps;
		x->ebreak1 = x->asamps;
		x->ebreak2 = x->asamps+x->dsamps;
		x->ebreak3 = x->asamps+x->dsamps+x->ssamps;
		x->counter = 0;	
	}
	dsp_add(adsr_perform, 4, x, 	  sp[0]->s_vec,   sp[1]->s_vec,sp[0]->s_n);
}

/*** MSP helper functions **/
#if __PD__


void atom_arg_getfloat(float *c, long idx, long ac, t_atom *av) 
{
		if (c&&ac&&av&&(idx<ac)) {
			*c = atom_getfloat(av+idx);
		}
}

void atom_arg_getsym(t_symbol **c, long idx, long ac, t_atom *av)
{
	if (c&&ac&&av&&(idx<ac)) {
		*c = atom_getsymbol(av+idx);
	} 
}
#endif