1 %{ // -*-Fundamental-*-
4 parser.yy -- Bison/C++ parser for lilypond
6 source file of the GNU LilyPond music typesetter
8 (c) 1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 Jan Nieuwenhuizen <janneke@gnu.org>
13 Two shift/reduce problems:
17 "bar" -> String -> Lyric -> Music -> music-assignment
19 "bar" -> String -> string-assignment
23 \repeat .. \alternative
26 \repeat { \repeat .. \alternative }
30 \repeat { \repeat } \alternative
42 * The rules for who is protecting what are very shady. Uniformise
45 * There are too many lexical modes?
54 #include "translator-def.hh"
55 #include "lily-guile.hh"
57 #include "my-lily-lexer.hh"
58 #include "paper-def.hh"
59 #include "midi-def.hh"
61 #include "file-path.hh"
63 #include "dimensions.hh"
64 #include "my-lily-parser.hh"
66 #include "input-file-results.hh"
68 #include "lilypond-input-version.hh"
69 #include "scm-hash.hh"
70 #include "auto-change-iterator.hh"
71 #include "ly-modules.hh"
72 #include "music-sequence.hh"
73 #include "input-smob.hh"
75 #include "text-item.hh"
76 #include "music-list.hh"
79 #define MY_MAKE_MUSIC(x) make_music_by_name (ly_symbol2scm (x))
83 #define YYERROR_VERBOSE 1
85 My_lily_parser* my_lily_parser;
86 #define YYPARSE_PARAM my_lily_parser
87 #define YYLEX_PARAM my_lily_parser
89 ((My_lily_parser *) my_lily_parser)
91 #define yyerror THIS->parser_error
98 regular_identifier_b (SCM id)
100 String str = ly_scm2string (id);
101 char const *s = str.to_str0 () ;
106 v = v && isalpha (*s);
113 make_simple_markup (SCM a)
117 simple = scm_c_eval_string ("simple-markup");
119 return scm_list_n (simple, a, SCM_UNDEFINED);
124 is_duration_b (int t)
126 return t && t == 1 << intlog2 (t);
130 set_music_properties (Music *p, SCM a)
132 for (SCM k = a; gh_pair_p (k); k = ly_cdr (k))
134 p->internal_set_mus_property (ly_caar (k), ly_cdar (k));
139 make_chord_step (int step, int alter)
144 /* ugh: fucks up above 13 */
145 Pitch m(step > 7 ? 1 : 0,(step - 1) % 7, alter);
146 return m.smobbed_copy ();
151 make_chord (SCM pitch, SCM dur, SCM modification_list)
153 static SCM chord_ctor;
155 chord_ctor= scm_c_eval_string ("construct-chord");
156 SCM ch= scm_call_3 (chord_ctor, pitch, dur, modification_list);
157 scm_gc_protect_object (ch);
162 Todo: actually also use apply iso. call too ...
165 ly_input_procedure_p (SCM x)
167 return gh_procedure_p (x)
168 || (gh_pair_p (x) && gh_procedure_p (gh_car (x)));
172 set_property_music (SCM sym, SCM value)
174 Music * p = MY_MAKE_MUSIC("PropertySet");
175 p->set_mus_property ("symbol", sym);
176 p->set_mus_property ("value", value);
182 /* We use SCMs to do strings, because it saves us the trouble of
183 deleting them. Let's hope that a stack overflow doesnt trigger a move
184 of the parse stack onto the heap. */
191 Music_output_def * outputdef;
198 yylex (YYSTYPE *s, void * v)
200 My_lily_parser *pars = (My_lily_parser*) v;
201 My_lily_lexer * lex = pars->lexer_;
203 lex->lexval = (void*) s;
204 lex->prepare_for_next_token();
205 return lex->yylex ();
213 /* tokens which are not keywords */
223 %token CHORDMODIFIERS
229 %token GROBDESCRIPTIONS
235 %token FIGURES FIGURE_OPEN FIGURE_CLOSE
236 %token FIGURE_BRACKET_CLOSE FIGURE_BRACKET_OPEN
244 %token MULTI_MEASURE_REST
255 %token OVERRIDE SET REVERT
265 %token COMMANDSPANREQUEST
267 %token OUTPUTPROPERTY
282 %token E_CHAR E_EXCLAMATION E_SMALLER E_BIGGER E_OPEN E_CLOSE
283 %token E_LEFTSQUARE E_RIGHTSQUARE E_TILDE
285 %token <i> E_UNSIGNED
286 %token CHORD_BASS CHORD_COLON CHORD_MINUS CHORD_CARET CHORD_SLASH
289 %type <i> exclamations questions dots optional_rest
291 %type <scm> bass_number br_bass_figure bass_figure figure_list figure_spec
293 %token <scm> NOTENAME_PITCH
294 %token <scm> TONICNAME_PITCH
295 %token <scm> CHORDMODIFIER_PITCH
296 %token <scm> DURATION_IDENTIFIER
297 %token <scm> FRACTION
298 %token <id> IDENTIFIER
299 %token <scm> CHORDNAMES
301 %token <scm> CHORD_MODIFIER
303 %token <scm> SCORE_IDENTIFIER
304 %token <scm> MUSIC_OUTPUT_DEF_IDENTIFIER
305 %token <scm> NUMBER_IDENTIFIER
306 %token <scm> EVENT_IDENTIFIER
307 %token <scm> MUSIC_IDENTIFIER TRANSLATOR_IDENTIFIER
308 %token <scm> STRING_IDENTIFIER SCM_IDENTIFIER
309 %token <scm> RESTNAME
316 %token <scm> MARKUP_HEAD_MARKUP0
317 %token <scm> MARKUP_HEAD_MARKUP0_MARKUP1
318 %token <scm> MARKUP_HEAD_SCM0
319 %token <scm> MARKUP_HEAD_SCM0_MARKUP1
320 %token <scm> MARKUP_HEAD_SCM0_SCM1
321 %token <scm> MARKUP_HEAD_SCM0_SCM1_SCM2
322 %token <scm> MARKUP_HEAD_SCM0_SCM1_MARKUP2
324 %token <scm> MARKUP_IDENTIFIER MARKUP_HEAD_LIST0
325 %type <scm> markup markup_line markup_list markup_list_body full_markup
327 %type <outputdef> output_def
328 %type <scm> lilypond_header lilypond_header_body
329 %type <music> open_event_parens close_event_parens open_event close_event
330 %type <music> event_with_dir event_that_take_dir verbose_event
331 %type <i> sub_quotes sup_quotes
332 %type <music> simple_element event_chord command_element Simple_music Composite_music
333 %type <music> Repeated_music
334 %type <scm> Alternative_music
335 %type <i> tremolo_type
336 %type <i> bare_int bare_unsigned
338 %type <scm> identifier_init
340 %type <music> note_chord_element chord_body chord_body_element
341 %type <scm> chord_body_elements
342 %type <scm> steno_duration optional_notemode_duration multiplied_duration
343 %type <scm> verbose_duration
345 %type <scm> pre_events post_events
346 %type <music> gen_text_def
347 %type <scm> steno_pitch pitch absolute_pitch pitch_also_in_chords
348 %type <scm> explicit_pitch steno_tonic_pitch
350 /* %type <scm> chord_additions chord_subtractions chord_notes chord_step */
351 /* %type <music> chord */
352 /* %type <scm> chord_note chord_inversion chord_bass */
353 %type <scm> duration_length fraction
355 %type <scm> new_chord step_number chord_items chord_item chord_separator step_numbers
357 %type <scm> embedded_scm scalar
358 %type <music> Music Sequential_music Simultaneous_music
359 %type <music> relative_music re_rhythmed_music part_combined_music
360 %type <music> property_def translator_change simple_property_def
361 %type <scm> Music_list
362 %type <outputdef> music_output_def_body
363 %type <music> shorthand_command_req
364 %type <music> post_event
365 %type <music> command_req verbose_command_req
366 %type <music> extender_req
367 %type <music> hyphen_req
368 %type <music> string_event
369 %type <scm> string bare_number number_expression number_term number_factor
370 %type <score> score_block score_body
372 %type <scm> translator_spec_block translator_spec_body
373 %type <music> tempo_event
374 %type <scm> notenames_body notenames_block chordmodifiers_block
375 %type <scm> script_abbreviation
381 /* We don't assign precedence to / and *, because we might need varied
382 prec levels in different prods */
388 lilypond: /* empty */
389 | lilypond toplevel_expression {}
390 | lilypond assignment { }
392 THIS->error_level_ = 1;
395 THIS->error_level_ = 1;
401 THIS->lexer_->pitchname_tab_ = $1;
403 | chordmodifiers_block {
404 THIS->lexer_->chordmodifier_tab_ = $1;
407 THIS->input_file_->header_ = $1;
410 THIS->input_file_->scores_.push ($1);
413 if (dynamic_cast<Paper_def*> ($1))
414 THIS->lexer_->set_identifier (scm_makfrom0str ("$defaultpaper"), $1->self_scm ());
415 else if (dynamic_cast<Midi_def*> ($1))
416 THIS->lexer_->set_identifier (scm_makfrom0str ("$defaultmidi"), $1->self_scm ());
426 chordmodifiers_block:
427 CHORDMODIFIERS notenames_body { $$ = $2; }
431 PITCHNAMES notenames_body { $$ = $2; }
436 int i = scm_ilength ($1);
438 SCM tab = scm_make_vector (gh_int2scm (i), SCM_EOL);
439 for (SCM s = $1; gh_pair_p (s); s = ly_cdr (s)) {
440 SCM pt = ly_cdar (s);
441 scm_hashq_set_x (tab, ly_caar (s), pt);
447 lilypond_header_body:
449 $$ = ly_make_anonymous_module ();
450 THIS->lexer_->add_scope ($$);
452 | lilypond_header_body assignment {
458 HEADER '{' lilypond_header_body '}' {
459 $$ = THIS->lexer_-> remove_scope();
471 /* cont */ '=' identifier_init {
474 Should find generic way of associating input with objects.
476 Input ip = THIS->pop_spot ();
478 if (! regular_identifier_b ($1))
480 ip.warning (_ ("Identifier should have alphabetic characters only"));
483 THIS->lexer_->set_identifier ($1, $4);
486 TODO: devise standard for protection in parser.
488 The parser stack lives on the C-stack, which means that
489 all objects can be unprotected as soon as they're here.
500 $$ = $1->self_scm ();
501 scm_gc_unprotect_object ($$);
507 $$ = $1->self_scm ();
508 scm_gc_unprotect_object ($$);
510 | translator_spec_block {
514 $$ = $1->self_scm ();
515 scm_gc_unprotect_object ($$);
518 $$ = $1->self_scm ();
519 scm_gc_unprotect_object ($$);
524 | number_expression {
535 translator_spec_block:
536 TRANSLATOR '{' translator_spec_body '}'
542 translator_spec_body:
543 TRANSLATOR_IDENTIFIER {
545 unsmob_translator_def ($$)-> set_spot (THIS->here_input ());
548 $$ = Translator_def::make_scm ();
549 Translator_def*td = unsmob_translator_def ($$);
550 td->translator_group_type_ = $2;
551 td->set_spot (THIS->here_input ());
553 | translator_spec_body DESCRIPTION string {
554 unsmob_translator_def ($$)->description_ = $3;
556 | translator_spec_body STRING '=' embedded_scm {
557 unsmob_translator_def ($$)->add_property_assign ($2, $4);
559 | translator_spec_body STRING OVERRIDE embedded_scm '=' embedded_scm {
560 unsmob_translator_def ($$)
561 ->add_push_property (scm_string_to_symbol ($2), $4, $6);
563 | translator_spec_body STRING SET embedded_scm '=' embedded_scm {
564 unsmob_translator_def ($$)
565 ->add_push_property (scm_string_to_symbol ($2), $4, $6);
567 | translator_spec_body STRING REVERT embedded_scm {
568 unsmob_translator_def ($$)->add_pop_property (
569 scm_string_to_symbol ($2), $4);
571 | translator_spec_body NAME STRING {
572 unsmob_translator_def ($$)->type_name_ = $3;
574 | translator_spec_body CONSISTS STRING {
575 unsmob_translator_def ($$)->add_element ($3);
577 | translator_spec_body ALIAS STRING {
578 Translator_def*td = unsmob_translator_def ($$);
579 td->type_aliases_ = scm_cons ($3, td->type_aliases_);
581 | translator_spec_body GROBDESCRIPTIONS embedded_scm {
582 Translator_def*td = unsmob_translator_def($$);
583 // td->add_property_assign (ly_symbol2scm ("allGrobDescriptions"), $3);
584 for (SCM p = $3; gh_pair_p (p); p = ly_cdr (p))
585 td->add_property_assign (scm_symbol_to_string (ly_caar (p)), ly_cdar (p));
587 | translator_spec_body CONSISTSEND STRING {
588 unsmob_translator_def ($$)->add_last_element ( $3);
590 | translator_spec_body ACCEPTS STRING {
591 unsmob_translator_def ($$)->set_acceptor ($3,true);
593 | translator_spec_body DENIES STRING {
594 unsmob_translator_def ($$)->set_acceptor ($3,false);
596 | translator_spec_body REMOVE STRING {
597 unsmob_translator_def ($$)->remove_element ($3);
608 /*cont*/ '{' score_body '}' {
611 if (!$$->defs_.size ())
613 Music_output_def *id =
614 unsmob_music_output_def (THIS->lexer_->lookup_identifier ("$defaultpaper"));
615 $$->add_output (id ? id->clone () : new Paper_def );
624 $$->set_spot (THIS->here_input ());
625 SCM m = $1->self_scm ();
626 scm_gc_unprotect_object (m);
631 SCM check_funcs = scm_c_eval_string ("toplevel-music-functions");
632 for (; gh_pair_p (check_funcs); check_funcs = gh_cdr (check_funcs))
633 m = gh_call1 (gh_car (check_funcs), m);
638 $$ = unsmob_score ($1);
639 $$->set_spot (THIS->here_input ());
641 | score_body lilypond_header {
644 | score_body output_def {
657 music_output_def_body '}' {
659 THIS-> lexer_-> remove_scope ();
663 music_output_def_body:
665 Music_output_def *id = unsmob_music_output_def (THIS->lexer_->lookup_identifier ("$defaultmidi"));
670 p = dynamic_cast<Midi_def*> (id->clone ());
675 THIS->lexer_->add_scope (p->scope_);
678 Music_output_def *id = unsmob_music_output_def (THIS->lexer_->lookup_identifier ("$defaultpaper"));
681 p = dynamic_cast<Paper_def*> (id->clone ());
685 THIS->lexer_->add_scope (p->scope_);
688 | PAPER '{' MUSIC_OUTPUT_DEF_IDENTIFIER {
689 Music_output_def * o = unsmob_music_output_def ($3);
692 THIS->lexer_->add_scope (o->scope_);
694 | MIDI '{' MUSIC_OUTPUT_DEF_IDENTIFIER {
695 Music_output_def * o = unsmob_music_output_def ($3);
698 THIS->lexer_->add_scope (o->scope_);
700 | music_output_def_body assignment {
703 | music_output_def_body translator_spec_block {
704 $$->assign_translator ($2);
706 | music_output_def_body tempo_event {
708 junk this ? there already is tempo stuff in
711 int m = gh_scm2int ( $2->get_mus_property ("metronome-count"));
712 Duration *d = unsmob_duration ($2->get_mus_property ("tempo-unit"));
713 Midi_def * md = dynamic_cast<Midi_def*> ($$);
715 md->set_tempo (d->get_length (), m);
717 | music_output_def_body error {
723 TEMPO steno_duration '=' bare_unsigned {
724 $$ = MY_MAKE_MUSIC("MetronomeChangeEvent");
725 $$->set_mus_property ("tempo-unit", $2);
726 $$->set_mus_property ("metronome-count", gh_int2scm ( $4));
731 The representation of a list is the
735 to have efficient append.
739 $$ = scm_cons (SCM_EOL, SCM_EOL);
743 SCM c = scm_cons ($2->self_scm (), SCM_EOL);
744 scm_gc_unprotect_object ($2->self_scm ()); /* UGH */
745 if (gh_pair_p (ly_cdr (s)))
746 gh_set_cdr_x (ly_cdr (s), c); /* append */
748 gh_set_car_x (s, c); /* set first cons */
749 gh_set_cdr_x (s, c) ; /* remember last cell */
765 | ALTERNATIVE '{' Music_list '}' {
771 REPEAT string bare_unsigned Music Alternative_music
775 SCM alts = gh_pair_p ($5) ? gh_car ($5) : SCM_EOL;
776 if (times < scm_ilength (alts)) {
777 unsmob_music (gh_car (alts))
778 ->origin ()->warning (
779 _("More alternatives than repeats. Junking excess alternatives."));
780 alts = ly_truncate_list (times, alts);
786 proc = scm_c_eval_string ("make-repeated-music");
788 SCM mus = scm_call_1 (proc, $2);
789 scm_gc_protect_object (mus); // UGH.
790 Music *r =unsmob_music (mus);
793 r-> set_mus_property ("element", beg->self_scm ());
794 scm_gc_unprotect_object (beg->self_scm ());
796 r->set_mus_property ("repeat-count", gh_int2scm (times >? 1));
798 r-> set_mus_property ("elements",alts);
799 if (gh_equal_p ($2, scm_makfrom0str ("tremolo"))) {
801 we can not get durations and other stuff correct down the line, so we have to
802 add to the duration log here.
807 func = scm_primitive_eval (ly_symbol2scm ("shift-duration-log"));
809 int dots = ($3 % 3) ? 0 : 1;
810 int shift = -intlog2 ((dots) ? ($3*2/3) : $3);
812 Sequential_music * seq = dynamic_cast<Sequential_music*> ($4);
815 int list_len =scm_ilength (seq->music_list ());
817 seq->origin ()->warning ("Chord tremolo must have 2 elements.");
819 r->compress (Moment (Rational (1,list_len)));
821 gh_call3 (func, r->self_scm (), gh_int2scm(shift),gh_int2scm(dots));
824 r->set_spot (*$4->origin ());
831 SEQUENTIAL '{' Music_list '}' {
832 $$ = MY_MAKE_MUSIC("SequentialMusic");
833 $$->set_mus_property ("elements", ly_car ($3));
834 $$->set_spot(THIS->here_input());
836 | '{' Music_list '}' {
837 $$ = MY_MAKE_MUSIC("SequentialMusic");
838 $$->set_mus_property ("elements", ly_car ($2));
839 $$->set_spot(THIS->here_input());
844 SIMULTANEOUS '{' Music_list '}'{
845 $$ = MY_MAKE_MUSIC("SimultaneousMusic");
846 $$->set_mus_property ("elements", ly_car ($3));
847 $$->set_spot(THIS->here_input());
850 | '<' Music_list '>' {
851 $$ = MY_MAKE_MUSIC("SimultaneousMusic");
852 $$->set_mus_property ("elements", ly_car ($2));
853 $$->set_spot(THIS->here_input());
858 event_chord { $$ = $1; }
859 | APPLYOUTPUT embedded_scm {
860 if (!ly_input_procedure_p ($2))
861 THIS->parser_error (_ ("\\applycontext takes function argument"));
862 $$ = MY_MAKE_MUSIC ("ApplyOutputEvent");
863 $$->set_mus_property ("procedure", $2);
864 $$->set_spot (THIS->here_input());
866 | APPLYCONTEXT embedded_scm {
867 if (!ly_input_procedure_p ($2))
868 THIS->parser_error (_ ("\\applycontext takes function argument"));
869 $$ = MY_MAKE_MUSIC ("ApplyContext");
870 $$->set_mus_property ("procedure", $2);
871 $$->set_spot (THIS->here_input());
873 | OUTPUTPROPERTY embedded_scm embedded_scm '=' embedded_scm {
875 if (!gh_symbol_p ($3))
877 THIS->parser_error (_ ("Second argument must be a symbol"));
879 /* Should check # args */
880 if (!gh_procedure_p (pred))
882 THIS->parser_error (_ ("First argument must be a procedure taking one argument"));
885 Music*m = MY_MAKE_MUSIC("OutputPropertySetMusic");
886 m->set_mus_property ("predicate", pred);
887 m->set_mus_property ("grob-property", $3);
888 m->set_mus_property ("grob-value", $5);
893 $$ = unsmob_music ($1);
901 CONTEXT STRING Music {
902 Music*csm =MY_MAKE_MUSIC("ContextSpeccedMusic");
904 csm->set_mus_property ("element", $3->self_scm ());
905 scm_gc_unprotect_object ($3->self_scm ());
907 csm->set_mus_property ("context-type",$2);
908 csm->set_mus_property ("context-id", scm_makfrom0str (""));
912 | AUTOCHANGE STRING Music {
913 Music*chm = MY_MAKE_MUSIC("AutoChangeMusic");
914 chm->set_mus_property ("element", $3->self_scm ());
915 chm->set_mus_property ("iterator-ctor", Auto_change_iterator::constructor_proc);
917 scm_gc_unprotect_object ($3->self_scm ());
918 chm->set_mus_property ("what", $2);
921 chm->set_spot (*$3->origin ());
926 The other version is for easier debugging of
927 Sequential_music_iterator in combination with grace notes.
930 SCM start = THIS->lexer_->lookup_identifier ("startGraceMusic");
931 SCM stop = THIS->lexer_->lookup_identifier ("stopGraceMusic");
932 Music *startm = unsmob_music (start);
933 Music *stopm = unsmob_music (stop);
937 stopm = stopm->clone ();
938 ms = scm_cons (stopm->self_scm (), ms);
939 scm_gc_unprotect_object (stopm->self_scm ());
941 ms = scm_cons ($2->self_scm (), ms);
942 scm_gc_unprotect_object ($2->self_scm());
944 startm = startm->clone ();
945 ms = scm_cons (startm->self_scm () , ms);
946 scm_gc_unprotect_object (startm->self_scm ());
950 Music* seq = MY_MAKE_MUSIC("SequentialMusic");
951 seq->set_mus_property ("elements", ms);
954 $$ = MY_MAKE_MUSIC("GraceMusic");
955 $$->set_mus_property ("element", seq->self_scm ());
956 scm_gc_unprotect_object (seq->self_scm ());
958 $$ = MY_MAKE_MUSIC("GraceMusic");
959 $$->set_mus_property ("element", $2->self_scm ());
960 scm_gc_unprotect_object ($2->self_scm ());
963 | CONTEXT string '=' string Music {
964 Music * csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
966 csm->set_mus_property ("element", $5->self_scm ());
967 scm_gc_unprotect_object ($5->self_scm ());
969 csm->set_mus_property ("context-type", $2);
970 csm->set_mus_property ("context-id", $4);
981 int n = gh_scm2int (ly_car ($3)); int d = gh_scm2int (ly_cdr ($3));
983 $$= MY_MAKE_MUSIC("TimeScaledMusic");
984 $$->set_spot (THIS->pop_spot ());
987 $$->set_mus_property ("element", mp->self_scm ());
988 scm_gc_unprotect_object (mp->self_scm ());
989 $$->set_mus_property ("numerator", gh_int2scm (n));
990 $$->set_mus_property ("denominator", gh_int2scm (d));
991 $$->compress (Moment (Rational (n,d)));
994 | Repeated_music { $$ = $1; }
995 | Simultaneous_music { $$ = $1; }
996 | Sequential_music { $$ = $1; }
997 | TRANSPOSE pitch_also_in_chords pitch_also_in_chords Music {
998 $$ = MY_MAKE_MUSIC("TransposedMusic");
1000 Pitch from = *unsmob_pitch ($2);
1001 Pitch to = *unsmob_pitch ($3);
1003 p->transpose (interval (from, to));
1004 $$->set_mus_property ("element", p->self_scm ());
1005 scm_gc_unprotect_object (p->self_scm ());
1007 | APPLY embedded_scm Music {
1008 if (!ly_input_procedure_p ($2))
1009 THIS->parser_error (_ ("\\apply takes function argument"));
1011 SCM ret = gh_call1 ($2, $3->self_scm ());
1012 Music *m = unsmob_music (ret);
1014 THIS->parser_error ("\\apply must return a Music");
1015 m = MY_MAKE_MUSIC("Music");
1020 { THIS->lexer_->push_note_state (); }
1023 THIS->lexer_->pop_state ();
1026 { THIS->lexer_->push_figuredbass_state (); }
1029 Music * chm = MY_MAKE_MUSIC("UntransposableMusic");
1030 chm->set_mus_property ("element", $3->self_scm ());
1032 scm_gc_unprotect_object ($3->self_scm());
1034 THIS->lexer_->pop_state ();
1037 { THIS->lexer_->push_chord_state (); }
1040 Music * chm = MY_MAKE_MUSIC("UnrelativableMusic");
1041 chm->set_mus_property ("element", $3->self_scm ());
1042 scm_gc_unprotect_object ($3->self_scm());
1045 THIS->lexer_->pop_state ();
1048 { THIS->lexer_->push_lyric_state (); }
1052 THIS->lexer_->pop_state ();
1054 | relative_music { $$ = $1; }
1055 | re_rhythmed_music { $$ = $1; }
1056 | part_combined_music { $$ = $1; }
1060 RELATIVE absolute_pitch Music {
1062 Pitch pit = *unsmob_pitch ($2);
1063 $$ = MY_MAKE_MUSIC("RelativeOctaveMusic");
1065 $$->set_mus_property ("element", p->self_scm ());
1066 scm_gc_unprotect_object (p->self_scm ());
1069 $$->set_mus_property ("last-pitch", p->to_relative_octave (pit).smobbed_copy ());
1075 ADDLYRICS Music Music {
1076 Music*l =MY_MAKE_MUSIC("LyricCombineMusic");
1077 l->set_mus_property ("elements", gh_list ($2->self_scm (), $3->self_scm (), SCM_UNDEFINED));
1078 scm_gc_unprotect_object ($3->self_scm ());
1079 scm_gc_unprotect_object ($2->self_scm ());
1084 part_combined_music:
1085 PARTCOMBINE STRING Music Music {
1086 Music * p= MY_MAKE_MUSIC("PartCombineMusic");
1087 p->set_mus_property ("what", $2);
1088 p->set_mus_property ("elements", gh_list ($3->self_scm (),$4->self_scm (), SCM_UNDEFINED));
1090 scm_gc_unprotect_object ($3->self_scm ());
1091 scm_gc_unprotect_object ($4->self_scm ());
1098 TRANSLATOR STRING '=' STRING {
1099 Music*t= MY_MAKE_MUSIC("TranslatorChange");
1100 t-> set_mus_property ("change-to-type", $2);
1101 t-> set_mus_property ("change-to-id", $4);
1104 $$->set_spot (THIS->here_input ());
1110 | ONCE simple_property_def {
1112 SCM e = $2->get_mus_property ("element");
1113 unsmob_music (e)->set_mus_property ("once", SCM_BOOL_T);
1117 simple_property_def:
1118 PROPERTY STRING '.' STRING '=' scalar {
1119 Music *t = set_property_music (scm_string_to_symbol ($4), $6);
1120 Music *csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
1122 csm->set_mus_property ("element", t->self_scm ());
1123 scm_gc_unprotect_object (t->self_scm ());
1126 $$->set_spot (THIS->here_input ());
1128 csm-> set_mus_property ("context-type", $2);
1130 | PROPERTY STRING '.' STRING UNSET {
1132 Music *t = MY_MAKE_MUSIC("PropertyUnset");
1133 t->set_mus_property ("symbol", scm_string_to_symbol ($4));
1135 Music *csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
1136 csm->set_mus_property ("element", t->self_scm ());
1137 scm_gc_unprotect_object (t->self_scm ());
1140 $$->set_spot (THIS->here_input ());
1142 csm-> set_mus_property ("context-type", $2);
1144 | PROPERTY STRING '.' STRING SET embedded_scm '=' embedded_scm {
1146 = gh_equal_p ($4, scm_makfrom0str ("autoBeamSettings"));
1147 bool itc = internal_type_checking_global_b;
1148 Music *t = MY_MAKE_MUSIC("OverrideProperty");
1149 t->set_mus_property ("symbol", scm_string_to_symbol ($4));
1150 t->set_mus_property ("pop-first", SCM_BOOL_T);
1152 internal_type_checking_global_b = false;
1153 t->set_mus_property ("grob-property", $6);
1155 internal_type_checking_global_b = itc;
1156 t->set_mus_property ("grob-value", $8);
1158 Music *csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
1159 csm->set_mus_property ("element", t->self_scm ());
1160 scm_gc_unprotect_object (t->self_scm ());
1162 $$->set_spot (THIS->here_input ());
1164 csm-> set_mus_property ("context-type", $2);
1166 | PROPERTY STRING '.' STRING OVERRIDE
1167 embedded_scm '=' embedded_scm
1173 = gh_equal_p ($4, scm_makfrom0str ("autoBeamSettings"));
1174 bool itc = internal_type_checking_global_b;
1176 Music *t = MY_MAKE_MUSIC("OverrideProperty");
1177 t->set_mus_property ("symbol", scm_string_to_symbol ($4));
1179 internal_type_checking_global_b = false;
1180 t->set_mus_property ("grob-property", $6);
1181 t->set_mus_property ("grob-value", $8);
1183 internal_type_checking_global_b = itc;
1185 Music *csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
1186 csm->set_mus_property ("element", t->self_scm ());
1187 scm_gc_unprotect_object (t->self_scm ());
1190 $$->set_spot (THIS->here_input ());
1192 csm-> set_mus_property ("context-type", $2);
1195 | PROPERTY STRING '.' STRING REVERT embedded_scm {
1196 Music *t = MY_MAKE_MUSIC("RevertProperty");
1198 = gh_equal_p ($4, scm_makfrom0str ("autoBeamSettings"));
1199 bool itc = internal_type_checking_global_b;
1201 t->set_mus_property ("symbol", scm_string_to_symbol ($4));
1203 internal_type_checking_global_b = false;
1204 t->set_mus_property ("grob-property", $6);
1206 internal_type_checking_global_b = itc;
1208 Music *csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
1209 csm->set_mus_property ("element", t->self_scm ());
1210 scm_gc_unprotect_object (t->self_scm ());
1213 $$->set_spot (THIS->here_input ());
1215 csm-> set_mus_property ("context-type", $2);
1222 | bare_int { $$ = gh_int2scm ($1); }
1223 | embedded_scm { $$ = $1; }
1224 | full_markup { $$ = $1; }
1225 | DIGIT { $$ = gh_int2scm ($1); }
1232 } /*cont */ simple_element post_events {
1233 SCM elts = $3-> get_mus_property ("elements");
1235 elts = gh_append3 (elts, scm_reverse_x ($1, SCM_EOL),
1236 scm_reverse_x ($4, SCM_EOL));
1238 $3-> set_mus_property ("elements", elts);
1242 | note_chord_element
1247 chord_body optional_notemode_duration post_events
1249 SCM dur = unsmob_duration ($2)->smobbed_copy();
1250 SCM es = $1->get_mus_property ("elements");
1251 SCM postevs = scm_reverse_x ($3, SCM_EOL);
1253 for (SCM s = es; gh_pair_p (s); s = gh_cdr (s))
1254 unsmob_music (gh_car(s))->set_mus_property ("duration", dur);
1255 es = gh_append2 (es, postevs);
1257 $1-> set_mus_property ("elements", es);
1263 CHORD_OPEN chord_body_elements CHORD_CLOSE
1265 $$ = MY_MAKE_MUSIC("EventChord");
1266 $$->set_mus_property ("elements",
1267 scm_reverse_x ($2, SCM_EOL));
1271 chord_body_elements:
1272 /* empty */ { $$ = SCM_EOL; }
1273 | chord_body_elements chord_body_element {
1274 $$ = gh_cons ($2->self_scm(), $1);
1275 scm_gc_unprotect_object ($2->self_scm());
1280 pitch exclamations questions post_events
1282 Music * n = MY_MAKE_MUSIC("NoteEvent");
1283 n->set_mus_property ("pitch", $1);
1285 n->set_mus_property ("cautionary", SCM_BOOL_T);
1286 if ($2 % 2 || $3 % 2)
1287 n->set_mus_property ("force-accidental", SCM_BOOL_T);
1289 SCM arts = scm_reverse_x ($4, SCM_EOL);
1290 n->set_mus_property ("articulations", arts);
1298 $$ = MY_MAKE_MUSIC("EventChord");
1299 $$->set_mus_property ("elements", scm_cons ($1->self_scm (), SCM_EOL));
1300 scm_gc_unprotect_object ($1->self_scm());
1302 $$-> set_spot (THIS->here_input ());
1303 $1-> set_spot (THIS->here_input ());
1306 Music *l = MY_MAKE_MUSIC("LigatureEvent");
1307 l->set_mus_property ("span-direction", gh_int2scm (START));
1308 l->set_spot (THIS->here_input ());
1310 $$ = MY_MAKE_MUSIC("EventChord");
1311 $$->set_mus_property ("elements", scm_cons (l->self_scm (), SCM_EOL));
1312 scm_gc_unprotect_object (l->self_scm());
1313 $$->set_spot (THIS->here_input ());
1316 Music *l = MY_MAKE_MUSIC("LigatureEvent");
1317 l->set_mus_property ("span-direction", gh_int2scm (STOP));
1318 l->set_spot (THIS->here_input ());
1320 $$ = MY_MAKE_MUSIC("EventChord");
1321 $$->set_mus_property ("elements", scm_cons (l->self_scm (), SCM_EOL));
1322 $$->set_spot (THIS->here_input ());
1323 scm_gc_unprotect_object (l->self_scm());
1326 $$ = MY_MAKE_MUSIC("VoiceSeparator");
1327 $$->set_spot (THIS->here_input ());
1331 $$ = MY_MAKE_MUSIC("BarCheck");
1332 $$->set_spot (THIS->here_input ());
1335 Music *t = set_property_music (ly_symbol2scm ("whichBar"), $2);
1337 Music *csm = MY_MAKE_MUSIC("ContextSpeccedMusic");
1338 csm->set_mus_property ("element", t->self_scm ());
1339 scm_gc_unprotect_object (t->self_scm ());
1342 $$->set_spot (THIS->here_input ());
1344 csm->set_mus_property ("context-type", scm_makfrom0str ("Timing"));
1346 | PARTIAL duration_length {
1347 Moment m = - unsmob_duration ($2)->get_length ();
1348 Music * p = set_property_music (ly_symbol2scm ( "measurePosition"),m.smobbed_copy ());
1350 Music * sp = MY_MAKE_MUSIC("ContextSpeccedMusic");
1351 sp->set_mus_property ("element", p->self_scm ());
1352 scm_gc_unprotect_object (p->self_scm ());
1355 sp-> set_mus_property ("context-type", scm_makfrom0str ("Timing"));
1360 proc = scm_c_eval_string ("make-clef-set");
1362 SCM result = scm_call_1 (proc, $2);
1363 scm_gc_protect_object (result);
1364 $$ = unsmob_music (result);
1369 proc = scm_c_eval_string ("make-time-signature-set");
1371 SCM result = scm_apply_2 (proc, gh_car ($2), gh_cdr ($2), SCM_EOL);
1372 scm_gc_protect_object (result);
1373 $$ = unsmob_music (result);
1378 shorthand_command_req { $$ = $1; }
1379 | verbose_command_req { $$ = $1; }
1382 shorthand_command_req:
1390 $$ = MY_MAKE_MUSIC("TieEvent");
1393 Music *b= MY_MAKE_MUSIC("BeamEvent");
1394 b->set_mus_property ("span-direction", gh_int2scm (START));
1397 THIS->last_beam_start_ = b->self_scm ();
1400 Music *b= MY_MAKE_MUSIC("BeamEvent");
1401 b->set_mus_property ("span-direction", gh_int2scm (STOP));
1405 $$ = MY_MAKE_MUSIC("BreathingSignEvent");
1408 $$ = MY_MAKE_MUSIC("PesOrFlexaEvent");
1412 verbose_command_req:
1414 Music * m = MY_MAKE_MUSIC("MarkEvent");
1418 Music *m = MY_MAKE_MUSIC("MarkEvent");
1419 m->set_mus_property ("label", $2);
1422 | SKIP duration_length {
1423 Music * skip = MY_MAKE_MUSIC("SkipEvent");
1424 skip->set_mus_property ("duration", $2);
1432 Music *key= MY_MAKE_MUSIC("KeyChangeEvent");
1435 | KEY NOTENAME_PITCH SCM_IDENTIFIER {
1437 Music *key= MY_MAKE_MUSIC("KeyChangeEvent");
1438 if (scm_ilength ($3) > 0)
1440 key->set_mus_property ("pitch-alist", $3);
1441 key->set_mus_property ("tonic", Pitch (0,0,0).smobbed_copy());
1442 ((Music*)key)->transpose (* unsmob_pitch ($2));
1444 THIS->parser_error (_("Second argument must be pitch list."));
1455 | post_events post_event {
1456 $2->set_spot (THIS->here_input ());
1457 $$ = gh_cons ($2->self_scm(), $$);
1458 scm_gc_unprotect_object ($2->self_scm());
1471 Music * s = MY_MAKE_MUSIC("StringNumberEvent");
1472 s->set_mus_property ("string-number", gh_int2scm($1));
1473 s->set_spot (THIS->here_input ());
1479 event_that_take_dir:
1485 Music * m = MY_MAKE_MUSIC ("NewBeamEvent");
1486 m->set_spot (THIS->here_input());
1487 m->set_mus_property ("span-direction" , gh_int2scm (START));
1491 Music * m = MY_MAKE_MUSIC ("NewBeamEvent");
1492 m->set_spot (THIS->here_input());
1493 m->set_mus_property ("span-direction" , gh_int2scm (STOP));
1497 Music * m = MY_MAKE_MUSIC ("NewTieEvent");
1498 m->set_spot (THIS->here_input());
1501 | script_abbreviation {
1502 SCM s = THIS->lexer_->lookup_identifier ("dash" + ly_scm2string ($1));
1503 Music *a = MY_MAKE_MUSIC("ArticulationEvent");
1504 if (gh_string_p (s))
1505 a->set_mus_property ("articulation-type", s);
1506 else THIS->parser_error (_ ("Expecting string as script definition"));
1512 script_dir event_that_take_dir {
1513 $2->set_mus_property ("direction", gh_int2scm ($1));
1520 $$ = unsmob_music ($1);
1523 Music * a = MY_MAKE_MUSIC("TremoloEvent");
1524 a->set_spot (THIS->here_input ());
1525 a->set_mus_property ("tremolo-type", gh_int2scm ($1));
1552 | NOTENAME_PITCH sup_quotes {
1553 Pitch p = *unsmob_pitch ($1);
1554 p = p.transposed (Pitch ($2,0,0));
1555 $$ = p.smobbed_copy ();
1557 | NOTENAME_PITCH sub_quotes {
1558 Pitch p =* unsmob_pitch ($1);
1559 p = p.transposed (Pitch (-$2,0,0));
1560 $$ = p.smobbed_copy ();
1572 | TONICNAME_PITCH sup_quotes {
1573 Pitch p = *unsmob_pitch ($1);
1574 p = p.transposed (Pitch ($2,0,0));
1575 $$ = p.smobbed_copy ();
1577 | TONICNAME_PITCH sub_quotes {
1578 Pitch p =* unsmob_pitch ($1);
1580 p = p.transposed (Pitch (-$2,0,0));
1581 $$ = p.smobbed_copy ();
1594 pitch_also_in_chords:
1600 PITCH embedded_scm {
1602 if (!unsmob_pitch ($2)) {
1603 THIS->parser_error (_f ("Expecting musical-pitch value", 3));
1604 $$ = Pitch ().smobbed_copy ();
1610 DURATION embedded_scm {
1612 if (!unsmob_duration ($2))
1614 THIS->parser_error (_ ("Must have duration object"));
1615 $$ = Duration ().smobbed_copy ();
1622 if (!THIS->lexer_->lyric_state_b ())
1623 THIS->parser_error (_ ("Have to be in Lyric mode for lyrics"));
1624 $$ = MY_MAKE_MUSIC("ExtenderEvent");
1630 if (!THIS->lexer_->lyric_state_b ())
1631 THIS->parser_error (_ ("Have to be in Lyric mode for lyrics"));
1632 $$ = MY_MAKE_MUSIC("HyphenEvent");
1637 close_event_parens {
1639 dynamic_cast<Music *> ($$)->set_mus_property ("span-direction", gh_int2scm (START))
1646 Music * s= MY_MAKE_MUSIC("SlurEvent");
1648 s->set_spot (THIS->here_input());
1651 Music * s= MY_MAKE_MUSIC("PhrasingSlurEvent");
1653 s->set_spot (THIS->here_input());
1656 Music *s =MY_MAKE_MUSIC("CrescendoEvent");
1658 s->set_spot (THIS->here_input());
1661 Music *s =MY_MAKE_MUSIC("DecrescendoEvent");
1663 s->set_spot (THIS->here_input());
1671 dynamic_cast<Music *> ($$)->set_mus_property ("span-direction", gh_int2scm (STOP))
1673 static int warn_count ;
1674 if (warn_count < 10)
1676 $$->origin ()->warning (_("Prefix articulations are deprecated. Use postfix notation instead."));
1684 Music *s = MY_MAKE_MUSIC("CrescendoEvent");
1685 s->set_spot (THIS->here_input());
1690 Music * s= MY_MAKE_MUSIC("SlurEvent");
1692 s->set_spot (THIS->here_input());
1696 Music * s= MY_MAKE_MUSIC("PhrasingSlurEvent");
1698 s->set_mus_property ("span-type", scm_makfrom0str ( "phrasing-slur"));
1699 s->set_spot (THIS->here_input());
1705 Music *t = MY_MAKE_MUSIC("TextScriptEvent");
1706 t->set_mus_property ("text", $1);
1707 t->set_spot (THIS->here_input ());
1711 Music *t = MY_MAKE_MUSIC("TextScriptEvent");
1712 t->set_mus_property ("text", $1);
1713 t->set_spot (THIS->here_input ());
1717 Music *t = MY_MAKE_MUSIC("TextScriptEvent");
1718 t->set_mus_property ("text", make_simple_markup ($1));
1719 t->set_spot (THIS->here_input ());
1724 Music * t = MY_MAKE_MUSIC("FingerEvent");
1725 t->set_mus_property ("digit", gh_int2scm ($1));
1726 t->set_spot (THIS->here_input ());
1731 script_abbreviation:
1733 $$ = scm_makfrom0str ("Hat");
1736 $$ = scm_makfrom0str ("Plus");
1739 $$ = scm_makfrom0str ("Dash");
1742 $$ = scm_makfrom0str ("Bar");
1745 $$ = scm_makfrom0str ("Larger");
1748 $$ = scm_makfrom0str ("Dot");
1751 $$ = scm_makfrom0str ("Underscore");
1758 | '-' { $$ = CENTER; }
1765 | pre_events open_event {
1766 $$ = gh_cons ($2->self_scm(), $$);
1767 scm_gc_unprotect_object ($2->self_scm());
1778 multiplied_duration {
1781 | verbose_duration {
1786 optional_notemode_duration:
1788 Duration dd = THIS->default_duration_;
1789 $$ = dd.smobbed_copy ();
1791 THIS->beam_check ($$);
1793 | multiplied_duration {
1795 THIS->default_duration_ = *unsmob_duration ($$);
1797 THIS->beam_check ($$);
1799 | verbose_duration {
1801 THIS->default_duration_ = *unsmob_duration ($$);
1806 bare_unsigned dots {
1808 if (!is_duration_b ($1))
1809 THIS->parser_error (_f ("not a duration: %d", $1));
1813 $$ = Duration (l, $2).smobbed_copy ();
1815 | DURATION_IDENTIFIER dots {
1816 Duration *d =unsmob_duration ($1);
1817 Duration k (d->duration_log (),d->dot_count () + $2);
1827 multiplied_duration:
1831 | multiplied_duration '*' bare_unsigned {
1832 $$ = unsmob_duration ($$)->compressed ( $3) .smobbed_copy ();
1834 | multiplied_duration '*' FRACTION {
1835 Rational m (gh_scm2int (ly_car ($3)), gh_scm2int (ly_cdr ($3)));
1837 $$ = unsmob_duration ($$)->compressed (m).smobbed_copy ();
1842 FRACTION { $$ = $1; }
1843 | UNSIGNED '/' UNSIGNED {
1844 $$ = scm_cons (gh_int2scm ($1), gh_int2scm ($3));
1862 | ':' bare_unsigned {
1863 if (!is_duration_b ($2))
1864 THIS->parser_error (_f ("not a duration: %d", $2));
1871 /*****************************************************************
1873 *****************************************************************/
1876 $$ = scm_number_to_string (gh_int2scm ($1), gh_int2scm (10));
1879 $$ = scm_number_to_string (gh_int2scm ($1), gh_int2scm (10));
1881 | STRING { $$ = $1 }
1892 Music *bfr = MY_MAKE_MUSIC("BassFigureEvent");
1893 $$ = bfr->self_scm();
1894 scm_gc_unprotect_object ($$);
1897 Music *bfr = MY_MAKE_MUSIC("BassFigureEvent");
1898 $$ = bfr->self_scm();
1900 bfr->set_mus_property ("figure", $1);
1902 scm_gc_unprotect_object ($$);
1904 | bass_figure bass_mod {
1905 Music *m = unsmob_music ($1);
1907 SCM salter =m->get_mus_property ("alteration");
1908 int alter = gh_number_p ( salter) ? gh_scm2int (salter) : 0;
1909 m->set_mus_property ("alteration",
1910 gh_int2scm (alter + $2));
1912 m->set_mus_property ("alteration", gh_int2scm (0));
1920 unsmob_music ($$)->set_mus_property ("bracket-start", SCM_BOOL_T);
1925 | br_bass_figure ']' {
1927 unsmob_music ($1)->set_mus_property ("bracket-stop", SCM_BOOL_T);
1935 | figure_list br_bass_figure {
1936 $$ = scm_cons ($2, $1);
1941 FIGURE_OPEN figure_list FIGURE_CLOSE {
1942 Music * m = MY_MAKE_MUSIC("EventChord");
1943 $2 = scm_reverse_x ($2, SCM_EOL);
1944 m->set_mus_property ("elements", $2);
1945 $$ = m->self_scm ();
1956 pitch exclamations questions optional_notemode_duration optional_rest {
1958 Input i = THIS->pop_spot ();
1959 if (!THIS->lexer_->note_state_b ())
1960 THIS->parser_error (_ ("Have to be in Note mode for notes"));
1964 n = MY_MAKE_MUSIC("RestEvent");
1966 n = MY_MAKE_MUSIC("NoteEvent");
1968 n->set_mus_property ("pitch", $1);
1969 n->set_mus_property ("duration", $4);
1973 n->set_mus_property ("cautionary", SCM_BOOL_T);
1974 if ($2 % 2 || $3 % 2)
1975 n->set_mus_property ("force-accidental", SCM_BOOL_T);
1977 Music *v = MY_MAKE_MUSIC("EventChord");
1978 v->set_mus_property ("elements", scm_list_n (n->self_scm (), SCM_UNDEFINED));
1979 scm_gc_unprotect_object (n->self_scm());
1985 | figure_spec optional_notemode_duration {
1986 Music * m = unsmob_music ($1);
1987 Input i = THIS->pop_spot ();
1989 for (SCM s = m->get_mus_property ("elements"); gh_pair_p (s); s = ly_cdr (s))
1991 unsmob_music (ly_car (s))->set_mus_property ("duration", $2);
1995 | RESTNAME optional_notemode_duration {
1997 Input i = THIS->pop_spot ();
1999 if (ly_scm2string ($1) =="s") {
2001 ev = MY_MAKE_MUSIC("SkipEvent");
2004 ev = MY_MAKE_MUSIC("RestEvent");
2007 ev->set_mus_property ("duration" ,$2);
2009 Music * velt = MY_MAKE_MUSIC("EventChord");
2010 velt->set_mus_property ("elements", scm_list_n (ev->self_scm (),SCM_UNDEFINED));
2015 | MULTI_MEASURE_REST optional_notemode_duration {
2020 proc = scm_c_eval_string ("make-multi-measure-rest");
2022 SCM mus = scm_call_2 (proc, $2,
2023 make_input (THIS->here_input()));
2024 scm_gc_protect_object (mus);
2025 $$ = unsmob_music (mus);
2027 | STRING optional_notemode_duration {
2028 Input i = THIS->pop_spot ();
2030 Music * lreq = MY_MAKE_MUSIC("LyricEvent");
2031 lreq->set_mus_property ("text", $1);
2032 lreq->set_mus_property ("duration",$2);
2034 Music * velt = MY_MAKE_MUSIC("EventChord");
2035 velt->set_mus_property ("elements", scm_list_n (lreq->self_scm (), SCM_UNDEFINED));
2042 if (!THIS->lexer_->chord_state_b ())
2043 THIS->parser_error (_ ("Have to be in Chord mode for chords"));
2044 $$ = unsmob_music ($1);
2049 steno_tonic_pitch optional_notemode_duration {
2050 $$ = make_chord ($1, $2, SCM_EOL);
2052 | steno_tonic_pitch optional_notemode_duration chord_separator chord_items {
2053 SCM its = scm_reverse_x ($4, SCM_EOL);
2054 $$ = make_chord ($1, $2, gh_cons ($3, its));
2062 | chord_items chord_item {
2063 $$ = gh_cons ($2, $$);
2069 $$ = ly_symbol2scm ("chord-colon");
2072 $$ = ly_symbol2scm ("chord-caret");
2074 | CHORD_SLASH steno_tonic_pitch {
2075 $$ = scm_list_n (ly_symbol2scm ("chord-slash"), $2, SCM_UNDEFINED);
2077 | CHORD_BASS steno_tonic_pitch {
2078 $$ = scm_list_n (ly_symbol2scm ("chord-bass"), $2, SCM_UNDEFINED);
2087 $$ = scm_reverse_x ($1, SCM_EOL);
2095 step_number { $$ = gh_cons ($1, SCM_EOL); }
2096 | step_numbers '.' step_number {
2097 $$ = gh_cons ($3, $$);
2103 $$ = make_chord_step ($1, 0);
2105 | bare_unsigned '+' {
2106 $$ = make_chord_step ($1, 1);
2108 | bare_unsigned CHORD_MINUS {
2109 $$ = make_chord_step ($1,-1);
2117 number_expression '+' number_term {
2118 $$ = scm_sum ($1, $3);
2120 | number_expression '-' number_term {
2121 $$ = scm_difference ($1, $3);
2130 | number_factor '*' number_factor {
2131 $$ = scm_product ($1, $3);
2133 | number_factor '/' number_factor {
2134 $$ = scm_divide ($1, $3);
2139 '-' number_factor { /* %prec UNARY_MINUS */
2140 $$ = scm_difference ($2, SCM_UNDEFINED);
2148 $$ = gh_int2scm ($1);
2153 | NUMBER_IDENTIFIER {
2156 | REAL NUMBER_IDENTIFIER {
2157 $$ = gh_double2scm (gh_scm2double ($1) * gh_scm2double ($2));
2159 | UNSIGNED NUMBER_IDENTIFIER {
2160 $$ = gh_double2scm ($1 * gh_scm2double ($2));
2176 if (scm_integer_p ($1) == SCM_BOOL_T)
2178 int k = gh_scm2int ($1);
2182 THIS->parser_error (_ ("need integer number arg"));
2196 | STRING_IDENTIFIER {
2199 | string '+' string {
2200 $$ = scm_string_append (scm_list_n ($1, $3, SCM_UNDEFINED));
2207 | exclamations '!' { $$ ++; }
2212 | questions '?' { $$ ++; }
2222 { THIS->lexer_->push_markup_state (); }
2225 THIS->lexer_->pop_state ();
2231 This should be done more dynamically if possible.
2235 $$ = make_simple_markup ($1);
2237 | MARKUP_HEAD_MARKUP0 markup {
2238 $$ = scm_list_n ($1, $2, SCM_UNDEFINED);
2240 | MARKUP_HEAD_MARKUP0_MARKUP1 markup markup {
2241 $$ = scm_list_n ($1, $2, $3, SCM_UNDEFINED);
2243 | MARKUP_HEAD_SCM0_MARKUP1 SCM_T markup {
2244 $$ = scm_list_n ($1, $2, $3, SCM_UNDEFINED);
2249 | MARKUP_HEAD_LIST0 markup_list {
2250 $$ = scm_list_n ($1,$2, SCM_UNDEFINED);
2252 | MARKUP_HEAD_SCM0 embedded_scm {
2253 $$ = scm_list_n ($1, $2, SCM_UNDEFINED);
2255 | MARKUP_HEAD_SCM0_SCM1_MARKUP2 embedded_scm embedded_scm markup {
2256 $$ = scm_list_n ($1, $2, $3, $4, SCM_UNDEFINED);
2258 | MARKUP_HEAD_SCM0_SCM1_SCM2 embedded_scm embedded_scm embedded_scm {
2259 $$ = scm_list_n ($1, $2, $3, $4, SCM_UNDEFINED);
2261 | MARKUP_IDENTIFIER {
2268 CHORD_OPEN markup_list_body CHORD_CLOSE { $$ = scm_reverse_x ($2, SCM_EOL); }
2272 '{' markup_list_body '}' {
2275 line = scm_c_eval_string ("line-markup");
2277 $$ = scm_list_n (line, scm_reverse_x ($2, SCM_EOL), SCM_UNDEFINED);
2282 /**/ { $$ = SCM_EOL; }
2283 | markup_list_body markup {
2284 $$ = gh_cons ($2, $1) ;
2292 My_lily_parser::set_yydebug (bool )
2299 extern My_lily_parser * current_parser;
2302 My_lily_parser::do_yyparse ()
2304 current_parser = this;;
2305 yyparse ((void*)this);
2310 Should make this optional? It will also complain when you do
2314 which is entirely legitimate.
2316 Or we can scrap it. Barchecks should detect wrong durations, and
2317 skipTypesetting speeds it up a lot.
2321 My_lily_parser::beam_check (SCM dur)
2323 Duration *d = unsmob_duration (dur);
2324 if (unsmob_music (last_beam_start_) && d->duration_log () <= 2)
2326 Music * m = unsmob_music (last_beam_start_);
2327 m->origin ()->warning (_("Suspect duration found following this beam"));
2329 last_beam_start_ = SCM_EOL;
2337 return gh_pair_p (x)
2338 && SCM_BOOL_F != scm_object_property (gh_car (x), ly_symbol2scm ("markup-signature"));
2344 It is a little strange to have this function in this file, but
2345 otherwise, we have to import music classes into the lexer.
2349 My_lily_lexer::try_special_identifiers (SCM * destination, SCM sid)
2351 if (gh_string_p (sid)) {
2353 return STRING_IDENTIFIER;
2354 } else if (gh_number_p (sid)) {
2356 return NUMBER_IDENTIFIER;
2357 } else if (unsmob_translator_def (sid)) {
2358 *destination = unsmob_translator_def (sid)->clone_scm();
2359 return TRANSLATOR_IDENTIFIER;
2360 } else if (unsmob_score (sid)) {
2361 Score *sc = new Score (*unsmob_score (sid));
2362 *destination =sc->self_scm ();
2363 return SCORE_IDENTIFIER;
2364 } else if (Music * mus =unsmob_music (sid)) {
2365 *destination = unsmob_music (sid)->clone ()->self_scm();
2366 unsmob_music (*destination)->
2367 set_mus_property ("origin", make_input (last_input_));
2368 return dynamic_cast<Event*> (mus)
2369 ? EVENT_IDENTIFIER : MUSIC_IDENTIFIER;
2370 } else if (unsmob_duration (sid)) {
2371 *destination = unsmob_duration (sid)->smobbed_copy();
2372 return DURATION_IDENTIFIER;
2373 } else if (unsmob_music_output_def (sid)) {
2374 Music_output_def *p = unsmob_music_output_def (sid);
2377 *destination = p->self_scm();
2378 return MUSIC_OUTPUT_DEF_IDENTIFIER;
2379 } else if (new_markup_p (sid)) {
2381 return MARKUP_IDENTIFIER;