]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-book.cc
* lily/text-item.cc (interpret_string): new file, select font with
[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 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include <stdio.h>
10 #include <math.h>
11
12 #include "ly-module.hh"
13 #include "main.hh"
14 #include "paper-book.hh"
15 #include "paper-def.hh"
16 #include "paper-outputter.hh"
17 #include "paper-line.hh"
18 #include "paper-score.hh"
19 #include "stencil.hh"
20
21 static Real const MIN_COVERAGE = 0.66;
22
23 static SCM
24 stencil2line (Stencil* stil, bool is_title = false)
25 {
26   static SCM z;
27   if (!z)
28     z = scm_permanent_object (ly_offset2scm (Offset (0, 0)));
29   Offset dim = Offset (stil->extent (X_AXIS).length (),
30                        stil->extent (Y_AXIS).length ());
31   Paper_line *pl = new Paper_line (dim, scm_cons (stil->smobbed_copy (),
32                                                   SCM_EOL), is_title);
33
34   return scm_gc_unprotect_object (pl->self_scm ());
35 }
36
37 /* Simplistic page interface */
38 class Page
39 {
40 public:
41   Paper_def *paper_;
42   static int page_count_;
43   int number_;
44   int line_count_;
45
46   Protected_scm lines_;
47   Protected_scm header_;
48   Protected_scm footer_;
49   Protected_scm copyright_;
50   Protected_scm tagline_;
51   
52   Stencil *get_header () { return unsmob_stencil (header_); }
53   Stencil *get_copyright () { return unsmob_stencil (copyright_); }
54   Stencil *get_tagline () { return unsmob_stencil (tagline_); }
55   Stencil *get_footer () { return unsmob_stencil (footer_); }
56
57   /* actual height filled with text.  */
58   Real height_;
59   
60   // HMMM all this size stuff to paper/paper-outputter?
61   Real hsize_;
62   Real vsize_;
63   Real left_margin_;
64   Real top_margin_;
65   Real bottom_margin_;
66   Real foot_sep_;
67   Real head_sep_;
68   Real text_width_;
69
70   /* available area for text.  */
71   Real text_height ();
72
73   Page (Paper_def*, int);
74   void output (Paper_outputter*, bool);
75 };
76
77 int Page::page_count_ = 0;
78
79 Page::Page (Paper_def *paper, int number)
80 {
81   paper_ = paper;
82   number_ = number;
83   page_count_++;
84   
85   height_ = 0;
86   lines_ = SCM_EOL;
87   line_count_ = 0;
88
89   hsize_ = paper->get_dimension (ly_symbol2scm ("hsize"));
90   vsize_ = paper->get_dimension (ly_symbol2scm ("vsize"));
91   top_margin_ = paper->get_dimension (ly_symbol2scm ("top-margin"));
92   bottom_margin_ = paper->get_dimension (ly_symbol2scm ("bottom-margin"));
93   head_sep_ = paper->get_dimension (ly_symbol2scm ("head-sep"));
94   foot_sep_ = paper->get_dimension (ly_symbol2scm ("foot-sep"));
95   text_width_ = paper->get_dimension (ly_symbol2scm ("linewidth"));
96   left_margin_ = (hsize_ - text_width_) / 2;
97   
98   copyright_ = SCM_EOL;
99   tagline_ = SCM_EOL;
100   
101   SCM make_header = ly_scheme_function ("make-header");
102   SCM make_footer = ly_scheme_function ("make-footer");
103
104   header_ = scm_call_2 (make_header, paper_->self_scm (),
105                         scm_int2num (number_));
106   if (get_header ())
107     get_header ()->align_to (Y_AXIS, UP);
108     
109   footer_ = scm_call_2 (make_footer, paper_->self_scm (),
110                         scm_int2num (number_));
111   if (get_footer ())
112     get_footer ()->align_to (Y_AXIS, UP);
113 }
114
115 void
116 Page::output (Paper_outputter *out, bool is_last)
117 {
118   progress_indication ("[" + to_string (number_));
119   out->output_scheme (scm_list_1 (ly_symbol2scm ("start-page")));
120   Offset o (left_margin_, top_margin_);
121   Real vfill = line_count_ > 1 ? (text_height () - height_) / (line_count_ - 1)
122     : 0;
123
124   Real coverage = height_ / text_height ();
125   if (coverage < MIN_COVERAGE)
126     /* Do not space out a badly filled page.  This is too simplistic
127        (ie broken), because this should not vary too much between
128        (subsequent?) pages in a book.  */
129     vfill = 0;
130
131   if (get_header ())
132     {
133       out->output_line (stencil2line (get_header ()), &o, false);
134       o[Y_AXIS] += head_sep_;
135     }
136   for (SCM s = lines_; s != SCM_EOL; s = ly_cdr (s))
137     {
138       SCM line = ly_car (s);
139       out->output_line (line, &o,
140                         is_last && ly_cdr (s) != SCM_EOL && !get_copyright ()
141                         && !get_tagline () && !get_footer ());
142       
143       /* Do not put vfill between title and its music, */
144       if (scm_pair_p (ly_cdr (s))
145           && (!unsmob_paper_line (line)->is_title () || vfill < 0))
146         o[Y_AXIS] += vfill;
147       /* rather put extra just before the title.  */
148       if (ly_cdr (s) != SCM_EOL
149           && (unsmob_paper_line (ly_cadr (s))->is_title () && vfill > 0))
150         o[Y_AXIS] += vfill;
151     }
152
153   o[Y_AXIS] = vsize_ - bottom_margin_;
154   if (get_copyright ())
155     o[Y_AXIS] -= get_copyright ()->extent (Y_AXIS).length ();
156   if (get_tagline ())
157     o[Y_AXIS] -= get_tagline ()->extent (Y_AXIS).length ();
158   if (get_footer ())
159     o[Y_AXIS] -= get_footer ()->extent (Y_AXIS).length ();
160
161   if (get_copyright ())
162     out->output_line (stencil2line (get_copyright ()), &o,
163                       is_last && !get_tagline () && !get_footer ());
164   if (get_tagline ())
165     out->output_line (stencil2line (get_tagline ()), &o,
166                       is_last && !get_footer ());
167   if (get_footer ())
168     out->output_line (stencil2line (get_footer ()), &o, is_last);
169   out->output_scheme (scm_list_2 (ly_symbol2scm ("stop-page"),
170                                   ly_bool2scm (is_last && !get_footer ())));
171   progress_indication ("]");
172 }
173
174 Real
175 Page::text_height ()
176 {
177   Real h = vsize_ - top_margin_ - bottom_margin_;
178   if (get_header ())
179     h -= get_header ()->extent (Y_AXIS).length () + head_sep_;
180   if (get_copyright () || get_tagline () || get_footer ())
181     h -= foot_sep_;
182   if (get_copyright ())
183     h -= get_copyright ()->extent (Y_AXIS).length ();
184   if (get_tagline ())
185     h -= get_tagline ()->extent (Y_AXIS).length ();
186   if (get_footer ())
187     h -= get_footer ()->extent (Y_AXIS).length ();
188   return h;
189 }
190
191 /****************************************************************/
192
193 /* Current global paper book.  Gives default_rendering access from
194    input-file-results.  */
195 Paper_book *paper_book;
196
197 Paper_book::Paper_book ()
198 {
199   copyright_ = SCM_EOL;
200   tagline_ = SCM_EOL;
201   
202   smobify_self ();
203 }
204
205 Paper_book::~Paper_book ()
206 {
207 }
208
209 #include "ly-smobs.icc"
210
211 IMPLEMENT_DEFAULT_EQUAL_P (Paper_book);
212 IMPLEMENT_SMOBS (Paper_book)
213 IMPLEMENT_TYPE_P (Paper_book, "ly:paper-book?")
214
215 SCM
216 Paper_book::mark_smob (SCM smob)
217 {
218   Paper_book *pb = (Paper_book*) SCM_CELL_WORD_1 (smob);
219   for (int i = 0; i < pb->headers_.size (); i++)
220     scm_gc_mark (pb->headers_[i]);
221   for (int i = 0; i < pb->global_headers_.size (); i++)
222     scm_gc_mark (pb->global_headers_[i]);
223   for (int i = 0; i < pb->papers_.size (); i++)
224     scm_gc_mark (pb->papers_[i]->self_scm ());
225   for (int i = 0; i < pb->scores_.size (); i++)
226     scm_gc_mark (pb->scores_[i]);
227
228   scm_gc_mark (pb->copyright_);
229   
230   return pb->tagline_;
231 }
232
233 int
234 Paper_book::print_smob (SCM smob, SCM port, scm_print_state*)
235 {
236   Paper_book *b = (Paper_book*) ly_cdr (smob);
237      
238   scm_puts ("#<", port);
239   scm_puts (classname (b), port);
240   scm_puts (" ", port);
241   //scm_puts (b->, port);
242   scm_puts (">", port);
243   return 1;
244 }
245
246 void
247 Paper_book::output (String outname)
248 {
249   if (!papers_.size ())
250     return;
251     
252   /* Generate all stencils to trigger font loads.  */
253   Link_array<Page> *pages = this->pages ();
254
255   Paper_def *paper = papers_[0];
256   Paper_outputter *out = paper->get_paper_outputter (outname);
257   out->output_header (paper, scopes (0), pages->size ());
258
259   int page_count = pages->size ();
260   for (int i = 0; i < page_count; i++)
261     (*pages)[i]->output (out, i + 1 == page_count);
262
263   out->output_scheme (scm_list_1 (ly_symbol2scm ("end-output")));
264
265   /*
266     Ugh
267    */
268   for (int i =pages->size (); i--;)
269     delete pages->elem(i);
270   delete pages;
271
272   
273   progress_indication ("\n");
274 }
275
276 SCM
277 Paper_book::scopes (int i)
278 {
279   SCM scopes = SCM_EOL;
280   if (headers_[i])
281     scopes = scm_cons (headers_[i], scopes);
282   if (global_headers_[i] && global_headers_[i] != headers_[i])
283     scopes = scm_cons (global_headers_[i], scopes);
284   return scopes;
285 }
286
287 Stencil*
288 Paper_book::title (int i)
289 {
290   SCM user_title = ly_scheme_function ("user-title");
291     SCM book_title = ly_scheme_function ("book-title");
292     SCM score_title = ly_scheme_function ("score-title");
293   SCM field = (i == 0 ? ly_symbol2scm ("bookTitle")
294                : ly_symbol2scm ("scoreTitle"));
295
296   Stencil *title = 0;
297   SCM scopes = this->scopes (i);
298   SCM s = ly_modules_lookup (scopes, field);
299   if (s != SCM_UNDEFINED && scm_variable_bound_p (s) == SCM_BOOL_T)
300     title = unsmob_stencil (scm_call_2 (user_title,
301                                         papers_[0]->self_scm (),
302                                         scm_variable_ref (s)));
303   else
304     title = unsmob_stencil (scm_call_2 (i == 0 ? book_title : score_title,
305                                         papers_[0]->self_scm (),
306                                         scopes));
307   if (title)
308     title->align_to (Y_AXIS, UP);
309   
310   return title;
311 }
312
313 void
314 Paper_book::classic_output (String outname)
315 {
316   int count = scores_.size ();
317   Paper_outputter *out = papers_.top ()->get_paper_outputter (outname);
318   out->output_header (papers_.top (), scopes (count - 1), 0);
319
320   int line_count = SCM_VECTOR_LENGTH ((SCM) scores_.top ());
321   for (int i = 0; i < line_count; i++)
322     out->output_line (scm_vector_ref ((SCM) scores_.top (), scm_int2num (i)),
323                       0, i == line_count - 1);
324   
325   out->output_scheme (scm_list_1 (ly_symbol2scm ("end-output")));
326   progress_indication ("\n");
327 }
328
329
330 /* calculate book height, #lines, stencils.  */
331 void
332 Paper_book::init ()
333 {
334   int score_count = scores_.size ();
335
336   /* Calculate the full book height.  Hmm, can't we cache system
337      heights while making stencils?  */
338   height_ = 0;
339   for (int i = 0; i < score_count; i++)
340     {
341       Stencil *title = this->title (i);
342       if (title)
343         height_ += title->extent (Y_AXIS).length ();
344
345       int line_count = SCM_VECTOR_LENGTH ((SCM) scores_[i]);
346       for (int j = 0; j < line_count; j++)
347         {
348           SCM s = scm_vector_ref ((SCM) scores_[i], scm_int2num (j));
349           height_ += unsmob_paper_line (s)->dim ()[Y_AXIS];
350         }
351     }
352
353   Paper_def *paper = papers_[0];
354   SCM scopes = this->scopes (0);
355
356   SCM make_tagline = ly_scheme_function ("make-tagline");
357   tagline_ = scm_call_2 (make_tagline, paper->self_scm (), scopes);
358   Real tag_height = 0;
359   if (Stencil *s = unsmob_stencil (tagline_))
360     tag_height = s->extent (Y_AXIS).length ();
361   height_ += tag_height;
362
363   SCM make_copyright = ly_scheme_function ("make-copyright");
364   copyright_ = scm_call_2 (make_copyright, paper->self_scm (), scopes);
365   Real copy_height = 0;
366   if (Stencil *s = unsmob_stencil (copyright_))
367     copy_height = s->extent (Y_AXIS).length ();
368   height_ += copy_height;
369 }
370
371 SCM
372 Paper_book::lines ()
373 {
374   int score_count = scores_.size ();
375   SCM lines = SCM_EOL;
376   for (int i = 0; i < score_count; i++)
377     {
378       if (Stencil *title = this->title (i))
379         lines = ly_snoc (stencil2line (title, true), lines);
380       lines = scm_append (scm_list_2 (lines, scm_vector_to_list (scores_[i])));
381     }
382   //debug helper; ughr
383   int i = 0;
384   for (SCM s = lines; s != SCM_EOL; s = ly_cdr (s))
385     unsmob_paper_line (ly_car (s))->number_ = ++i;
386   return lines;
387 }
388
389 Link_array<Page>*
390 Paper_book::pages ()
391 {
392   init ();
393   Page::page_count_ = 0;
394   Paper_def *paper = papers_[0];
395   Page *page = new Page (paper, 1);
396
397   Real text_height = page->text_height ();
398
399   Real copy_height = 0;
400   if (Stencil *s = unsmob_stencil (copyright_))
401     copy_height = s->extent (Y_AXIS).length ();
402
403   Real tag_height = 0;
404   if (Stencil *s = unsmob_stencil (tagline_))
405     tag_height = s->extent (Y_AXIS).length ();
406
407   SCM all = lines ();
408   SCM proc = paper->get_scmvar ("page-breaking");
409   SCM breaks = scm_apply_0 (proc, scm_list_n (all, scm_make_real (height_),
410                                             scm_make_real (text_height),
411                                             scm_make_real (-copy_height),
412                                             scm_make_real (-tag_height),
413                                             SCM_UNDEFINED));
414
415   /* Copyright on first page.  */
416   if (unsmob_stencil (copyright_))
417     page->copyright_ = copyright_;
418
419   Link_array<Page> *pages = new Link_array<Page>;
420   int page_count = SCM_VECTOR_LENGTH ((SCM) breaks);
421   int line = 1;
422   for (int i = 0; i < page_count; i++)
423     {
424       if (i)
425         page = new Page (paper, i+1);
426       int next = i + 1 < page_count
427         ? ly_scm2int (scm_vector_ref (breaks, scm_int2num (i))) : 0;
428       while ((!next && all != SCM_EOL) || line <= next)
429         {
430           SCM s = ly_car (all);
431           page->lines_ = ly_snoc (s, page->lines_);
432           page->height_ += unsmob_paper_line (s)->dim ()[Y_AXIS];
433           page->line_count_++;
434           all = ly_cdr (all);
435           line++;
436         }
437       pages->push (page);
438     }
439
440   /* Tagline on last page.  */
441   if (unsmob_stencil (tagline_))
442     page->tagline_ = tagline_;
443
444   return pages;
445 }
446
447 static SCM
448 c_ragged_page_breaks (SCM lines, Real book_height, Real text_height,
449                       Real first, Real last)
450 {
451   int page_number = 0;
452   int page_count = int (book_height / text_height + 0.5);
453   SCM breaks = SCM_EOL;
454   Real page_height = text_height + first;
455   Real h = 0;
456   int number = 0;
457   for (SCM s = lines; s != SCM_EOL; s = ly_cdr (s))
458     {
459       Paper_line *pl = unsmob_paper_line (ly_car (s));
460       if (!pl->is_title () && h < page_height)
461         number++;
462       h += pl->dim ()[Y_AXIS];
463       if (!pl->is_title () && h > page_height)
464         {
465           breaks = ly_snoc (scm_int2num (number), breaks);
466           page_number++;
467           page_height = text_height + (page_number == page_count) * last;
468           h = 0;
469         }
470       if (ly_cdr (s) == SCM_EOL)
471         breaks = ly_snoc (scm_int2num (pl->number_), breaks);
472     }
473
474   return scm_vector (breaks);
475 }
476
477 LY_DEFINE (ly_ragged_page_breaks, "ly:ragged-page-breaks",
478            5, 0, 0, (SCM lines, SCM book, SCM text, SCM first, SCM last),
479            "Return a vector with line numbers of page breaks.")
480 {
481   SCM_ASSERT_TYPE (scm_pair_p (lines), lines, SCM_ARG1, __FUNCTION__, "list");
482   SCM_ASSERT_TYPE (is_number (book), book, SCM_ARG2, __FUNCTION__, "real");
483   SCM_ASSERT_TYPE (is_number (text), text, SCM_ARG2, __FUNCTION__, "real");
484   SCM_ASSERT_TYPE (is_number (first), first, SCM_ARG2, __FUNCTION__, "real");
485   SCM_ASSERT_TYPE (is_number (last), last, SCM_ARG2, __FUNCTION__, "real");
486
487   return c_ragged_page_breaks (lines,
488                                ly_scm2double (book), ly_scm2double (text),
489                                ly_scm2double (first), ly_scm2double (last));
490 }