]> git.donarmstrong.com Git - lilypond.git/blob - lily/repeat-acknowledge-engraver.cc
Update.
[lilypond.git] / lily / repeat-acknowledge-engraver.cc
1 /*
2   repeat-acknowledge-engraver.cc -- implement Repeat_acknowledge_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "engraver.hh"
10 #include "translator-group.hh"
11 #include "context.hh"
12 #include "repeated-music.hh"
13
14 /*
15   Objective:
16
17   -- set and reset repeatCommands, so Unfolded_repeat_iterator knows
18   where to set variables.
19
20   -- collect information passed by Unfolded_repeat_iterator for
21   Bar_engraver: writes whichBar property. (TODO: check for
22   interactions with timing engraver.)
23 */
24 class Repeat_acknowledge_engraver : public Engraver
25 {
26 public:
27
28   TRANSLATOR_DECLARATIONS (Repeat_acknowledge_engraver);
29 protected:
30   virtual void start_translation_timestep ();
31   virtual void process_music ();
32   virtual void initialize ();
33 };
34
35 void
36 Repeat_acknowledge_engraver::initialize ()
37 {
38   context ()->set_property ("repeatCommands", SCM_EOL);
39 }
40
41 Repeat_acknowledge_engraver::Repeat_acknowledge_engraver ()
42 {
43 }
44
45 void
46 Repeat_acknowledge_engraver::start_translation_timestep ()
47 {
48   Context *tr = context ()->where_defined (ly_symbol2scm ("repeatCommands"));
49   if (!tr)
50     tr = context ();
51
52   tr->set_property ("repeatCommands", SCM_EOL);
53 }
54
55 void
56 Repeat_acknowledge_engraver::process_music ()
57 {
58   /*
59     At the start of a piece, we don't print any repeat bars.
60   */
61   if (!now_mom ().main_part_)
62     return;
63
64   SCM cs = get_property ("repeatCommands");
65
66   String s = "";
67   bool start = false;
68   bool end = false;
69   bool volta_found = false;
70   while (scm_is_pair (cs))
71     {
72       SCM command = scm_car (cs);
73       if (command == ly_symbol2scm ("start-repeat"))
74         start = true;
75       else if (command == ly_symbol2scm ("end-repeat"))
76         end = true;
77       else if (scm_is_pair (command) && scm_car (command) == ly_symbol2scm ("volta"))
78         volta_found = true;
79       cs = scm_cdr (cs);
80     }
81
82   if (start && end)
83     s = ":|:";
84   else if (start)
85     s = "|:";
86   else if (end)
87     s = ":|";
88
89   /*
90     TODO: line breaks might be allowed if we set whichBar to "".
91   */
92
93   /*
94     We only set the barline if we wouldn't overwrite a previously set
95     barline.
96   */
97   SCM wb = get_property ("whichBar");
98   SCM db = get_property ("defaultBarType");
99   if (!scm_is_string (wb) || ly_c_equal_p (db, wb))
100     {
101       if (s != "" || (volta_found && !scm_is_string (wb)))
102         {
103           context ()->set_property ("whichBar", scm_makfrom0str (s.to_str0 ()));
104         }
105     }
106 }
107
108 ADD_TRANSLATOR (Repeat_acknowledge_engraver,
109                 /* descr */ "Acknowledge repeated music, and convert the contents of "
110                 "repeatCommands ainto an appropriate setting for whichBar.",
111                 /* creats*/ "",
112                 /* accepts */ "",
113                 /* acks  */ "",
114                 /* reads */ "repeatCommands whichBar",
115                 /* write */ "");