]> git.donarmstrong.com Git - lilypond.git/blob - lily/line-of-score.cc
release: 1.3.73
[lilypond.git] / lily / line-of-score.cc
1 /*
2   scoreline.cc -- implement Line_of_score
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
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"
23
24 // todo: use map.
25 void
26 fixup_refpoints (SCM s)
27 {
28   for (; gh_pair_p (s); s = gh_cdr (s))
29     {
30       Score_element::fixup_refpoint (gh_car (s));
31     }
32 }
33
34
35 Line_of_score::Line_of_score(SCM s)
36   : Spanner (s)
37 {
38   rank_i_ = 0;
39
40   Axis_group_interface::set_interface (this);
41   Axis_group_interface::set_axes (this, Y_AXIS,X_AXIS);
42 }
43
44 int
45 Line_of_score::element_count () const
46 {
47   return scm_ilength ( get_elt_property ("all-elements"));
48 }
49
50 void
51 Line_of_score::typeset_element (Score_element * elem_p)
52 {
53   elem_p->pscore_l_ = pscore_l_;
54   Pointer_group_interface (this, "all-elements").add_element (elem_p);
55   scm_unprotect_object (elem_p->self_scm_);
56 }
57
58 void
59 Line_of_score::output_lines ()
60 {
61   for (SCM s = get_elt_property ("all-elements");
62        gh_pair_p (s); s = gh_cdr (s))
63     {
64       unsmob_element (gh_car (s))->do_break_processing ();
65     }
66   /*
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++)
71     {
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))
75         {
76           fixup_refpoint (gh_car (s));
77         }
78       count += scm_ilength (all);
79     }
80
81   
82   /*
83     needed for doing items.
84    */
85   fixup_refpoints (get_elt_property ("all-elements"));
86
87   
88   for (SCM s = get_elt_property ("all-elements");
89        gh_pair_p (s); s = gh_cdr (s))
90     {
91       unsmob_element (gh_car (s))->handle_broken_dependencies ();
92     }
93   handle_broken_dependencies ();
94
95   if (verbose_global_b)
96     progress_indication ( _f("Element count %d.",  count + element_count()));
97
98   
99   for (int i=0; i < broken_into_l_arr_.size (); i++)
100     {
101       Line_of_score *line_l = dynamic_cast<Line_of_score*> (broken_into_l_arr_[i]);
102
103       if (verbose_global_b)
104         progress_indication ("[");
105       line_l->post_processing (i+1 == broken_into_l_arr_.size ());
106
107       if (verbose_global_b)
108         {
109           progress_indication (to_str (i));
110           progress_indication ("]");
111         }
112
113       if (i < broken_into_l_arr_.size () - 1)
114         {
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))
119             {
120               pscore_l_->outputter_l_->output_string (inter);         
121             }
122         }
123     }
124 }
125
126 // const?
127 void
128 Line_of_score::break_into_pieces (Array<Column_x_positions> const &breaking)
129 {
130   for (int i=0; i < breaking.size (); i++)
131     {
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);
137       
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++)
141         {
142           c[j]->translate_axis (breaking[i].config_[j],X_AXIS);
143           dynamic_cast<Paper_column*> (c[j])->line_l_ = line_l;
144         }
145       
146       broken_into_l_arr_.push (line_l);
147     }
148 }
149
150
151 #define GLOBAL_SYMBOL(cname, name)  \
152 SCM cname ;                                     \
153 void \
154 cname ## _init_func ()                          \
155 {                                               \
156   cname = ly_symbol2scm (name);                 \
157   scm_permanent_object (cname);                 \
158 }                                               \
159 ADD_SCM_INIT_FUNC(cname,cname ## _init_func);\
160
161
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");
167
168
169
170 void
171 Line_of_score::output_molecule (SCM expr, Offset o)
172 {
173
174   while (1)
175     {
176       if (!gh_pair_p (expr))
177         return;
178   
179       SCM head =gh_car (expr);
180       if (unsmob_input (head))
181         {
182           Input * ip = unsmob_input (head);
183       
184
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);
191         }
192       else  if (head ==  no_origin_sym)
193         {
194           pscore_l_->outputter_l_->output_scheme (gh_list (no_origin_sym, SCM_UNDEFINED));
195           expr = gh_cadr (expr);
196         }
197       else if (head == offset_sym)
198         {
199           o += ly_scm2offset (gh_cadr (expr));
200           expr = gh_caddr (expr);
201         }
202       else if (head == combine_sym)
203         {
204           output_molecule (gh_cadr (expr), o);
205           expr = gh_caddr (expr);
206         }
207       else
208         {
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));
215
216           return;
217         }
218     }
219 }
220
221 void
222 Line_of_score::output_scheme (SCM s)
223 {
224   pscore_l_->outputter_l_->output_scheme (s);
225 }
226
227 void
228 Line_of_score::add_column (Paper_column*p)
229 {
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;
233
234   p->rank_i_ = prev ? Paper_column::rank_i (prev) + 1 : 0; 
235
236
237
238   me->set_elt_property ("columns",  gh_cons (p->self_scm_, cs));
239
240   Axis_group_interface::add_element (me, p);
241 }
242
243
244
245 /*
246   TODO: use scm_map iso. for loops.
247  */
248 void
249 Line_of_score::pre_processing ()
250 {
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 ();
253
254   if(verbose_global_b)
255     progress_indication ( _f("Element count %d ",  element_count ()));
256
257   
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 ();
260   
261   fixup_refpoints (get_elt_property ("all-elements"));
262   
263   for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
264     {
265       Score_element* sc = unsmob_element (gh_car (s));
266       sc->calculate_dependencies (PRECALCED, PRECALCING, ly_symbol2scm ("before-line-breaking-callback"));
267     }
268   
269   progress_indication ("\n" + _ ("Calculating column positions...") + " " );
270   for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
271     {
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_);
276     }
277 }
278
279 void
280 Line_of_score::post_processing (bool last_line)
281 {
282   for (SCM s = get_elt_property ("all-elements");
283        gh_pair_p (s); s = gh_cdr (s))
284     {
285       Score_element* sc = unsmob_element (gh_car (s));
286       sc->calculate_dependencies (POSTCALCED, POSTCALCING,
287                                   ly_symbol2scm ("after-line-breaking-callback"));
288     }
289
290   Interval i(extent(Y_AXIS));
291   if (i.empty_b())
292     programming_error ("Huh?  Empty Line_of_score?");
293   else
294     translate_axis (- i[MAX], Y_AXIS);
295
296   Real height = i.length ();
297   if (height > 50 CM)
298     {
299       programming_error ("Improbable system height");
300       height = 50 CM;
301     }
302
303   /*
304     generate all molecules  to trigger all font loads.
305
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 ();
309   
310   /*
311     font defs;
312    */
313   SCM font_names = ly_quote_scm (all_fonts_global_p->font_descriptions ());  
314   output_scheme (gh_list (ly_symbol2scm ("define-fonts"),
315                                         font_names,
316                                         SCM_UNDEFINED));
317
318   /*
319     line preamble.
320    */
321   output_scheme (gh_list (ly_symbol2scm ("start-line"),
322                           gh_double2scm (height),
323                           SCM_UNDEFINED));
324   
325   Real il = paper_l ()->get_var ("interline");
326
327   /*
328     all elements.
329    */ 
330   for (SCM s = get_elt_property ("all-elements"); gh_pair_p (s); s = gh_cdr (s))
331     {
332       Score_element * sc =  unsmob_element (gh_car (s));
333       Molecule m = sc->get_molecule ();
334       
335       Offset o (sc->relative_coordinate (this, X_AXIS),
336                 sc->relative_coordinate (this, Y_AXIS));
337
338       SCM e = sc->get_elt_property ("extra-offset");
339       if (gh_pair_p (e))
340         {
341           o[X_AXIS] += il * gh_scm2double (gh_car (e));
342           o[Y_AXIS] += il * gh_scm2double (gh_cdr (e));      
343         }
344
345       output_molecule (m.get_expr (), o);
346     }
347   if (last_line)
348     {
349       output_scheme (gh_list (ly_symbol2scm ("stop-last-line"), SCM_UNDEFINED));
350     }
351   else
352     {
353       output_scheme (gh_list (ly_symbol2scm ("stop-line"), SCM_UNDEFINED));
354     }
355 }
356
357
358 Link_array<Item> 
359 Line_of_score::broken_col_range (Item const*l, Item const*r) const
360 {
361   Link_array<Item> ret;
362
363   l = l->column_l ();
364   r = r->column_l ();
365   SCM s = get_elt_property ("columns");
366
367   while (gh_pair_p (s) && gh_car (s) != r->self_scm_)
368     s = gh_cdr  (s);
369     
370   if (gh_pair_p (s))
371     s = gh_cdr (s);
372   
373   while (gh_pair_p (s) && gh_car (s) != l->self_scm_)
374     {
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);
378
379       s = gh_cdr  (s);
380     }
381
382   ret.reverse ();
383   return ret;
384 }
385
386 /**
387    Return all columns, but filter out any unused columns , since they might
388    disrupt the spacing problem.
389  */
390 Link_array<Score_element>
391 Line_of_score::column_l_arr ()const
392 {
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 -- ; )
397     {
398       bool brb = Item::breakable_b (acs[i]);
399       bfound = bfound || brb;
400
401       /*
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.
405       */
406       if (!bfound || !Paper_column::used_b (acs[i]))
407         acs.del (i);
408     }
409   return acs;
410 }
411