-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverdrive.c
363 lines (277 loc) · 7.51 KB
/
overdrive.c
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
/*
* $ cc -Wall -pedantic -Wextra overdrive.c -o overdrive -lm
* $ ./overdrive 12345 | aplay -f S16_LE -r 44100 -c 2
*/
#include <stdio.h>
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#include <time.h>
static const double R = 44100; /* sample rate (samples per second) */
static const double maxamp = 1.0; /* max. amplitude */
typedef double (*instr_func)(double t, double fr, double overdrive);
struct timeline
{
size_t n;
size_t end;
float *left, *right;
float min, max;
};
static struct timeline *
timeline_init(size_t n)
{
struct timeline *t;
t = malloc(sizeof(struct timeline));
if (!t) {
goto tmalloc_failed;
}
t->left = calloc(n, sizeof(float));
if (!t->left) {
goto left_malloc_failed;
}
t->right = calloc(n, sizeof(float));
if (!t->right) {
goto right_malloc_failed;
}
t->n = n;
t->end = 0;
return t;
right_malloc_failed:
free(t->left);
left_malloc_failed:
free(t);
tmalloc_failed:
return NULL;
}
static void
timeline_free(struct timeline *tl)
{
free(tl->left);
free(tl->right);
tl->left = tl->right = NULL;
tl->n = tl->end = 0;
free(tl);
}
static void
timeline_play(struct timeline *tl)
{
size_t t;
for (t=0; t<tl->end; t++) {
int16_t tone;
if (tl->left[t] > maxamp) {
tone = INT16_MAX;
} else if (tl->left[t] < -maxamp) {
tone = -INT16_MAX;
} else {
tone = tl->left[t] * INT16_MAX;
}
fwrite(&tone, sizeof(int16_t), 1, stdout);
if (tl->right[t] > maxamp) {
tone = INT16_MAX;
} else if (tl->right[t] < -maxamp) {
tone = -INT16_MAX;
} else {
tone = tl->right[t] * INT16_MAX;
}
fwrite(&tone, sizeof(int16_t), 1, stdout);
}
}
static double
instr_piano(double t, double fr, double overdrive)
{
double tone;
t *= 2.0 * M_PI * fr;
tone = sin(t) * exp(-0.0004 * t);
tone += sin(2.0 * t) * exp(-0.0004 * t) / 2.0;
tone += sin(3.0 * t) * exp(-0.0004 * t) / 4.0;
tone += sin(4.0 * t) * exp(-0.0004 * t) / 8.0;
tone += sin(5.0 * t) * exp(-0.0004 * t) / 16.0;
tone += sin(6.0 * t) * exp(-0.0004 * t) / 32.0;
tone += tone * tone * tone;
if (tone >= overdrive) {
tone = overdrive;
} else if (tone <= -overdrive) {
tone = -overdrive;
}
return tone;
}
static double
instr_cym2(double t, double fr, double overdrive)
{
double tone;
(void)overdrive;
tone = exp(-t*8) *
(
sin(2 * M_PI * t * fr * exp(-t*8))
+ sin(2 * M_PI * t * fr) * 0.9f
);
return tone;
}
static double
instr_tom(double t, double fr, double overdrive)
{
double tone;
(void)overdrive;
tone = exp(-t*4) * sin(2*M_PI*t*fr * exp(-t*20))
+ exp(-t*2) * sin(2*M_PI*t*fr * exp(-t*5));
return tone;
}
static void
add_note(struct timeline *tl, double start,
double fr, double duration, double loudness, double overdrive,
instr_func instr)
{
size_t tstart, tend, t;
tstart = start * R;
tend = tstart + duration * R;
for (t=tstart; t<tend; t++) {
double tone;
double k;
k = (t - tstart) / R;
tone = (*instr)(k, fr, overdrive);
tone *= loudness;
if (t >= tl->n) {
break;
}
/* first channel */
tl->left[t] += tone;
/* second channel */
tl->right[t] += tone;
}
if (t > tl->end) {
tl->end = t;
}
}
static void
add_major_chord(struct timeline *tl, double where, double fr, double notelen,
double vol)
{
double k1 = 5.0/4.0;
double k2 = 3.0/2.0;
double k3 = 2.0;
double dist = 0.1;
add_note(tl, where, fr, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k1, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k2, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k3, notelen, vol, dist, &instr_piano);
fr *= 0.99998;
add_note(tl, where, fr, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k1, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k2, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k3, notelen, vol, dist, &instr_piano);
fr *= 1.00001;
add_note(tl, where, fr, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k1, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k2, notelen, vol, dist, &instr_piano);
add_note(tl, where, fr * k3, notelen, vol, dist, &instr_piano);
}
int
main()
{
int bpm = 144;
double vol = 0.7;
double notelen = 60.0 / bpm / 4.0;
double where, where_cym;
double fr;
double frr;
double speedup = 0.99;
int i, j;
struct timeline *tl;
tl = timeline_init(100 * R);
if (!tl) {
return EXIT_FAILURE;
}
where = 0.0;
{
fr = 440.0 / 4;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 3;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 6;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 3;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 6;
for (i=0; i<8; i++) {
add_major_chord(tl, where, fr, notelen * 1.5, vol);
where += notelen * 2;
fr *= 1.03;
}
}
where_cym = where;
{
fr = 440.0 / 4;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 3;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 6;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 3;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 6;
for (i=0; i<8; i++) {
add_major_chord(tl, where, fr, notelen * 1.5, vol);
where += notelen * 2;
fr *= 1.03;
}
}
frr = 440.0 / 4;
for (j=0; j<8; j++) {
fr = 440.0 / 4;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 3;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 6;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 3;
add_major_chord(tl, where, fr, notelen * 2, vol);
where += notelen * 6;
for (i=0; i<8; i++) {
add_major_chord(tl, where, frr, notelen * 1.5, vol);
where += notelen * 2;
frr /= 1.01;
}
notelen *= speedup;
}
/* drums */
notelen = 60.0 / bpm / 4.0;
where_cym += notelen * 2;
{
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
for (i=0; i<4; i++) {
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4;
}
}
for (j=0; j<8; j++) {
double tom_freq = 300;
add_note(tl, where_cym - notelen * 2, tom_freq, notelen * 3, vol, 100.0, &instr_tom);
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
add_note(tl, where_cym - notelen * 2, tom_freq, notelen * 3, vol, 100.0, &instr_tom);
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
add_note(tl, where_cym - notelen * 2, tom_freq, notelen * 3, vol, 100.0, &instr_tom);
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
add_note(tl, where_cym - notelen * 2, tom_freq, notelen * 3, vol, 100.0, &instr_tom);
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4.5;
for (i=0; i<4; i++) {
add_note(tl, where_cym - notelen * 2, tom_freq, notelen * 3, vol, 100.0, &instr_tom);
add_note(tl, where_cym, 10e7, notelen * 1, vol, 100.0, &instr_cym2);
where_cym += notelen * 4;
}
notelen *= speedup;
}
timeline_play(tl);
timeline_free(tl);
return EXIT_SUCCESS;
}