forked from addacsystem/ADDAC-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ADDAC_Adsr.cpp
executable file
·473 lines (412 loc) · 16.6 KB
/
ADDAC_Adsr.cpp
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
#include "ADDAC_Adsr.h"
//-----------------------------------------------------------------------ADDAC-----------------
ADDAC_Adsr::ADDAC_Adsr(){
CVstream = 0;
//Serial.println("ADDAC_Adsr INITIALIZED");
}
// --------------------------------------------------------------------------- UPDATE -------------------------
//
// --------------------------------------------------------------------------- LINEAR ADSR MODE --- OLD CLASS -> (to be deleted ...) ----------------------
//
//int _channel (1-8), bool _trigger (0=no - 1=yes), bool _inverted (0=no - 1=yes)
//float _A (percentage (0-100% = 0.0f to 1.0f), float _Atime (millis)
// ADD top and bottom offset??
void ADDAC_Adsr::adsrMode(int _channel, bool _trigger, bool _inverted, float _A, float _Atime, float _D, float _Dtime, float _S,float _Stime, float _Rtime){
if(_trigger && !ADSRtrigger){
ADSRtrigger=true;
ADSRtriggerTime=millis();
CVstream=0;
}
//unsigned int toAddDif;
if(!_inverted){ // normal
if(millis()<=ADSRtriggerTime+_Atime){
// A
float _floatPercentage = _A * addacMaxResolution;
float _actualPos = _Atime-(ADSRtriggerTime+_Atime-millis());
CVstream = _actualPos / _Atime * _floatPercentage;
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime){
// D
float _actualPos;
long percentageDif = (_A - _D) * addacMaxResolution; // intervalo
if(percentageDif<0){
percentageDif = percentageDif*-1.0f;
toAddDif = _A*addacMaxResolution;
_actualPos = _Dtime-(ADSRtriggerTime+_Atime+_Dtime-millis());
}else{
toAddDif = _D*addacMaxResolution;
_actualPos = ADSRtriggerTime+_Atime+_Dtime-millis();
}
CVstream = _actualPos / _Dtime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime){
// S
float _actualPos;
long percentageDif = (_D - _S) * addacMaxResolution; // intervalo
if(percentageDif<0){
percentageDif = percentageDif*-1.0f;
toAddDif = _D*addacMaxResolution;
_actualPos = _Stime-(ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}else{
toAddDif = _S*addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}
CVstream = _actualPos / _Stime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime+_Stime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime){
// R
unsigned int percentageDif = _S * addacMaxResolution; // intervalo
float _actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime-millis());
CVstream = _actualPos / _Rtime * percentageDif;
}else{
ADSRtrigger=false;
CVstream=0;
}
}else{ // inverted
if(millis()<=ADSRtriggerTime+_Atime){
// A
float _floatPercentage = _A * addacMaxResolution;
float _actualPos = (ADSRtriggerTime+_Atime-millis());
toAddDif = (_A-1)*-1.0f*addacMaxResolution;
CVstream = _actualPos / _Atime * _floatPercentage+toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime){
// D
float _actualPos;
float percentageDif = (_A - _D); // intervalo
if(percentageDif<0){
percentageDif = percentageDif * -1.0f * addacMaxResolution;
toAddDif = (1 - _D) * addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime-millis());
}else{
percentageDif = percentageDif * addacMaxResolution;
toAddDif = (1 - _A) * addacMaxResolution;
_actualPos = _Dtime-(ADSRtriggerTime+_Atime+_Dtime-millis());
}
CVstream = _actualPos / _Dtime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime){
// S
float _actualPos;
float percentageDif = (_D - _S); // intervalo
if(percentageDif<0){
percentageDif = percentageDif * -1.0f * addacMaxResolution;
toAddDif = (1 - _S) * addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}else{
percentageDif = percentageDif * addacMaxResolution;
toAddDif = (1 - _D) * addacMaxResolution;
_actualPos = _Stime-(ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}
CVstream = _actualPos / _Stime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime+_Stime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime){
// R
float percentageDif = _S * addacMaxResolution; // intervalo
float _actualPos = _Rtime-(ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime-millis());
float toAddDif = (_S-1)*-1.0f*addacMaxResolution;
CVstream = _actualPos / _Rtime * percentageDif + toAddDif;
}else{
ADSRtrigger=false;
CVstream=addacMaxResolution;
}
}
}
// --------------------------------------------------------------------------- EXP / LOG ADSR ENVELOPE MODE -------------------------
//
//int _channel (1-8), bool _trigger (0=no - 1=yes), bool _inverted (0=no - 1=yes)
//float _A (0-1), float _Atime (millis), float _Ashape (0-1)
void ADDAC_Adsr::adsrLogExpMode(int _channel, bool _trigger, bool _inverted, float _A, float _Atime, float _Ashape, float _D, float _Dtime, float _Dshape, float _S, float _Stime, float _Sshape, float _Rtime, float _Rshape){
if(_trigger && !ADSRtrigger){
ADSRtrigger=true;
ADSRtriggerTime=millis();
CVstream=0;
}
//unsigned int toAddDif;
if(!_inverted){ // normal
if(millis()<=ADSRtriggerTime+_Atime){
// A
float _actualPos = (millis()-ADSRtriggerTime)/_Atime;
CVstream = pow(_actualPos, exp(_Ashape*4.0f-2)) * (_A * addacMaxResolution);
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime){
// D
float _actualPos = (millis()-ADSRtriggerTime-_Atime)/_Dtime;
CVstream = (-(1-_D-(1-_A))*pow(_actualPos, exp(_Dshape*4.0f-2)) +_A)* addacMaxResolution;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime){
// S
float _actualPos=(millis()-ADSRtriggerTime-_Atime-_Dtime)/_Stime;
CVstream = (-(1-_S-(1-_D))*pow(_actualPos, exp(_Sshape*4.0f-2)) +_D) * addacMaxResolution;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime+_Stime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime){
// R
unsigned int percentageDif = _S * addacMaxResolution; // intervalo
float _actualPos=(millis()-ADSRtriggerTime-_Atime-_Dtime-_Stime)/_Rtime;
CVstream = (-pow(_actualPos, exp(_Rshape*4-2))+1) * percentageDif;
}else{
ADSRtrigger=false;
CVstream=0;
}
}else{ // inverted
if(millis()<=ADSRtriggerTime+_Atime){
// A
Serial.print(" | A");
float _floatPercentage = _A / 100.0f * addacMaxResolution;
float _actualPos = (ADSRtriggerTime+_Atime-millis());
toAddDif = (_A/100.0f-1)*-1.0f*addacMaxResolution;
CVstream = _actualPos / _Atime * _floatPercentage+toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime){
// D
Serial.print(" | D");
float _actualPos;
float percentageDif = (_A - _D)/100.0f; // intervalo
if(percentageDif<0){
percentageDif = percentageDif * -1.0f * addacMaxResolution;
toAddDif = (100 - _D) / 100.0f * addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime-millis());
}else{
percentageDif = percentageDif * addacMaxResolution;
toAddDif = (100 - _A) / 100.0f * addacMaxResolution;
_actualPos = _Dtime-(ADSRtriggerTime+_Atime+_Dtime-millis());
}
CVstream = _actualPos / _Dtime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime){
// S
float _actualPos;
float percentageDif = (_D - _S) /100.0f; // intervalo
if(percentageDif<0){
percentageDif = percentageDif * -1.0f * addacMaxResolution;
toAddDif = (100 - _S) / 100.0f * addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}else{
percentageDif = percentageDif * addacMaxResolution;
toAddDif = (100 - _D) / 100.0f * addacMaxResolution;
_actualPos = _Stime-(ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}
CVstream = _actualPos / _Stime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime+_Stime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime){
// R
float percentageDif = _S / 100.0f * addacMaxResolution; // intervalo
float _actualPos = _Rtime-(ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime-millis());
float toAddDif = (_S/100.0f-1)*-1.0f*addacMaxResolution;
CVstream = _actualPos / _Rtime * percentageDif + toAddDif;
}else{
ADSRtrigger=false;
CVstream=addacMaxResolution;
}
}
}
// --------------------------------------------------------------------------- WEIRD AD ENVELOPE MODE -------------------------
//
//int _channel (1-8), bool _trigger (0=no - 1=yes), bool _inverted (0=no - 1=yes)
//float _A (0-1), float _Atime (millis), float _Ashape (0-1)
// ADD OFFSET
void ADDAC_Adsr::adsrWeirdMode(int _channel, bool _trigger, bool _inverted, float _A, float _Atime, float _Ashape, float _D, float _Dtime, float _Dshape){
if(_trigger && !ADSRtrigger){
ADSRtrigger=true;
ADSRtriggerTime=millis();
CVstream=0;
}
if(!_inverted){ // normal
if(millis()<=ADSRtriggerTime+_Atime){
// A
float _actualPos = (millis()-ADSRtriggerTime)/_Atime;
float _expoente = 0.55f+exp(_Ashape*8.0f-4.5f)-(log(sin(_actualPos*PI)+1.0f)*exp(_actualPos));
CVstream = pow(_actualPos*_actualPos, _expoente) * (addacMaxResolution/2);
Serial.print(" | A actualPos:");
Serial.print(_actualPos);
Serial.print(" | calcs:");
Serial.print(pow(_actualPos*_actualPos, _expoente));
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime){
// D
float _actualPos = (millis()-ADSRtriggerTime-_Atime)/_Dtime;
CVstream = ((-pow(_actualPos*_actualPos, 0.55f+exp(_Ashape*8.0f-4.5f)-log(sin(_actualPos*PI)+1)*exp(_actualPos)))+1) * (addacMaxResolution/2);
Serial.print(" | D actualPos:");
Serial.print(_actualPos);
Serial.print(" | calcs:");
Serial.print(((-pow(_actualPos*_actualPos, 0.55f+exp(_Ashape*8.0f-4.5f)-log(sin(_actualPos*PI)+1)*exp(_actualPos)))+1));
}else{
ADSRtrigger=false;
CVstream=0;
}
}else{ // inverted
}
}
void ADDAC_Adsr::AD_trigger(float _A){ // a:VELOCITY PERCENTAGE 0.0f & 1.0f for notes on
Attack = _A;
ADSRtrigger = true;
SUSTAIN = true;
ADSRtriggerTime=millis();
TipPoint = CVstream;
#ifdef DEBUG_adsr
Serial.println(" -- ADSR TRIGGER");
#endif
}
void ADDAC_Adsr::AD_trigger(){ // FULL VELOCITY PERCENTAGE 1.0f for ADSR
Attack = 1.0f;
ADSRtrigger=true;
SUSTAIN = true;
ADSRtriggerTime=millis();
TipPoint = CVstream;
#ifdef DEBUG_adsr
Serial.println(" -- ADSR TRIGGER");
#endif
}
void ADDAC_Adsr::AD_release(){
SUSTAIN = false;
ADSRtriggerTime=millis();
TipPoint = CVstream;
#ifdef DEBUG_adsr
Serial.println(" -- ADSR RELEASE");
#endif
}
void ADDAC_Adsr::AD_update(float _Atime, float _Dtime){ // a:ATTACK TIME | b:DECAY TIME in millis
if(millis()<=ADSRtriggerTime+_Atime && SUSTAIN){
// A
float TipPointF = TipPoint/addacMaxResolution;
float difference, weakLink;
if (TipPointF>Attack) {
difference = TipPointF - Attack;
weakLink=Attack*addacMaxResolution;
}else {
difference = Attack - TipPointF;
weakLink=TipPoint;
}
float _floatPercentage = difference * addacMaxResolution;
float _actualPos = _Atime-(ADSRtriggerTime+_Atime-millis());
CVstream = _actualPos / _Atime * _floatPercentage + weakLink;
#ifdef DEBUG_adsr
Serial.print(" -- perc:");
Serial.print(_floatPercentage);
Serial.print(" -- pos:");
Serial.print(_actualPos);
Serial.print(" -- Going Up:");
Serial.println(CVstream);
#endif
}else if(millis()<=ADSRtriggerTime+_Dtime && !SUSTAIN && ADSRtrigger){
// D
float _actualPos = ADSRtriggerTime+_Dtime-millis();
CVstream = _actualPos / _Dtime * TipPoint;
#ifdef DEBUG_adsr
Serial.print(" -- Going Down:");
Serial.println(CVstream);
#endif
}else if(!SUSTAIN){
CVstream = 0;
ADSRtrigger=false;
}
}
void ADDAC_Adsr::ADSR_update(float _A, float _Atime, float _D, float _Dtime, float _S,float _Stime, float _Rtime){ // a:ATTACK TIME | b:DECAY TIME in millis
if(millis()<=ADSRtriggerTime+_Atime && SUSTAIN){
// A
float TipPointF = TipPoint/addacMaxResolution;
float difference;
if (TipPointF > _A) {
difference = TipPointF - _A;
weakLink = _A * addacMaxResolution;
}else {
difference = _A - TipPointF;
weakLink=TipPoint;
}
floatPercentage = difference * addacMaxResolution;
float _actualPos = _Atime-(ADSRtriggerTime+_Atime-millis());
CVstream = _actualPos / _Atime * floatPercentage + weakLink;
#ifdef DEBUG_adsr
Serial.print(" -ATTACK- perc:");
Serial.print(floatPercentage);
Serial.print(" -- pos:");
Serial.print(_actualPos);
Serial.print(" -- Going Up:");
Serial.println(CVstream);
#endif
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime && SUSTAIN){
// D
float _actualPos;
long percentageDif = (_A - _D) * addacMaxResolution; // intervalo
if(percentageDif<0){
percentageDif = percentageDif*-1.0f;
toAddDif = _A*addacMaxResolution;
_actualPos = _Dtime-(ADSRtriggerTime+_Atime+_Dtime-millis());
}else{
toAddDif = _D*addacMaxResolution;
_actualPos = ADSRtriggerTime+_Atime+_Dtime-millis();
}
CVstream = _actualPos / _Dtime * percentageDif + toAddDif;
#ifdef DEBUG_adsr
Serial.print(" -DECAY- perc:");
Serial.print(floatPercentage);
Serial.print(" -- pos:");
Serial.print(_actualPos);
Serial.print(" -- Going:");
Serial.println(CVstream);
#endif
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime && SUSTAIN){
// S
float _actualPos;
long percentageDif = (_D - _S) * addacMaxResolution; // intervalo
if(percentageDif<0){
percentageDif = percentageDif*-1.0f;
toAddDif = _D*addacMaxResolution;
_actualPos = _Stime-(ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}else{
toAddDif = _S*addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}
CVstream = _actualPos / _Stime * percentageDif + toAddDif;
#ifdef DEBUG_adsr
Serial.print(" -SUSTAIN- perc:");
Serial.print(floatPercentage);
Serial.print(" -- pos:");
Serial.print(_actualPos);
Serial.print(" -- Going:");
Serial.println(CVstream);
#endif
}else if(millis()<=ADSRtriggerTime+_Rtime && !SUSTAIN && ADSRtrigger){
// R
float _actualPos = ADSRtriggerTime+_Rtime-millis();
CVstream = _actualPos / _Rtime * TipPoint;
#ifdef DEBUG_adsr
Serial.print(" -RELEASE- Going Down:");
Serial.println(CVstream);
#endif
}else if(!SUSTAIN){
CVstream = 0;
ADSRtrigger=false;
}
}
/*
if(millis()<=ADSRtriggerTime+_Atime){
// A
float _floatPercentage = _A * addacMaxResolution;
float _actualPos = _Atime-(ADSRtriggerTime+_Atime-millis());
CVstream = _actualPos / _Atime * _floatPercentage;
}else if(millis()>ADSRtriggerTime+_Atime && millis()<=ADSRtriggerTime+_Atime+_Dtime){
// D
float _actualPos;
long percentageDif = (_A - _D) * addacMaxResolution; // intervalo
if(percentageDif<0){
percentageDif = percentageDif*-1.0f;
toAddDif = _A*addacMaxResolution;
_actualPos = _Dtime-(ADSRtriggerTime+_Atime+_Dtime-millis());
}else{
toAddDif = _D*addacMaxResolution;
_actualPos = ADSRtriggerTime+_Atime+_Dtime-millis();
}
CVstream = _actualPos / _Dtime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime){
// S
float _actualPos;
long percentageDif = (_D - _S) * addacMaxResolution; // intervalo
if(percentageDif<0){
percentageDif = percentageDif*-1.0f;
toAddDif = _D*addacMaxResolution;
_actualPos = _Stime-(ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}else{
toAddDif = _S*addacMaxResolution;
_actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime-millis());
}
CVstream = _actualPos / _Stime * percentageDif + toAddDif;
}else if(millis()>ADSRtriggerTime+_Atime+_Dtime+_Stime && millis()<=ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime){
// R
unsigned int percentageDif = _S * addacMaxResolution; // intervalo
float _actualPos = (ADSRtriggerTime+_Atime+_Dtime+_Stime+_Rtime-millis());
CVstream = _actualPos / _Rtime * percentageDif;
}else{
ADSRtrigger=false;
CVstream=0;
}
*/
// --------------------------------------------------------------------------- END ----------------------------------
//