-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom-cons.c
228 lines (171 loc) · 3.58 KB
/
random-cons.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
/*
* $ cc -Wall -pedantic -Wextra random-cons.c -o random-cons -lm
* $ ./random-cons 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);
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_piano(double t, double fr)
{
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;
return tone;
}
static double
instr_sin(double t, double fr)
{
double tone;
t *= 2.0 * M_PI * fr;
tone = sin(t);
return tone;
}
static void
add_note(struct timeline *tl, double start,
double fr, 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, fr);
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 argc, char *argv[])
{
int bpm = 144;
double vol = 0.5;
double notelen = 60.0 / bpm / 4.0;
double where;
double fr;
double ks[9] = {1.0,
3.0/4.0, 4.0/3.0,
5.0/4.0,
2.0/3.0, 3.0/2.0,
4.0/5.0, 5.0/6.0,
2.0};
int i;
struct timeline *tl;
tl = timeline_init(100 * R);
if (!tl) {
return EXIT_FAILURE;
}
where = 0.0;
fr = 440.0;
srand(atoi(argv[1]));
for (i=0; i<8; i++) {
double len;
if ((rand() % 2) == 1) {
fr *= ks[rand() % 9];
} else {
fr /= ks[rand() % 9];
}
len = notelen * (rand() % 8);
add_note(tl, where, fr, len, vol * 0.5, &instr_piano);
where += len;
fprintf(stderr, "len: %f, freq: %f\n", len, fr);
}
timeline_play(tl);
timeline_free(tl);
return EXIT_SUCCESS;
}