Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / score.cc
blobc3125df5ad860e251546c3b4f3e417b80ea5c43a
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2011 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/>.
20 #include "score.hh"
22 #include <cstdio>
24 using namespace std;
26 #include "book.hh"
27 #include "cpu-timer.hh"
28 #include "global-context.hh"
29 #include "international.hh"
30 #include "lily-parser.hh"
31 #include "main.hh"
32 #include "music.hh"
33 #include "music.hh"
34 #include "output-def.hh"
35 #include "paper-book.hh"
36 #include "paper-score.hh"
37 #include "warn.hh"
39 #include "ly-smobs.icc"
41 Input *
42 Score::origin () const
44 return unsmob_input (input_location_);
48 Score::Score ()
50 header_ = SCM_EOL;
51 music_ = SCM_EOL;
52 input_location_ = SCM_EOL;
54 error_found_ = false;
56 smobify_self ();
57 input_location_ = make_input (Input ());
60 Score::~Score ()
64 IMPLEMENT_SMOBS (Score);
65 IMPLEMENT_DEFAULT_EQUAL_P (Score);
66 IMPLEMENT_TYPE_P (Score, "ly:score?");
68 SCM
69 Score::mark_smob (SCM s)
71 Score *sc = (Score *) SCM_CELL_WORD_1 (s);
73 scm_gc_mark (sc->header_);
74 for (vsize i = sc->defs_.size (); i--;)
75 scm_gc_mark (sc->defs_[i]->self_scm ());
77 scm_gc_mark (sc->input_location_);
78 return sc->music_;
81 int
82 Score::print_smob (SCM, SCM p, scm_print_state*)
84 scm_puts ("#<Score>", p);
86 return 1;
89 Score::Score (Score const &s)
91 header_ = SCM_EOL;
92 music_ = SCM_EOL;
93 input_location_ = SCM_EOL;
94 error_found_ = s.error_found_;
96 smobify_self ();
97 input_location_ = make_input (*s.origin ());
99 Music *m = unsmob_music (s.music_);
100 if (m)
102 Music *mclone = m->clone ();
103 music_ = mclone->unprotect ();
105 else
106 music_ = SCM_EOL;
108 for (vsize i = 0, n = s.defs_.size (); i < n; i++)
110 Output_def *copy = s.defs_[i]->clone ();
111 defs_.push_back (copy);
112 copy->unprotect ();
114 header_ = ly_make_module (false);
115 if (ly_is_module (s.header_))
116 ly_module_copy (header_, s.header_);
121 Format score, return list of Music_output objects.
123 LAYOUTBOOK should be scaled already.
126 Score::book_rendering (Output_def *layoutbook,
127 Output_def *default_def)
129 if (error_found_)
130 return SCM_EOL;
132 SCM scaled_bookdef = SCM_EOL;
133 Real scale = 1.0;
135 if (layoutbook && layoutbook->c_variable ("is-paper") == SCM_BOOL_T)
136 scale = scm_to_double (layoutbook->c_variable ("output-scale"));
138 SCM outputs = SCM_EOL;
139 SCM *tail = &outputs;
141 int outdef_count = defs_.size ();
143 for (int i = 0; !i || i < outdef_count; i++)
145 Output_def *def = outdef_count ? defs_[i] : default_def;
146 SCM scaled = SCM_EOL;
148 if (def->c_variable ("is-layout") == SCM_BOOL_T)
150 def = scale_output_def (def, scale);
151 def->parent_ = layoutbook;
153 scaled = def->unprotect ();
156 /* TODO: fix or junk --no-layout. */
157 SCM context = ly_run_translator (music_, def->self_scm ());
158 if (dynamic_cast<Global_context *> (unsmob_context (context)))
160 SCM s = ly_format_output (context);
162 *tail = scm_cons (s, SCM_EOL);
163 tail = SCM_CDRLOC (*tail);
166 scm_remember_upto_here_1 (scaled);
169 scm_remember_upto_here_1 (scaled_bookdef);
170 return outputs;
173 void
174 Score::set_music (SCM music)
176 if (unsmob_music (music_))
178 unsmob_music (music)->origin ()->error (_ ("already have music in score"));
179 unsmob_music (music_)->origin ()->error (_ ("this is the previous music"));
181 Music *m = unsmob_music (music);
182 if (m && to_boolean (m->get_property ("error-found")))
184 m->origin ()->error (_ ("errors found, ignoring music expression"));
186 this->error_found_ = this->error_found_
187 || to_boolean (m->get_property ("error-found"));
190 if (this->error_found_)
191 this->music_ = SCM_EOL;
192 else
193 this->music_ = music;
197 Score::get_music () const
199 return music_;
202 void
203 Score::add_output_def (Output_def *def)
205 defs_.push_back (def);
209 Score::get_header () const
211 return header_;
214 void
215 Score::set_header (SCM module)
217 assert (ly_is_module (module));
218 header_ = module;