2 paper-book.cc -- implement Paper_book
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2006 Jan Nieuwenhuizen <janneke@gnu.org>
9 #include "paper-book.hh"
12 #include "output-def.hh"
13 #include "paper-score.hh"
14 #include "paper-system.hh"
15 #include "text-interface.hh"
18 #include "ly-smobs.icc"
20 Paper_book::Paper_book ()
26 performances_ = SCM_EOL;
27 systems_ = SCM_BOOL_F;
33 Paper_book::~Paper_book ()
37 IMPLEMENT_DEFAULT_EQUAL_P (Paper_book);
38 IMPLEMENT_SMOBS (Paper_book);
39 IMPLEMENT_TYPE_P (Paper_book, "ly:paper-book?");
42 Paper_book::mark_smob (SCM smob)
44 Paper_book *b = (Paper_book *) SCM_CELL_WORD_1 (smob);
46 scm_gc_mark (b->paper_->self_scm ());
47 scm_gc_mark (b->header_);
48 scm_gc_mark (b->header_0_);
49 scm_gc_mark (b->pages_);
50 scm_gc_mark (b->performances_);
51 scm_gc_mark (b->scores_);
56 Paper_book::print_smob (SCM smob, SCM port, scm_print_state*)
58 Paper_book *b = (Paper_book *) SCM_CELL_WORD_1 (smob);
60 scm_puts ("#<Paper_book>", port);
68 for (vsize i = dump_header_fieldnames_global.size (); i--;)
70 = scm_cons (ly_symbol2scm (dump_header_fieldnames_global[i].c_str ()),
76 Paper_book::add_score (SCM s)
78 scores_ = scm_cons (s, scores_);
82 Paper_book::add_performance (SCM s)
84 performances_ = scm_cons (s, performances_);
88 Paper_book::output (SCM output_channel)
90 if (scm_is_pair (performances_))
92 SCM proc = ly_lily_module_constant ("paper-book-write-midis");
94 scm_call_2 (proc, self_scm (), output_channel);
97 if (scores_ == SCM_EOL)
100 /* Generate all stencils to trigger font loads. */
103 SCM scopes = SCM_EOL;
104 if (ly_is_module (header_))
105 scopes = scm_cons (header_, scopes);
107 string mod_nm = "scm framework-" + output_backend_global;
109 SCM mod = scm_c_resolve_module (mod_nm.c_str ());
112 SCM func = scm_c_module_lookup (mod, "output-framework");
114 func = scm_variable_ref (func);
115 scm_apply_0 (func, scm_list_n (output_channel,
124 SCM func = scm_c_module_lookup (mod, "output-preview-framework");
125 func = scm_variable_ref (func);
126 scm_apply_0 (func, scm_list_n (output_channel,
135 Paper_book::classic_output (SCM output)
137 /* Generate all stencils to trigger font loads. */
140 SCM scopes = SCM_EOL;
141 if (ly_is_module (header_))
142 scopes = scm_cons (header_, scopes);
144 if (ly_is_module (header_0_))
145 scopes = scm_cons (header_0_, scopes);
147 string format = output_backend_global;
148 string mod_nm = "scm framework-" + format;
150 SCM mod = scm_c_resolve_module (mod_nm.c_str ());
151 SCM func = scm_c_module_lookup (mod, "output-classic-framework");
153 func = scm_variable_ref (func);
154 scm_apply_0 (func, scm_list_n (output,
160 progress_indication ("\n");
163 /* TODO: resurrect more complex user-tweaks for titling? */
165 Paper_book::book_title ()
167 SCM title_func = paper_->lookup_variable (ly_symbol2scm ("book-title"));
170 SCM scopes = SCM_EOL;
171 if (ly_is_module (header_))
172 scopes = scm_cons (header_, scopes);
175 if (ly_is_procedure (title_func))
176 tit = scm_call_2 (title_func,
180 if (unsmob_stencil (tit))
181 title = *unsmob_stencil (tit);
183 if (!title.is_empty ())
184 title.align_to (Y_AXIS, UP);
190 Paper_book::score_title (SCM header)
192 SCM title_func = paper_->lookup_variable (ly_symbol2scm ("score-title"));
196 SCM scopes = SCM_EOL;
197 if (ly_is_module (header_))
198 scopes = scm_cons (header_, scopes);
200 if (ly_is_module (header))
201 scopes = scm_cons (header, scopes);
204 if (ly_is_procedure (title_func))
205 tit = scm_call_2 (title_func,
209 if (unsmob_stencil (tit))
210 title = *unsmob_stencil (tit);
212 if (!title.is_empty ())
213 title.align_to (Y_AXIS, UP);
219 set_system_penalty (Prob *ps, SCM header)
221 if (ly_is_module (header))
223 SCM force = ly_module_lookup (header, ly_symbol2scm ("breakbefore"));
224 if (SCM_VARIABLEP (force)
225 && scm_is_bool (SCM_VARIABLE_REF (force)))
227 ps->set_property ("penalty",
228 scm_from_int(to_boolean (SCM_VARIABLE_REF (force))
237 Paper_book::get_score_title (SCM header)
239 Stencil title = score_title (header);
240 if (title.is_empty ())
241 title = score_title (header_);
242 if (!title.is_empty ())
245 TODO: this should come from the \layout {} block, which should
246 override settings from \paper {}
248 SCM props = paper_->lookup_variable (ly_symbol2scm ("score-title-properties"));
249 Prob *ps = make_paper_system (props);
250 paper_system_set_stencil (ps, title);
251 set_system_penalty (ps, header);
253 return ps->self_scm();
261 Paper_book::get_system_specs ()
263 SCM system_specs = SCM_EOL;
265 Stencil title = book_title ();
266 if (!title.is_empty ())
268 SCM props = paper_->lookup_variable (ly_symbol2scm ("book-title-properties"));
269 Prob *ps = make_paper_system (props);
270 paper_system_set_stencil (ps, title);
271 set_system_penalty (ps, header_);
273 system_specs = scm_cons (ps->self_scm (), system_specs);
278 = scm_call_1 (ly_lily_module_constant ("layout-extract-page-properties"),
279 paper_->self_scm ());
281 SCM header = SCM_EOL;
282 for (SCM s = scm_reverse (scores_); s != SCM_EOL; s = scm_cdr (s))
284 if (ly_is_module (scm_car (s)))
286 header = scm_car (s);
287 if (header_0_ == SCM_EOL)
290 else if (Music_output *mop = unsmob_music_output (scm_car (s)))
292 if (Paper_score *pscore = dynamic_cast<Paper_score *> (mop))
294 SCM title = get_score_title (header);
295 if (unsmob_prob (title))
297 system_specs = scm_cons (title, system_specs);
298 unsmob_prob (title)->unprotect ();
302 system_specs = scm_cons (pscore->self_scm (), system_specs);
311 else if (Text_interface::is_markup (scm_car (s)))
313 SCM t = Text_interface::interpret_markup (paper_->self_scm (),
318 Prob *ps = make_paper_system (SCM_EOL);
319 paper_system_set_stencil (ps, *unsmob_stencil (t));
320 ps->set_property ("is-title", SCM_BOOL_T);
321 system_specs = scm_cons (ps->self_scm (), system_specs);
324 // FIXME: figure out penalty.
325 //set_system_penalty (ps, scores_[i].header_);
331 system_specs = scm_reverse_x (system_specs, SCM_EOL);
336 Paper_book::systems ()
338 if (systems_ != SCM_BOOL_F)
342 SCM specs = get_system_specs ();
343 for (SCM s = specs; scm_is_pair (s); s = scm_cdr (s))
345 if (Paper_score *pscore = dynamic_cast<Paper_score*> (unsmob_music_output (scm_car (s))))
347 SCM system_list = scm_vector_to_list (pscore->get_paper_systems ());
348 system_list = scm_reverse (system_list);
349 systems_ = scm_append (scm_list_2 (system_list, systems_));
353 systems_ = scm_cons (scm_car (s), systems_);
357 systems_ = scm_reverse (systems_);
361 for (SCM s = systems_; s != SCM_EOL; s = scm_cdr (s))
363 Prob *ps = unsmob_prob (scm_car (s));
364 ps->set_property ("number", scm_from_int (++i));
367 && to_boolean (last->get_property ("is-title"))
368 && !scm_is_number (ps->get_property ("penalty")))
369 ps->set_property ("penalty", scm_from_int (10000));
379 if (SCM_BOOL_F != pages_)
383 SCM proc = paper_->c_variable ("page-breaking");
384 pages_ = scm_apply_0 (proc, scm_list_2 (systems (), self_scm ()));
389 Paper_book::performances () const
391 return scm_reverse (performances_);