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
|
#include "synth_engine.h"
#include "synth_math.h"
#include "lowpass.h"
#include "filter.h"
#include "control.h"
#include "sound.h"
#include "wavetable.h"
#include <string.h>
float
sin_sample(float amp, float freq, unsigned long long phase, unsigned int sample_rate)
{
return amp * sinf(2.0 * M_PI * freq * ((float)phase / (float)sample_rate));
}
float
saw_sample(float amp, float freq, unsigned long long phase, unsigned int sample_rate)
{
return amp * (0.17 * (1.0 - (2.0 * M_PI * freq * fmod((float)phase, (float)(sample_rate / (freq)))) / (float)sample_rate));
}
float
sawX_sample(float amp, float freq, float sm, unsigned long long phase, unsigned int sample_rate)
{
float dOutput = 0.0;
for (float n = 1.0; n < sm; n++)
dOutput += (sinf(n * 2.0 * M_PI * freq * ((float)phase / (float)sample_rate))) / n;
return 0.5 * amp * dOutput;
}
float
sqr_sample(float amp, float freq, float duty_cycle, unsigned long long phase, unsigned int sample_rate)
{
if (duty_cycle < 0.0001 || duty_cycle > 0.9999) {
duty_cycle = 0.5;
}
return (fmod((float)phase / (float)sample_rate, 1.0 / freq) < duty_cycle * (1.0 / freq)) ? amp : -amp;
}
float
gen10(float f, unsigned long long phase, float x, unsigned int sample_rate)
{
return fmodf(phase, sample_rate/f) / (sample_rate/f);
}
float
gen1110(float f, unsigned long long phase, float x, unsigned int sample_rate)
{
float amplitude = 0.5; // Set the initial amplitude to 0.5
float period = 1.0 / f; // Calculate the period of the waveform
float angular_frequency = 2.0 * M_PI * f; // Calculate the angular frequency
// Calculate the phase angle
float phase_angle = fmodf(angular_frequency * phase / sample_rate, 2.0 * M_PI);
// Generate the sample value using the sine function
float sample = amplitude * sinf(phase_angle);
return sample;
}
float
gen110(float f, unsigned long long phase, float x, unsigned int sample_rate)
{
float a = fmodf(phase, sample_rate/f);
return a > (sample_rate/f) / 2.0f ? 0.9999f : -0.9999f;
}
float
gen0(float f, midi_note_t * midi_note, float x, unsigned int sample_rate)
{
return sin_sample(1, f, midi_note->elapsed, sample_rate);
//return chirp(midi_note->elapsed, f);
/* return sqr_sample(0.1, f, 0.3, midi_note->elapsed, sample_rate) */
/* + sqr_sample(0.1, f * 3.0 / 2.0 , 0.5, midi_note->elapsed, sample_rate) */
/* + saw_sample(0.3, f, midi_note->elapsed, sample_rate) */
/* + sin_sample(0.1, f, midi_note->elapsed, sample_rate) */
/* + sin_sample(0.1, f * 5, midi_note->elapsed, sample_rate) */
/* /\* + sin_sample(0.1, freq * 50 * 1021, midi_note->elapsed, sample_rate) *\/ */
/* /\* + sin_sample(0.1, freq * 50 * 3531021, midi_note->elapsed, sample_rate) *\/ */
/* + sin_sample(0.1, f * 7, midi_note->elapsed, sample_rate); */
}
float
gen1(float f, midi_note_t * midi_note, float x, unsigned int sample_rate)
{
//return saw_sample(1, f, midi_note->elapsed, sample_rate);
return sawX_sample(0.5, f, 5, midi_note->elapsed, sample_rate)
+ saw_sample(0.3, 2 * f / 5, midi_note->elapsed, sample_rate)
+ sin_sample(0.2, f * 5.0 / 7.0 , midi_note->elapsed, sample_rate);
}
float
gen2(float f, midi_note_t * midi_note, float x, unsigned int sample_rate)
{
/* return sin_sample(0.5, f * sqrt(2) , midi_note->elapsed, sample_rate) */
/* + sin_sample(0.5, f, midi_note->elapsed, sample_rate); */
return sawX_sample(1, f, 15, midi_note->elapsed, sample_rate);
}
float
gen3(float f, midi_note_t * midi_note, float x, unsigned int sample_rate)
{
//return sqr_sample(1, f, .5, midi_note->elapsed, sample_rate);
return wvt_next(wvt_saw, f, sample_rate, &midi_note->wvt_index);
/* return sawX_sample(0.7, f, 5, midi_note->elapsed, sample_rate) */
/* + sin_sample(0.3, 4.0/17.0*f, midi_note->elapsed, sample_rate); */
/* return saw_sample(0.5, f * (1 + sqrt(5)) / 2, midi_note->elapsed, sample_rate) */
/* + sin_sample(0.3, f * x, midi_note->elapsed, sample_rate) */
/* + sqr_sample(0.2, f * x, 0.2 * x * x, midi_note->elapsed, sample_rate); */
}
float
lfo(float f, unsigned long long phase, unsigned int sample_rate) {
return sin_sample(1, f, phase, sample_rate);
}
int
notes_active(synth_t *synth)
{
int flag = 0;
for (int i = 0; i < MIDI_NOTES; i++) {
if (!synth->midi_note[i].active)
continue;
if (!adsr_amplitude(&synth->adsr,
(float)synth->midi_note[i].noteOn,
(float)synth->midi_note[i].noteOff,
(float)synth->midi_note[i].elapsed)
&& synth->midi_note[i].noteOff != 0) {
synth->midi_note[i].freq = 0;
synth->midi_note[i].channel = -1;
synth->midi_note[i].noteOn = -1;
synth->midi_note[i].noteOff = -1;
synth->midi_note[i].wvt_index = 0;
synth->midi_note[i].velocity = -1;
synth->midi_note[i].elapsed = -1;
synth->midi_note[i].active = 0;
} else {
flag++;
}
}
return flag;
}
float cur_freq, next_freq;
float
make_sample(void *synthData, unsigned int sample_rate, int frame)
{
synth_t *synth = (synth_t*)synthData;
float sample = 0.0f;
float n = notes_active(synth);
if (n == 0) return sample;
float rms = 0;
for (int i = 0; i < MIDI_NOTES; i++) {
if (!synth->midi_note[i].active)
continue;
rms += synth->midi_note[i].velocity * synth->midi_note[i].velocity;
}
rms = sqrt(rms / n);
for (int i = 0; i < MIDI_NOTES; i++) {
if (!synth->midi_note[i].active)
continue;
float adsr = adsr_amplitude(&synth->adsr,
synth->midi_note[i].noteOn,
synth->midi_note[i].noteOff,
synth->midi_note[i].elapsed);
float targ_freq = synth->midi_note[i].freq * cc_iget(&synth->cc_pitch, frame, FRAMES_PER_BUFFER);
float targ_freq_with_repitch = synth->midi_note[i].freq * cc_iget(&synth->cc_pitch, frame, FRAMES_PER_BUFFER);
float synth_sample = synth->gen[synth->geni](targ_freq,
&synth->midi_note[i],
synth->x,
sample_rate);
/* if (targ_freq != targ_freq_with_repitch) { */
/* unsigned long long tmp = synth->midi_note[i].elapsed; */
/* float next_sample = synth->gen[synth->geni](targ_freq_with_repitch, */
/* tmp, */
/* synth->x, */
/* sample_rate); */
/* while (synth_sample - next_sample > 0.001 && next_sample - synth_sample > 0.001) { */
/* next_sample = synth->gen[synth->geni](targ_freq_with_repitch, */
/* ++tmp, */
/* synth->x, */
/* sample_rate); */
/* } */
/* synth_sample = next_sample; */
/* } */
sample += 0.2 * rms * adsr * synth_sample;
}
/* filter */
if (synth->filter) {
// ALLL THE FILTERS
float cutoff = cc_iget(&synth->cc_cutoff, frame, FRAMES_PER_BUFFER);
float reso = round(cc_iget(&synth->cc_resonance, frame, FRAMES_PER_BUFFER));
//cutoff = cutoff + cutoff * (synth->lfo.amp) * lfo(cc_iget(&synth->cc_lfo_freq, frame, FRAMES_PER_BUFFER), synth->lfo.elapsed, sample_rate);
if (cutoff == 0) cutoff = 0.001;
LowPass_Update(reso, cutoff, sample_rate);
sample = LowPass_Filter(sample);
update_bw_low_pass_filter(synth->fff, SAMPLE_RATE,cutoff, reso);
sample = bw_low_pass(synth->fff, sample);
}
sample = synth->gain * sample;
// band stop for high freqs
sample = bw_band_stop(synth->fff2, sample);
if (synth->clamp) sample = clamp(sample, -1, 1);
return sample;
}
void
add_to_viz(synth_t *synth, float sample)
{
synth->viz.wave[synth->viz.wi++] = sample;
if (synth->viz.wi >= VIZ_BUF) {
synth->viz.wi = 0;
}
}
void
increment_synth(synth_t *synth)
{
synth->lfo.elapsed++;
synth->adsr.elapsed++;
for (int i = 0; i < MIDI_NOTES; i++) {
if (!synth->midi_note[i].active)
continue;
synth->midi_note[i].elapsed++;
}
}
void
get_frame(void *outputBuffer, synth_t *synth, int i)
{
float *out = (float*)outputBuffer + 2 * i;
float s = 0.0f;
if (!synth->active) {
*out++ = 0.0f;
*out++ = 0.0f;
add_to_viz(synth, 0.0f);
synth->lfo.elapsed = 0;
return;
}
if (!notes_active(synth)) {
synth->active = 0;
*out++ = 0.0f;
*out++ = 0.0f;
add_to_viz(synth, 0.0f);
return;
}
s = make_sample(synth, SAMPLE_RATE, i);
*out++ = s;
*out++ = s;
// move time
increment_synth(synth);
// viz
add_to_viz(synth, s);
}
#include "fftw3.h"
int
process(float * buffer)
{
int len = FRAMES_PER_BUFFER;
float buf[FRAMES_PER_BUFFER];
for( unsigned long i=0; i < len * 2; i += 2 ) {
buf[i / 2] = buffer[i];
}
fftwf_complex* frequency_signal = (fftwf_complex*)fftwf_malloc(sizeof(fftwf_complex) * (len / 2 + 1));
//double* time_signal = (double*)fftwf_malloc(sizeof(double) * len);
fftwf_plan forward_plan = fftwf_plan_dft_r2c_1d(len, buf, frequency_signal, FFTW_ESTIMATE);
fftwf_plan backward_plan = fftwf_plan_dft_c2r_1d(len, frequency_signal, buf, FFTW_ESTIMATE);
fftwf_execute(forward_plan);
/* for (int i=0; i < (len / 2 + 1); i++ ) { */
/* if (frequency_signal[i][0] > 1) { */
/* frequency_signal[i][0] = 0; */
/* } */
/* if (frequency_signal[i][1] > 1) { */
/* frequency_signal[i][1] = 0; */
/* } */
/* printf("%f %f | ", sqrt(frequency_signal[i][0] * frequency_signal[i][0] + frequency_signal[i][1] * frequency_signal[i][1]), atan2(frequency_signal[i][1], frequency_signal[i][0])); */
/* float f = atan2(frequency_signal[i][1], frequency_signal[i][0]); */
/* if (f > M_PI / 2 && f < 2 * M_PI / 3) { */
/* frequency_signal[i][0] = 0.0; */
/* frequency_signal[i][1] = 0.0; */
/* } */
/* } */
fftwf_execute(backward_plan);
for (unsigned long i=0; i < len * 2; i += 2) {
buffer[i] = buf[i / 2] / len ;
buffer[i + 1] = buf[i / 2] / len ;
}
fftwf_destroy_plan(forward_plan);
fftwf_destroy_plan(backward_plan);
fftwf_free(frequency_signal);
//fftwf_free(time_signal);
/* for( unsigned long i=0; i < len * 2; i += 2 ) { */
/* buf[i / 2] = buffer[i]; */
/* } */
/* float kernel[7] = {.01, .88, .21, .36, .21, .13, .01}; */
/* float res[len + 7 - 1]; */
/* convole(buf, kernel, len, 7, res); */
/* int N = (len + 7 - 1); */
/* int M = len; */
/* float ratio = (float) N / M; */
/* for (int i = 0; i < M; i++) { */
/* int index = (int)(i * ratio); */
/* buf[i] = res[index]; */
/* } */
/* for (unsigned long i=0; i < len * 2; i += 2) { */
/* buffer[i] = buf[i / 2] ; */
/* buffer[i + 1] = buf[i / 2] ; */
/* } */
return 0;
}
int
sound_gen(const void *inputBuffer, void *outputBuffer,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo* timeInfo,
PaStreamCallbackFlags statusFlags,
void *synthData)
{
synth_t *synth = (synth_t*)synthData;
float *out = (float*)outputBuffer;
float buffer[2 * FRAMES_PER_BUFFER];
(void) timeInfo;
(void) statusFlags;
(void) inputBuffer;
// get_changes();
for (int i = 0; i < synth->cci; i++) {
cc_prep(synth->ccs[i]);
}
// fill buffer
for( unsigned long i=0; i<framesPerBuffer; i++ ) {
// use iget inside
get_frame(buffer, synth, i);
}
// process buffer
if (synth->multi) process(buffer);
// output buffer
for( unsigned long i=0; i<framesPerBuffer * 2; i += 2 ) {
// use iget inside
*out++ = buffer[i];
*out++ = buffer[i+1];
}
// finalize_changes();
for (int i = 0; i < synth->cci; i++) {
cc_fix(synth->ccs[i]);
}
return paContinue;
}
void
init_synth(synth_t * synth)
{
synth->cci = 0;
CC(synth->cc_cutoff, "cutoff", 10, 5000, 30, 5000);
CC(synth->cc_resonance, "resonance", 1, 10, .02, 1);
CC(synth->cc_lfo_freq, "lfo_freq", .01, 10, .02, .1);
CC(synth->cc_pitch, "pitch", -3, 4, 0.01, 1);
synth->modi = 0;
synth->freq_offset = 0;
synth->gain = 1;
synth->x = 1;
synth->adsr.a = 0.0;
synth->adsr.peak = 1.0f;
synth->adsr.d = 0.3;
synth->adsr.s = 0.7;
synth->adsr.r = 0.4;
synth->adsr.elapsed = 0;
synth->lfo.freq = 1.0f;
synth->lfo.amp = 0.0f;
synth->lfo.elapsed = 0;
for (int i =0; i<MIDI_NOTES; i++) {
synth->midi_note[i].freq = 0;
synth->midi_note[i].channel = -1;
synth->midi_note[i].noteOn = -1;
synth->midi_note[i].noteOff = -1;
synth->midi_note[i].velocity = -1;
synth->midi_note[i].elapsed = -1;
synth->midi_note[i].active = 0;
synth->midi_note[i].adsr = &(synth->adsr);
}
synth->octave = 3;
synth->poly = 0;
synth->multi = 0;
synth->filter = 1;
synth->cutoff = 22000.0f;
synth->clamp = 1;
synth->gen[0] = gen0;
synth->gen[1] = gen1;
synth->gen[2] = gen2;
synth->gen[3] = gen3;
synth->geni = 2;
synth->active = 0;
synth->viz.sample_rate_divider = 1;
synth->viz.wi = 0;
LowPass_Init();
synth->fff = create_bw_low_pass_filter(2, SAMPLE_RATE, 400);
synth->fff2 = create_bw_band_stop_filter(8, SAMPLE_RATE, 15000, 22000);
init_sound(synth, sound_gen);
wvt_init();
}
void
free_synth(synth_t * synth)
{
destroy_sound(synth);
free_bw_low_pass(synth->fff);
free_bw_band_stop(synth->fff2);
}
|