2 repeat-acknowledge-engraver.cc -- implement Repeat_acknowledge_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 2000--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #include "translator-group.hh"
11 #include "repeated-music.hh"
17 -- set and reset repeatCommands, so Unfolded_repeat_iterator knows
18 where to set variables.
20 -- collect information passed by Unfolded_repeat_iterator for
21 Bar_engraver: writes whichBar property. (TODO: check for
22 interactions with timing engraver.)
25 class Repeat_acknowledge_engraver : public Engraver
28 TRANSLATOR_DECLARATIONS(Repeat_acknowledge_engraver);
30 virtual void start_translation_timestep ();
31 virtual void process_music ();
32 virtual void initialize ();
37 Repeat_acknowledge_engraver::initialize ()
39 daddy_trans_->set_property ("repeatCommands", SCM_EOL);
43 Repeat_acknowledge_engraver::Repeat_acknowledge_engraver ()
48 Repeat_acknowledge_engraver::start_translation_timestep ()
50 Translator_group * tr = daddy_trans_->where_defined (ly_symbol2scm ("repeatCommands"));
54 tr->set_property ("repeatCommands", SCM_EOL);
58 Repeat_acknowledge_engraver::process_music ()
61 At the start of a piece, we don't print any repeat bars.
63 if (now_mom () == Moment (0))
66 SCM cs = get_property ("repeatCommands");
71 bool volta_found = false;
72 while (gh_pair_p (cs))
74 SCM command = ly_car (cs);
75 if (command == ly_symbol2scm ("start-repeat"))
77 else if (command == ly_symbol2scm ("end-repeat"))
79 else if (gh_pair_p (command) && ly_car (command) == ly_symbol2scm ("volta"))
92 TODO: line breaks might be allowed if we set whichBar to "".
96 We only set the barline if we wouldn't overwrite a previously set
99 SCM wb = get_property ("whichBar");
100 SCM db = get_property ("defaultBarType");
101 if (!gh_string_p (wb) || gh_equal_p (db, wb))
103 if (s != "" || (volta_found && !gh_string_p (wb)))
105 daddy_trans_->set_property ("whichBar", scm_makfrom0str (s.to_str0 ()));
110 ENTER_DESCRIPTION(Repeat_acknowledge_engraver,
111 /* descr */ "Acknowledge repeated music, and convert the contents of "
112 "repeatCommands ainto an appropriate setting for whichBar.",
116 /* reads */ "repeatCommands whichBar",