]> git.donarmstrong.com Git - lilypond.git/blob - lily/score.cc
* lily/include/paper-score.hh (class Paper_score): remove unused prototypes.
[lilypond.git] / lily / score.cc
1 /*
2   score.cc -- implement Score
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "score.hh"
10
11 #include <cstdio>
12
13 #include "book.hh"
14 #include "cpu-timer.hh"
15 #include "global-context.hh"
16 #include "lily-parser.hh"
17 #include "lilypond-key.hh"
18 #include "ly-smobs.icc"
19 #include "main.hh"
20 #include "music-iterator.hh"
21 #include "music.hh"
22 #include "output-def.hh"
23 #include "output-def.hh"
24 #include "paper-book.hh"
25 #include "paper-score.hh"
26 #include "scm-hash.hh"
27 #include "warn.hh"
28
29 Score::Score ()
30   : Input ()
31 {
32   header_ = SCM_EOL;
33   music_ = SCM_EOL;
34   texts_ = SCM_EOL;
35   error_found_ = false;
36   smobify_self ();
37 }
38
39 Score::~Score ()
40 {
41 }
42
43 IMPLEMENT_SMOBS (Score);
44 IMPLEMENT_DEFAULT_EQUAL_P (Score);
45 IMPLEMENT_TYPE_P (Score, "ly:score?");
46
47 SCM
48 Score::mark_smob (SCM s)
49 {
50   Score *sc = (Score *) SCM_CELL_WORD_1 (s);
51
52   scm_gc_mark (sc->header_);
53   scm_gc_mark (sc->texts_);
54   for (int i = sc->defs_.size (); i--;)
55     scm_gc_mark (sc->defs_[i]->self_scm ());
56   return sc->music_;
57 }
58
59 int
60 Score::print_smob (SCM, SCM p, scm_print_state*)
61 {
62   scm_puts ("#<Score>", p);
63
64   return 1;
65 }
66
67 Score::Score (Score const &s)
68   : Input (s)
69 {
70   header_ = SCM_EOL;
71   music_ = SCM_EOL;
72   texts_ = SCM_EOL;
73   error_found_ = s.error_found_;
74   smobify_self ();
75
76   Music *m = unsmob_music (s.music_);
77   music_ = m ? m->clone ()->self_scm () : SCM_EOL;
78   scm_gc_unprotect_object (music_);
79
80   for (int i = 0, n = s.defs_.size (); i < n; i++)
81     defs_.push (s.defs_[i]->clone ());
82
83   header_ = ly_make_anonymous_module (false);
84   if (ly_c_module_p (s.header_))
85     ly_module_copy (header_, s.header_);
86
87   texts_ = s.texts_;
88 }
89
90 void
91 default_rendering (SCM music, SCM outdef,
92                    SCM book_outputdef,
93                    SCM header,
94                    SCM outname,
95                    SCM key)
96 {
97   SCM scaled_def = outdef;
98   SCM scaled_bookdef = book_outputdef;
99
100   Output_def *bpd = unsmob_output_def (book_outputdef);
101
102   /* ugh.  */
103   if (bpd->c_variable ("is-paper") == SCM_BOOL_T)
104     {
105       Real scale = scm_to_double (bpd->c_variable ("outputscale"));
106
107       Output_def *def = scale_output_def (unsmob_output_def (outdef), scale);
108       scaled_def = def->self_scm ();
109
110       scaled_bookdef = scale_output_def (bpd, scale)->self_scm ();
111       unsmob_output_def (scaled_def)->parent_
112         = unsmob_output_def (scaled_bookdef);
113
114       scm_gc_unprotect_object (scaled_bookdef);
115       scm_gc_unprotect_object (scaled_def);
116     }
117
118   SCM context = ly_run_translator (music, scaled_def, key);
119   if (Global_context *g = dynamic_cast<Global_context *>
120       (unsmob_context (context)))
121     {
122       SCM systems = ly_format_output (context);
123       Music_output *output = g->get_output ();
124       if (systems != SCM_UNDEFINED)
125         {
126           /* ugh, this is strange, Paper_book without a Book object. */
127           Paper_book *paper_book = new Paper_book ();
128           paper_book->header_ = header;
129           paper_book->paper_ = unsmob_output_def (scaled_bookdef);
130
131           if (ly_c_module_p (header))
132             paper_book->add_score (header);
133           paper_book->add_score (systems);
134
135           paper_book->classic_output (ly_scm2string (outname));
136           scm_gc_unprotect_object (paper_book->self_scm ());
137         }
138       scm_gc_unprotect_object (output->self_scm ());
139     }
140
141   scm_remember_upto_here_1 (scaled_def);
142   scm_remember_upto_here_1 (scaled_bookdef);
143 }
144
145 /*
146   Format score, return list of Music_output objects. 
147
148   LAYOUTBOOK should be scaled already.
149 */
150 SCM
151 Score::book_rendering (Output_def *layoutbook,
152                        Output_def *default_def,
153                        Object_key *book_key)
154 {
155   if (error_found_)
156     return SCM_EOL;
157
158   SCM scaled_bookdef = SCM_EOL;
159   Real scale = 1.0;
160
161   if (layoutbook && layoutbook->c_variable ("is-paper") == SCM_BOOL_T)
162     scale = scm_to_double (layoutbook->c_variable ("outputscale"));
163
164   SCM outputs = SCM_EOL;
165   SCM *tail = &outputs;
166   
167   int outdef_count = defs_.size ();
168
169   Object_key *key = new Lilypond_general_key (book_key, user_key_, 0);
170   SCM scm_key = key->self_scm ();
171   scm_gc_unprotect_object (scm_key);
172
173   for (int i = 0; !i || i < outdef_count; i++)
174     {
175       Output_def *def = outdef_count ? defs_[i] : default_def;
176       SCM scaled = SCM_EOL;
177
178       if (def->c_variable ("is-layout") == SCM_BOOL_T)
179         {
180           def = scale_output_def (def, scale);
181           def->parent_ = layoutbook;
182           scaled = def->self_scm ();
183           scm_gc_unprotect_object (scaled);
184         }
185
186       /* TODO: fix or junk --no-layout.  */
187       SCM context = ly_run_translator (music_, def->self_scm (), scm_key);
188       if (dynamic_cast<Global_context *> (unsmob_context (context)))
189         {
190           SCM s = ly_format_output (context);
191           
192           *tail = scm_cons (s, SCM_EOL);
193           tail = SCM_CDRLOC(*tail);
194         }
195
196       scm_remember_upto_here_1 (scaled);
197     }
198
199   scm_remember_upto_here_1 (scm_key);
200   scm_remember_upto_here_1 (scaled_bookdef);
201   return outputs;
202 }
203
204 void
205 Score::set_music (SCM music, SCM parser)
206 {
207   /* URG? */
208   SCM check_funcs = ly_lily_module_constant ("toplevel-music-functions");
209   for (; scm_is_pair (check_funcs); check_funcs = scm_cdr (check_funcs))
210     music = scm_call_2 (scm_car (check_funcs), music, parser);
211
212   if (unsmob_music (music_))
213     {
214       unsmob_music (music)->origin ()->error (_ ("already have music in score"));
215       unsmob_music (music_)->origin ()->error (_ ("this is the previous music"));
216     }
217   Music *m = unsmob_music (music);
218   if (m && to_boolean (m->get_property ("error-found")))
219     {
220       m->origin ()->error (_ ("errors found, ignoring music expression"));
221
222       this->error_found_ = this->error_found_ || to_boolean (m->get_property ("error-found"));
223     }
224
225   if (this->error_found_)
226     this->music_ = SCM_EOL;
227   else
228     this->music_ = music;
229 }
230
231 SCM
232 Score::get_music () const
233 {
234   return music_;
235 }