]> git.donarmstrong.com Git - lilypond.git/blob - lily/book.cc
* Documentation/user/point-and-click.itely: simplify p&c
[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--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "book.hh"
10
11 #include <cstdio>
12 using namespace std;
13
14 #include "lilypond-key.hh"
15 #include "global-context.hh"
16 #include "main.hh"
17 #include "music-iterator.hh"
18 #include "music-output.hh"
19 #include "music.hh"
20 #include "output-def.hh"
21 #include "paper-book.hh"
22 #include "score.hh"
23 #include "stencil.hh"
24 #include "text-interface.hh"
25 #include "warn.hh"
26
27 #include "performance.hh"
28 #include "paper-score.hh"
29
30 #include "ly-smobs.icc"
31
32 Book::Book ()
33   : Input ()
34 {
35   paper_ = 0;
36   header_ = SCM_EOL;
37   scores_ = SCM_EOL;
38   smobify_self ();
39 }
40
41 Book* 
42 Book::clone () const
43 {
44   return new Book (*this);
45 }
46
47 Book::~Book ()
48 {
49 }
50
51 IMPLEMENT_SMOBS (Book);
52 IMPLEMENT_DEFAULT_EQUAL_P (Book);
53
54 SCM
55 Book::mark_smob (SCM s)
56 {
57   Book *book = (Book *) SCM_CELL_WORD_1 (s);
58
59 #if 0
60   if (book->key_)
61     scm_gc_mark (book->key_->self_scm ());
62 #endif
63
64   if (book->paper_)
65     scm_gc_mark (book->paper_->self_scm ());
66   scm_gc_mark (book->scores_);
67
68   return book->header_;
69 }
70
71 int
72 Book::print_smob (SCM, SCM p, scm_print_state*)
73 {
74   scm_puts ("#<Book>", p);
75   return 1;
76 }
77
78 void
79 Book::add_score (SCM s)
80 {
81   scores_ = scm_cons (s, scores_);
82 }
83
84 /* Concatenate all score outputs into a Paper_book
85  */
86 Paper_book *
87 Book::process (Output_def *default_paper,
88                Output_def *default_layout)
89 {
90   for (SCM s = scores_; s != SCM_EOL; s = scm_cdr (s))
91     if (Score *score = unsmob_score (scm_car (s)))
92       if (score->error_found_)
93         return 0;
94
95   Output_def *paper = paper_ ? paper_ : default_paper;
96   if (!paper)
97     return 0;
98   
99   Paper_book *paper_book = new Paper_book ();
100   Real scale = scm_to_double (paper->c_variable ("outputscale"));
101   Output_def *scaled_bookdef = scale_output_def (paper, scale);
102
103   Object_key *key = new Lilypond_general_key (0, user_key_, 0);
104   SCM scm_key = key->unprotect ();
105
106   paper_book->paper_ = scaled_bookdef;
107   scaled_bookdef->unprotect ();
108
109   paper_book->header_ = header_;
110
111   /* Render in order of parsing.  */
112   for (SCM s = scm_reverse (scores_); s != SCM_EOL; s = scm_cdr (s))
113     {
114       if (Score *score = unsmob_score (scm_car (s)))
115         {
116           SCM outputs = score
117             ->book_rendering (paper_book->paper_, default_layout, key);
118
119           while (scm_is_pair (outputs))
120             {
121               Music_output *output = unsmob_music_output (scm_car (outputs));
122
123               if (Performance *perf = dynamic_cast<Performance *> (output))
124                 paper_book->add_performance (perf->self_scm ());
125               else if (Paper_score *pscore = dynamic_cast<Paper_score *> (output))
126                 {
127                   SCM systems = pscore->get_paper_systems ();
128                   if (ly_is_module (score->header_))
129                     paper_book->add_score (score->header_);
130                   paper_book->add_score (systems);
131                 }
132
133               outputs = scm_cdr (outputs);
134             }
135         }
136       else if (Text_interface::is_markup (scm_car (s)))
137         paper_book->add_score (scm_car (s));
138       else
139         assert (0);
140     }
141
142   scm_remember_upto_here_1 (scm_key);
143   return paper_book;
144 }
145