2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
27 #include "cpu-timer.hh"
28 #include "global-context.hh"
29 #include "international.hh"
30 #include "lily-parser.hh"
31 #include "ly-module.hh"
34 #include "output-def.hh"
35 #include "paper-book.hh"
36 #include "paper-score.hh"
41 Score::origin () const
43 return unsmob<Input> (input_location_);
50 input_location_ = SCM_EOL;
55 input_location_ = Input ().smobbed_copy ();
62 const char Score::type_p_name_[] = "ly:score?";
65 Score::mark_smob () const
67 scm_gc_mark (header_);
68 for (vsize i = defs_.size (); i--;)
69 scm_gc_mark (defs_[i]->self_scm ());
71 scm_gc_mark (input_location_);
75 Score::Score (Score const &s)
80 input_location_ = SCM_EOL;
81 error_found_ = s.error_found_;
84 input_location_ = s.origin ()->smobbed_copy ();
86 Music *m = unsmob<Music> (s.music_);
89 Music *mclone = m->clone ();
90 music_ = mclone->unprotect ();
95 for (vsize i = 0, n = s.defs_.size (); i < n; i++)
97 Output_def *copy = s.defs_[i]->clone ();
98 defs_.push_back (copy);
101 header_ = ly_make_module (false);
102 if (ly_is_module (s.header_))
103 ly_module_copy (header_, s.header_);
107 Format score, return list of Music_output objects.
109 LAYOUTBOOK should be scaled already.
112 Score::book_rendering (Output_def *layoutbook,
113 Output_def *default_def)
120 if (layoutbook && to_boolean (layoutbook->c_variable ("is-paper")))
121 scale = scm_to_double (layoutbook->c_variable ("output-scale"));
123 SCM outputs = SCM_EOL;
125 int outdef_count = defs_.size ();
127 for (int i = 0; !i || i < outdef_count; i++)
129 Output_def *def = outdef_count ? defs_[i] : default_def;
130 SCM scaled = def->self_scm ();
132 if (to_boolean (def->c_variable ("is-layout")))
134 def = scale_output_def (def, scale);
135 def->parent_ = layoutbook;
137 scaled = def->unprotect ();
140 /* TODO: fix or junk --no-layout. */
141 SCM context = ly_run_translator (music_, scaled);
142 if (unsmob<Global_context> (context))
144 SCM s = ly_format_output (context);
146 outputs = scm_cons (s, outputs);
149 scm_remember_upto_here_1 (scaled);
152 return scm_reverse_x (outputs, SCM_EOL);
156 Score::set_music (SCM music)
158 if (unsmob<Music> (music_))
160 unsmob<Music> (music)->origin ()->non_fatal_error
161 (_ ("already have music in score"));
162 unsmob<Music> (music_)->origin ()->non_fatal_error
163 (_ ("this is the previous music"));
165 Music *m = unsmob<Music> (music);
166 if (m && to_boolean (m->get_property ("error-found")))
168 m->origin ()->non_fatal_error
169 (_ ("errors found, ignoring music expression"));
181 Score::get_music () const
187 Score::add_output_def (Output_def *def)
189 defs_.push_back (def);
193 Score::get_header () const
199 Score::set_header (SCM module)
201 assert (ly_is_module (module));