2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2009 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/>.
23 #include "dispatcher.hh"
24 #include "duration.hh"
26 #include "international.hh"
27 #include "ly-smobs.icc"
29 #include "music-sequence.hh"
34 Music is anything that has (possibly zero) duration and supports
35 both time compression and transposition.
37 In Lily, everything that can be thought to have a length and a pitch
38 (which has a duration which can be transposed) is considered "music".
41 Music::internal_is_music_type (SCM k) const
43 SCM ifs = get_property ("types");
45 return scm_c_memq (k, ifs) != SCM_BOOL_F;
48 Music::Music (SCM init)
49 : Prob (ly_symbol2scm ("Music"), init)
51 length_callback_ = SCM_EOL;
52 start_callback_ = SCM_EOL;
54 length_callback_ = get_property ("length-callback");
55 if (!ly_is_procedure (length_callback_))
56 length_callback_ = duration_length_callback_proc;
58 start_callback_ = get_property ("start-callback");
62 Music::derived_mark () const
64 scm_gc_mark (length_callback_);
65 scm_gc_mark (start_callback_);
69 Music::copy_mutable_properties () const
71 return ly_music_deep_copy (mutable_property_alist_);
75 Music::type_check_assignment (SCM s, SCM v) const
77 ::type_check_assignment (s, v, ly_symbol2scm ("music-type?"));
80 Music::Music (Music const &m)
83 length_callback_ = m.length_callback_;
84 start_callback_ = m.start_callback_;
87 set_spot (*m.origin ());
91 Music::get_length () const
93 SCM lst = get_property ("length");
94 if (unsmob_moment (lst))
95 return *unsmob_moment (lst);
97 if (ly_is_procedure (length_callback_))
99 SCM res = scm_call_1 (length_callback_, self_scm ());
100 return *unsmob_moment (res);
107 Music::start_mom () const
109 SCM lst = start_callback_;
110 if (ly_is_procedure (lst))
112 SCM res = scm_call_1 (lst, self_scm ());
113 return *unsmob_moment (res);
121 print_alist (SCM a, SCM port)
123 /* SCM_EOL -> catch malformed lists. */
124 for (SCM s = a; scm_is_pair (s); s = scm_cdr (s))
126 scm_display (scm_caar (s), port);
127 scm_puts (" = ", port);
128 scm_write (scm_cdar (s), port);
129 scm_puts ("\n", port);
135 Music::generic_to_relative_octave (Pitch last)
137 SCM elt = get_property ("element");
138 Pitch *old_pit = unsmob_pitch (get_property ("pitch"));
141 Pitch new_pit = *old_pit;
142 new_pit = new_pit.to_relative_octave (last);
144 SCM check = get_property ("absolute-octave");
145 if (scm_is_number (check)
146 && new_pit.get_octave () != scm_to_int (check))
148 Pitch expected_pit (scm_to_int (check),
149 new_pit.get_notename (),
150 new_pit.get_alteration ());
151 origin ()->warning (_f ("octave check failed; expected \"%s\", found: \"%s\"",
152 expected_pit.to_string (),
153 new_pit.to_string ()));
154 new_pit = expected_pit;
157 set_property ("pitch", new_pit.smobbed_copy ());
162 if (Music *m = unsmob_music (elt))
163 last = m->to_relative_octave (last);
165 last = music_list_to_relative (get_property ("elements"), last, false);
170 Music::to_relative_octave (Pitch last)
172 SCM callback = get_property ("to-relative-callback");
173 if (ly_is_procedure (callback))
175 Pitch *p = unsmob_pitch (scm_call_2 (callback, self_scm (), last.smobbed_copy ()));
179 return generic_to_relative_octave (last);
183 Music::compress (Moment factor)
185 SCM elt = get_property ("element");
187 if (Music *m = unsmob_music (elt))
188 m->compress (factor);
190 compress_music_list (get_property ("elements"), factor);
191 Duration *d = unsmob_duration (get_property ("duration"));
193 set_property ("duration", d->compressed (factor.main_part_).smobbed_copy ());
197 This mutates alist. Hence, make sure that it is not shared
200 transpose_mutable (SCM alist, Pitch delta)
202 for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
204 SCM entry = scm_car (s);
205 SCM prop = scm_car (entry);
206 SCM val = scm_cdr (entry);
209 if (Pitch *p = unsmob_pitch (val))
211 Pitch transposed = p->transposed (delta);
212 if (transposed.get_alteration ().abs () > Rational (1,1))
214 warning (_f ("transposition by %s makes alteration larger than double",
215 delta.to_string ()));
218 new_val = transposed.smobbed_copy ();
220 else if (prop == ly_symbol2scm ("element"))
222 if (Music *m = unsmob_music (val))
223 m->transpose (delta);
225 else if (prop == ly_symbol2scm ("elements"))
226 transpose_music_list (val, delta);
227 else if (prop == ly_symbol2scm ("pitch-alist") &&
229 new_val = ly_transpose_key_alist (val, delta.smobbed_copy ());
232 scm_set_cdr_x (entry , new_val);
237 Music::transpose (Pitch delta)
239 if (to_boolean (get_property ("untransposable")))
242 transpose_mutable (mutable_property_alist_, delta);
246 Music::set_spot (Input ip)
248 set_property ("origin", make_input (ip));
252 Music::origin () const
254 Input *ip = unsmob_input (get_property ("origin"));
255 return ip ? ip : &dummy_input_global;
259 ES TODO: This method should probably be reworked or junked.
262 Music::to_event () const
264 SCM class_name = ly_camel_case_2_lisp_identifier (get_property ("name"));
266 // catch programming mistakes.
267 if (!internal_is_music_type (class_name))
269 programming_error ("Not a music type");
272 Stream_event *e = new Stream_event (class_name, mutable_property_alist_);
273 Moment length = get_length ();
274 if (length.to_bool ())
275 e->set_property ("length", length.smobbed_copy ());
277 // articulations as events.
278 SCM art_mus = e->get_property ("articulations");
279 if (scm_is_pair (art_mus))
281 SCM art_ev = SCM_EOL;
282 for (; scm_is_pair (art_mus); art_mus = scm_cdr (art_mus))
284 Music *m = unsmob_music (scm_car (art_mus));
285 SCM ev = m ? m->to_event ()->unprotect () : scm_car (art_mus);
286 art_ev = scm_cons (ev, art_ev);
288 e->set_property ("articulations", scm_reverse_x (art_ev, SCM_EOL));
292 ES TODO: This is a temporary fix. Stream_events should not be
295 e->set_property ("music-cause", self_scm ());
301 Music::send_to_context (Context *c)
303 Stream_event *ev = to_event ();
304 c->event_source ()->broadcast (ev);
309 make_music_by_name (SCM sym)
311 SCM make_music_proc = ly_lily_module_constant ("make-music");
312 SCM rv = scm_call_1 (make_music_proc, sym);
315 Music *m = unsmob_music (rv);
320 MAKE_SCHEME_CALLBACK (Music, duration_length_callback, 1);
322 Music::duration_length_callback (SCM m)
324 Music *me = unsmob_music (m);
325 Duration *d = unsmob_duration (me->get_property ("duration"));
329 mom = d->get_length ();
330 return mom.smobbed_copy ();
336 return dynamic_cast<Music*> (unsmob_prob (m));