]> git.donarmstrong.com Git - lilypond.git/blob - lily/book.cc
(output_def): push scope of parent_ Output_def
[lilypond.git] / lily / book.cc
1 /*
2   book.cc -- implement Book
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <stdio.h>
10
11
12 #include "ly-smobs.icc"
13 #include "stencil.hh"
14 #include "book.hh"
15 #include "global-context.hh"
16 #include "ly-module.hh"
17 #include "main.hh"
18 #include "music-iterator.hh"
19 #include "output-def.hh"
20 #include "music-output.hh"
21 #include "music.hh"
22 #include "page.hh"
23 #include "paper-book.hh"
24 #include "output-def.hh"
25 #include "score.hh"
26 #include "warn.hh"
27
28 Book::Book ()
29   : Input ()
30 {
31   bookpaper_ = 0;
32   header_ = SCM_EOL;
33   assert (!scores_.size ());
34   smobify_self ();
35 }
36
37 Book::~Book ()
38 {
39 }
40
41 IMPLEMENT_SMOBS (Book);
42 IMPLEMENT_DEFAULT_EQUAL_P (Book);
43
44 SCM
45 Book::mark_smob (SCM s)
46 {
47   Book *book = (Book*) SCM_CELL_WORD_1 (s);
48   int score_count = book->scores_.size ();
49   for (int i = 0; i < score_count; i++)
50     scm_gc_mark (book->scores_[i]->self_scm ());
51
52   if (book->bookpaper_)
53     scm_gc_mark (book->bookpaper_->self_scm ());
54   return book->header_;
55 }
56
57 int
58 Book::print_smob (SCM, SCM p, scm_print_state*)
59 {
60   scm_puts ("#<Book>", p);
61   return 1;
62 }
63
64 void
65 Book::process (String outname, Output_def *default_def, SCM header)
66 {
67   Paper_book *paper_book = new Paper_book ();
68
69         
70   Real scale = ly_scm2double (bookpaper_->c_variable ("outputscale"));
71   
72   Output_def * scaled_bookdef = scale_output_def (bookpaper_, scale);
73
74   paper_book->bookpaper_ = scaled_bookdef;
75   int score_count = scores_.size ();
76   for (int i = 0; i < score_count; i++)
77     {
78       SCM systems = scores_[i]->book_rendering (outname,
79                                                 paper_book->bookpaper_,
80                                                 default_def);
81       if (systems != SCM_UNDEFINED)
82         {
83           Score_lines sc;
84           sc.lines_ = systems;
85           sc.header_ = header;
86
87           paper_book->score_lines_.push (sc);
88         }
89     }
90
91   paper_book->output (outname);
92   
93   scm_gc_unprotect_object (paper_book->bookpaper_->self_scm ());
94   scm_gc_unprotect_object (paper_book->self_scm ());
95 }
96
97 /* FIXME: WIP, this is a hack.  Return first page as stencil.  */
98 SCM
99 Book::to_stencil (Output_def *default_def, SCM header)
100 {
101   Paper_book *paper_book = new Paper_book ();
102   Real scale = ly_scm2double (bookpaper_->c_variable ("outputscale"));
103   
104   Output_def * scaled_bookdef = scale_output_def (bookpaper_, scale);
105
106   paper_book->bookpaper_ = scaled_bookdef;
107
108   int score_count = scores_.size ();
109   for (int i = 0; i < score_count; i++)
110     {
111       SCM systems = scores_[i]->book_rendering ("<markup>",
112                                                 bookpaper_,
113                                                 default_def);
114       
115       if (systems != SCM_UNDEFINED)
116         {
117           Score_lines sc;
118           sc.lines_ = systems;
119           sc.header_ =header;
120
121           paper_book->score_lines_.push (sc);
122
123           // wtf: code dup.
124         }
125     }
126
127   SCM pages = paper_book->pages ();
128   paper_book = 0;
129   if (pages != SCM_EOL)
130     {
131       progress_indication (_f ("paper output to `%s'...", "<markup>"));
132       return (unsmob_page (ly_car (pages)))->to_stencil ().smobbed_copy ();
133     }
134
135   scm_gc_unprotect_object (paper_book->bookpaper_->self_scm ());
136   
137   return SCM_EOL;
138 }