]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-column-engraver.cc
release commit
[lilypond.git] / lily / paper-column-engraver.cc
1 /*
2   paper-column-engraver.cc -- implement Paper_column_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #include "paper-column-engraver.hh"
11 #include "system.hh"
12 #include "item.hh"
13 #include "paper-column.hh"
14 #include "staff-spacing.hh"
15 #include "note-spacing.hh"
16 #include "pointer-group-interface.hh"
17 #include "context.hh"
18 #include "axis-group-interface.hh"
19 #include "warn.hh"
20
21 #include "translator.icc"
22
23
24 Paper_column_engraver::Paper_column_engraver ()
25 {
26   command_column_ = 0;
27   musical_column_ = 0;
28   breaks_ = 0;
29   break_event_ = 0;
30   system_ = 0;
31   first_ = true;
32 }
33
34 void
35 Paper_column_engraver::finalize ()
36 {
37   if ((breaks_ % 8))
38     progress_indication ("[" + to_string (breaks_) + "]");
39
40   if (command_column_)
41     {
42       command_column_->set_property ("breakable", SCM_BOOL_T);
43       system_->set_bound (RIGHT, command_column_);
44     }  
45 }
46
47 void
48 Paper_column_engraver::make_columns ()
49 {
50   /*
51     ugh.
52   */
53   Paper_column *p1 = make_paper_column ("NonMusicalPaperColumn");
54   Paper_column *p2 = make_paper_column ("PaperColumn");
55
56   SCM m = now_mom().smobbed_copy();
57   p1->set_property ("when", m);
58   p2->set_property ("when", m);
59       
60   set_columns (p1, p2);
61 }
62
63
64 void
65 Paper_column_engraver::initialize ()
66 {
67   system_ = dynamic_cast<System*> (unsmob_grob (get_property ("rootSystem")));
68   make_columns ();
69
70   
71   system_->set_bound (LEFT, command_column_);
72   command_column_->set_property ("breakable", SCM_BOOL_T);
73 }
74
75 void
76 Paper_column_engraver::acknowledge_grob (Grob_info gi)
77 {
78   Item *item = dynamic_cast<Item *> (gi.grob ());
79   if (!item)
80     {
81       programming_error ("Spanner found in Paper_column_engraver::acknowledge_grob()"); 
82       return;
83     }
84   
85   items_.push (item);
86   
87   if (Staff_spacing::has_interface (item))
88     {
89       Pointer_group_interface::add_grob (command_column_,
90                                          ly_symbol2scm ("spacing-wishes"),
91                                          gi.grob ());
92     }
93   if (Note_spacing::has_interface (item))
94     {
95       Pointer_group_interface::add_grob (musical_column_,
96                                          ly_symbol2scm ("spacing-wishes"),
97                                          gi.grob ());
98     }
99 }
100
101 void
102 Paper_column_engraver::set_columns (Paper_column *new_command,
103                                     Paper_column *new_musical)
104 {
105   command_column_ = new_command;
106   musical_column_ = new_musical;
107   if (new_command)
108     {
109       context ()->set_property ("currentCommandColumn", new_command->self_scm ());
110     }
111
112   if (new_musical)
113     {
114       context ()->set_property ("currentMusicalColumn", new_musical->self_scm ());
115     }
116
117   system_->add_column (command_column_);
118   system_->add_column (musical_column_);
119 }
120
121
122 void
123 Paper_column_engraver::forbid_breaks ()
124 {
125   if (command_column_ && !first_)
126     command_column_->set_property ("breakable", SCM_EOL);
127 }
128
129
130 bool
131 Paper_column_engraver::try_music (Music *m)
132 {
133   break_event_ = m;
134
135   return true;
136 }
137
138 void
139 Paper_column_engraver::process_music ()
140 {
141   if (break_event_)
142     {
143       SCM pen = command_column_->get_property ("penalty");
144       Real total_penalty = scm_is_number (pen) ? scm_to_double (pen) : 0.0;
145
146       SCM mpen = break_event_->get_property ("penalty");
147       if (scm_is_number (mpen))
148         total_penalty += scm_to_double (mpen);
149
150       command_column_->set_property ("penalty", scm_make_real (total_penalty));
151
152       /* ugh.  arbitrary, hardcoded */
153       if (total_penalty > 10000.0)
154         forbid_breaks ();
155
156       SCM page_pen = command_column_->get_property ("page-penalty");
157       Real total_pp = scm_is_number (page_pen) ? scm_to_double (page_pen) : 0.0;
158       SCM mpage_pen = break_event_->get_property ("page-penalty");
159       if (scm_is_number (mpage_pen))
160         total_pp += scm_to_double (mpage_pen);
161
162       command_column_->set_property ("page-penalty", scm_make_real (total_pp));
163     }
164
165
166   bool start_of_measure = (last_moment_.main_part_ != now_mom ().main_part_
167                            && !measure_position (context ()).main_part_);
168
169   /*
170     We can't do this in start_translation_timestep(), since time sig
171     changes won't have happened by then.
172   */
173   if (start_of_measure)
174     {
175       Moment mlen = Moment (measure_length (context ()));
176       Grob * column = unsmob_grob (get_property ("currentCommandColumn"));
177       if (column)
178         column->set_property ("measure-length", mlen.smobbed_copy ());
179       else
180         programming_error("No command column?");
181     }
182 }
183
184 void
185 Paper_column_engraver::stop_translation_timestep ()
186 {
187   for (int i = 0; i < items_.size (); i++)
188     {
189       Item *elem = items_[i];
190       if (!elem->get_parent (X_AXIS)
191           || !unsmob_grob (elem->get_object ("axis-group-parent-X")))
192         {
193           bool br = to_boolean (elem->get_property ("breakable"));
194           Axis_group_interface::add_element (br ? command_column_ : musical_column_, elem);
195         }
196     }
197   items_.clear ();
198   
199   if (to_boolean (command_column_->get_property ("breakable")))
200     {
201       breaks_++;
202       if (! (breaks_%8))
203         progress_indication ("[" + to_string (breaks_) + "]");
204     }
205
206   first_ = false;
207   break_event_ = 0;
208 }
209
210 void
211 Paper_column_engraver::start_translation_timestep ()
212 {
213   /*
214     TODO: don't make columns when skipTypesetting is true.
215   */
216   if (!first_)
217     make_columns ();
218 }
219
220
221
222
223 ADD_TRANSLATOR (Paper_column_engraver,
224                 /* descr */ "Takes care of generating columns."
225                 "\n\n "
226                 "This engraver decides whether a column is breakable. The default is "
227                 "that a column is always breakable. However, when every Bar_engraver "
228                 "that does not have a barline at a certain point will call "
229                 "Score_engraver::forbid_breaks to stop linebreaks.  In practice, this "
230                 "means that you can make a breakpoint by creating a barline (assuming "
231                 "that there are no beams or notes that prevent a breakpoint.) ",
232                 /* creats*/ "PaperColumn NonMusicalPaperColumn",
233                 /* accepts */ "break-event",
234                 /* acks  */ "item-interface",
235                 /* reads */ "",
236                 /* write */ "currentCommandColumn currentMusicalColumn");