]> git.donarmstrong.com Git - lilypond.git/blob - lily/book.cc
tabify
[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--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "book.hh"
10
11 #include <cstdio>
12 using namespace std;
13
14 #include "main.hh"
15 #include "music.hh"
16 #include "output-def.hh"
17 #include "paper-book.hh"
18 #include "score.hh"
19 #include "text-interface.hh"
20 #include "warn.hh"
21 #include "performance.hh"
22 #include "paper-score.hh"
23 #include "page-marker.hh"
24
25 #include "ly-smobs.icc"
26
27 Book::Book ()
28 {
29   paper_ = 0;
30   header_ = SCM_EOL;
31   scores_ = SCM_EOL;
32   bookparts_ = SCM_EOL;
33   input_location_ = SCM_EOL;
34   smobify_self ();
35
36   input_location_ = make_input (Input ());
37 }
38
39 Book::Book (Book const &s)
40 {
41   paper_ = 0;
42   header_ = SCM_EOL;
43   scores_ = SCM_EOL;
44   bookparts_ = SCM_EOL;
45   input_location_ = SCM_EOL;
46   smobify_self ();
47
48   if (s.paper_)
49     {
50       paper_ = s.paper_->clone ();
51       paper_->unprotect ();
52     }
53   
54   input_location_ = make_input (*s.origin ());
55
56   header_ = ly_make_anonymous_module (false);
57   if (ly_is_module (s.header_))
58     ly_module_copy (header_, s.header_);
59   
60   SCM *t = &scores_;
61   for (SCM p = s.scores_; scm_is_pair (p); p = scm_cdr (p))
62     {
63       Score *newscore = unsmob_score (scm_car (p))->clone ();
64
65       *t = scm_cons (newscore->self_scm (), SCM_EOL);
66       t = SCM_CDRLOC (*t);
67       newscore->unprotect ();
68     }
69
70   t = &bookparts_;
71   for (SCM p = s.bookparts_; scm_is_pair (p); p = scm_cdr (p))
72     {
73       Book *newpart = unsmob_book (scm_car (p))->clone ();
74
75       *t = scm_cons (newpart->self_scm (), SCM_EOL);
76       t = SCM_CDRLOC (*t);
77       newpart->unprotect ();
78     }
79 }
80
81 Input *
82 Book::origin () const
83 {
84   return unsmob_input (input_location_);
85 }
86
87 Book::~Book ()
88 {
89 }
90
91 IMPLEMENT_SMOBS (Book);
92 IMPLEMENT_DEFAULT_EQUAL_P (Book);
93
94 SCM
95 Book::mark_smob (SCM s)
96 {
97   Book *book = (Book *) SCM_CELL_WORD_1 (s);
98
99   if (book->paper_)
100     scm_gc_mark (book->paper_->self_scm ());
101   scm_gc_mark (book->scores_);
102   scm_gc_mark (book->bookparts_);
103   scm_gc_mark (book->input_location_);
104   
105   return book->header_;
106 }
107
108 int
109 Book::print_smob (SCM, SCM p, scm_print_state*)
110 {
111   scm_puts ("#<Book>", p);
112   return 1;
113 }
114
115 void
116 Book::add_score (SCM s)
117 {
118   scores_ = scm_cons (s, scores_);
119 }
120
121 void
122 Book::set_parent (Book *parent)
123 {
124   if (!paper_)
125     {
126       paper_ = new Output_def ();
127       paper_->unprotect ();
128     }
129   paper_->parent_ = parent->paper_;
130   /* If this part is the first child of parent, copy its header */
131   if (ly_is_module (parent->header_) && (scm_is_null (parent->bookparts_)))
132     {
133       header_ = ly_make_anonymous_module (false);
134       ly_module_copy (header_, parent->header_);
135     }
136 }
137
138 void
139 Book::add_bookpart ()
140 {
141   if (scm_is_pair (scores_))
142     {
143       warning ("add_bookpart");
144       /* If scores have been added to this book, add them to a child 
145        * book part */
146       Book *part = new Book;
147       part->set_parent (this);
148       part->scores_ = scores_;
149       bookparts_ = scm_cons (part->self_scm (), bookparts_);
150       part->unprotect ();
151       scores_ = SCM_EOL;
152     }
153 }
154
155 void
156 Book::add_bookpart (SCM b)
157 {
158   add_bookpart ();
159   Book *part = unsmob_book (b);
160   part->set_parent (this);
161   bookparts_ = scm_cons (b, bookparts_);
162 }
163
164 bool
165 Book::error_found ()
166 {
167   for (SCM s = scores_; scm_is_pair (s); s = scm_cdr (s))
168     if (Score *score = unsmob_score (scm_car (s)))
169       if (score->error_found_)
170         return true;
171   
172   for (SCM part = bookparts_; scm_is_pair (part); part = scm_cdr (part))
173     if (Book *bookpart = unsmob_book (scm_car (part)))
174       if (bookpart->error_found ())
175         return true;
176
177   return false;
178 }
179
180 Paper_book *
181 Book::process (Output_def *default_paper,
182                Output_def *default_layout)
183 {
184   return process (default_paper, default_layout, 0);
185 }
186
187 /* Concatenate all score or book part outputs into a Paper_book
188  */
189 Paper_book *
190 Book::process (Output_def *default_paper,
191                Output_def *default_layout,
192                Paper_book *parent_part)
193 {
194   Output_def *paper = paper_ ? paper_ : default_paper;
195
196   /* If top book, recursively check score errors */
197   if (!parent_part && error_found ())
198     return 0;
199
200   if (!paper)
201     return 0;
202
203   Paper_book *paper_book = new Paper_book ();
204   Real scale = scm_to_double (paper->c_variable ("output-scale"));
205   Output_def *scaled_bookdef = scale_output_def (paper, scale);
206   paper_book->paper_ = scaled_bookdef;
207   if (parent_part)
208     {
209       paper_book->parent_ = parent_part;
210       paper_book->paper_->parent_ = parent_part->paper_;
211     }
212   paper_book->header_ = header_;
213
214   if (scm_is_pair (bookparts_))
215     {
216       /* Process children book parts */
217       add_bookpart ();
218       for (SCM p = scm_reverse (bookparts_); scm_is_pair (p); p = scm_cdr (p))
219         {
220           if (Book *book = unsmob_book (scm_car (p)))
221             {
222               Paper_book *paper_book_part = book
223                 ->process (paper, default_layout, paper_book);
224               if (paper_book_part)
225                 paper_book->add_bookpart (paper_book_part->self_scm ());
226             }
227         }
228     }
229   else
230     {
231       /* Process scores */
232       /* Render in order of parsing.  */
233       for (SCM s = scm_reverse (scores_); scm_is_pair (s); s = scm_cdr (s))
234         {
235           if (Score *score = unsmob_score (scm_car (s)))
236             {
237               SCM outputs = score
238                 ->book_rendering (paper_book->paper_, default_layout);
239               
240               while (scm_is_pair (outputs))
241                 {
242                   Music_output *output = unsmob_music_output (scm_car (outputs));
243                   
244                   if (Performance *perf = dynamic_cast<Performance *> (output))
245                     paper_book->add_performance (perf->self_scm ());
246                   else if (Paper_score *pscore = dynamic_cast<Paper_score *> (output))
247                     {
248                       if (ly_is_module (score->get_header ()))
249                         paper_book->add_score (score->get_header ());
250                       paper_book->add_score (pscore->self_scm ());
251                     }
252                   
253                   outputs = scm_cdr (outputs);
254                 }
255             }
256           else if (Text_interface::is_markup_list (scm_car (s))
257                    || unsmob_page_marker (scm_car (s)))
258             paper_book->add_score (scm_car (s));
259           else
260             assert (0);
261         }
262     }
263
264   return paper_book;
265 }