* lily/music-iterator.cc (quit, do_quit): new function: break link
[lilypond.git] / lily / score-engraver.cc
blob693158620ba71fbc41889ffb947651fdf95b8a3c
1 /*
2 score-engraver.cc -- implement Score_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "all-font-metrics.hh"
10 #include "afm.hh"
11 #include "warn.hh"
12 #include "main.hh"
13 #include "system.hh"
14 #include "item.hh"
15 #include "score-engraver.hh"
16 #include "paper-score.hh"
17 #include "paper-column.hh"
18 #include "command-request.hh"
19 #include "paper-def.hh"
20 #include "axis-group-interface.hh"
21 #include "translator-def.hh"
23 #include "staff-spacing.hh"
24 #include "note-spacing.hh"
27 TODO: the column creation logic is rather hairy. Revise it.
29 Score_engraver::Score_engraver ()
31 system_ =0;
32 command_column_ =0;
33 musical_column_ =0;
34 breaks_ =0;
35 pscore_ = 0;
38 void
39 Score_engraver::make_columns ()
42 ugh.
44 if (!command_column_)
46 set_columns (new Paper_column (get_property ("NonMusicalPaperColumn")),
47 new Paper_column (get_property ("PaperColumn")));
49 command_column_->set_grob_property ("breakable", SCM_BOOL_T);
52 Grob_info i1 (command_column_);
53 i1.origin_trans_ = this;
55 Grob_info i2 (musical_column_);
56 i2.origin_trans_ = this;
59 announce_grob (i1);
60 announce_grob (i2);
66 void
67 Score_engraver::prepare (Moment w)
69 Global_translator::prepare (w);
72 TODO: don't make columns when skipTypesetting is true.
74 make_columns ();
76 command_column_->set_grob_property ("when", now_mom_.smobbed_copy ());
77 musical_column_->set_grob_property ("when", now_mom_.smobbed_copy ());
80 Translator_group::start_translation_timestep();
83 void
84 Score_engraver::finish ()
86 if ((breaks_%8))
87 progress_indication ("[" + to_string (breaks_) + "]");
89 check_removal ();
90 removal_processing ();
95 use start/finish?
97 void
98 Score_engraver::initialize ()
100 Font_metric *fm = all_fonts_global->find_afm("feta20");
101 if (!fm)
102 error (_f ("can't find `%s'", "feta20.afm")
103 + "\n" +_ ("Fonts have not been installed properly. Aborting"));
105 unsmob_translator_def (definition_)->apply_property_operations (this);
107 assert (dynamic_cast<Paper_def *> (output_def_));
108 assert (!daddy_trans_);
109 pscore_ = new Paper_score;
110 pscore_->paper_ = dynamic_cast<Paper_def*> (output_def_);
112 SCM props = get_property ("System");
114 pscore_->typeset_line (new System (props));
116 make_columns ();
117 system_ = pscore_->system_;
118 system_->set_bound (LEFT, command_column_);
119 command_column_->set_grob_property ("breakable", SCM_BOOL_T);
121 Engraver_group_engraver::initialize ();
125 void
126 Score_engraver::finalize ()
128 Engraver_group_engraver::finalize ();
130 Grob * cc
131 = unsmob_grob (get_property ("currentCommandColumn"));
132 system_->set_bound (RIGHT, cc);
133 cc->set_grob_property ("breakable", SCM_BOOL_T);
135 typeset_all ();
138 void
139 Score_engraver::one_time_step ()
141 if (!to_boolean (get_property ("skipTypesetting")))
143 process_music ();
144 do_announces ();
147 stop_translation_timestep ();
148 check_removal ();
151 for (int i = announce_infos_.size(); i--;)
153 Grob *g = announce_infos_[i].grob_;
154 if (!dynamic_cast<Paper_column*> (g)) // ugh.
157 String msg= "Grob "
158 + g->name()
159 + " was created too late!";
160 g->programming_error (msg);
163 announce_infos_.clear ();
166 void
167 Score_engraver::announce_grob (Grob_info info)
169 announce_infos_.push (info);
170 pscore_->system_->typeset_grob (info.grob_);
173 void
174 Score_engraver::typeset_grob (Grob *elem)
176 if (!elem)
177 programming_error ("Score_engraver: empty elt\n");
178 else
180 elems_.push (elem);
183 void
184 Score_engraver::typeset_all ()
186 for (int i =0; i < elems_.size (); i++)
188 Grob * elem = elems_[i];
190 if (Spanner *s = dynamic_cast <Spanner *> (elem))
193 do something sensible if spanner not
194 spanned on 2 items.
196 Direction d = LEFT;
197 do {
198 if (!s->get_bound (d))
200 s->set_bound (d, command_column_);
201 /* don't warn for empty/suicided spanners,
202 it makes real warningsinvisible.
203 maybe should be junked earlier? */
204 if (!elem->live())
205 ; // gdb hook
206 else
207 elem->warning (_f ("unbound spanner `%s'", s->name ().to_str0 ()));
210 while (flip (&d) != LEFT);
212 if (dynamic_cast<Item*> (s->get_parent (Y_AXIS)))
213 programming_error ("Spanner Y-parent is an item.");
215 else
217 if (!elem->get_parent (X_AXIS))
219 bool br = to_boolean (elem->get_grob_property ("breakable"));
220 Axis_group_interface::add_element (br ? command_column_ : musical_column_, elem);
224 if (!elem->get_parent (Y_AXIS))
225 Axis_group_interface::add_element (system_, elem);
227 elems_.clear ();
230 void
231 Score_engraver::stop_translation_timestep ()
233 // this generates all items.
234 Engraver_group_engraver::stop_translation_timestep ();
236 typeset_all ();
237 if (to_boolean (command_column_->get_grob_property ("breakable")))
239 breaks_ ++;
240 if (! (breaks_%8))
241 progress_indication ("[" + to_string (breaks_) + "]");
245 system_->add_column (command_column_);
246 system_->add_column (musical_column_);
248 command_column_ = 0;
249 musical_column_ = 0;
252 void
253 Score_engraver::set_columns (Paper_column *new_command,
254 Paper_column *new_musical)
256 assert (!command_column_ && !musical_column_);
258 command_column_ = new_command;
259 musical_column_ = new_musical;
260 if (new_command)
262 set_property ("currentCommandColumn", new_command->self_scm ());
265 if (new_musical)
267 set_property ("currentMusicalColumn", new_musical->self_scm ());
271 Music_output*
272 Score_engraver::get_output ()
274 Music_output * o = pscore_;
275 pscore_=0;
276 return o;
279 bool
280 Score_engraver::try_music (Music*r)
282 bool gotcha = Engraver_group_engraver::try_music (r);
284 if (!gotcha)
286 if (Break_req* b = dynamic_cast<Break_req *> (r))
288 gotcha = true;
291 SCM pen = command_column_->get_grob_property ("penalty");
292 Real total_penalty = gh_number_p (pen)
293 ? gh_scm2double (pen)
294 : 0.0;
296 SCM rpen = b->get_mus_property ("penalty");
297 if (gh_number_p (rpen))
298 total_penalty += gh_scm2double (rpen);
300 if (total_penalty > 10000.0) // ugh. arbitrary.
301 forbid_breaks ();
303 command_column_->set_grob_property ("penalty",
304 gh_double2scm (total_penalty));
307 return gotcha;
311 TODO: use property Score.breakForbidden = #t
313 void
314 Score_engraver::forbid_breaks ()
317 result is junked.
319 if (command_column_)
320 command_column_->set_grob_property ("breakable", SCM_EOL);
323 void
324 Score_engraver::acknowledge_grob (Grob_info gi)
326 if (Staff_spacing::has_interface (gi.grob_))
328 Pointer_group_interface::add_grob (command_column_,
329 ly_symbol2scm ("spacing-wishes"),
330 gi.grob_);
332 if (Note_spacing::has_interface (gi.grob_))
334 Pointer_group_interface::add_grob (musical_column_,
335 ly_symbol2scm ("spacing-wishes"),
336 gi.grob_);
342 ENTER_DESCRIPTION(Score_engraver,
343 /* descr */ "Top level engraver. Takes care of generating columns and the complete system (ie. System)
346 This engraver decides whether a column is breakable. The default is
347 that a column is always breakable. However, when every Bar_engraver
348 that does not have a barline at a certain point will call
349 Score_engraver::forbid_breaks to stop linebreaks. In practice, this
350 means that you can make a breakpoint by creating a barline (assuming
351 that there are no beams or notes that prevent a breakpoint.)
355 /* creats*/ "System PaperColumn NonMusicalPaperColumn",
356 /* acks */ "note-spacing-interface staff-spacing-interface",
357 /* reads */ "currentMusicalColumn currentCommandColumn",
358 /* write */ "");