A new script, gigdump2ahs.pl, to convert the output from gigdump to
[ahxm.git] / annhell.h
blob1510100f6f21c703cde79f8c7fbf8c8db1435d41
1 /*
3 Ann Hell Ex Machina - Music Software
4 Copyright (C) 2003/2005 Angel Ortega <angel@triptico.com>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 http://www.triptico.com
24 /* HARD LIMITS */
26 #ifndef SS_MAX_CHANNELS
27 #define SS_MAX_CHANNELS 16
28 #endif
30 #ifndef SS_MAX_GENERATORS
31 #define SS_MAX_GENERATORS 256
32 #endif
34 /* STRUCTURES */
36 /* waves */
38 struct ss_wave
40 double size; /* size in frames */
41 int n_channels; /* # of channels */
42 float ** wave; /* the PCM waves */
43 int s_rate; /* original sample rate */
45 double loop_start; /* start of loop (-1, no loop) */
46 double loop_end; /* end of loop */
48 double base_freq; /* base frequency */
49 double min_freq; /* minimum frequency */
50 double max_freq; /* maximum frequency */
53 /* generators */
55 struct ss_gen
57 int note_id; /* note ID */
58 float vol; /* volume */
59 struct ss_wave * w; /* the wave data */
61 double cursor; /* offset to next sample */
62 double inc; /* increment (frequency) */
64 int sustain; /* number of frames to play after release */
65 float dvol; /* volume decrement in sustain */
67 double vibrato; /* vibrato oscillator */
68 double vib_depth; /* vibrato depth */
69 double vib_inc; /* increment for vibrato oscillator */
71 double portamento; /* portamento sum to inc */
73 struct ss_gen * next;
74 struct ss_gen * prev;
77 /* software syntesizer instruments */
79 struct ss_ins
81 int n_layers; /* # of layers */
82 struct ss_wave ** layers; /* layers */
84 struct ss_gen * gens; /* generator queue */
86 int n_channels; /* number of channels */
87 float * vols; /* volumes (1 per channel) */
88 struct ss_eff ** effs; /* effect chains (1 per channel) */
90 double sustain; /* sustain in msecs */
91 double vib_depth; /* vibrato depth */
92 double vib_freq; /* vibrato frequency */
95 /* digital effects */
97 struct ss_eff
99 float * wave; /* wave buffer */
100 double size; /* size of wave */
101 float gain; /* effect gain */
102 float igain; /* gain increment */
104 double lfo; /* lfo value */
105 double lfo_depth; /* lfo depth */
106 double lfo_inc; /* lfo increment */
108 double cursor; /* current buffer position */
110 float (* func)(struct ss_eff *, float); /* processing function */
112 struct ss_eff * next; /* next in chain */
115 /* song events */
117 typedef enum
119 SONG_EV_TEMPO,
120 SONG_EV_METER,
121 SONG_EV_MEASURE,
123 SONG_EV_SS_SUSTAIN,
124 SONG_EV_SS_VIBRATO,
125 SONG_EV_SS_CHANNEL,
127 SONG_EV_SS_WAV,
128 SONG_EV_SS_PAT,
130 SONG_EV_SS_EFF_DELAY,
131 SONG_EV_SS_EFF_ECHO,
132 SONG_EV_SS_EFF_COMB,
133 SONG_EV_SS_EFF_ALLPASS,
134 SONG_EV_SS_EFF_FLANGER,
135 SONG_EV_SS_EFF_WOBBLE,
136 SONG_EV_SS_EFF_SQWOBBLE,
137 SONG_EV_SS_EFF_FADER,
138 SONG_EV_SS_EFF_REVERB,
139 SONG_EV_SS_EFF_OFF,
141 SONG_EV_MIDI_CHANNEL,
142 SONG_EV_MIDI_PROGRAM,
144 SONG_EV_NOTE,
145 SONG_EV_SS_PITCH_STRETCH,
147 SONG_EV_NOTE_ON,
148 SONG_EV_NOTE_OFF,
150 SONG_EV_END
152 } song_ev_type;
154 struct song_ev_generic
156 song_ev_type type; /* event type */
157 double time; /* event time (1: whole note) */
158 int trk_id; /* track id */
161 struct song_ev_note
163 song_ev_type type; /* SONG_EV_NOTE */
164 double time;
165 int trk_id;
166 int note; /* MIDI-like note */
167 double len; /* note length (1: whole note) */
168 float vol; /* note volume (1: full volume) */
171 struct song_ev_tempo
173 song_ev_type type; /* SONG_EV_TEMPO */
174 double time;
175 int trk_id; /* always -1 */
176 double tempo; /* tempo in bpm */
179 struct song_ev_meter
181 song_ev_type type; /* SONG_EV_METER */
182 double time;
183 int trk_id; /* always -1 */
184 int num; /* meter numerator */
185 int den; /* meter denominator */
188 struct song_ev_ss_pitch_stretch
190 song_ev_type type; /* SONG_EV_SS_PITCH_STRETCH */
191 double time;
192 int trk_id;
193 int note; /* MIDI-like note (to find the wave) */
194 double len; /* note length (1: whole note) */
195 float vol; /* note volume (1: full volume) */
198 struct song_ev_ss_sustain
200 song_ev_type type; /* SONG_EV_SS_SUSTAIN */
201 double time;
202 int trk_id;
203 double sustain; /* sustain time (in msecs) */
206 struct song_ev_ss_vibrato
208 song_ev_type type; /* SONG_EV_SS_VIBRATO */
209 double time;
210 int trk_id;
211 double vib_depth; /* vibrato depth (in msecs) */
212 double vib_freq; /* vibrato frequency (in Hzs) */
215 struct song_ev_ss_channel
217 song_ev_type type; /* SONG_EV_SS_CHANNEL */
218 double time;
219 int trk_id;
220 int channel; /* channel */
221 float vol; /* volume */
224 struct song_ev_ss_wav
226 song_ev_type type; /* SONG_EV_SS_WAV */
227 double time;
228 int trk_id;
229 char * file; /* path to .wav file */
230 int base; /* MIDI-like base note */
231 int min; /* MIDI-like minimum note */
232 int max; /* MIDI-like maximum note */
233 double loop_start; /* start of loop */
234 double loop_end; /* end of loop */
237 struct song_ev_ss_pat
239 song_ev_type type; /* SONG_EV_SS_PAT */
240 double time;
241 int trk_id;
242 char * file; /* path to .pat file */
245 struct song_ev_ss_eff
247 song_ev_type type; /* effect type */
248 double time;
249 int trk_id;
250 int channel; /* channel */
251 double size; /* size of effect */
252 float gain; /* gain */
253 double depth; /* depth */
254 double freq; /* freq */
255 double phase; /* phase */
256 float initial; /* initial vol */
257 float final; /* final vol */
260 struct song_ev_midi_channel
262 song_ev_type type; /* SONG_EV_MIDI_CHANNEL */
263 double time;
264 int trk_id;
265 int channel; /* midi channel (1-16) */
268 struct song_ev_midi_program
270 song_ev_type type; /* SONG_EV_MIDI_PROGRAM */
271 double time;
272 int trk_id;
273 int program; /* midi program (0-127) */
276 union song_ev
278 struct song_ev_generic generic;
280 struct song_ev_tempo tempo;
281 struct song_ev_meter meter;
283 struct song_ev_note note;
285 struct song_ev_ss_pitch_stretch ss_pitch_stretch;
286 struct song_ev_ss_sustain ss_sustain;
287 struct song_ev_ss_vibrato ss_vibrato;
288 struct song_ev_ss_channel ss_channel;
290 struct song_ev_ss_wav ss_wav;
291 struct song_ev_ss_pat ss_pat;
293 struct song_ev_ss_eff ss_eff;
295 struct song_ev_midi_channel midi_channel;
296 struct song_ev_midi_program midi_program;
300 /* GLOBALS */
302 /* in ss_core.c */
304 extern int ss_frequency;
305 extern int ss_interpolation;
306 extern int ss_nchannels;
307 extern int ss_debug;
309 /* in ss_output.c */
311 extern float ss_master_volume;
312 extern int ss_output_frames;
313 extern int ss_output_clipped;
314 extern float ss_optimal_volume;
316 /* in song.c */
318 extern union song_ev * song;
319 extern int n_song_ev;
322 /* MACROS */
324 /* milliseconds to frames conversion */
325 #define MS2F(ms) ((ms / 1000.0) * ss_frequency)
328 /* PROTOTYPES */
330 /* in ss_core.c */
332 double ss_note_frequency(int note);
333 struct ss_wave * ss_alloc_wave(int size, int n_channels, int s_rate);
334 float ss_get_sample(float * wave, double size, double offset);
335 double ss_tempo_from_wave(struct ss_wave * w, int note, double len);
336 double ss_pitch_from_tempo(struct ss_wave * w, double tempo, double len);
338 /* in ss_gen.c */
340 struct ss_gen * ss_gen_alloc(struct ss_gen ** q);
341 void ss_gen_free(struct ss_gen ** q, struct ss_gen * g);
342 void ss_gen_sustain(struct ss_gen * g, double sustain);
343 void ss_gen_vibrato(struct ss_gen * g, double depth, double freq);
344 void ss_gen_play(struct ss_gen * g, double freq, float vol, int note_id,
345 struct ss_wave * w);
346 void ss_gen_release(struct ss_gen * g);
347 int ss_gen_frame(struct ss_gen * g, int n_channels, float frame[]);
349 /* in ss_ins.c */
351 void ss_ins_init(struct ss_ins * i);
352 void ss_ins_add_layer(struct ss_ins * i, struct ss_wave * w);
353 struct ss_wave * ss_ins_find_layer(struct ss_ins * i, double freq, int * off);
354 void ss_ins_set_channel(struct ss_ins * i, int channel, float vol);
355 void ss_ins_set_sustain(struct ss_ins * i, double sustain);
356 void ss_ins_set_vibrato(struct ss_ins * i, double depth, double freq);
357 int ss_ins_play(struct ss_ins * i, double freq, float vol, int note_id,
358 struct ss_wave * w);
359 int ss_ins_note_on(struct ss_ins * i, int note, float vol, int note_id);
360 void ss_ins_note_off(struct ss_ins * i, int note_id);
361 void ss_ins_frame(struct ss_ins * i, float frame[]);
363 /* in ss_output.c */
365 int ss_output_open(char * drvname, char * filename);
366 void ss_output_init_frame(float samples[]);
367 int ss_output_write(float samples[]);
368 void ss_output_close(void);
370 /* in ss_input.c */
372 struct ss_wave * ss_load_wav_file(char * file,
373 double base_freq, double min_freq, double max_freq,
374 double loop_start, double loop_end);
375 int ss_load_pat_file(struct ss_ins * i, char * file);
377 /* in ss_eff.c */
379 void ss_eff_delay(struct ss_eff ** ec, double size);
380 void ss_eff_echo(struct ss_eff ** ec, double size, float gain);
381 void ss_eff_comb(struct ss_eff ** ec, double size, float gain);
382 void ss_eff_allpass(struct ss_eff ** ec, double size, float gain);
383 void ss_eff_flanger(struct ss_eff ** ec, double size, float gain,
384 double depth, double freq, double phase);
385 void ss_eff_wobble(struct ss_eff ** ec, double freq, double phase);
386 void ss_eff_square_wobble(struct ss_eff ** ec, double freq, double phase);
387 void ss_eff_fader(struct ss_eff ** ec, double size, float initial, float final);
388 void ss_eff_reverb(struct ss_eff ** ec);
390 float ss_eff_process(struct ss_eff * e, float s);
391 void ss_eff_off(struct ss_eff ** ec);
393 /* in song.c */
395 void song_clear(void);
396 void add_song_ev(union song_ev * ev);
397 void song_sort(void);
399 /* in ss_song.c */
401 int ss_song_render(void);
403 /* in midi_song.c */
405 int midi_song_play(void);
407 /* in compiler.y */
409 int compile(char * code);
410 int compile_file(char * file);