]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-book.cc
* lily/book.cc (to_stencil): New method.
[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 "ly-module.hh"
10 #include "main.hh"
11 #include "page.hh"
12 #include "paper-book.hh"
13 #include "paper-def.hh"
14 #include "paper-outputter.hh"
15 #include "paper-line.hh"
16 #include "paper-score.hh"
17 #include "stencil.hh"
18 #include "warn.hh"
19
20 // JUNKME
21 SCM
22 stencil2line (Stencil* stil, bool is_title = false)
23 {
24   static SCM z;
25   if (!z)
26     z = scm_permanent_object (ly_offset2scm (Offset (0, 0)));
27   Offset dim = Offset (stil->extent (X_AXIS).length (),
28                        stil->extent (Y_AXIS).length ());
29   Paper_line *pl = new Paper_line (dim, scm_cons (stil->smobbed_copy (),
30                                                   SCM_EOL),
31                                    -10001 * is_title, is_title);
32
33   return scm_gc_unprotect_object (pl->self_scm ());
34 }
35
36
37 Paper_book::Paper_book ()
38 {
39   copyright_ = SCM_EOL;
40   tagline_ = SCM_EOL;
41   
42   smobify_self ();
43 }
44
45 Paper_book::~Paper_book ()
46 {
47 }
48
49 #include "ly-smobs.icc"
50
51 IMPLEMENT_DEFAULT_EQUAL_P (Paper_book);
52 IMPLEMENT_SMOBS (Paper_book)
53 IMPLEMENT_TYPE_P (Paper_book, "ly:paper-book?")
54
55 SCM
56 Paper_book::mark_smob (SCM smob)
57 {
58   Paper_book *b = (Paper_book*) SCM_CELL_WORD_1 (smob);
59   for (int i = 0; i < b->headers_.size (); i++)
60     scm_gc_mark (b->headers_[i]);
61   for (int i = 0; i < b->global_headers_.size (); i++)
62     scm_gc_mark (b->global_headers_[i]);
63   for (int i = 0; i < b->papers_.size (); i++)
64     scm_gc_mark (b->papers_[i]->self_scm ());
65   for (int i = 0; i < b->scores_.size (); i++)
66     scm_gc_mark (b->scores_[i]);
67
68   scm_gc_mark (b->copyright_);
69   
70   return b->tagline_;
71 }
72
73 int
74 Paper_book::print_smob (SCM smob, SCM port, scm_print_state*)
75 {
76   Paper_book *b = (Paper_book*) ly_cdr (smob);
77      
78   scm_puts ("#<", port);
79   scm_puts (classname (b), port);
80   scm_puts (" ", port);
81   //scm_puts (b->, port);
82   scm_puts (">", port);
83   return 1;
84 }
85
86 void
87 Paper_book::output (String outname)
88 {
89   if (!papers_.size ())
90     // FIXME: no end-output?
91     return;
92     
93   /* Generate all stencils to trigger font loads.  */
94   SCM pages = this->pages ();
95
96   Paper_def *paper = papers_[0];
97   Paper_outputter *out = paper->get_paper_outputter (outname);
98   int page_count = scm_ilength (pages);
99   out->output_header (paper, scopes (0), page_count, false);
100
101   for (SCM s = pages; s != SCM_EOL; s = ly_cdr (s))
102     {
103       Page *p = unsmob_page (ly_car (s));
104       progress_indication ("[" + to_string (p->number_));
105       out->output_page (p, ly_cdr (s) == SCM_EOL);
106       progress_indication ("]");
107     }
108
109   out->output_scheme (scm_list_1 (ly_symbol2scm ("end-output")));
110   progress_indication ("\n");
111 }
112
113 SCM
114 Paper_book::scopes (int i)
115 {
116   SCM scopes = SCM_EOL;
117   if (headers_[i])
118     scopes = scm_cons (headers_[i], scopes);
119   if (global_headers_.size ()
120       && global_headers_[i] && global_headers_[i] != headers_[i])
121     scopes = scm_cons (global_headers_[i], scopes);
122   return scopes;
123 }
124
125 Stencil*
126 Paper_book::title (int i)
127 {
128   SCM user_title = ly_scheme_function ("user-title");
129   SCM book_title = ly_scheme_function ("book-title");
130   SCM score_title = ly_scheme_function ("score-title");
131   SCM field = (i == 0 ? ly_symbol2scm ("bookTitle")
132                : ly_symbol2scm ("scoreTitle"));
133
134   Stencil *title = 0;
135   SCM scopes = this->scopes (i);
136   SCM s = ly_modules_lookup (scopes, field);
137   if (s != SCM_UNDEFINED && scm_variable_bound_p (s) == SCM_BOOL_T)
138     title = unsmob_stencil (scm_call_2 (user_title,
139                                         papers_[0]->self_scm (),
140                                         scm_variable_ref (s)));
141   else
142     title = unsmob_stencil (scm_call_2 (i == 0 ? book_title : score_title,
143                                         papers_[0]->self_scm (),
144                                         scopes));
145   if (title)
146     title->align_to (Y_AXIS, UP);
147   
148   return title;
149 }
150
151 void
152 Paper_book::classic_output (String outname)
153 {
154   int count = scores_.size ();
155   Paper_outputter *out = papers_.top ()->get_paper_outputter (outname);
156   out->output_header (papers_.top (), scopes (count - 1), 0, true);
157
158   Paper_line *first = unsmob_paper_line (scm_vector_ref (scores_.top (),
159                                                          scm_int2num (0)));
160   Offset o (0, -0.5 * first->dim ()[Y_AXIS]);
161   int line_count = SCM_VECTOR_LENGTH ((SCM) scores_.top ());
162   for (int i = 0; i < line_count; i++)
163     {
164       /* In classic compatibility TeX tracks how large things are, and
165          advances the Y pos for us.  If we advance it too, we get too
166          much space.
167
168          FIXME: vague... why is TeX is different from other ouput
169                 backends, why not fix the TeX backend? -- jcn */
170       if (output_format_global == "tex")
171         o = Offset (0, 0);
172
173       out->output_line (scm_vector_ref ((SCM) scores_.top (), scm_int2num (i)),
174                         &o, i == line_count - 1);
175     }
176   
177   out->output_scheme (scm_list_1 (ly_symbol2scm ("end-output")));
178   progress_indication ("\n");
179 }
180
181 /* calculate book height, #lines, stencils.  */
182 void
183 Paper_book::init ()
184 {
185   int score_count = scores_.size ();
186
187   /* Calculate the full book height.  Hmm, can't we cache system
188      heights while making stencils?  */
189   height_ = 0;
190   for (int i = 0; i < score_count; i++)
191     {
192       Stencil *title = this->title (i);
193       if (title)
194         height_ += title->extent (Y_AXIS).length ();
195
196       int line_count = SCM_VECTOR_LENGTH ((SCM) scores_[i]);
197       for (int j = 0; j < line_count; j++)
198         {
199           SCM s = scm_vector_ref ((SCM) scores_[i], scm_int2num (j));
200           height_ += unsmob_paper_line (s)->dim ()[Y_AXIS];
201         }
202     }
203
204   Paper_def *paper = papers_[0];
205   SCM scopes = this->scopes (0);
206
207   SCM make_tagline = ly_scheme_function ("make-tagline");
208   tagline_ = scm_call_2 (make_tagline, paper->self_scm (), scopes);
209   Real tag_height = 0;
210   if (Stencil *s = unsmob_stencil (tagline_))
211     tag_height = s->extent (Y_AXIS).length ();
212   height_ += tag_height;
213
214   SCM make_copyright = ly_scheme_function ("make-copyright");
215   copyright_ = scm_call_2 (make_copyright, paper->self_scm (), scopes);
216   Real copy_height = 0;
217   if (Stencil *s = unsmob_stencil (copyright_))
218     copy_height = s->extent (Y_AXIS).length ();
219   height_ += copy_height;
220 }
221
222 SCM
223 Paper_book::lines ()
224 {
225   int score_count = scores_.size ();
226   SCM lines = SCM_EOL;
227   for (int i = 0; i < score_count; i++)
228     {
229       if (Stencil *title = this->title (i))
230         lines = ly_snoc (stencil2line (title, true), lines);
231       lines = scm_append (scm_list_2 (lines, scm_vector_to_list (scores_[i])));
232     }
233   //debug helper; ughr
234   int i = 0;
235   for (SCM s = lines; s != SCM_EOL; s = ly_cdr (s))
236     unsmob_paper_line (ly_car (s))->number_ = ++i;
237   return lines;
238 }
239
240 SCM
241 Paper_book::pages ()
242 {
243   init ();
244   Page::page_count_ = 0;
245   Paper_def *paper = papers_[0];
246   Page *page = new Page (paper, 1);
247
248   Real text_height = page->text_height ();
249
250   Real copy_height = 0;
251   if (Stencil *s = unsmob_stencil (copyright_))
252     copy_height = s->extent (Y_AXIS).length ();
253
254   Real tag_height = 0;
255   if (Stencil *s = unsmob_stencil (tagline_))
256     tag_height = s->extent (Y_AXIS).length ();
257
258   SCM all = lines ();
259   SCM proc = paper->get_scmvar ("page-breaking");
260   SCM breaks = scm_apply_0 (proc, scm_list_n (all, scm_make_real (height_),
261                                               scm_make_real (text_height),
262                                               scm_make_real (-copy_height),
263                                               scm_make_real (-tag_height),
264                                               SCM_UNDEFINED));
265
266   /* Copyright on first page.  */
267   if (unsmob_stencil (copyright_))
268     page->copyright_ = copyright_;
269
270   SCM pages = SCM_EOL;
271   int page_count = SCM_VECTOR_LENGTH ((SCM) breaks);
272   int line = 1;
273   for (int i = 0; i < page_count; i++)
274     {
275       if (i)
276         page = new Page (paper, i+1);
277       int next = i + 1 < page_count
278         ? ly_scm2int (scm_vector_ref (breaks, scm_int2num (i))) : 0;
279       while ((!next && all != SCM_EOL) || line <= next)
280         {
281           SCM s = ly_car (all);
282           page->lines_ = ly_snoc (s, page->lines_);
283           page->height_ += unsmob_paper_line (s)->dim ()[Y_AXIS];
284           page->line_count_++;
285           all = ly_cdr (all);
286           line++;
287         }
288       pages = scm_cons (page->self_scm (), pages);
289     }
290
291   /* Tagline on last page.  */
292   if (unsmob_stencil (tagline_))
293     page->tagline_ = tagline_;
294
295   return scm_reverse (pages);
296 }
297
298 static SCM
299 c_ragged_page_breaks (SCM lines, Real book_height, Real text_height,
300                       Real first, Real last)
301 {
302   int page_number = 0;
303   int page_count = int (book_height / text_height + 0.5);
304   SCM breaks = SCM_EOL;
305   Real page_height = text_height + first;
306   Real h = 0;
307   int number = 0;
308   for (SCM s = lines; s != SCM_EOL; s = ly_cdr (s))
309     {
310       Paper_line *pl = unsmob_paper_line (ly_car (s));
311       if (!pl->is_title () && h < page_height)
312         number++;
313       h += pl->dim ()[Y_AXIS];
314       if (!pl->is_title () && h > page_height)
315         {
316           breaks = ly_snoc (scm_int2num (number), breaks);
317           page_number++;
318           page_height = text_height + (page_number == page_count) * last;
319           h = 0;
320         }
321       if (ly_cdr (s) == SCM_EOL)
322         breaks = ly_snoc (scm_int2num (pl->number_), breaks);
323     }
324
325   return scm_vector (breaks);
326 }
327
328 LY_DEFINE (ly_ragged_page_breaks, "ly:ragged-page-breaks",
329            5, 0, 0, (SCM lines, SCM book, SCM text, SCM first, SCM last),
330            "Return a vector with line numbers of page breaks.")
331 {
332   SCM_ASSERT_TYPE (scm_pair_p (lines), lines, SCM_ARG1, __FUNCTION__, "list");
333   SCM_ASSERT_TYPE (ly_c_number_p (book), book, SCM_ARG2, __FUNCTION__, "real");
334   SCM_ASSERT_TYPE (ly_c_number_p (text), text, SCM_ARG2, __FUNCTION__, "real");
335   SCM_ASSERT_TYPE (ly_c_number_p (first), first, SCM_ARG2, __FUNCTION__, "real");
336   SCM_ASSERT_TYPE (ly_c_number_p (last), last, SCM_ARG2, __FUNCTION__, "real");
337
338   return c_ragged_page_breaks (lines,
339                                ly_scm2double (book), ly_scm2double (text),
340                                ly_scm2double (first), ly_scm2double (last));
341 }