1 %{ // -*-Fundamental-*-
4 parser.yy -- Bison/C++ parser for LilyPond
6 source file of the GNU LilyPond music typesetter
8 (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 Jan Nieuwenhuizen <janneke@gnu.org>
12 /* Four shift/reduce problems
16 "bar" -> String -> Lyric -> Music -> music-assignment
18 "bar" -> String -> string-assignment
26 \repeat .. \alternative
27 \repeat { \repeat .. \alternative }
29 \repeat { \repeat } \alternative
39 * The rules for who is protecting what are very shady. Uniformise
42 * There are too many lexical modes?
51 #include "scm-option.hh"
52 #include "context-def.hh"
53 #include "lily-guile.hh"
55 #include "my-lily-lexer.hh"
56 #include "paper-def.hh"
57 #include "midi-def.hh"
59 #include "file-path.hh"
61 #include "dimensions.hh"
62 #include "my-lily-parser.hh"
64 #include "input-file-results.hh"
66 #include "lilypond-input-version.hh"
67 #include "scm-hash.hh"
68 #include "ly-module.hh"
69 #include "music-sequence.hh"
70 #include "input-smob.hh"
72 #include "text-item.hh"
73 #include "music-list.hh"
74 #include "paper-book.hh"
76 #define MY_MAKE_MUSIC(x) make_music_by_name (ly_symbol2scm (x))
78 Music *property_op_to_music (SCM op);
79 Music *context_spec_music (SCM type, SCM id, Music *m, SCM ops_);
80 SCM get_next_unique_context ();
82 #define YYERROR_VERBOSE 1
84 My_lily_parser* my_lily_parser;
85 #define YYPARSE_PARAM my_lily_parser
86 #define YYLEX_PARAM my_lily_parser
88 ((My_lily_parser *) my_lily_parser)
90 #define yyerror THIS->parser_error
92 /* Add symbols to the TAGS field of a music object. */
95 tag_music (Music *m, SCM tag, Input ip)
97 SCM tags = m->get_property ("tags");
98 if (gh_symbol_p (tag))
99 tags = scm_cons (tag, tags);
100 else if (gh_list_p (tag))
101 tags = gh_append2 (tag, tags);
103 ip.warning (_ ("Tag must be symbol or list of symbols."));
105 m->set_property ("tags", tags);
111 is_regular_identifier (SCM id)
113 String str = ly_scm2string (id);
114 char const *s = str.to_str0 ();
123 v = v && isalnum (*s);
130 make_simple_markup (SCM a)
132 SCM simple = ly_scheme_function ("simple-markup");
134 return scm_list_2 (simple, a);
139 is_is_duration (int t)
141 return t && t == 1 << intlog2 (t);
145 set_music_properties (Music *p, SCM a)
147 for (SCM k = a; gh_pair_p (k); k = ly_cdr (k))
149 p->internal_set_property (ly_caar (k), ly_cdar (k));
154 make_chord_step (int step, int alter)
161 Pitch m ((step -1) / 7, (step - 1) % 7, alter);
162 return m.smobbed_copy ();
167 make_chord (SCM pitch, SCM dur, SCM modification_list)
169 SCM chord_ctor = ly_scheme_function ("construct-chord");
170 SCM ch = scm_call_3 (chord_ctor, pitch, dur, modification_list);
171 scm_gc_protect_object (ch);
175 /* Todo: actually also use apply iso. call too ... */
177 ly_input_procedure_p (SCM x)
179 return gh_procedure_p (x)
180 || (gh_pair_p (x) && gh_procedure_p (gh_car (x)));
184 set_property_music (SCM sym, SCM value)
186 Music *p = MY_MAKE_MUSIC ("PropertySet");
187 p->set_property ("symbol", sym);
188 p->set_property ("value", value);
194 /* We use SCMs to do strings, because it saves us the trouble of
195 deleting them. Let's hope that a stack overflow doesnt trigger a move
196 of the parse stack onto the heap. */
203 Music_output_def *outputdef;
210 yylex (YYSTYPE *s, void *v)
212 My_lily_parser *pars = (My_lily_parser*) v;
213 My_lily_lexer *lex = pars->lexer_;
215 lex->lexval = (void*) s;
216 lex->prepare_for_next_token ();
217 return lex->yylex ();
239 %token CHORDMODIFIERS
244 %token COMMANDSPANREQUEST
252 %token FIGURES FIGURE_OPEN FIGURE_CLOSE
253 %token FIGURE_BRACKET_CLOSE FIGURE_BRACKET_OPEN
257 %token GROBDESCRIPTIONS
265 %token MULTI_MEASURE_REST
271 %token OVERRIDE SET REVERT
297 %token E_CHAR E_EXCLAMATION E_SMALLER E_BIGGER E_OPEN E_CLOSE
298 %token E_LEFTSQUARE E_RIGHTSQUARE E_TILDE
300 %token <i> E_UNSIGNED
301 %token CHORD_BASS CHORD_COLON CHORD_MINUS CHORD_CARET CHORD_SLASH
304 %type <i> exclamations questions dots optional_rest
306 %type <scm> grace_head
307 %type <scm> oct_check
308 %type <scm> context_mod_list
309 %type <scm> lyric_element
310 %type <scm> bass_number br_bass_figure bass_figure figure_list figure_spec
312 %token <scm> NOTENAME_PITCH
313 %token <scm> TONICNAME_PITCH
314 %token <scm> CHORDMODIFIER_PITCH
315 %token <scm> DURATION_IDENTIFIER
316 %token <scm> FRACTION
317 %token <id> IDENTIFIER
319 %token <scm> DRUM_PITCH
320 %token <scm> CHORD_MODIFIER
321 %token <scm> SCORE_IDENTIFIER
322 %token <scm> MUSIC_OUTPUT_DEF_IDENTIFIER
323 %token <scm> NUMBER_IDENTIFIER
324 %token <scm> EVENT_IDENTIFIER
325 %token <scm> MUSIC_IDENTIFIER CONTEXT_DEF_IDENTIFIER
326 %token <scm> STRING_IDENTIFIER SCM_IDENTIFIER
327 %token <scm> RESTNAME
334 %token <scm> MARKUP_HEAD_MARKUP0
335 %token <scm> MARKUP_HEAD_EMPTY
336 %token <scm> MARKUP_HEAD_MARKUP0_MARKUP1
337 %token <scm> MARKUP_HEAD_SCM0
338 %token <scm> MARKUP_HEAD_SCM0_MARKUP1
339 %token <scm> MARKUP_HEAD_SCM0_SCM1
340 %token <scm> MARKUP_HEAD_SCM0_SCM1_SCM2
341 %token <scm> MARKUP_HEAD_SCM0_SCM1_MARKUP2
343 %token <scm> MARKUP_IDENTIFIER MARKUP_HEAD_LIST0
344 %type <scm> markup markup_line markup_list markup_list_body full_markup
346 %type <outputdef> output_def
347 %type <scm> lilypond_header lilypond_header_body
348 %type <music> open_event close_event
349 %type <i> sub_quotes sup_quotes
350 %type <music> simple_element event_chord command_element Simple_music Composite_music
351 %type <music> Repeated_music
352 %type <scm> Alternative_music
353 %type <i> tremolo_type
354 %type <i> bare_int bare_unsigned
356 %type <scm> identifier_init
358 %type <music> note_chord_element chord_body chord_body_element
359 %type <scm> chord_body_elements
360 %type <scm> steno_duration optional_notemode_duration multiplied_duration
362 %type <scm> post_events
363 %type <music> gen_text_def direction_less_event direction_reqd_event
364 %type <scm> steno_pitch pitch absolute_pitch pitch_also_in_chords
365 %type <scm> steno_tonic_pitch
366 %type <scm> duration_length fraction
368 %type <scm> new_chord step_number chord_items chord_item chord_separator step_numbers
370 %type <scm> embedded_scm scalar
371 %type <music> Music Sequential_music Simultaneous_music
372 %type <music> relative_music re_rhythmed_music
373 %type <music> music_property_def context_change
374 %type <scm> context_prop_spec
375 %type <scm> Music_list
376 %type <scm> property_operation context_mod context_def_mod optional_context_mod
377 %type <outputdef> music_output_def_body music_output_def_head
378 %type <music> post_event tagged_post_event
379 %type <music> command_req
380 %type <music> string_number_event
381 %type <scm> string bare_number number_expression number_term number_factor
382 %type <score> score_block score_body
384 %type <scm> context_def_spec_block context_def_spec_body
385 %type <music> tempo_event
386 %type <scm> script_abbreviation
392 /* We don't assign precedence to / and *, because we might need varied
393 prec levels in different prods */
399 lilypond: /* empty */
400 | lilypond toplevel_expression {}
401 | lilypond assignment { }
403 THIS->error_level_ = 1;
406 THIS->error_level_ = 1;
412 THIS->input_file_->header_ = $1;
419 SCM head = ly_module_p (sc->header_) ? sc->header_ : THIS->input_file_->header_.to_SCM ();
421 Path p = split_path (THIS->output_basename_);
422 int *c = &THIS->input_file_->score_count_;
425 p.base += "-" + to_string (*c);
429 SCM outname = scm_makfrom0str (p.to_string ().to_str0());
431 for (int i = 0; i < sc->defs_.size (); i++)
432 default_rendering (sc->music_, sc->defs_[i]->self_scm (), head, outname);
434 if (sc->defs_.is_empty ())
436 Music_output_def *id = unsmob_music_output_def
437 (THIS->lexer_->lookup_identifier ("$defaultpaper"));
438 id = id ? id->clone () : new Paper_def;
439 default_rendering (sc->music_, id->self_scm (), head,
441 scm_gc_unprotect_object (id->self_scm ());
443 scm_gc_unprotect_object (sc->self_scm ());
447 if (dynamic_cast<Paper_def*> ($1))
448 id = scm_makfrom0str ("$defaultpaper");
449 else if (dynamic_cast<Midi_def*> ($1))
450 id = scm_makfrom0str ("$defaultmidi");
451 THIS->lexer_->set_identifier (id, $1->self_scm ());
452 scm_gc_unprotect_object ($1->self_scm ());
465 lilypond_header_body:
467 $$ = ly_make_anonymous_module ();
468 THIS->lexer_->add_scope ($$);
470 | lilypond_header_body assignment {
476 HEADER '{' lilypond_header_body '}' {
477 $$ = THIS->lexer_->remove_scope ();
489 /* cont */ '=' identifier_init {
492 Should find generic way of associating input with objects.
494 Input ip = THIS->pop_spot ();
496 if (! is_regular_identifier ($1))
498 ip.warning (_ ("Identifier should have alphabetic characters only"));
501 THIS->lexer_->set_identifier ($1, $4);
504 TODO: devise standard for protection in parser.
506 The parser stack lives on the C-stack, which means that
507 all objects can be unprotected as soon as they're here.
517 $$ = $1->self_scm ();
518 scm_gc_unprotect_object ($$);
524 $$ = $1->self_scm ();
525 scm_gc_unprotect_object ($$);
527 | context_def_spec_block {
531 $$ = $1->self_scm ();
532 scm_gc_unprotect_object ($$);
535 $$ = $1->self_scm ();
536 scm_gc_unprotect_object ($$);
538 | number_expression {
549 context_def_spec_block:
550 CONTEXT '{' context_def_spec_body '}'
556 context_def_spec_body:
558 $$ = Context_def::make_scm ();
559 unsmob_context_def ($$)->set_spot (THIS->here_input ());
561 | CONTEXT_DEF_IDENTIFIER {
563 unsmob_context_def ($$)->set_spot (THIS->here_input ());
565 | context_def_spec_body GROBDESCRIPTIONS embedded_scm {
566 Context_def*td = unsmob_context_def ($$);
568 for (SCM p = $3; gh_pair_p (p); p = ly_cdr (p)) {
569 SCM tag = gh_caar (p);
571 /* TODO: should make new tag "grob-definition" ? */
572 td->add_context_mod (scm_list_3 (ly_symbol2scm ("assign"),
573 tag, gh_cons (ly_cdar (p), SCM_EOL)));
576 | context_def_spec_body context_mod {
577 unsmob_context_def ($$)->add_context_mod ($2);
588 /*cont*/ '{' score_body '}' {
599 $$->set_spot (THIS->here_input ());
600 SCM m = $1->self_scm ();
601 scm_gc_unprotect_object (m);
606 SCM check_funcs = ly_scheme_function ("toplevel-music-functions");
607 for (; gh_pair_p (check_funcs); check_funcs = gh_cdr (check_funcs))
608 m = gh_call1 (gh_car (check_funcs), m);
613 $$ = new Score ( *unsmob_score ($1));
614 $$->set_spot (THIS->here_input ());
616 | score_body lilypond_header {
619 | score_body output_def {
621 scm_gc_unprotect_object ($2->self_scm ());
633 music_output_def_body '}' {
635 THIS-> lexer_-> remove_scope ();
639 music_output_def_head:
641 Music_output_def *id = unsmob_music_output_def (THIS->lexer_->lookup_identifier ("$defaultmidi"));
646 p = dynamic_cast<Midi_def*> (id->clone ());
651 THIS->lexer_->add_scope (p->scope_);
654 Music_output_def *id = unsmob_music_output_def (THIS->lexer_->lookup_identifier ("$defaultpaper"));
657 p = dynamic_cast<Paper_def*> (id->clone ());
661 THIS->lexer_->add_scope (p->scope_);
667 music_output_def_body:
668 music_output_def_head '{' {
670 $$->input_origin_. set_spot (THIS->here_input ());
673 | music_output_def_head '{' MUSIC_OUTPUT_DEF_IDENTIFIER {
674 scm_gc_unprotect_object ($1->self_scm ());
675 Music_output_def *o = unsmob_music_output_def ($3);
676 o->input_origin_.set_spot (THIS->here_input ());
678 THIS->lexer_->remove_scope ();
679 THIS->lexer_->add_scope (o->scope_);
681 | music_output_def_body assignment {
684 | music_output_def_body context_def_spec_block {
685 $$->assign_context_def ($2);
687 | music_output_def_body tempo_event {
689 junk this ? there already is tempo stuff in
692 int m = gh_scm2int ( $2->get_property ("metronome-count"));
693 Duration *d = unsmob_duration ($2->get_property ("tempo-unit"));
694 Midi_def *md = dynamic_cast<Midi_def*> ($$);
696 md->set_tempo (d->get_length (), m);
697 scm_gc_unprotect_object ($2->self_scm ());
699 | music_output_def_body error {
705 TEMPO steno_duration '=' bare_unsigned {
706 $$ = MY_MAKE_MUSIC ("MetronomeChangeEvent");
707 $$->set_property ("tempo-unit", $2);
708 $$->set_property ("metronome-count", gh_int2scm ( $4));
713 The representation of a list is the
717 to have efficient append.
721 $$ = scm_cons (SCM_EOL, SCM_EOL);
725 SCM c = scm_cons ($2->self_scm (), SCM_EOL);
726 scm_gc_unprotect_object ($2->self_scm ()); /* UGH */
727 if (gh_pair_p (ly_cdr (s)))
728 gh_set_cdr_x (ly_cdr (s), c); /* append */
730 gh_set_car_x (s, c); /* set first cons */
731 gh_set_cdr_x (s, c); /* remember last cell */
747 | ALTERNATIVE '{' Music_list '}' {
753 REPEAT string bare_unsigned Music Alternative_music
757 SCM alts = gh_pair_p ($5) ? gh_car ($5) : SCM_EOL;
758 if (times < scm_ilength (alts)) {
759 unsmob_music (gh_car (alts))
760 ->origin ()->warning (
761 _ ("More alternatives than repeats. Junking excess alternatives."));
762 alts = ly_truncate_list (times, alts);
766 SCM proc = ly_scheme_function ("make-repeated-music");
768 SCM mus = scm_call_1 (proc, $2);
769 scm_gc_protect_object (mus); // UGH.
770 Music *r = unsmob_music (mus);
773 r-> set_property ("element", beg->self_scm ());
774 scm_gc_unprotect_object (beg->self_scm ());
776 r->set_property ("repeat-count", gh_int2scm (times >? 1));
778 r-> set_property ("elements",alts);
779 if (gh_equal_p ($2, scm_makfrom0str ("tremolo"))) {
781 TODO: move this code to Scheme.
785 we can not get durations and other stuff correct down the line, so we have to
786 add to the duration log here.
788 SCM func = ly_scheme_function ("shift-duration-log");
790 int dots = ($3 % 3) ? 0 : 1;
791 int shift = -intlog2 ((dots) ? ($3*2/3) : $3);
793 Sequential_music *seq = dynamic_cast<Sequential_music*> ($4);
796 int list_len = scm_ilength (seq->music_list ());
798 seq->origin ()->warning ("Chord tremolo must have 2 elements.");
800 r->compress (Moment (Rational (1, list_len)));
802 gh_call3 (func, r->self_scm (), gh_int2scm (shift),gh_int2scm (dots));
805 r->set_spot (*$4->origin ());
812 SEQUENTIAL '{' Music_list '}' {
813 $$ = MY_MAKE_MUSIC ("SequentialMusic");
814 $$->set_property ("elements", ly_car ($3));
815 $$->set_spot (THIS->here_input ());
817 | '{' Music_list '}' {
818 $$ = MY_MAKE_MUSIC ("SequentialMusic");
819 $$->set_property ("elements", ly_car ($2));
820 $$->set_spot (THIS->here_input ());
825 SIMULTANEOUS '{' Music_list '}'{
826 $$ = MY_MAKE_MUSIC ("SimultaneousMusic");
827 $$->set_property ("elements", ly_car ($3));
828 $$->set_spot (THIS->here_input ());
831 | simul_open Music_list simul_close {
832 $$ = MY_MAKE_MUSIC ("SimultaneousMusic");
833 $$->set_property ("elements", ly_car ($2));
834 $$->set_spot (THIS->here_input ());
839 event_chord { $$ = $1; }
840 | APPLYOUTPUT embedded_scm {
841 if (!ly_input_procedure_p ($2))
842 THIS->parser_error (_ ("\\applycontext takes function argument"));
843 $$ = MY_MAKE_MUSIC ("ApplyOutputEvent");
844 $$->set_property ("procedure", $2);
845 $$->set_spot (THIS->here_input ());
847 | APPLYCONTEXT embedded_scm {
848 if (!ly_input_procedure_p ($2))
849 THIS->parser_error (_ ("\\applycontext takes function argument"));
850 $$ = MY_MAKE_MUSIC ("ApplyContext");
851 $$->set_property ("procedure", $2);
852 $$->set_spot (THIS->here_input ());
855 $$ = unsmob_music ($1);
862 optional_context_mod:
863 /**/ { $$ = SCM_EOL; }
864 | WITH '{' context_mod_list '}' { $$ = $3; }
868 GRACE { $$ = scm_makfrom0str ("Grace"); }
869 | ACCIACCATURA { $$ = scm_makfrom0str ("Acciaccatura"); }
870 | APPOGGIATURA { $$ = scm_makfrom0str ("Appoggiatura"); }
874 /* */ { $$ = SCM_EOL; }
875 | context_mod_list context_mod {
876 $$ = gh_cons ($2, $1);
882 SCM proc = ly_scheme_function ("make-autochange-music");
884 SCM res = scm_call_1 (proc, $2->self_scm ());
885 scm_gc_unprotect_object ($2->self_scm ());
886 $$ = unsmob_music (res);
887 scm_gc_protect_object (res);
888 $$->set_spot (THIS->here_input ());
890 | PARTCOMBINE Music Music {
891 SCM proc = ly_scheme_function ("make-part-combine-music");
893 SCM res = scm_call_1 (proc, gh_list ($2->self_scm (),
894 $3->self_scm (), SCM_UNDEFINED));
895 scm_gc_unprotect_object ($3->self_scm ());
896 scm_gc_unprotect_object ($2->self_scm ());
897 $$ = unsmob_music (res);
898 scm_gc_protect_object (res);
899 $$->set_spot (THIS->here_input ());
904 The other version is for easier debugging of
905 Sequential_music_iterator in combination with grace notes.
910 TODO: should distinguish between both grace types in the
911 basic music objects too, since the meaning is different.
915 String start_str = "start" + ly_scm2string ($1) + "Music";
916 String stop_str = "stop" + ly_scm2string ($1) + "Music";
918 SCM start = THIS->lexer_->lookup_identifier (start_str);
919 SCM stop = THIS->lexer_->lookup_identifier (stop_str);
921 Music *startm = unsmob_music (start);
922 Music *stopm = unsmob_music (stop);
926 stopm = stopm->clone ();
927 ms = scm_cons (stopm->self_scm (), ms);
928 scm_gc_unprotect_object (stopm->self_scm ());
930 ms = scm_cons ($2->self_scm (), ms);
931 scm_gc_unprotect_object ($2->self_scm ());
933 startm = startm->clone ();
934 ms = scm_cons (startm->self_scm (), ms);
935 scm_gc_unprotect_object (startm->self_scm ());
938 Music* seq = MY_MAKE_MUSIC ("SequentialMusic");
939 seq->set_property ("elements", ms);
942 $$ = MY_MAKE_MUSIC ("GraceMusic");
943 $$->set_property ("element", seq->self_scm ());
944 scm_gc_unprotect_object (seq->self_scm ());
946 $$ = MY_MAKE_MUSIC ("GraceMusic");
947 $$->set_property ("element", $2->self_scm ());
948 scm_gc_unprotect_object ($2->self_scm ());
951 | CONTEXT string '=' string optional_context_mod Music {
952 $$ = context_spec_music ($2, $4, $6, $5);
955 | CONTEXT STRING optional_context_mod Music {
956 $$ = context_spec_music ($2, SCM_UNDEFINED, $4, $3);
958 | NEWCONTEXT string optional_context_mod Music {
959 $$ = context_spec_music ($2, get_next_unique_context (),
970 int n = gh_scm2int (ly_car ($3)); int d = gh_scm2int (ly_cdr ($3));
973 $$= MY_MAKE_MUSIC ("TimeScaledMusic");
974 $$->set_spot (THIS->pop_spot ());
976 $$->set_property ("element", mp->self_scm ());
977 scm_gc_unprotect_object (mp->self_scm ());
978 $$->set_property ("numerator", gh_int2scm (n));
979 $$->set_property ("denominator", gh_int2scm (d));
980 $$->compress (Moment (Rational (n,d)));
983 | Repeated_music { $$ = $1; }
984 | Simultaneous_music { $$ = $1; }
985 | Sequential_music { $$ = $1; }
986 | TRANSPOSE pitch_also_in_chords pitch_also_in_chords Music {
987 $$ = MY_MAKE_MUSIC ("TransposedMusic");
989 Pitch from = *unsmob_pitch ($2);
990 Pitch to = *unsmob_pitch ($3);
992 p->transpose (interval (from, to));
993 $$->set_property ("element", p->self_scm ());
994 scm_gc_unprotect_object (p->self_scm ());
996 | APPLY embedded_scm Music {
997 if (!ly_input_procedure_p ($2))
999 THIS->parser_error (_ ("\\apply takes function argument"));
1004 SCM ret = gh_call1 ($2, $3->self_scm ());
1005 Music *m = unsmob_music (ret);
1007 THIS->parser_error ("\\apply must return a Music");
1008 m = MY_MAKE_MUSIC ("Music");
1015 SCM nn = THIS->lexer_->lookup_identifier ("pitchnames");
1016 THIS->lexer_->push_note_state (alist_to_hashq (nn));
1020 THIS->lexer_->pop_state ();
1024 SCM nn = THIS->lexer_->lookup_identifier ("drumPitchNames");
1025 THIS->lexer_->push_note_state (alist_to_hashq (nn));
1029 THIS->lexer_->pop_state ();
1032 { THIS->lexer_->push_figuredbass_state (); }
1035 Music *chm = MY_MAKE_MUSIC ("UntransposableMusic");
1036 chm->set_property ("element", $3->self_scm ());
1038 scm_gc_unprotect_object ($3->self_scm ());
1040 THIS->lexer_->pop_state ();
1043 SCM nn = THIS->lexer_->lookup_identifier ("chordmodifiers");
1044 THIS->lexer_->chordmodifier_tab_ = alist_to_hashq (nn);
1045 nn = THIS->lexer_->lookup_identifier ("pitchnames");
1046 THIS->lexer_->push_chord_state (alist_to_hashq (nn));
1049 Music *chm = MY_MAKE_MUSIC ("UnrelativableMusic");
1050 chm->set_property ("element", $3->self_scm ());
1051 scm_gc_unprotect_object ($3->self_scm ());
1054 THIS->lexer_->pop_state ();
1057 { THIS->lexer_->push_lyric_state (); }
1061 THIS->lexer_->pop_state ();
1063 | relative_music { $$ = $1; }
1064 | re_rhythmed_music { $$ = $1; }
1065 | TAG embedded_scm Music {
1066 tag_music ($3, $2, THIS->here_input ());
1072 RELATIVE absolute_pitch Music {
1074 Pitch pit = *unsmob_pitch ($2);
1075 $$ = MY_MAKE_MUSIC ("RelativeOctaveMusic");
1077 $$->set_property ("element", p->self_scm ());
1078 scm_gc_unprotect_object (p->self_scm ());
1081 Pitch retpitch = p->to_relative_octave (pit);
1082 if (lily_1_8_relative)
1083 $$->set_property ("last-pitch", retpitch.smobbed_copy ());
1088 ADDLYRICS Music Music {
1089 Music *l = MY_MAKE_MUSIC ("LyricCombineMusic");
1090 l->set_property ("elements", gh_list ($2->self_scm (), $3->self_scm (), SCM_UNDEFINED));
1091 scm_gc_unprotect_object ($3->self_scm ());
1092 scm_gc_unprotect_object ($2->self_scm ());
1095 | NEWADDLYRICS string Music {
1096 Music *l = MY_MAKE_MUSIC ("NewLyricCombineMusic");
1097 l->set_property ("element", $3->self_scm ());
1098 scm_gc_unprotect_object ($3->self_scm ());
1100 l->set_property ("associated-context", $2);
1105 CHANGE STRING '=' STRING {
1106 Music*t= MY_MAKE_MUSIC ("ContextChange");
1107 t-> set_property ("change-to-type", scm_string_to_symbol ($2));
1108 t-> set_property ("change-to-id", $4);
1111 $$->set_spot (THIS->here_input ());
1117 $$ = scm_list_3 (ly_symbol2scm ("assign"),
1118 scm_string_to_symbol ($1), $3);
1121 $$ = scm_list_2 (ly_symbol2scm ("unset"),
1122 scm_string_to_symbol ($2));
1124 | OVERRIDE STRING embedded_scm '=' embedded_scm {
1125 $$ = scm_list_4 (ly_symbol2scm ("push"),
1126 scm_string_to_symbol ($2), $3, $5);
1128 | REVERT STRING embedded_scm {
1129 $$ = scm_list_3 (ly_symbol2scm ("pop"),
1130 scm_string_to_symbol ($2), $3);
1135 CONSISTSEND { $$ = ly_symbol2scm ("consists-end"); }
1136 | CONSISTS { $$ = ly_symbol2scm ("consists"); }
1137 | REMOVE { $$ = ly_symbol2scm ("remove"); }
1139 | ACCEPTS { $$ = ly_symbol2scm ("accepts"); }
1140 | DENIES { $$ = ly_symbol2scm ("denies"); }
1142 | ALIAS { $$ = ly_symbol2scm ("alias"); }
1143 | TYPE { $$ = ly_symbol2scm ("translator-type"); }
1144 | DESCRIPTION { $$ = ly_symbol2scm ("description"); }
1145 | NAME { $$ = ly_symbol2scm ("context-name"); }
1149 property_operation { $$ = $1; }
1150 | context_def_mod STRING {
1151 $$ = scm_list_2 ($1, $2);
1157 $$ = scm_list_2 (ly_symbol2scm ("Bottom"), scm_string_to_symbol ($1));
1159 | STRING '.' STRING {
1160 $$ = scm_list_2 (scm_string_to_symbol ($1), scm_string_to_symbol ($3));
1165 OVERRIDE context_prop_spec embedded_scm '=' scalar {
1166 $$ = property_op_to_music (scm_list_4 (
1167 ly_symbol2scm ("poppush"),
1170 $$= context_spec_music (gh_car ($2), SCM_UNDEFINED, $$, SCM_EOL);
1172 | REVERT context_prop_spec embedded_scm {
1173 $$ = property_op_to_music (scm_list_3 (
1174 ly_symbol2scm ("pop"),
1178 $$= context_spec_music (gh_car ($2), SCM_UNDEFINED, $$, SCM_EOL);
1180 | SET context_prop_spec '=' scalar {
1181 $$ = property_op_to_music (scm_list_3 (
1182 ly_symbol2scm ("assign"),
1185 $$= context_spec_music (gh_car ($2), SCM_UNDEFINED, $$, SCM_EOL);
1187 | UNSET context_prop_spec {
1188 $$ = property_op_to_music (scm_list_2 (
1189 ly_symbol2scm ("unset"),
1191 $$= context_spec_music (gh_car ($2), SCM_UNDEFINED, $$, SCM_EOL);
1193 | ONCE music_property_def {
1194 SCM e = $2->get_property ("element");
1195 unsmob_music (e)->set_property ("once", SCM_BOOL_T);
1205 | bare_int { $$ = gh_int2scm ($1); }
1206 | embedded_scm { $$ = $1; }
1207 | full_markup { $$ = $1; }
1208 | DIGIT { $$ = gh_int2scm ($1); }
1214 Adding pre_events to the simple_element
1215 makes the choice between
1221 simple_element: STRING
1223 a single shift/reduction conflict.
1225 nevertheless, this is not very clean, and we should find a different
1235 pre_events simple_element post_events {
1236 SCM elts = $2-> get_property ("elements");
1238 elts = gh_append2 (elts, scm_reverse_x ($3, SCM_EOL));
1240 $2->set_property ("elements", elts);
1244 | note_chord_element
1249 chord_body optional_notemode_duration post_events
1251 SCM dur = unsmob_duration ($2)->smobbed_copy ();
1252 SCM es = $1->get_property ("elements");
1253 SCM postevs = scm_reverse_x ($3, SCM_EOL);
1255 for (SCM s = es; gh_pair_p (s); s = gh_cdr (s))
1256 unsmob_music (gh_car (s))->set_property ("duration", dur);
1257 es = gh_append2 (es, postevs);
1259 $1-> set_property ("elements", es);
1270 simul_open: LESSLESS
1273 simul_close: MOREMORE
1277 chord_open chord_body_elements chord_close
1279 $$ = MY_MAKE_MUSIC ("EventChord");
1280 $$->set_property ("elements",
1281 scm_reverse_x ($2, SCM_EOL));
1285 chord_body_elements:
1286 /* empty */ { $$ = SCM_EOL; }
1287 | chord_body_elements chord_body_element {
1288 $$ = gh_cons ($2->self_scm (), $1);
1289 scm_gc_unprotect_object ($2->self_scm ());
1294 pitch exclamations questions post_events
1296 Music *n = MY_MAKE_MUSIC ("NoteEvent");
1297 n->set_property ("pitch", $1);
1299 n->set_property ("cautionary", SCM_BOOL_T);
1300 if ($2 % 2 || $3 % 2)
1301 n->set_property ("force-accidental", SCM_BOOL_T);
1303 if (gh_pair_p ($4)) {
1304 SCM arts = scm_reverse_x ($4, SCM_EOL);
1305 n->set_property ("articulations", arts);
1309 | DRUM_PITCH post_events {
1310 Music *n = MY_MAKE_MUSIC ("NoteEvent");
1311 n->set_property ("duration", $2);
1312 n->set_property ("drum-type", $1);
1313 n->set_spot (THIS->here_input ());
1315 if (gh_pair_p ($2)) {
1316 SCM arts = scm_reverse_x ($2, SCM_EOL);
1317 n->set_property ("articulations", arts);
1324 ADDQUOTE string Music {
1325 SCM adder = ly_scheme_function ("add-quotable");
1327 scm_call_2 (adder, $2, $3->self_scm ());
1328 scm_gc_unprotect_object ($3->self_scm ());
1334 $$ = MY_MAKE_MUSIC ("EventChord");
1335 $$->set_property ("elements", scm_cons ($1->self_scm (), SCM_EOL));
1336 scm_gc_unprotect_object ($1->self_scm ());
1338 $$-> set_spot (THIS->here_input ());
1339 $1-> set_spot (THIS->here_input ());
1341 | SKIP duration_length {
1342 Music *skip = MY_MAKE_MUSIC ("SkipMusic");
1343 skip->set_property ("duration", $2);
1347 | QUOTE STRING duration_length {
1348 SCM tab = THIS->lexer_->lookup_identifier ("musicQuotes");
1350 if (scm_hash_table_p (tab) == SCM_BOOL_T)
1352 SCM key = $2; // use symbol?
1353 evs = scm_hash_ref (tab, key, SCM_BOOL_F);
1356 if (gh_vector_p (evs))
1358 quote = MY_MAKE_MUSIC ("QuoteMusic");
1359 quote->set_property ("duration", $3);
1360 quote->set_property ("quoted-events", evs);
1362 THIS->here_input ().warning (_f ("Can\'t find music"));
1363 quote = MY_MAKE_MUSIC ("Event");
1365 quote->set_spot (THIS->here_input ());
1368 | OCTAVE { THIS->push_spot (); }
1370 Music *l = MY_MAKE_MUSIC ("RelativeOctaveCheck");
1372 $$->set_spot (THIS->pop_spot ());
1373 $$->set_property ("pitch", $3);
1376 Music *l = MY_MAKE_MUSIC ("LigatureEvent");
1377 l->set_property ("span-direction", gh_int2scm (START));
1378 l->set_spot (THIS->here_input ());
1380 $$ = MY_MAKE_MUSIC ("EventChord");
1381 $$->set_property ("elements", scm_cons (l->self_scm (), SCM_EOL));
1382 scm_gc_unprotect_object (l->self_scm ());
1383 $$->set_spot (THIS->here_input ());
1386 Music *l = MY_MAKE_MUSIC ("LigatureEvent");
1387 l->set_property ("span-direction", gh_int2scm (STOP));
1388 l->set_spot (THIS->here_input ());
1390 $$ = MY_MAKE_MUSIC ("EventChord");
1391 $$->set_property ("elements", scm_cons (l->self_scm (), SCM_EOL));
1392 $$->set_spot (THIS->here_input ());
1393 scm_gc_unprotect_object (l->self_scm ());
1396 $$ = MY_MAKE_MUSIC ("VoiceSeparator");
1397 $$->set_spot (THIS->here_input ());
1401 $$ = MY_MAKE_MUSIC ("BarCheck");
1402 $$->set_spot (THIS->here_input ());
1404 | TRANSPOSITION pitch {
1405 $$ = set_property_music (ly_symbol2scm ("instrumentTransposition"),
1407 $$->set_spot (THIS-> here_input ());
1408 $$ = context_spec_music (ly_symbol2scm ("Staff"), SCM_UNDEFINED,
1412 Music *t = set_property_music (ly_symbol2scm ("whichBar"), $2);
1414 Music *csm = context_spec_music (ly_symbol2scm ("Timing"), SCM_UNDEFINED,
1416 $$ = context_spec_music (ly_symbol2scm ("Score"), SCM_UNDEFINED, csm, SCM_EOL);
1417 $$->set_spot (THIS->here_input ());
1418 t->set_spot (THIS->here_input ());
1420 | PARTIAL duration_length {
1421 Moment m = - unsmob_duration ($2)->get_length ();
1422 Music *p = set_property_music (ly_symbol2scm ( "measurePosition"),m.smobbed_copy ());
1423 p->set_spot (THIS->here_input ());
1424 p = context_spec_music (ly_symbol2scm ("Timing"), SCM_UNDEFINED,
1426 p = context_spec_music (ly_symbol2scm ("Score"), SCM_UNDEFINED,
1431 SCM proc = ly_scheme_function ("make-clef-set");
1433 SCM result = scm_call_1 (proc, $2);
1434 scm_gc_protect_object (result);
1435 $$ = unsmob_music (result);
1438 SCM proc= ly_scheme_function ("make-time-signature-set");
1440 SCM result = scm_apply_2 (proc, gh_car ($2), gh_cdr ($2), SCM_EOL);
1441 scm_gc_protect_object (result);
1442 $$ = unsmob_music (result);
1445 SCM proc = ly_scheme_function ("make-mark-set");
1447 SCM result = scm_call_1 (proc, $2);
1448 scm_gc_protect_object (result);
1449 $$ = unsmob_music (result);
1455 $$ = MY_MAKE_MUSIC ("BreathingSignEvent");
1458 $$ = MY_MAKE_MUSIC ("PesOrFlexaEvent");
1461 Music *m = MY_MAKE_MUSIC ("MarkEvent");
1468 Music *key= MY_MAKE_MUSIC ("KeyChangeEvent");
1471 | KEY NOTENAME_PITCH SCM_IDENTIFIER {
1473 Music *key= MY_MAKE_MUSIC ("KeyChangeEvent");
1474 if (scm_ilength ($3) > 0)
1476 key->set_property ("pitch-alist", $3);
1477 key->set_property ("tonic", Pitch (0,0,0).smobbed_copy ());
1478 ((Music*)key)->transpose (* unsmob_pitch ($2));
1480 THIS->parser_error (_ ("Second argument must be pitch list."));
1491 | post_events post_event {
1492 $2->set_spot (THIS->here_input ());
1493 $$ = gh_cons ($2->self_scm (), $$);
1494 scm_gc_unprotect_object ($2->self_scm ());
1496 | post_events tagged_post_event {
1497 $2 -> set_spot (THIS->here_input ());
1498 $$ = scm_cons ($2->self_scm (), $$);
1499 scm_gc_unprotect_object ($2->self_scm ());
1505 '-' TAG embedded_scm post_event {
1506 tag_music ($4, $3, THIS->here_input ());
1512 direction_less_event {
1516 if (!THIS->lexer_->is_lyric_state ())
1517 THIS->parser_error (_ ("Have to be in Lyric mode for lyrics"));
1518 $$ = MY_MAKE_MUSIC ("HyphenEvent");
1521 if (!THIS->lexer_->is_lyric_state ())
1522 THIS->parser_error (_ ("Have to be in Lyric mode for lyrics"));
1523 $$ = MY_MAKE_MUSIC ("ExtenderEvent");
1525 | script_dir direction_reqd_event {
1527 $2->set_property ("direction", gh_int2scm ($1));
1530 | script_dir direction_less_event {
1532 $2->set_property ("direction", gh_int2scm ($1));
1535 | string_number_event
1538 string_number_event:
1540 Music *s = MY_MAKE_MUSIC ("StringNumberEvent");
1541 s->set_property ("string-number", gh_int2scm ($1));
1542 s->set_spot (THIS->here_input ());
1548 direction_less_event:
1554 TODO: should take all these defs out of the parser, adn make use
1558 (set-articulation '~ "trill")
1561 Music *m = MY_MAKE_MUSIC ("BeamEvent");
1562 m->set_spot (THIS->here_input ());
1563 m->set_property ("span-direction", gh_int2scm (START));
1567 Music *m = MY_MAKE_MUSIC ("BeamEvent");
1568 m->set_spot (THIS->here_input ());
1569 m->set_property ("span-direction", gh_int2scm (STOP));
1573 Music *m = MY_MAKE_MUSIC ("TieEvent");
1574 m->set_spot (THIS->here_input ());
1579 dynamic_cast<Music *> ($$)->set_property ("span-direction",
1580 gh_int2scm (START));
1584 dynamic_cast<Music *> ($$)->set_property ("span-direction",
1587 | EVENT_IDENTIFIER {
1588 $$ = unsmob_music ($1);
1591 Music *a = MY_MAKE_MUSIC ("TremoloEvent");
1592 a->set_spot (THIS->here_input ());
1593 a->set_property ("tremolo-type", gh_int2scm ($1));
1598 direction_reqd_event:
1602 | script_abbreviation {
1603 SCM s = THIS->lexer_->lookup_identifier ("dash" + ly_scm2string ($1));
1604 Music *a = MY_MAKE_MUSIC ("ArticulationEvent");
1605 if (gh_string_p (s))
1606 a->set_property ("articulation-type", s);
1607 else THIS->parser_error (_ ("Expecting string as script definition"));
1613 /**/ { $$ = SCM_EOL; }
1614 | '=' { $$ = gh_int2scm (0); }
1615 | '=' sub_quotes { $$ = gh_int2scm ($2); }
1616 | '=' sup_quotes { $$ = gh_int2scm ($2); }
1641 | NOTENAME_PITCH sup_quotes {
1642 Pitch p = *unsmob_pitch ($1);
1643 p = p.transposed (Pitch ($2,0,0));
1644 $$ = p.smobbed_copy ();
1646 | NOTENAME_PITCH sub_quotes {
1647 Pitch p =* unsmob_pitch ($1);
1648 p = p.transposed (Pitch (-$2,0,0));
1649 $$ = p.smobbed_copy ();
1661 | TONICNAME_PITCH sup_quotes {
1662 Pitch p = *unsmob_pitch ($1);
1663 p = p.transposed (Pitch ($2,0,0));
1664 $$ = p.smobbed_copy ();
1666 | TONICNAME_PITCH sub_quotes {
1667 Pitch p =* unsmob_pitch ($1);
1669 p = p.transposed (Pitch (-$2,0,0));
1670 $$ = p.smobbed_copy ();
1680 pitch_also_in_chords:
1687 Music *s = MY_MAKE_MUSIC ("SlurEvent");
1689 s->set_spot (THIS->here_input ());
1692 Music *s = MY_MAKE_MUSIC ("PhrasingSlurEvent");
1694 s->set_spot (THIS->here_input ());
1697 Music *s = MY_MAKE_MUSIC ("CrescendoEvent");
1699 s->set_spot (THIS->here_input ());
1702 Music *s = MY_MAKE_MUSIC ("DecrescendoEvent");
1704 s->set_spot (THIS->here_input ());
1711 Music *s = MY_MAKE_MUSIC ("CrescendoEvent");
1712 s->set_spot (THIS->here_input ());
1717 Music *s= MY_MAKE_MUSIC ("SlurEvent");
1719 s->set_spot (THIS->here_input ());
1723 Music *s= MY_MAKE_MUSIC ("PhrasingSlurEvent");
1725 s->set_property ("span-type", scm_makfrom0str ( "phrasing-slur"));
1726 s->set_spot (THIS->here_input ());
1732 Music *t = MY_MAKE_MUSIC ("TextScriptEvent");
1733 t->set_property ("text", $1);
1734 t->set_spot (THIS->here_input ());
1738 Music *t = MY_MAKE_MUSIC ("TextScriptEvent");
1739 t->set_property ("text", make_simple_markup ($1));
1740 t->set_spot (THIS->here_input ());
1745 Music *t = MY_MAKE_MUSIC ("FingerEvent");
1746 t->set_property ("digit", gh_int2scm ($1));
1747 t->set_spot (THIS->here_input ());
1752 script_abbreviation:
1754 $$ = scm_makfrom0str ("Hat");
1757 $$ = scm_makfrom0str ("Plus");
1760 $$ = scm_makfrom0str ("Dash");
1763 $$ = scm_makfrom0str ("Bar");
1766 $$ = scm_makfrom0str ("Larger");
1769 $$ = scm_makfrom0str ("Dot");
1772 $$ = scm_makfrom0str ("Underscore");
1779 | '-' { $$ = CENTER; }
1790 multiplied_duration {
1795 optional_notemode_duration:
1797 Duration dd = THIS->default_duration_;
1798 $$ = dd.smobbed_copy ();
1800 THIS->beam_check ($$);
1802 | multiplied_duration {
1804 THIS->default_duration_ = *unsmob_duration ($$);
1806 THIS->beam_check ($$);
1811 bare_unsigned dots {
1813 if (!is_is_duration ($1))
1814 THIS->parser_error (_f ("not a duration: %d", $1));
1818 $$ = Duration (len, $2).smobbed_copy ();
1820 | DURATION_IDENTIFIER dots {
1821 Duration *d = unsmob_duration ($1);
1822 Duration k (d->duration_log (), d->dot_count () + $2);
1831 multiplied_duration:
1835 | multiplied_duration '*' bare_unsigned {
1836 $$ = unsmob_duration ($$)->compressed ( $3) .smobbed_copy ();
1838 | multiplied_duration '*' FRACTION {
1839 Rational m (gh_scm2int (ly_car ($3)), gh_scm2int (ly_cdr ($3)));
1841 $$ = unsmob_duration ($$)->compressed (m).smobbed_copy ();
1846 FRACTION { $$ = $1; }
1847 | UNSIGNED '/' UNSIGNED {
1848 $$ = scm_cons (gh_int2scm ($1), gh_int2scm ($3));
1866 | ':' bare_unsigned {
1867 if (!is_is_duration ($2))
1868 THIS->parser_error (_f ("not a duration: %d", $2));
1875 /*****************************************************************
1877 *****************************************************************/
1880 $$ = scm_number_to_string (gh_int2scm ($1), gh_int2scm (10));
1883 $$ = scm_number_to_string (gh_int2scm ($1), gh_int2scm (10));
1885 | STRING { $$ = $1; }
1896 Music *bfr = MY_MAKE_MUSIC ("BassFigureEvent");
1897 $$ = bfr->self_scm ();
1898 scm_gc_unprotect_object ($$);
1901 Music *bfr = MY_MAKE_MUSIC ("BassFigureEvent");
1902 $$ = bfr->self_scm ();
1904 bfr->set_property ("figure", $1);
1906 scm_gc_unprotect_object ($$);
1908 | bass_figure bass_mod {
1909 Music *m = unsmob_music ($1);
1911 SCM salter = m->get_property ("alteration");
1912 int alter = gh_number_p (salter) ? gh_scm2int (salter) : 0;
1913 m->set_property ("alteration",
1914 gh_int2scm (alter + $2));
1916 m->set_property ("alteration", gh_int2scm (0));
1924 unsmob_music ($$)->set_property ("bracket-start", SCM_BOOL_T);
1929 | br_bass_figure ']' {
1931 unsmob_music ($1)->set_property ("bracket-stop", SCM_BOOL_T);
1939 | figure_list br_bass_figure {
1940 $$ = scm_cons ($2, $1);
1945 FIGURE_OPEN figure_list FIGURE_CLOSE {
1946 Music *m = MY_MAKE_MUSIC ("EventChord");
1947 $2 = scm_reverse_x ($2, SCM_EOL);
1948 m->set_property ("elements", $2);
1949 $$ = m->self_scm ();
1960 pitch exclamations questions oct_check optional_notemode_duration optional_rest {
1962 Input i = THIS->pop_spot ();
1963 if (!THIS->lexer_->is_note_state ())
1964 THIS->parser_error (_ ("Have to be in Note mode for notes"));
1968 n = MY_MAKE_MUSIC ("RestEvent");
1970 n = MY_MAKE_MUSIC ("NoteEvent");
1972 n->set_property ("pitch", $1);
1973 n->set_property ("duration", $5);
1975 if (gh_number_p ($4))
1977 int q = gh_scm2int ($4);
1978 n->set_property ("absolute-octave", gh_int2scm (q-1));
1982 n->set_property ("cautionary", SCM_BOOL_T);
1983 if ($2 % 2 || $3 % 2)
1984 n->set_property ("force-accidental", SCM_BOOL_T);
1986 Music *v = MY_MAKE_MUSIC ("EventChord");
1987 v->set_property ("elements", scm_list_1 (n->self_scm ()));
1988 scm_gc_unprotect_object (n->self_scm ());
1994 | DRUM_PITCH optional_notemode_duration {
1995 Input i = THIS->pop_spot ();
1997 Music *n = MY_MAKE_MUSIC ("NoteEvent");
1998 n->set_property ("duration", $2);
1999 n->set_property ("drum-type", $1);
2001 Music *v = MY_MAKE_MUSIC ("EventChord");
2002 v->set_property ("elements", scm_list_1 (n->self_scm ()));
2003 scm_gc_unprotect_object (n->self_scm ());
2009 | figure_spec optional_notemode_duration {
2010 Music *m = unsmob_music ($1);
2011 Input i = THIS->pop_spot ();
2013 for (SCM s = m->get_property ("elements"); gh_pair_p (s); s = ly_cdr (s))
2015 unsmob_music (ly_car (s))->set_property ("duration", $2);
2019 | RESTNAME optional_notemode_duration {
2021 Input i = THIS->pop_spot ();
2023 if (ly_scm2string ($1) == "s") {
2025 ev = MY_MAKE_MUSIC ("SkipEvent");
2028 ev = MY_MAKE_MUSIC ("RestEvent");
2031 ev->set_property ("duration", $2);
2033 Music *velt = MY_MAKE_MUSIC ("EventChord");
2034 velt->set_property ("elements", scm_list_1 (ev->self_scm ()));
2037 scm_gc_unprotect_object (ev->self_scm ());
2041 | MULTI_MEASURE_REST optional_notemode_duration {
2044 SCM proc = ly_scheme_function ("make-multi-measure-rest");
2045 SCM mus = scm_call_2 (proc, $2,
2046 make_input (THIS->here_input ()));
2047 scm_gc_protect_object (mus);
2048 $$ = unsmob_music (mus);
2051 | lyric_element optional_notemode_duration {
2052 Input i = THIS->pop_spot ();
2053 if (!THIS->lexer_->is_lyric_state ())
2054 THIS->parser_error (_ ("Have to be in Lyric mode for lyrics"));
2056 Music *lreq = MY_MAKE_MUSIC ("LyricEvent");
2057 lreq->set_property ("text", $1);
2058 lreq->set_property ("duration",$2);
2060 Music *velt = MY_MAKE_MUSIC ("EventChord");
2061 velt->set_property ("elements", scm_list_1 (lreq->self_scm ()));
2068 if (!THIS->lexer_->is_chord_state ())
2069 THIS->parser_error (_ ("Have to be in Chord mode for chords"));
2070 $$ = unsmob_music ($1);
2075 full_markup { $$ = $1; }
2076 | STRING { $$ = $1; }
2080 steno_tonic_pitch optional_notemode_duration {
2081 $$ = make_chord ($1, $2, SCM_EOL);
2083 | steno_tonic_pitch optional_notemode_duration chord_separator chord_items {
2084 SCM its = scm_reverse_x ($4, SCM_EOL);
2085 $$ = make_chord ($1, $2, gh_cons ($3, its));
2093 | chord_items chord_item {
2094 $$ = gh_cons ($2, $$);
2100 $$ = ly_symbol2scm ("chord-colon");
2103 $$ = ly_symbol2scm ("chord-caret");
2105 | CHORD_SLASH steno_tonic_pitch {
2106 $$ = scm_list_2 (ly_symbol2scm ("chord-slash"), $2);
2108 | CHORD_BASS steno_tonic_pitch {
2109 $$ = scm_list_2 (ly_symbol2scm ("chord-bass"), $2);
2118 $$ = scm_reverse_x ($1, SCM_EOL);
2126 step_number { $$ = gh_cons ($1, SCM_EOL); }
2127 | step_numbers '.' step_number {
2128 $$ = gh_cons ($3, $$);
2134 $$ = make_chord_step ($1, 0);
2136 | bare_unsigned '+' {
2137 $$ = make_chord_step ($1, SHARP);
2139 | bare_unsigned CHORD_MINUS {
2140 $$ = make_chord_step ($1, FLAT);
2147 TODO: should deprecate in favor of Scheme?
2151 number_expression '+' number_term {
2152 $$ = scm_sum ($1, $3);
2154 | number_expression '-' number_term {
2155 $$ = scm_difference ($1, $3);
2164 | number_factor '*' number_factor {
2165 $$ = scm_product ($1, $3);
2167 | number_factor '/' number_factor {
2168 $$ = scm_divide ($1, $3);
2173 '-' number_factor { /* %prec UNARY_MINUS */
2174 $$ = scm_difference ($2, SCM_UNDEFINED);
2182 $$ = gh_int2scm ($1);
2187 | NUMBER_IDENTIFIER {
2190 | REAL NUMBER_IDENTIFIER {
2191 $$ = gh_double2scm (gh_scm2double ($1) *gh_scm2double ($2));
2193 | UNSIGNED NUMBER_IDENTIFIER {
2194 $$ = gh_double2scm ($1 *gh_scm2double ($2));
2210 if (scm_integer_p ($1) == SCM_BOOL_T)
2212 int k = gh_scm2int ($1);
2216 THIS->parser_error (_ ("need integer number arg"));
2230 | STRING_IDENTIFIER {
2233 | string '+' string {
2234 $$ = scm_string_append (scm_list_2 ($1, $3));
2241 | exclamations '!' { $$ ++; }
2246 | questions '?' { $$ ++; }
2256 { THIS->lexer_->push_markup_state (); }
2259 THIS->lexer_->pop_state ();
2265 This should be done more dynamically if possible.
2269 $$ = make_simple_markup ($1);
2271 | MARKUP_HEAD_EMPTY {
2272 $$ = scm_list_1 ($1);
2274 | MARKUP_HEAD_MARKUP0 markup {
2275 $$ = scm_list_2 ($1, $2);
2277 | MARKUP_HEAD_MARKUP0_MARKUP1 markup markup {
2278 $$ = scm_list_3 ($1, $2, $3);
2280 | MARKUP_HEAD_SCM0_MARKUP1 SCM_T markup {
2281 $$ = scm_list_3 ($1, $2, $3);
2286 | MARKUP_HEAD_LIST0 markup_list {
2287 $$ = scm_list_2 ($1,$2);
2289 | MARKUP_HEAD_SCM0 embedded_scm {
2290 $$ = scm_list_2 ($1, $2);
2292 | MARKUP_HEAD_SCM0_SCM1_MARKUP2 embedded_scm embedded_scm markup {
2293 $$ = scm_list_4 ($1, $2, $3, $4);
2295 | MARKUP_HEAD_SCM0_SCM1_SCM2 embedded_scm embedded_scm embedded_scm {
2296 $$ = scm_list_4 ($1, $2, $3, $4);
2298 | MARKUP_HEAD_SCM0_SCM1 embedded_scm embedded_scm {
2299 $$ = scm_list_3 ($1, $2, $3);
2301 | MARKUP_IDENTIFIER {
2304 | STRING_IDENTIFIER {
2310 chord_open markup_list_body chord_close { $$ = scm_reverse_x ($2, SCM_EOL); }
2314 '{' markup_list_body '}' {
2315 SCM line = ly_scheme_function ("line-markup");
2317 $$ = scm_list_2 (line, scm_reverse_x ($2, SCM_EOL));
2322 /**/ { $$ = SCM_EOL; }
2323 | markup_list_body markup {
2324 $$ = gh_cons ($2, $1);
2332 My_lily_parser::set_yydebug (bool )
2339 extern My_lily_parser *current_parser;
2342 My_lily_parser::do_yyparse ()
2344 current_parser = this;;
2345 yyparse ((void*)this);
2350 Should make this optional? It will also complain when you do
2354 which is entirely legitimate.
2356 Or we can scrap it. Barchecks should detect wrong durations, and
2357 skipTypesetting speeds it up a lot.
2361 My_lily_parser::beam_check (SCM dur)
2363 Duration *d = unsmob_duration (dur);
2364 if (unsmob_music (last_beam_start_) && d->duration_log () <= 2)
2366 Music *m = unsmob_music (last_beam_start_);
2367 m->origin ()->warning (_ ("Suspect duration found following this beam"));
2369 last_beam_start_ = SCM_EOL;
2377 It is a little strange to have this function in this file, but
2378 otherwise, we have to import music classes into the lexer.
2382 My_lily_lexer::try_special_identifiers (SCM *destination, SCM sid)
2384 if (gh_string_p (sid)) {
2386 return STRING_IDENTIFIER;
2387 } else if (gh_number_p (sid)) {
2389 return NUMBER_IDENTIFIER;
2390 } else if (unsmob_context_def (sid)) {
2391 *destination = unsmob_context_def (sid)->clone_scm ();
2392 return CONTEXT_DEF_IDENTIFIER;
2393 } else if (unsmob_score (sid)) {
2394 Score *sc = new Score (*unsmob_score (sid));
2395 *destination = sc->self_scm ();
2396 return SCORE_IDENTIFIER;
2397 } else if (Music *mus = unsmob_music (sid)) {
2398 mus = mus->clone ();
2399 *destination = mus->self_scm ();
2400 unsmob_music (*destination)->
2401 set_property ("origin", make_input (last_input_));
2402 return dynamic_cast<Event*> (mus)
2403 ? EVENT_IDENTIFIER : MUSIC_IDENTIFIER;
2404 } else if (unsmob_duration (sid)) {
2405 *destination = unsmob_duration (sid)->smobbed_copy ();
2406 return DURATION_IDENTIFIER;
2407 } else if (unsmob_music_output_def (sid)) {
2408 Music_output_def *p = unsmob_music_output_def (sid);
2411 *destination = p->self_scm ();
2412 return MUSIC_OUTPUT_DEF_IDENTIFIER;
2413 } else if (Text_item::markup_p (sid)) {
2415 return MARKUP_IDENTIFIER;
2422 property_op_to_music (SCM op)
2425 SCM tag = gh_car (op);
2426 SCM symbol = gh_cadr (op);
2427 SCM args = gh_cddr (op);
2428 SCM grob_val = SCM_UNDEFINED;
2429 SCM grob_sym = SCM_UNDEFINED;
2430 SCM val = SCM_UNDEFINED;
2432 if (tag == ly_symbol2scm ("assign"))
2434 m = MY_MAKE_MUSIC ("PropertySet");
2435 val = gh_car (args);
2437 else if (tag == ly_symbol2scm ("unset"))
2438 m = MY_MAKE_MUSIC ("PropertyUnset");
2439 else if (tag == ly_symbol2scm ("poppush")
2440 || tag == ly_symbol2scm ("push"))
2442 m = MY_MAKE_MUSIC ("OverrideProperty");
2443 grob_sym = gh_car (args);
2444 grob_val = gh_cadr (args);
2446 else if (tag == ly_symbol2scm ("pop")) {
2447 m = MY_MAKE_MUSIC ("RevertProperty");
2448 grob_sym = gh_car (args);
2451 m->set_property ("symbol", symbol);
2453 if (val != SCM_UNDEFINED)
2454 m->set_property ("value", val);
2455 if (grob_val != SCM_UNDEFINED)
2456 m->set_property ("grob-value", grob_val);
2458 if (grob_sym != SCM_UNDEFINED)
2460 bool itc = internal_type_checking_global_b;
2463 bool autobeam = gh_equal_p (symbol, ly_symbol2scm ("autoBeamSettings"));
2465 internal_type_checking_global_b = false;
2466 m->set_property ("grob-property", grob_sym);
2468 internal_type_checking_global_b = itc;
2471 if (op == ly_symbol2scm ("poppush"))
2472 m->set_property ("pop-first", SCM_BOOL_T);
2479 context_spec_music (SCM type, SCM id, Music *m, SCM ops)
2481 Music *csm = MY_MAKE_MUSIC ("ContextSpeccedMusic");
2483 csm->set_property ("element", m->self_scm ());
2484 scm_gc_unprotect_object (m->self_scm ());
2486 csm->set_property ("context-type",
2487 gh_symbol_p (type) ? type : scm_string_to_symbol (type));
2488 csm->set_property ("property-operations", ops);
2490 if (gh_string_p (id))
2491 csm->set_property ("context-id", id);
2497 get_next_unique_context ()
2499 static int new_context_count;
2502 snprintf (s, 1024, "uniqueContext%d", new_context_count ++);
2504 return scm_makfrom0str (s);