]> git.donarmstrong.com Git - lilypond.git/blob - lily/system.cc
* lily/include/paper-system.hh (class Paper_system): remove
[lilypond.git] / lily / system.cc
1 /*
2   system.cc -- implement System
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "system.hh"
10
11
12 #include "align-interface.hh"
13 #include "axis-group-interface.hh"
14 #include "warn.hh"
15 #include "main.hh"
16 #include "paper-column.hh"
17 #include "output-def.hh"
18 #include "paper-score.hh"
19 #include "warn.hh"
20 #include "all-font-metrics.hh"
21 #include "spacing-interface.hh"
22 #include "staff-symbol-referencer.hh"
23 #include "paper-book.hh"
24 #include "paper-system.hh"
25 #include "tweak-registration.hh"
26 #include "grob-array.hh"
27 #include "pointer-group-interface.hh"
28
29 System::System (System const &src, int count)
30   : Spanner (src, count)
31 {
32   all_elements_ = 0;
33   rank_ = 0;
34   init_elements ();
35 }
36
37 System::System (SCM s, Object_key const *key)
38   : Spanner (s, key)
39 {
40   all_elements_ = 0;
41   rank_ = 0;
42   init_elements ();
43 }
44
45 void
46 System::init_elements ()
47 {
48   SCM scm_arr = Grob_array::make_array ();
49   all_elements_ = unsmob_grob_array (scm_arr);
50   set_object ("all-elements", scm_arr);
51 }
52
53 Grob *
54 System::clone (int count) const
55 {
56   return new System (*this, count);
57 }
58
59 int
60 System::element_count () const
61 {
62   return all_elements_->size ();
63 }
64
65 int
66 System::spanner_count () const
67 {
68   int k = 0;
69   for (int i = all_elements_->size (); i--;)
70     if (dynamic_cast<Spanner *> (all_elements_->grob (i)))
71       k++;
72   return k;
73 }
74
75 void
76 System::typeset_grob (Grob *elem)
77 {
78   if (elem->pscore_)
79     programming_error ("adding element twice");
80   else
81     {
82       elem->pscore_ = pscore_;
83       all_elements_->add (elem);
84       elem->unprotect ();
85     }
86 }
87
88 void
89 System::derived_mark () const
90 {
91   if (!all_elements_->is_empty ())
92     {
93       Grob **ptr = &all_elements_->array_reference ().elem_ref (0);
94       Grob **end = ptr + all_elements_->size ();
95       while (ptr < end)
96         {
97           scm_gc_mark ((*ptr)->self_scm ());
98           ptr++;
99         }
100     }
101
102   if (pscore_)
103     scm_gc_mark (pscore_->self_scm ());
104
105   Spanner::derived_mark ();
106 }
107
108 static void
109 fixup_refpoints (Link_array<Grob> const &grobs)
110 {
111   for (int i = grobs.size (); i--;)
112     grobs[i]->fixup_refpoint ();
113 }
114
115 SCM
116 System::get_paper_systems ()
117 {
118   for (int i = 0; i < all_elements_->size (); i++)
119     {
120       Grob *g = all_elements_->grob (i);
121       if (g->internal_has_interface (ly_symbol2scm ("only-prebreak-interface")))
122         {
123           /*
124             Kill no longer needed grobs.
125           */
126           Item *it = dynamic_cast<Item *> (g);
127           if (it && Item::is_breakable (it))
128             {
129               it->find_prebroken_piece (LEFT)->suicide ();
130               it->find_prebroken_piece (RIGHT)->suicide ();
131             }
132           g->suicide ();
133         }
134       else if (g->is_live ())
135         g->do_break_processing ();
136     }
137
138   /*
139     fixups must be done in broken line_of_scores, because new elements
140     are put over there.  */
141   int count = 0;
142   for (int i = 0; i < broken_intos_.size (); i++)
143     {
144       Grob *se = broken_intos_[i];
145
146       extract_grob_set (se, "all-elements", all_elts);
147       for (int j = 0; j < all_elts.size (); j++)
148         {
149           Grob *g = all_elts[j];
150           g->fixup_refpoint ();
151         }
152
153       count += all_elts.size ();
154     }
155
156   /*
157     needed for doing items.
158   */
159   fixup_refpoints (all_elements_->array ());
160
161   for (int i = 0; i < all_elements_->size (); i++)
162     all_elements_->grob (i)->handle_broken_dependencies ();
163
164   handle_broken_dependencies ();
165
166 #if 0  /* FIXME: strange side effects.  */
167
168   /* Because the this->get_property (all-elements) contains items in 3
169      versions, handle_broken_dependencies () will leave duplicated
170      items in all-elements.  Strictly speaking this is harmless, but
171      it leads to duplicated symbols in the output.  ly_list_qsort_uniq_x ()
172      makes sure that no duplicates are in the list.  */
173   for (int i = 0; i < line_count; i++)
174     {
175       SCM all = broken_intos_[i]->get_object ("all-elements");
176       all = ly_list_qsort_uniq_x (all);
177     }
178 #endif
179
180   if (be_verbose_global)
181     message (_f ("Element count %d.", count + element_count ()));
182
183   int line_count = broken_intos_.size ();
184   SCM lines = scm_c_make_vector (line_count, SCM_EOL);
185
186   for (int i = 0; i < line_count; i++)
187     {
188       if (be_verbose_global)
189         progress_indication ("[");
190
191       System *system = dynamic_cast<System *> (broken_intos_[i]);
192       system->post_processing ();
193       scm_vector_set_x (lines, scm_from_int (i), system->get_paper_system ());
194
195       if (be_verbose_global)
196         progress_indication (to_string (i) + "]");
197     }
198   return lines;
199 }
200
201 void
202 System::break_into_pieces (Array<Column_x_positions> const &breaking)
203 {
204   for (int i = 0; i < breaking.size (); i++)
205     {
206       System *system = dynamic_cast<System *> (clone (i));
207       system->rank_ = i;
208
209       Link_array<Grob> c (breaking[i].cols_);
210       pscore_->typeset_system (system);
211
212       system->set_bound (LEFT, c[0]);
213       system->set_bound (RIGHT, c.top ());
214       for (int j = 0; j < c.size (); j++)
215         {
216           c[j]->translate_axis (breaking[i].config_[j], X_AXIS);
217           dynamic_cast<Paper_column *> (c[j])->system_ = system;
218         }
219       set_loose_columns (system, &breaking[i]);
220       broken_intos_.push (system);
221     }
222 }
223
224 void
225 System::add_column (Paper_column *p)
226 {
227   Grob *me = this;
228   Grob_array *ga = unsmob_grob_array (me->get_object ("columns"));
229   if (!ga)
230     {
231       SCM scm_ga = Grob_array::make_array ();
232       me->set_object ("columns", scm_ga);
233       ga = unsmob_grob_array (scm_ga);
234     }
235
236   p->rank_
237     = ga->size ()
238     ? Paper_column::get_rank (ga->array ().top ()) + 1
239     : 0;
240
241   ga->add (p);
242   Axis_group_interface::add_element (this, p);
243 }
244
245 void
246 apply_tweaks (Grob *g, bool broken)
247 {
248   if (bool (g->original_) == broken)
249     {
250       SCM tweaks = global_registry_->get_tweaks (g);
251       for (SCM s = tweaks; scm_is_pair (s); s = scm_cdr (s))
252         {
253           SCM proc = scm_caar (s);
254           SCM rest = scm_cdar (s);
255           scm_apply_1 (proc, g->self_scm (), rest);
256         }
257     }
258 }
259
260 void
261 System::pre_processing ()
262 {
263   for (int i = 0; i < all_elements_->size (); i++)
264     all_elements_->grob (i)->discretionary_processing ();
265
266   if (be_verbose_global)
267     message (_f ("Grob count %d", element_count ()));
268
269   /*
270     order is significant: broken grobs are added to the end of the
271     array, and should be processed before the original is potentially
272     killed.
273   */
274   for (int i = all_elements_->size (); i--;)
275     all_elements_->grob (i)->handle_prebroken_dependencies ();
276
277   fixup_refpoints (all_elements_->array ());
278
279   for (int i = 0; i < all_elements_->size (); i++)
280     apply_tweaks (all_elements_->grob (i), false);
281
282   for (int i = 0; i < all_elements_->size (); i++)
283     all_elements_->grob (i)->calculate_dependencies (PRECALCED, PRECALCING,
284                                                      ly_symbol2scm ("before-line-breaking-callback"));
285
286   message (_ ("Calculating line breaks..."));
287   progress_indication (" ");
288
289   for (int i = 0; i < all_elements_->size (); i++)
290     {
291       Grob *e = all_elements_->grob (i);
292       SCM proc = e->get_property ("spacing-procedure");
293       if (ly_is_procedure (proc))
294         scm_call_1 (proc, e->self_scm ());
295     }
296 }
297
298 void
299 System::post_processing ()
300 {
301   for (int i = 0; i < all_elements_->size (); i++)
302     {
303       Grob *g = all_elements_->grob (i);
304
305       apply_tweaks (g, true);
306       g->calculate_dependencies (POSTCALCED, POSTCALCING,
307                                  ly_symbol2scm ("after-line-breaking-callback"));
308     }
309
310   Interval iv (extent (this, Y_AXIS));
311   if (iv.is_empty ())
312     programming_error ("system with empty extent");
313   else
314     translate_axis (-iv[MAX], Y_AXIS);
315
316   /* Generate all stencils to trigger font loads.
317      This might seem inefficient, but Stencils are cached per grob
318      anyway. */
319
320   Link_array<Grob> all_elts_sorted (all_elements_->array ());
321   all_elts_sorted.default_sort ();
322   all_elts_sorted.uniq ();
323   this->get_stencil ();
324   for (int i = all_elts_sorted.size (); i--;)
325     {
326       Grob *g = all_elts_sorted[i];
327       g->get_stencil ();
328     }
329 }
330
331 SCM
332 System::get_paper_system ()
333 {
334   static int const LAYER_COUNT = 3;
335
336   SCM exprs = SCM_EOL;
337   SCM *tail = &exprs;
338
339   /* Output stencils in three layers: 0, 1, 2.  Default layer: 1. */
340   for (int i = 0; i < LAYER_COUNT; i++)
341     for (int j = all_elements_->size (); j--;)
342       {
343         Grob *g = all_elements_->grob (j);
344         Stencil *stil = g->get_stencil ();
345
346         /* Skip empty stencils and grobs that are not in this layer.  */
347         if (!stil
348             || robust_scm2int (g->get_property ("layer"), 1) != i)
349           continue;
350
351         Offset o (g->relative_coordinate (this, X_AXIS),
352                   g->relative_coordinate (this, Y_AXIS));
353
354         Offset extra = robust_scm2offset (g->get_property ("extra-offset"),
355                                           Offset (0, 0))
356           * Staff_symbol_referencer::staff_space (g);
357
358         /* Must copy the stencil, for we cannot change the stencil
359            cached in G.  */
360
361         Stencil st = *stil;
362         st.translate (o + extra);
363
364         *tail = scm_cons (st.expr (), SCM_EOL);
365         tail = SCM_CDRLOC (*tail);
366       }
367
368   if (Stencil *me = get_stencil ())
369     exprs = scm_cons (me->expr (), exprs);
370
371   Interval x (extent (this, X_AXIS));
372   Interval y (extent (this, Y_AXIS));
373   Stencil sys_stencil (Box (x, y),
374                        scm_cons (ly_symbol2scm ("combine-stencil"),
375                                  exprs));
376
377   Interval staff_refpoints;
378   staff_refpoints.set_empty ();
379   extract_grob_set (this, "spaceable-staves", staves);
380   for (int i = staves.size (); i--;)
381     {
382       Grob *g = staves[i];
383       staff_refpoints.add_point (g->relative_coordinate (this, Y_AXIS));
384     }
385
386   Grob *left_bound = this->get_bound (LEFT);
387   SCM prop_init = left_bound->get_property ("line-break-system-details");
388   Paper_system *pl = new Paper_system (sys_stencil,
389                                        prop_init);
390   
391   pl->staff_refpoints_ = staff_refpoints;
392   pl->set_property ("penalty",
393                     left_bound->get_property ("page-penalty"));
394   
395   return pl->unprotect ();
396 }
397
398 Link_array<Item>
399 System::broken_col_range (Item const *left, Item const *right) const
400 {
401   Link_array<Item> ret;
402
403   left = left->get_column ();
404   right = right->get_column ();
405
406   extract_grob_set (this, "columns", cols);
407   int i = 0;
408   while (i < cols.size ()
409          && cols[i] != left)
410     i++;
411
412   if (i < cols.size ())
413     i++;
414
415   while (i < cols.size ()
416          && cols[i] != right)
417     {
418       Paper_column *c = dynamic_cast<Paper_column *> (cols[i]);
419       if (Item::is_breakable (c) && !c->system_)
420         ret.push (c);
421       i++;
422     }
423
424   return ret;
425 }
426
427 /** Return all columns, but filter out any unused columns , since they might
428     disrupt the spacing problem. */
429 Link_array<Grob>
430 System::columns () const
431 {
432   extract_grob_set (this, "columns", ro_columns);
433
434   int last_breakable = ro_columns.size ();
435
436   while (last_breakable--)
437     {
438       if (Item::is_breakable (ro_columns [last_breakable]))
439         break;
440     }
441
442   Link_array<Grob> columns;
443   for (int i = 0; i <= last_breakable; i++)
444     {
445       if (Paper_column::is_used (ro_columns[i]))
446         columns.push (ro_columns[i]);
447     }
448
449   return columns;
450 }
451
452 int
453 System::get_rank () const
454 {
455   return rank_;
456 }
457
458 ADD_INTERFACE (System, "system-interface",
459                "This is the toplevel object: each object in a score "
460                "ultimately has a System object as its X and Y parent. ",
461                "all-elements spaceable-staves columns")