-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrums.c
250 lines (192 loc) · 4.12 KB
/
drums.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
#include <stdio.h>
#include <math.h>
#include <stdint.h>
#include <stdlib.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, int note);
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
freq(int n)
{
double f;
f = pow(2.0, ((double)n - 49.0) / 12.0) * 440.0;
return f;
}
static double
instr_kick(double t, int note)
{
double tone = exp(-t*4) * sin(2*M_PI*t*freq(note) * exp(-t*20));
return tone;
}
static double
instr_metal(double t, int note)
{
double tone = exp(-t*4) * (sin(2*M_PI*t*freq(note))
+ sin(2*M_PI*t*freq(note)*2.13232)
+ sin(2*M_PI*t*freq(note)*6.12342));
return tone;
}
static double
instr_tom(double t, int note)
{
double tone = exp(-t*4) * sin(2*M_PI*t*freq(note) * exp(-t*20))
+ exp(-t*2) * sin(2*M_PI*t*freq(note) * exp(-t*5));
return tone;
}
static double
instr_cym(double t, int note)
{
double tone = exp(-t*25) * tan(2*M_PI*t*freq(note) * exp(-t*25));
return tone;
}
static double
instr_cym2(double t, int note)
{
double tone = exp(-t*10) * sin(2*M_PI*t*freq(note) * exp(-t*10));
return tone;
}
static void
add_note(struct timeline *tl, double start,
int note, double duration, double loudness, 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, note);
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;
}
}
int
main()
{
int bpm = 190;
double vol = 0.5;
double notelen = 60.0 / bpm / 4.0;
double where = 0.0;
size_t i, j, k;
struct timeline *tl;
tl = timeline_init(100 * R);
if (!tl) {
return EXIT_FAILURE;
}
where = 0.0;
for (k=0; k<8; k++) {
for (i=0; i<3; i++) {
add_note(tl, where, 800, notelen * 8,
vol * 0.2, &instr_cym2);
add_note(tl, where + notelen, 90, notelen * 8,
vol * 0.01, &instr_metal);
for (j=0; j<4; j++) {
add_note(tl, where, 30, notelen * 2,
vol, &instr_kick);
where += notelen * 1;
add_note(tl, where, 30, notelen * 2,
vol, &instr_kick);
where += notelen * 1;
add_note(tl, where, 30, notelen * 2,
vol, &instr_kick);
add_note(tl, where, 30, notelen * 2,
vol, &instr_tom);
add_note(tl, where, 700, notelen * 2,
vol * 0.02, &instr_cym);
where += notelen * 2;
}
}
for (i=0; i<4; i++) {
add_note(tl, where, 800, notelen * 8,
vol * 0.2, &instr_cym2);
add_note(tl, where + notelen, 110, notelen * 8,
vol * 0.008, &instr_metal);
for (j=0; j<4; j++) {
add_note(tl, where, 40 - i * 3, notelen * 2,
vol * 0.2, &instr_tom);
add_note(tl, where, 800, notelen * 2,
vol * 0.01, &instr_cym);
where += notelen * 1;
}
}
}
timeline_play(tl);
timeline_free(tl);
return EXIT_SUCCESS;
}