lilypond-1.3.100
[lilypond.git] / lily / line-of-score.cc
blobdf4ba207eae944c5954fa83dc02d802e5d8cc9ee
1 /*
2 scoreline.cc -- implement Line_of_score
4 source file of the GNU LilyPond music typesetter
6 (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "input-smob.hh"
10 #include "axis-group-interface.hh"
11 #include "debug.hh"
12 #include "line-of-score.hh"
13 #include "main.hh"
14 #include "paper-column.hh"
15 #include "paper-def.hh"
16 #include "paper-outputter.hh"
17 #include "paper-score.hh"
18 #include "string.hh"
19 #include "warn.hh"
20 #include "dimensions.hh"
21 #include "molecule.hh"
22 #include "all-font-metrics.hh"
24 // todo: use map.
25 void
26 fixup_refpoints (SCM s)
28 for (; gh_pair_p (s); s = gh_cdr (s))
30 Score_element::fixup_refpoint (gh_car (s));
35 Line_of_score::Line_of_score(SCM s)
36 : Spanner (s)
38 rank_i_ = 0;
40 Axis_group_interface::set_interface (this);
41 Axis_group_interface::set_axes (this, Y_AXIS,X_AXIS);
44 int
45 Line_of_score::element_count () const
47 return scm_ilength ( get_elt_property ("all-elements"));
50 void
51 Line_of_score::typeset_element (Score_element * elem_p)
53 elem_p->pscore_l_ = pscore_l_;
54 Pointer_group_interface::add_element (this, "all-elements",elem_p);
55 scm_unprotect_object (elem_p->self_scm ());
58 void
59 Line_of_score::output_lines ()
61 for (SCM s = get_elt_property ("all-elements");
62 gh_pair_p (s); s = gh_cdr (s))
64 unsmob_element (gh_car (s))->do_break_processing ();
67 fixups must be done in broken line_of_scores, because new elements
68 are put over there. */
69 int count = 0;
70 for (int i=0; i < broken_into_l_arr_.size (); i++)
72 Score_element *se = broken_into_l_arr_[i];
73 SCM all = se->get_elt_property ("all-elements");
74 for (SCM s = all; gh_pair_p (s); s = gh_cdr (s))
76 fixup_refpoint (gh_car (s));
78 count += scm_ilength (all);
83 needed for doing items.
85 fixup_refpoints (get_elt_property ("all-elements"));
88 for (SCM s = get_elt_property ("all-elements");
89 gh_pair_p (s); s = gh_cdr (s))
91 unsmob_element (gh_car (s))->handle_broken_dependencies ();
93 handle_broken_dependencies ();
95 if (verbose_global_b)
96 progress_indication ( _f("Element count %d.", count + element_count()));
99 for (int i=0; i < broken_into_l_arr_.size (); i++)
101 Line_of_score *line_l = dynamic_cast<Line_of_score*> (broken_into_l_arr_[i]);
103 if (verbose_global_b)
104 progress_indication ("[");
105 line_l->post_processing (i+1 == broken_into_l_arr_.size ());
107 if (verbose_global_b)
109 progress_indication (to_str (i));
110 progress_indication ("]");
113 if (i < broken_into_l_arr_.size () - 1)
115 SCM lastcol = gh_car (line_l->get_elt_property ("columns"));
116 Score_element* e = unsmob_element (lastcol);
117 SCM inter = e->get_elt_property ("between-system-string");
118 if (gh_string_p (inter))
120 pscore_l_->outputter_l_->output_string (inter);
126 // const?
127 void
128 Line_of_score::break_into_pieces (Array<Column_x_positions> const &breaking)
130 for (int i=0; i < breaking.size (); i++)
132 Line_of_score *line_l = dynamic_cast <Line_of_score*> (clone());
133 line_l->rank_i_ = i;
134 // line_l->set_immutable_elt_property ("rank", gh_int2scm( i));
135 Link_array<Score_element> c (breaking[i].cols_);
136 pscore_l_->typeset_line (line_l);
138 line_l->set_bound(LEFT,c[0]);
139 line_l->set_bound(RIGHT,c.top ());
140 for (int j=0; j < c.size(); j++)
142 c[j]->translate_axis (breaking[i].config_[j],X_AXIS);
143 dynamic_cast<Paper_column*> (c[j])->line_l_ = line_l;
146 broken_into_l_arr_.push (line_l);
151 #define GLOBAL_SYMBOL(cname, name) \
152 SCM cname ; \
153 void \
154 cname ## _init_func () \
156 cname = ly_symbol2scm (name); \
157 scm_permanent_object (cname); \
159 ADD_SCM_INIT_FUNC(cname,cname ## _init_func);\
162 GLOBAL_SYMBOL( offset_sym , "translate-molecule");
163 GLOBAL_SYMBOL( placebox_sym , "placebox");
164 GLOBAL_SYMBOL( combine_sym , "combine-molecule");
165 GLOBAL_SYMBOL( no_origin_sym , "no-origin");
166 GLOBAL_SYMBOL( define_origin_sym , "define-origin");
170 void
171 Line_of_score::output_molecule (SCM expr, Offset o)
174 while (1)
176 if (!gh_pair_p (expr))
177 return;
179 SCM head =gh_car (expr);
180 if (unsmob_input (head))
182 Input * ip = unsmob_input (head);
185 pscore_l_->outputter_l_->output_scheme (gh_list (define_origin_sym,
186 ly_str02scm (ip->file_str ().ch_C()),
187 gh_int2scm (ip->line_number ()),
188 gh_int2scm (ip->column_number ()),
189 SCM_UNDEFINED));
190 expr = gh_cadr (expr);
192 else if (head == no_origin_sym)
194 pscore_l_->outputter_l_->output_scheme (gh_list (no_origin_sym, SCM_UNDEFINED));
195 expr = gh_cadr (expr);
197 else if (head == offset_sym)
199 o += ly_scm2offset (gh_cadr (expr));
200 expr = gh_caddr (expr);
202 else if (head == combine_sym)
204 output_molecule (gh_cadr (expr), o);
205 expr = gh_caddr (expr);
207 else
209 pscore_l_->outputter_l_->
210 output_scheme (gh_list (placebox_sym,
211 gh_double2scm (o[X_AXIS]),
212 gh_double2scm (o[Y_AXIS]),
213 expr,
214 SCM_UNDEFINED));
216 return;
221 void
222 Line_of_score::output_scheme (SCM s)
224 pscore_l_->outputter_l_->output_scheme (s);
227 void
228 Line_of_score::add_column (Paper_column*p)
230 Score_element *me = this;
231 SCM cs = me->get_elt_property ("columns");
232 Score_element * prev = gh_pair_p (cs) ? unsmob_element (gh_car (cs)) : 0;
234 p->rank_i_ = prev ? Paper_column::rank_i (prev) + 1 : 0;
238 me->set_elt_property ("columns", gh_cons (p->self_scm (), cs));
240 Axis_group_interface::add_element (me, p);
246 TODO: use scm_map iso. for loops.
248 void
249 Line_of_score::pre_processing ()
251 for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
252 unsmob_element (gh_car (s))->discretionary_processing ();
254 if(verbose_global_b)
255 progress_indication ( _f("Element count %d ", element_count ()));
258 for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
259 unsmob_element (gh_car (s))->handle_prebroken_dependencies ();
261 fixup_refpoints (get_elt_property ("all-elements"));
263 for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
265 Score_element* sc = unsmob_element (gh_car (s));
266 sc->calculate_dependencies (PRECALCED, PRECALCING, ly_symbol2scm ("before-line-breaking-callback"));
269 progress_indication ("\n" + _ ("Calculating column positions...") + " " );
270 for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
272 Score_element * e = unsmob_element (gh_car (s));
273 SCM proc = e->get_elt_property ("spacing-procedure");
274 if (gh_procedure_p (proc))
275 gh_call1 (proc, e->self_scm ());
279 void
280 Line_of_score::post_processing (bool last_line)
282 for (SCM s = get_elt_property ("all-elements");
283 gh_pair_p (s); s = gh_cdr (s))
285 Score_element* sc = unsmob_element (gh_car (s));
286 sc->calculate_dependencies (POSTCALCED, POSTCALCING,
287 ly_symbol2scm ("after-line-breaking-callback"));
290 Interval i(extent(this, Y_AXIS));
291 if (i.empty_b())
292 programming_error ("Huh? Empty Line_of_score?");
293 else
294 translate_axis (- i[MAX], Y_AXIS);
296 Real height = i.length ();
297 if (height > 50 CM)
299 programming_error ("Improbable system height");
300 height = 50 CM;
304 generate all molecules to trigger all font loads.
306 (ugh. This is not very memory efficient.) */
307 for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
308 unsmob_element (gh_car (s))->get_molecule ();
311 font defs;
313 SCM font_names = ly_quote_scm (paper_l()->font_descriptions ());
314 output_scheme (gh_list (ly_symbol2scm ("define-fonts"),
315 font_names,
316 SCM_UNDEFINED));
319 line preamble.
321 output_scheme (gh_list (ly_symbol2scm ("start-line"),
322 gh_double2scm (height),
323 SCM_UNDEFINED));
325 Real il = paper_l ()->get_var ("staffspace");
328 all elements.
330 for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
332 Score_element * sc = unsmob_element (gh_car (s));
333 Molecule m = sc->get_molecule ();
335 Offset o (sc->relative_coordinate (this, X_AXIS),
336 sc->relative_coordinate (this, Y_AXIS));
338 SCM e = sc->get_elt_property ("extra-offset");
339 if (gh_pair_p (e))
341 o[X_AXIS] += il * gh_scm2double (gh_car (e));
342 o[Y_AXIS] += il * gh_scm2double (gh_cdr (e));
345 output_molecule (m.get_expr (), o);
347 if (last_line)
349 output_scheme (gh_list (ly_symbol2scm ("stop-last-line"), SCM_UNDEFINED));
351 else
353 output_scheme (gh_list (ly_symbol2scm ("stop-line"), SCM_UNDEFINED));
358 Link_array<Item>
359 Line_of_score::broken_col_range (Item const*l, Item const*r) const
361 Link_array<Item> ret;
363 l = l->column_l ();
364 r = r->column_l ();
365 SCM s = get_elt_property ("columns");
367 while (gh_pair_p (s) && gh_car (s) != r->self_scm ())
368 s = gh_cdr (s);
370 if (gh_pair_p (s))
371 s = gh_cdr (s);
373 while (gh_pair_p (s) && gh_car (s) != l->self_scm ())
375 Paper_column*c = dynamic_cast<Paper_column*> ( unsmob_element (gh_car (s)));
376 if (Item::breakable_b (c) && !c->line_l_)
377 ret.push (c);
379 s = gh_cdr (s);
382 ret.reverse ();
383 return ret;
387 Return all columns, but filter out any unused columns , since they might
388 disrupt the spacing problem.
390 Link_array<Score_element>
391 Line_of_score::column_l_arr ()const
393 Link_array<Score_element> acs
394 = Pointer_group_interface__extract_elements (this, (Score_element*) 0, "columns");
395 bool bfound = false;
396 for (int i= acs.size (); i -- ; )
398 bool brb = Item::breakable_b (acs[i]);
399 bfound = bfound || brb;
402 the last column should be breakable. Weed out any columns that
403 seem empty. We need to retain breakable columns, in case
404 someone forced a breakpoint.
406 if (!bfound || !Paper_column::used_b (acs[i]))
407 acs.del (i);
409 return acs;