1
1
/*
2
2
http://stackoverflow.com/a/36510894/895245
3
+
4
+ TODO
5
+
6
+ - smooth transition between sines without tic sound. Needs a phase change I imagine.
7
+ - ADSR https://en.wikipedia.org/wiki/Synthesizer#Attack_Decay_Sustain_Release_.28ADSR.29_envelope
8
+ Currently, hitting the same not twice sounds the same as hitting it once for double the time,
9
+ (except for the tic of phase, which is a bug as well...)
10
+ - drum / percurssion synth
3
11
*/
4
12
5
13
#include <math.h>
@@ -13,7 +21,8 @@ typedef uint16_t point_type;
13
21
#define WRITE (name , func ) \
14
22
f = fopen("tmp." name ".raw", "wb"); \
15
23
for (t = 0; t < NSAMPLES; ++t) { \
16
- write_ampl(f, func); \
24
+ func; \
25
+ write_ampl(f, ampl); \
17
26
} \
18
27
fclose(f);
19
28
@@ -32,15 +41,13 @@ double piano_freq(unsigned int i) {
32
41
}
33
42
34
43
/* Chord formed by the nth note of the piano. */
35
- point_type piano_sum (unsigned int max_ampl , unsigned int time , double sample_freq , unsigned int nargs , ...) {
44
+ point_type piano_sum (unsigned int max_ampl , unsigned int time ,
45
+ double sample_freq , unsigned int nargs , unsigned int * notes ) {
36
46
double freq ;
37
47
unsigned int i ;
38
- va_list args ;
39
- va_start (args , nargs );
40
48
double sum = 0 ;
41
49
for (i = 0 ; i < nargs ; ++ i )
42
- sum += sin (PI2 * time * piano_freq (va_arg (args , int )) / sample_freq );
43
- va_end (args );
50
+ sum += sin (PI2 * time * piano_freq (notes [i ]) / sample_freq );
44
51
return max_ampl * 0.5 * (nargs + sum ) / nargs ;
45
52
}
46
53
@@ -202,10 +209,91 @@ int main(void) {
202
209
203
210
f = fopen ("tmp.chord.raw" , "wb" );
204
211
for (t = 0 ; t < NSAMPLES ; ++ t ) {
205
- ampl = piano_sum (max_ampl , t , SAMPLE_FREQ , 4 , C4 , E4 , G4 , B4 );
212
+ ampl = piano_sum (max_ampl , t , SAMPLE_FREQ , 4 , ( unsigned int []){ C4 , E4 , G4 , B4 } );
206
213
write_ampl (f , ampl );
207
214
}
208
215
fclose (f );
209
216
217
+ /*
218
+ # Pianola
219
+
220
+ # Canon
221
+
222
+ https://en.wikipedia.org/wiki/Player_piano
223
+
224
+ http://www.8notes.com/scores/420.asp After where I've stopped,
225
+ that score gets weird, maybe find another one.
226
+ */
227
+ {
228
+ unsigned int i ;
229
+ unsigned int samples_per_unit = SAMPLE_FREQ * 0.375 ;
230
+ unsigned int * ip [] = {
231
+ (unsigned int []){4 , 2 , C3 , E4 },
232
+ (unsigned int []){4 , 2 , G3 , D4 },
233
+ (unsigned int []){4 , 2 , A3 , C4 },
234
+ (unsigned int []){4 , 2 , E3 , B3 },
235
+
236
+ (unsigned int []){4 , 2 , F3 , A3 },
237
+ (unsigned int []){4 , 2 , C3 , G3 },
238
+ (unsigned int []){4 , 2 , F3 , A3 },
239
+ (unsigned int []){4 , 2 , G3 , B3 },
240
+
241
+ (unsigned int []){4 , 3 , C3 , G4 , E5 },
242
+ (unsigned int []){4 , 3 , G3 , B4 , D5 },
243
+ (unsigned int []){4 , 2 , A3 , C5 },
244
+ (unsigned int []){4 , 3 , E3 , G4 , B4 },
245
+
246
+ (unsigned int []){4 , 3 , F3 , C4 , A4 },
247
+ (unsigned int []){4 , 3 , C3 , G4 , G4 },
248
+ (unsigned int []){4 , 3 , F3 , F4 , A4 },
249
+ (unsigned int []){4 , 3 , G3 , D4 , B4 },
250
+
251
+ (unsigned int []){2 , 3 , C4 , E4 , C5 },
252
+ (unsigned int []){2 , 3 , C4 , E4 , C5 },
253
+ (unsigned int []){2 , 3 , G3 , D4 , D5 },
254
+ (unsigned int []){2 , 3 , G3 , D4 , B4 },
255
+
256
+ (unsigned int []){2 , 3 , A3 , C4 , C5 },
257
+ (unsigned int []){2 , 3 , A3 , C4 , E5 },
258
+ (unsigned int []){2 , 2 , E3 , G5 },
259
+ (unsigned int []){2 , 2 , E3 , G4 },
260
+
261
+ (unsigned int []){2 , 3 , F3 , A3 , A4 },
262
+ (unsigned int []){2 , 3 , F3 , A3 , F4 },
263
+ (unsigned int []){2 , 3 , C3 , E4 },
264
+ (unsigned int []){2 , 3 , C3 , G4 },
265
+
266
+ (unsigned int []){2 , 3 , F3 , A3 , F4 },
267
+ (unsigned int []){2 , 3 , F3 , A3 , C5 },
268
+ (unsigned int []){2 , 3 , G3 , B3 , B4 },
269
+ (unsigned int []){2 , 3 , G3 , B3 , G4 },
270
+
271
+ (unsigned int []){2 , 3 , C4 , E4 , C5 },
272
+ (unsigned int []){1 , 3 , C4 , E4 , E5 },
273
+ (unsigned int []){1 , 3 , C4 , E4 , G5 },
274
+ (unsigned int []){1 , 2 , G3 , G5 },
275
+ (unsigned int []){1 , 2 , G3 , A5 },
276
+ (unsigned int []){1 , 2 , G3 , G5 },
277
+ (unsigned int []){1 , 2 , G3 , F5 },
278
+
279
+ (unsigned int []){3 , 3 , A3 , C4 , E5 },
280
+ (unsigned int []){1 , 3 , A3 , C4 , E5 },
281
+ (unsigned int []){1 , 3 , E3 , G3 , E5 },
282
+ (unsigned int []){1 , 3 , E3 , G3 , F5 },
283
+ (unsigned int []){1 , 3 , E3 , G3 , E5 },
284
+ (unsigned int []){1 , 3 , E3 , G3 , D5 },
285
+ };
286
+ f = fopen ("tmp.canon.raw" , "wb" );
287
+ for (i = 0 ; i < sizeof (ip ) / sizeof (int * ); ++ i ) {
288
+ unsigned int * cur = ip [i ];
289
+ unsigned int total = samples_per_unit * cur [0 ];
290
+ for (t = 0 ; t < total ; ++ t ) {
291
+ ampl = piano_sum (max_ampl , t , SAMPLE_FREQ , cur [1 ], & cur [2 ]);
292
+ write_ampl (f , ampl );
293
+ }
294
+ }
295
+ fclose (f );
296
+ }
297
+
210
298
return EXIT_SUCCESS ;
211
299
}
0 commit comments