The 'off' directive has been added, to set to off the effect chain
[ahxm.git] / compiler.y
blob2290ac7658d8341d1bbdab73c236ad38d9963d2b
1 %{
2 /*
4 Ann Hell Ex Machina - Music Software
5 Copyright (C) 2003/2005 Angel Ortega <angel@triptico.com>
7 compiler.y - Scripting language YACC parser
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License
11 as published by the Free Software Foundation; either version 2
12 of the License, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 http://www.triptico.com
27 #include "config.h"
29 #include <stdio.h>
30 #include <string.h>
31 #include <stdlib.h>
32 #include <math.h>
34 #include "ss_core.h" /* for ss_debug */
35 #include "song.h"
37 /*******************
38 Data
39 ********************/
41 int yylex(void);
42 void yyerror(char * s);
44 /* injecting code functions (defined in compiler.l) */
45 int push_code(char * code, int times, int dyn);
46 int push_code_from_file(char * file);
48 /* current track */
49 int _track;
51 /* current time */
52 double _cur_time;
54 /* note globals */
55 static double _length;
56 static int _octave;
57 static int _transpose;
58 static double _staccato;
59 static float _volume;
60 static double _gliss;
62 /* parser debugging */
64 #define DEBUGF if(ss_debug)printf
66 /* named blocks */
68 struct _named_block
70 char name[64];
71 char * block;
74 static struct _named_block * _named_blocks=NULL;
75 static int _n_named_blocks=0;
76 static int _named_blocks_size=0;
78 /* group info */
79 struct _group
81 double start;
82 double gliss;
83 double max;
86 static struct _group * _groups=NULL;
87 static int _n_groups=0;
88 static int _groups_size=0;
90 /* mark info */
91 struct _mark
93 char name[64];
94 double time;
97 static struct _mark * _marks=NULL;
98 static int _n_marks=0;
99 static int _marks_size=0;
101 /* arpeggiator */
102 struct _arp
104 double delay;
105 int transpose;
106 float volume;
107 int track;
110 static struct _arp * _arps=NULL;
111 static int _n_arps=0;
112 static int _arps_size=0;
114 static double _arp_delay;
115 static int _arp_transpose;
116 static float _arp_volume;
117 static int _arp_track;
119 int compiler_error=0;
121 extern int yyline;
123 /*******************
124 Code
125 ********************/
127 void _c_err(char * e1, char * e2, char * e3)
128 /* reports an error from the compiler */
130 printf("ahxm:");
131 if(e1 != NULL) printf(" %s", e1);
132 if(e2 != NULL) printf(" %s", e2);
133 if(e3 != NULL) printf(" %s", e3);
134 printf(" in line %d\n", yyline);
136 compiler_error++;
140 static void _forward(void)
141 /* moves forward current time by current length */
143 /* just add current length to time cursor */
144 _cur_time += _length;
146 /* quantizations could be done here */
150 /* named blocks */
152 static int _set_named_block(char * name, char * block)
153 /* sets a named block */
155 int n;
157 /* find first if block is previously defined */
158 for(n=0;n < _n_named_blocks;n++)
160 if(strcmp(name, _named_blocks[n].name) == 0)
162 free(_named_blocks[n].block);
163 break;
167 if(n == _n_named_blocks)
169 /* need to expand? */
170 if(_n_named_blocks == _named_blocks_size)
172 _named_blocks_size += 4;
174 _named_blocks=(struct _named_block *)
175 realloc(_named_blocks,
176 _named_blocks_size *
177 sizeof(struct _named_block));
180 _n_named_blocks++;
183 strncpy(_named_blocks[n].name, name, sizeof(_named_blocks[n].name));
184 _named_blocks[n].block=block;
186 return(1);
190 static void _insert_named_block(char * name)
191 /* inserts a named block */
193 int n;
195 for(n=0;n < _n_named_blocks;n++)
197 if(strcmp(name, _named_blocks[n].name) == 0)
199 push_code(_named_blocks[n].block, 1, 0);
200 return;
204 _c_err("block-not-found", name, NULL);
208 static int _insert_file(char * filename)
210 if(!push_code_from_file(filename))
212 _c_err("script-not-found", filename, NULL);
213 return(1);
216 return(0);
220 /* groups */
222 static int _push_group(void)
223 /* starts a new group of notes */
225 if(_n_groups == _groups_size)
227 _groups_size += 4;
229 _groups=(struct _group *) realloc(_groups,
230 _groups_size * sizeof(struct _group));
233 _groups[_n_groups].start=_cur_time;
234 _groups[_n_groups].gliss=0.0;
235 _groups[_n_groups].max=0.0;
237 _n_groups++;
239 return(1);
243 static int _next_group_part(void)
244 /* part delimiter */
246 if(_n_groups == 0)
248 _c_err("missing-start-of-group", NULL, NULL);
249 return(0);
252 /* store maximum frame */
253 if(_groups[_n_groups - 1].max < _cur_time)
254 _groups[_n_groups - 1].max=_cur_time;
256 /* add glissando delay */
257 _groups[_n_groups - 1].gliss += _gliss;
259 /* rewind */
260 _cur_time=_groups[_n_groups - 1].start + _groups[_n_groups - 1].gliss;
262 return(1);
266 static int _pop_group(void)
267 /* finishes a group, moving the frame to the end of the longer part */
269 if(_n_groups == 0)
271 _c_err("missing-start-of-group", NULL, NULL);
272 return(0);
275 _n_groups--;
277 _cur_time=_groups[_n_groups].max;
279 return(1);
283 /* marks */
285 static void _add_mark(char * name)
286 /* creates a new mark */
288 if(_n_marks == _marks_size)
290 _marks_size += 4;
292 _marks=(struct _mark *) realloc(_marks,
293 _marks_size * sizeof(struct _mark));
296 strncpy(_marks[_n_marks].name, name, sizeof(_marks[_n_marks].name));
297 _marks[_n_marks].time=_cur_time;
299 _n_marks++;
303 static void _find_mark(char * name, int set)
304 /* finds a mark by name, optionally moving time cursor there */
306 int n;
308 for(n=0;n < _n_marks;n++)
310 if(strcmp(_marks[n].name, name) == 0)
312 if(set)
314 if(_cur_time > _marks[n].time)
315 _c_err("mark-overpassed", name, NULL);
316 else
317 _cur_time=_marks[n].time;
319 else
320 if(_cur_time != _marks[n].time)
321 _c_err("mark-mismatch", name, NULL);
323 return;
327 _c_err("mark-not-found", name, NULL);
331 /* arpeggiator */
333 static void _arp_default(void)
334 /* resets arpeggiator values to the default ones */
336 _arp_delay=0.0;
337 _arp_transpose=0;
338 _arp_volume=1.0;
339 _arp_track=_track;
343 static void _add_arp(void)
344 /* adds an arpeggiator note */
346 /* if the note is exactly the same, do nothing */
347 if(_arp_delay == 0.0 && _arp_transpose == 0 &&
348 _arp_volume == 1.0 && _arp_track == _track)
349 return;
351 if(_n_arps == _arps_size)
353 _arps_size += 4;
355 _arps=(struct _arp *) realloc(_arps,
356 _arps_size * sizeof(struct _arp));
359 _arps[_n_arps].delay=_arp_delay;
360 _arps[_n_arps].transpose=_arp_transpose;
361 _arps[_n_arps].volume=_arp_volume;
362 _arps[_n_arps].track=_arp_track;
364 _n_arps++;
365 _arp_default();
369 /* song events */
371 static void _add_note_event(int note)
372 /* adds a note event */
374 int n;
375 int np;
376 union song_ev e;
378 /* calculate the note */
379 np=note + _transpose + (_octave * 12);
381 /* is note out of range? */
382 if(np < 0 || np > 127)
384 _c_err("note-out-of-range", NULL, NULL);
385 return;
388 e.note.type=SONG_EV_NOTE;
389 e.note.time=_cur_time;
390 e.note.trk_id=_track;
391 e.note.note=np;
392 e.note.len=_length * _staccato;
393 e.note.vol=_volume;
395 add_song_ev(&e);
397 printf("Note(%d): %lf %d %lf %lf\n",
398 _track, _cur_time, np, _length, _volume);
400 /* add arpeggiator repetitions */
401 for(n=0;n < _n_arps;n++)
403 e.note.time=_cur_time + _arps[n].delay;
404 e.note.trk_id=_arps[n].track;
405 e.note.note=np + _arps[n].transpose;
406 e.note.vol=_volume * _arps[n].volume;
408 add_song_ev(&e);
413 static void _add_tempo_event(int trk_id, double tempo)
415 union song_ev e;
417 e.tempo.type=SONG_EV_TEMPO;
418 e.tempo.time=_cur_time;
419 e.tempo.trk_id=trk_id;
420 e.tempo.tempo=tempo;
421 add_song_ev(&e);
425 static void _add_meter_event(int trk_id, int num, int den)
427 union song_ev e;
429 e.meter.type=SONG_EV_METER;
430 e.meter.time=_cur_time;
431 e.meter.trk_id=trk_id;
432 e.meter.num=num;
433 e.meter.den=den;
434 add_song_ev(&e);
437 static void _add_measure_event(void)
439 union song_ev e;
441 e.generic.type=SONG_EV_MEASURE;
442 e.generic.time=_cur_time;
443 e.generic.trk_id=-1;
444 add_song_ev(&e);
448 static void _add_ss_sustain_event(double sustain)
450 union song_ev e;
452 e.ss_sustain.type=SONG_EV_SS_SUSTAIN;
453 e.ss_sustain.time=_cur_time;
454 e.ss_sustain.trk_id=_track;
455 e.ss_sustain.sustain=sustain;
457 add_song_ev(&e);
461 static void _add_ss_wav_event(char * wav_file, int base, int min, int max,
462 double loop_start, double loop_end)
464 union song_ev e;
466 e.ss_wav.type=SONG_EV_SS_WAV;
467 e.ss_wav.time=_cur_time;
468 e.ss_wav.trk_id=_track;
469 e.ss_wav.file=wav_file;
470 e.ss_wav.base=base;
471 e.ss_wav.min=min;
472 e.ss_wav.max=max;
473 e.ss_wav.loop_start=loop_start;
474 e.ss_wav.loop_end=loop_end;
475 add_song_ev(&e);
479 static void _add_ss_pat_event(char * pat_file)
481 union song_ev e;
483 e.ss_pat.type=SONG_EV_SS_PAT;
484 e.ss_pat.time=_cur_time;
485 e.ss_pat.trk_id=_track;
486 e.ss_pat.file=pat_file;
488 add_song_ev(&e);
492 static void _add_ss_eff_event(int type, int channel, double size, float gain,
493 double depth, double freq, double phase, float initial, float final)
495 union song_ev e;
497 e.ss_eff.type=type;
498 e.ss_eff.time=_cur_time;
499 e.ss_eff.trk_id=_track;
500 e.ss_eff.channel=channel;
501 e.ss_eff.size=size;
502 e.ss_eff.gain=gain;
503 e.ss_eff.depth=depth;
504 e.ss_eff.freq=freq;
505 e.ss_eff.phase=phase;
506 e.ss_eff.initial=initial;
507 e.ss_eff.final=final;
509 add_song_ev(&e);
513 static void add_midi_channel_event(int channel)
515 union song_ev e;
517 e.midi_channel.type=SONG_EV_MIDI_CHANNEL;
518 e.midi_channel.time=_cur_time;
519 e.midi_channel.trk_id=_track;
520 e.midi_channel.channel=channel;
522 add_song_ev(&e);
526 static void add_midi_program_event(int program)
528 union song_ev e;
530 e.midi_program.type=SONG_EV_MIDI_PROGRAM;
531 e.midi_program.time=_cur_time;
532 e.midi_program.trk_id=_track;
533 e.midi_program.program=program;
535 add_song_ev(&e);
539 static void _init_track(void)
540 /* sets the default values for a new track */
542 _cur_time=0.0;
543 _length=0.0;
544 _transpose=0;
545 _staccato=0.8;
546 _volume=0.75;
547 _octave=5;
548 _gliss=0;
550 /* groups should not cross track boundaries */
551 _n_groups=0;
553 /* reset arpeggiator */
554 _n_arps=0;
555 _arp_default();
561 %union {
562 int i;
563 double d;
564 char * p;
567 %token <i> P_INTEGER S_INTEGER
568 %token <d> P_REAL S_REAL
569 %token <i> NOTE_P NOTE_T3 NOTE_T5
570 %token <p> NEW_MARK GOTO_MARK ASSERT_MARK
572 %token <p> BLOCK BLK_ASSIGN BLK_INSERT FILE_INSERT
574 %token <p> XC_STR
575 %token <i> XC_MSECS XC_ABSNOTE
577 %token SS_SEP SS_WAV SS_LOOP_WAV SS_PAT SS_SUSTAIN
578 %token SS_EFF_DELAY SS_EFF_ECHO SS_EFF_COMB SS_EFF_ALLPASS SS_EFF_FLANGER
579 %token SS_EFF_WOBBLE SS_EFF_SQWOBBLE SS_EFF_FADER SS_EFF_REVERB SS_EFF_OFF
581 %token MIDI_CHANNEL MIDI_PROGRAM MIDI_GENERIC
583 %type <i> integer note note_pitch rest
584 %type <d> real p_number number note_length
586 %type <d> arp_list arp_note
587 %type <i> xc_absnote
591 script:
592 script stmt { ; }
593 | /* NULL */
596 stmt:
597 note {
598 /* note event */
599 _add_note_event($1);
600 _forward();
602 | rest {
603 /* rest */
604 _forward();
606 | 'z' note_length {
607 /* zero note */
608 _length=$2;
610 | 'o' P_INTEGER {
611 /* absolute octave */
612 _octave=$2;
614 | 'o' S_INTEGER {
615 /* relative octave */
616 _octave += $2;
618 | 'v' P_INTEGER {
619 /* absolute volume */
620 _volume=(float)$2;
622 | 'v' P_REAL {
623 /* absolute volume */
624 _volume=(float)$2;
626 | 'v' S_REAL {
627 /* relative volume */
628 _volume += (float)$2;
630 | 't' integer {
631 /* transpose */
632 _transpose=$2;
634 | 's' p_number {
635 /* staccato */
636 _staccato=$2;
639 | '<' {
640 /* start of group */
641 _push_group();
643 | ';' {
644 /* group delimiter */
645 _next_group_part();
647 | '>' {
648 /* end of group */
649 _pop_group();
651 | 'l' note_length {
652 /* glissando */
653 _gliss=$2;
656 | '|' {
657 /* measure mark event */
658 _add_measure_event();
661 | NEW_MARK {
662 /* add new mark */
663 _add_mark($1);
665 | GOTO_MARK {
666 /* go to mark */
667 _find_mark($1, 1);
669 | ASSERT_MARK {
670 /* assert mark */
671 _find_mark($1, 0);
674 | '\\' {
675 /* new track */
677 _track++;
678 _init_track();
680 | 'T' p_number {
681 /* tempo setting */
682 _add_tempo_event(-1, $2);
684 | 'M' P_INTEGER '/' P_INTEGER {
685 /* meter (time signature) setting */
686 _add_meter_event(-1, $2, $4);
689 | BLOCK '*' P_INTEGER {
690 /* repeat block */
691 push_code($1, $3, 1);
693 | BLOCK BLK_ASSIGN {
694 /* assign block */
695 _set_named_block($2, $1);
697 | BLK_INSERT {
698 /* insert named block */
699 _insert_named_block($1);
701 | FILE_INSERT {
702 /* insert file */
703 _insert_file($1);
706 | arp { ; }
708 | xc_cmd { ; }
712 integer:
713 P_INTEGER { $$ = $1; }
714 | S_INTEGER { $$ = $1; }
717 real:
718 P_REAL { $$ = $1; }
719 | S_REAL { $$ = $1; }
722 p_number:
723 P_INTEGER { $$ = (double) $1; }
724 | P_REAL { $$ = $1; }
727 number:
728 integer { $$ = (double) $1; }
729 | real { $$ = $1; }
732 note:
733 note_pitch { $$ = $1; }
734 | note note_length { $$ = $1; _length=$2; }
735 | note '~' number { $$ = $1; DEBUGF("imm volume: %lf\n", $3); }
738 note_pitch:
739 NOTE_P { $$ = $1; }
740 | note_pitch '&' { $$ = $1 - 1; }
741 | note_pitch '#' { $$ = $1 + 1; }
742 | note_pitch '\'' { $$ = $1 + 12; }
743 | note_pitch ',' { $$ = $1 - 12; }
746 note_length:
747 P_INTEGER { $$ = 1 / (double) $1; }
748 | note_length NOTE_T3 { $$ = $1 * 2.0 / 3.0; }
749 | note_length NOTE_T5 { $$ = $1 * 4.0 / 5.0; }
750 | note_length '*' p_number { $$ = $1 * $3; }
751 | note_length '.' { $$ = $1 * 1.5; }
754 rest:
755 'r' { ; }
756 | rest note_length {
757 /* rest with length */
758 _length=$2;
762 arp:
763 'x' {
764 /* empty arpeggiator */
765 _n_arps=0;
766 _arp_default();
768 | 'x' arp_list { ; }
771 arp_list:
772 arp_note {
773 /* first arpeggiator note */
774 _n_arps=0;
775 _add_arp();
777 | arp_list ',' arp_note {
778 /* rest of arpeggiator notes */
779 _add_arp();
783 arp_note:
784 note_length {
785 /* arpeggiator delay */
786 _arp_delay=$1;
788 | arp_note '~' number {
789 /* arpeggiator volume */
790 _arp_volume=(float)$3;
792 | arp_note S_INTEGER {
793 /* arpeggiator transpose */
794 _arp_transpose=$2;
796 | arp_note '@' P_INTEGER {
797 /* arpeggiator track */
798 _arp_track=$3;
802 xc_absnote:
803 P_INTEGER { $$ = $1; }
804 | XC_ABSNOTE { $$ = $1; }
807 xc_cmd:
808 SS_WAV XC_STR xc_absnote xc_absnote xc_absnote {
809 /* load .wav file */
810 _add_ss_wav_event($2, $3, $4, $5, -1.0, -1.0);
812 | SS_WAV XC_STR xc_absnote xc_absnote xc_absnote number number {
813 /* load .wav file, with loop boundaries */
814 _add_ss_wav_event($2, $3, $4, $5, $6, $7);
816 | SS_PAT XC_STR {
817 /* load .pat file */
818 _add_ss_pat_event($2);
820 | SS_SUSTAIN XC_MSECS {
821 /* sets sustain */
822 _add_ss_sustain_event($2);
824 | SS_EFF_DELAY integer XC_MSECS {
825 /* delay effect */
826 _add_ss_eff_event(SONG_EV_SS_EFF_DELAY,
827 $2, $3, 0, 0, 0, 0, 0, 0);
830 | SS_EFF_ECHO integer XC_MSECS number {
831 /* echo effect */
832 _add_ss_eff_event(SONG_EV_SS_EFF_ECHO,
833 $2, $3, $4, 0, 0, 0, 0, 0);
836 | SS_EFF_COMB integer XC_MSECS number {
837 /* comb effect */
838 _add_ss_eff_event(SONG_EV_SS_EFF_COMB,
839 $2, $3, $4, 0, 0, 0, 0, 0);
842 | SS_EFF_ALLPASS integer XC_MSECS number {
843 /* allpass effect */
844 _add_ss_eff_event(SONG_EV_SS_EFF_ALLPASS,
845 $2, $3, $4, 0, 0, 0, 0, 0);
848 | SS_EFF_FLANGER integer XC_MSECS number XC_MSECS number number {
849 /* flanger effect */
850 _add_ss_eff_event(SONG_EV_SS_EFF_FLANGER,
851 $2, $3, $4, $5, $6, $7, 0, 0);
854 | SS_EFF_WOBBLE integer number number {
855 /* wobble effect */
856 _add_ss_eff_event(SONG_EV_SS_EFF_WOBBLE,
857 $2, 0, 0, 0, $3, $4, 0, 0);
860 | SS_EFF_SQWOBBLE integer number number {
861 /* square wobble effect */
862 _add_ss_eff_event(SONG_EV_SS_EFF_SQWOBBLE,
863 $2, 0, 0, 0, $3, $4, 0, 0);
866 | SS_EFF_FADER integer XC_MSECS number number {
867 /* fader effect */
868 _add_ss_eff_event(SONG_EV_SS_EFF_FADER,
869 $2, $3, 0, 0, 0, 0, $4, $5);
872 | SS_EFF_REVERB integer {
873 /* reverb effect */
874 _add_ss_eff_event(SONG_EV_SS_EFF_REVERB,
875 $2, 0, 0, 0, 0, 0, 0, 0);
878 | SS_EFF_OFF integer {
879 /* off effect */
880 _add_ss_eff_event(SONG_EV_SS_EFF_OFF,
881 $2, 0, 0, 0, 0, 0, 0, 0);
884 | MIDI_CHANNEL integer {
885 /* midi channel */
886 add_midi_channel_event($2);
889 | MIDI_PROGRAM integer {
890 /* midi program */
891 add_midi_program_event($2);
897 void yyerror(char * s)
899 _c_err(s, NULL, NULL);
902 #ifdef QQ
903 int main(void)
905 _init_track();
907 push_code("!this-is-a-mark", 1, 0);
908 push_code("< c1 ; e& ; g>", 1, 0);
909 push_code("^this-is-a-mark", 1, 0);
910 push_code("x4,2-1,2.+4", 1, 0);
911 push_code("a b'' c,, ", 1, 0);
912 push_code("v0.1 (d8 v+0.1)*10", 1, 0);
913 push_code("t1 t-2 t+3", 1, 0);
914 push_code("{ fader -1 100ms 0 1 } r r4. z2 `room_kit.ahs` o4 o+1 o-2 ", 1, 0);
915 push_code("{ sustain 100ms }", 1, 0);
916 push_code("T120.0 M4/4 z8 abcde T80 (edcba)=drum1 $drum1 $drum1 ((a&b)*3 (cd)*2)*10", 2, 0);
918 yyparse();
920 printf("Exiting main...\n");
921 exit(0);
923 #endif
925 static void compile_startup(void)
927 _track=0;
928 yyline=1;
929 compiler_error=0;
931 /* default settings */
932 _add_tempo_event(-2, 120.0);
933 _add_meter_event(-2, 4, 4);
934 _init_track();
938 int compile(char * code)
940 compile_startup();
942 push_code(code, 1, 0);
944 return(yyparse() + compiler_error);
948 int compile_file(char * file)
950 compile_startup();
952 if(_insert_file(file))
953 return(1);
955 return(yyparse() + compiler_error);