]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-book.cc
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond into topic...
[lilypond.git] / lily / paper-book.cc
1 /*
2   paper-book.cc -- implement Paper_book
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "paper-book.hh"
10
11 #include "grob.hh"
12 #include "main.hh"
13 #include "output-def.hh"
14 #include "paper-column.hh"
15 #include "paper-score.hh"
16 #include "paper-system.hh"
17 #include "text-interface.hh"
18 #include "warn.hh"
19 #include "program-option.hh"
20 #include "page-marker.hh"
21
22 #include "ly-smobs.icc"
23
24 Paper_book::Paper_book ()
25 {
26   header_ = SCM_EOL;
27   header_0_ = SCM_EOL;
28   pages_ = SCM_BOOL_F;
29   scores_ = SCM_EOL;
30   performances_ = SCM_EOL;
31   systems_ = SCM_BOOL_F;
32
33   paper_ = 0;
34   smobify_self ();
35 }
36
37 Paper_book::~Paper_book ()
38 {
39 }
40
41 IMPLEMENT_DEFAULT_EQUAL_P (Paper_book);
42 IMPLEMENT_SMOBS (Paper_book);
43 IMPLEMENT_TYPE_P (Paper_book, "ly:paper-book?");
44
45 SCM
46 Paper_book::mark_smob (SCM smob)
47 {
48   Paper_book *b = (Paper_book *) SCM_CELL_WORD_1 (smob);
49   if (b->paper_)
50     scm_gc_mark (b->paper_->self_scm ());
51   scm_gc_mark (b->header_);
52   scm_gc_mark (b->header_0_);
53   scm_gc_mark (b->pages_);
54   scm_gc_mark (b->performances_);
55   scm_gc_mark (b->scores_);
56   return b->systems_;
57 }
58
59 int
60 Paper_book::print_smob (SCM smob, SCM port, scm_print_state*)
61 {
62   Paper_book *b = (Paper_book *) SCM_CELL_WORD_1 (smob);
63   (void)b;
64   scm_puts ("#<Paper_book>", port);
65   return 1;
66 }
67
68 SCM
69 dump_fields ()
70 {
71   SCM fields = SCM_EOL;
72   for (vsize i = dump_header_fieldnames_global.size (); i--;)
73     fields
74       = scm_cons (ly_symbol2scm (dump_header_fieldnames_global[i].c_str ()),
75                   fields);
76   return fields;
77 }
78
79 void
80 Paper_book::add_score (SCM s)
81 {
82   scores_ = scm_cons (s, scores_);
83 }
84
85 void
86 Paper_book::add_performance (SCM s)
87 {
88   performances_ = scm_cons (s, performances_);
89 }
90
91 void
92 Paper_book::output (SCM output_channel)
93 {
94   if (scm_is_pair (performances_))
95     {
96       SCM proc = ly_lily_module_constant ("write-performances-midis");
97  
98       scm_call_2 (proc, performances (), output_channel);
99     }
100
101   if (scores_ == SCM_EOL)
102     return;
103
104   /* Generate all stencils to trigger font loads.  */
105   pages ();
106
107   SCM scopes = SCM_EOL;
108   if (ly_is_module (header_))
109     scopes = scm_cons (header_, scopes);
110
111   string mod_nm = "scm framework-" + get_output_backend_name ();
112
113   SCM mod = scm_c_resolve_module (mod_nm.c_str ());
114
115   if (get_program_option ("print-pages"))
116     {
117       SCM func = scm_c_module_lookup (mod, "output-framework");
118
119       func = scm_variable_ref (func);
120       scm_apply_0 (func, scm_list_n (output_channel,
121                                      self_scm (),
122                                      scopes,
123                                      dump_fields (),
124                                      SCM_UNDEFINED));
125     }
126
127   if (get_program_option ("preview"))
128     {
129       SCM func = scm_c_module_lookup (mod, "output-preview-framework");
130       func = scm_variable_ref (func);
131       scm_apply_0 (func, scm_list_n (output_channel,
132                                      self_scm (),
133                                      scopes,
134                                      dump_fields (),
135                                      SCM_UNDEFINED));
136     }
137 }
138
139 void
140 Paper_book::classic_output (SCM output)
141 {
142   if (scm_is_pair (performances_))
143     {
144       SCM proc = ly_lily_module_constant ("write-performances-midis");
145  
146       scm_call_2 (proc, performances (), output);
147     }
148   
149   /* Generate all stencils to trigger font loads.  */
150   systems ();
151
152   SCM scopes = SCM_EOL;
153   if (ly_is_module (header_))
154     scopes = scm_cons (header_, scopes);
155
156   if (ly_is_module (header_0_))
157     scopes = scm_cons (header_0_, scopes);
158
159   string format = get_output_backend_name ();
160   string mod_nm = "scm framework-" + format;
161
162   SCM mod = scm_c_resolve_module (mod_nm.c_str ());
163   SCM func = scm_c_module_lookup (mod, "output-classic-framework");
164
165   func = scm_variable_ref (func);
166   scm_apply_0 (func, scm_list_n (output,
167                                  self_scm (),
168                                  scopes,
169                                  dump_fields (),
170                                  SCM_UNDEFINED));
171
172   progress_indication ("\n");
173 }
174
175 /* TODO: resurrect more complex user-tweaks for titling?  */
176 Stencil
177 Paper_book::book_title ()
178 {
179   SCM title_func = paper_->lookup_variable (ly_symbol2scm ("book-title"));
180   Stencil title;
181
182   SCM scopes = SCM_EOL;
183   if (ly_is_module (header_))
184     scopes = scm_cons (header_, scopes);
185
186   SCM tit = SCM_EOL;
187   if (ly_is_procedure (title_func))
188     tit = scm_call_2 (title_func,
189                       paper_->self_scm (),
190                       scopes);
191
192   if (unsmob_stencil (tit))
193     title = *unsmob_stencil (tit);
194
195   if (!title.is_empty ())
196     title.align_to (Y_AXIS, UP);
197
198   return title;
199 }
200
201 Stencil
202 Paper_book::score_title (SCM header)
203 {
204   SCM title_func = paper_->lookup_variable (ly_symbol2scm ("score-title"));
205
206   Stencil title;
207
208   SCM scopes = SCM_EOL;
209   if (ly_is_module (header_))
210     scopes = scm_cons (header_, scopes);
211
212   if (ly_is_module (header))
213     scopes = scm_cons (header, scopes);
214
215   SCM tit = SCM_EOL;
216   if (ly_is_procedure (title_func))
217     tit = scm_call_2 (title_func,
218                       paper_->self_scm (),
219                       scopes);
220
221   if (unsmob_stencil (tit))
222     title = *unsmob_stencil (tit);
223
224   if (!title.is_empty ())
225     title.align_to (Y_AXIS, UP);
226
227   return title;
228 }
229
230 void
231 set_page_permission (SCM sys, SCM symbol, SCM permission)
232 {
233   if (Paper_score *ps = dynamic_cast<Paper_score*> (unsmob_music_output (sys)))
234     {
235       vector<Grob*> cols = ps->get_columns ();
236       if (cols.size ())
237         {
238           Paper_column *col = dynamic_cast<Paper_column*> (cols.back ());
239           col->set_property (symbol, permission);
240           col->find_prebroken_piece (LEFT)->set_property (symbol, permission);
241         }
242     }
243   else if (Prob *pb = unsmob_prob (sys))
244     pb->set_property (symbol, permission);
245 }
246
247 /* read the breakbefore property of a score block and set up the preceding
248    system-spec to honour it. That is, SYS should be the system spec that
249    immediately precedes the score (from which HEADER is taken)
250    in the get_system_specs () list */
251 void
252 set_system_penalty (SCM sys, SCM header)
253 {
254   if (ly_is_module (header))
255     {
256       SCM force = ly_module_lookup (header, ly_symbol2scm ("breakbefore"));
257       if (SCM_VARIABLEP (force)
258           && scm_is_bool (SCM_VARIABLE_REF (force)))
259         {
260           if (to_boolean (SCM_VARIABLE_REF (force)))
261             {
262               set_page_permission (sys, ly_symbol2scm ("page-break-permission"),
263                                    ly_symbol2scm ("force"));
264               set_page_permission (sys, ly_symbol2scm ("line-break-permission"),
265                                    ly_symbol2scm ("force"));
266             }
267           else
268             set_page_permission (sys, ly_symbol2scm ("page-break-permission"), SCM_EOL);
269         }
270     }
271 }
272
273 SCM
274 Paper_book::get_score_title (SCM header)
275 {
276   Stencil title = score_title (header);
277   if (title.is_empty ())
278     title = score_title (header_);
279   if (!title.is_empty ())
280     {
281       /*
282         TODO: this should come from the \layout {} block, which should
283         override settings from \paper {}
284       */
285       SCM props = paper_->lookup_variable (ly_symbol2scm ("score-title-properties"));
286       Prob *ps = make_paper_system (props);
287       paper_system_set_stencil (ps, title);
288
289       return ps->self_scm ();
290     }
291
292   return SCM_BOOL_F;
293 }
294
295
296 SCM
297 Paper_book::get_system_specs ()
298 {
299   SCM system_specs = SCM_EOL;
300   
301   Stencil title = book_title ();
302   if (!title.is_empty ())
303     {
304       SCM props = paper_->lookup_variable (ly_symbol2scm ("book-title-properties"));
305       Prob *ps = make_paper_system (props);
306       paper_system_set_stencil (ps, title);
307
308       system_specs = scm_cons (ps->self_scm (), system_specs);
309       ps->unprotect ();
310     }
311
312   SCM page_properties
313     = scm_call_1 (ly_lily_module_constant ("layout-extract-page-properties"),
314                   paper_->self_scm ());
315
316   SCM header = SCM_EOL;
317   for (SCM s = scm_reverse (scores_); scm_is_pair (s); s = scm_cdr (s))
318     {
319       if (ly_is_module (scm_car (s)))
320         {
321           header = scm_car (s);
322           if (header_0_ == SCM_EOL)
323             header_0_ = header;
324         }
325       else if (Page_marker *page_marker = unsmob_page_marker (scm_car (s)))
326         {
327           /* a page marker: set previous element page break or turn permission */
328           if (scm_is_pair (system_specs))
329             set_page_permission (scm_car (system_specs),
330                                  page_marker->permission_symbol (),
331                                  page_marker->permission_value ());
332         }
333       else if (Music_output *mop = unsmob_music_output (scm_car (s)))
334         {
335           if (Paper_score *pscore = dynamic_cast<Paper_score *> (mop))
336             {
337               SCM title = get_score_title (header);
338
339               if (scm_is_pair (system_specs))
340                 set_system_penalty (scm_car (system_specs), header);
341
342               if (unsmob_prob (title))
343                 {
344                   system_specs = scm_cons (title, system_specs);
345                   unsmob_prob (title)->unprotect ();
346                 }
347
348               header = SCM_EOL;
349               system_specs = scm_cons (pscore->self_scm (), system_specs);
350             }
351           else
352             {
353               /*
354                 Ignore MIDI
355               */
356             }
357         }
358       else if (Text_interface::is_markup (scm_car (s)))
359         {
360           SCM t = Text_interface::interpret_markup (paper_->self_scm (),
361                                                     page_properties,
362                                                     scm_car (s));
363           
364           // TODO: init props
365           Prob *ps = make_paper_system (SCM_EOL);
366           ps->set_property ("page-break-permission", ly_symbol2scm ("allow"));
367           ps->set_property ("page-turn-permission", ly_symbol2scm ("allow"));
368           
369           paper_system_set_stencil (ps, *unsmob_stencil (t));
370           ps->set_property ("is-title", SCM_BOOL_T); 
371           system_specs = scm_cons (ps->self_scm (), system_specs);
372           ps->unprotect ();
373           
374           // FIXME: figure out penalty.
375           //set_system_penalty (ps, scores_[i].header_);
376         }
377       else
378         assert (0);
379     }
380
381   system_specs = scm_reverse_x (system_specs, SCM_EOL);
382   return system_specs;
383 }
384
385 SCM
386 Paper_book::systems ()
387 {
388   if (systems_ != SCM_BOOL_F)
389     return systems_;
390
391   systems_ = SCM_EOL;
392   SCM specs = get_system_specs ();
393   for (SCM s = specs; scm_is_pair (s); s = scm_cdr (s))
394     {
395       if (Paper_score *pscore = dynamic_cast<Paper_score*> (unsmob_music_output (scm_car (s))))
396         {
397           SCM system_list = scm_vector_to_list (pscore->get_paper_systems ());
398           system_list = scm_reverse (system_list);
399           systems_ = scm_append (scm_list_2 (system_list, systems_));
400         }
401       else
402         {
403           systems_ = scm_cons (scm_car (s), systems_);
404         }
405     }
406   
407   systems_ = scm_reverse (systems_);
408
409   /* backwards compatibility for the old page breaker */
410   int i = 0;
411   Prob *last = 0;
412   for (SCM s = systems_; scm_is_pair (s); s = scm_cdr (s))
413     {
414       Prob *ps = unsmob_prob (scm_car (s));
415       ps->set_property ("number", scm_from_int (++i));
416
417       if (last
418           && to_boolean (last->get_property ("is-title"))
419           && !scm_is_number (ps->get_property ("penalty")))
420         ps->set_property ("penalty", scm_from_int (10000));
421       last = ps;
422
423       if (scm_is_pair (scm_cdr (s)))
424         {
425           SCM perm = ps->get_property ("page-break-permission");
426           Prob *next = unsmob_prob (scm_cadr (s));
427           if (perm == SCM_EOL)
428             next->set_property ("penalty", scm_from_int (10001));
429           else if (perm == ly_symbol2scm ("force"))
430             next->set_property ("penalty", scm_from_int (-10001));
431         }
432     }
433
434   return systems_;
435 }
436
437 SCM
438 Paper_book::pages ()
439 {
440   if (SCM_BOOL_F != pages_)
441     return pages_;
442
443   pages_ = SCM_EOL;
444   SCM proc = paper_->c_variable ("page-breaking-wrapper");
445   pages_ = scm_apply_0 (proc, scm_list_1 (self_scm ()));
446
447   /* set systems_ from the pages */
448   if (systems_ == SCM_BOOL_F)
449     {
450       systems_ = SCM_EOL;
451       for (SCM p = pages_; scm_is_pair (p); p = scm_cdr (p))
452         {
453           Prob *page = unsmob_prob (scm_car (p));
454           SCM systems = page->get_property ("lines");
455
456           systems_ = scm_append (scm_list_2 (systems_, systems));
457         }
458     }
459
460   return pages_;
461 }
462
463 SCM
464 Paper_book::performances () const
465 {
466   return scm_reverse (performances_);
467 }