2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2004--2011 Han-Wen Nienhuys
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/>.
21 #include "dispatcher.hh"
22 #include "lily-guile.hh"
24 #include "music-iterator.hh"
25 #include "music-sequence.hh"
30 CONTEXT_ONE, CONTEXT_TWO,
31 CONTEXT_SHARED, CONTEXT_SOLO,
32 CONTEXT_NULL, NUM_OUTLETS
35 static const char *outlet_names_[NUM_OUTLETS]
36 = {"one", "two", "shared", "solo", "null"};
38 class Part_combine_iterator : public Music_iterator
41 Part_combine_iterator ();
43 DECLARE_SCHEME_CALLBACK (constructor, ());
45 virtual void derived_substitute (Context *f, Context *t);
46 virtual void derived_mark () const;
48 virtual void construct_children ();
49 virtual Moment pending_moment () const;
50 virtual void do_quit ();
51 virtual void process (Moment);
53 virtual bool ok () const;
56 /* used by try_process */
57 DECLARE_LISTENER (set_busy);
61 bool try_process (Music_iterator *i, Moment m);
63 Music_iterator *first_iter_;
64 Music_iterator *second_iter_;
71 SCM horizontalShiftOne_;
72 SCM horizontalShiftTwo_;
74 Stream_event *unisono_event_;
75 Stream_event *solo_one_event_;
76 Stream_event *solo_two_event_;
77 Stream_event *mmrest_event_;
89 Status playing_state_;
92 Should be SOLO1 or SOLO2
97 TODO: this is getting off hand...
99 Context_handle handles_[NUM_OUTLETS];
101 void substitute_both (Outlet_type to1,
104 /* parameter is really Outlet_type */
105 void kill_mmrest (int in);
106 void chords_together ();
109 void apart (bool silent);
110 void unisono (bool silent);
114 Part_combine_iterator::do_quit ()
117 first_iter_->quit ();
119 second_iter_->quit ();
121 // Add listeners to all contexts except Devnull.
122 for (int i = 0; i < NUM_OUTLETS; i++)
124 Context *c = handles_[i].get_context ();
125 if (c->is_alias (ly_symbol2scm ("Voice")))
126 c->event_source ()->remove_listener (GET_LISTENER (set_busy), ly_symbol2scm ("music-event"));
127 handles_[i].set_context (0);
131 Part_combine_iterator::Part_combine_iterator ()
140 split_list_ = SCM_EOL;
141 direction_ = SCM_BOOL_F;
142 directionOne_ = scm_from_int (1);
143 directionTwo_ = scm_from_int (-1);
144 horizontalShiftOne_ = scm_from_int (0);
145 horizontalShiftTwo_ = scm_from_int (1);
147 playing_state_ = APART;
148 last_playing_ = APART;
151 notice_busy_ = false;
155 Part_combine_iterator::derived_mark () const
158 scm_gc_mark (first_iter_->self_scm ());
160 scm_gc_mark (second_iter_->self_scm ());
171 for (int i = 0; ptrs[i]; i++)
173 scm_gc_mark (ptrs[i]->self_scm ());
177 Part_combine_iterator::derived_substitute (Context *f,
181 first_iter_->substitute_outlet (f, t);
185 Part_combine_iterator::pending_moment () const
189 if (first_iter_->ok ())
190 p = min (p, first_iter_->pending_moment ());
192 if (second_iter_->ok ())
193 p = min (p, second_iter_->pending_moment ());
198 Part_combine_iterator::ok () const
200 return first_iter_->ok () || second_iter_->ok ();
204 Part_combine_iterator::substitute_both (Outlet_type to1,
207 Outlet_type tos[] = {to1, to2};
209 Music_iterator *mis[] = {first_iter_, second_iter_};
211 for (int i = 0; i < 2; i++)
213 for (int j = 0; j < NUM_OUTLETS; j++)
215 mis[i]->substitute_outlet (handles_[j].get_context (), handles_[tos[i]].get_context ());
218 for (int j = 0; j < NUM_OUTLETS; j++)
220 if (j != to1 && j != to2)
226 Part_combine_iterator::kill_mmrest (int in)
231 mmrest_event_ = new Stream_event (ly_symbol2scm ("multi-measure-rest-event"));
232 mmrest_event_->set_property ("duration", SCM_EOL);
233 mmrest_event_->unprotect ();
236 handles_[in].get_context ()->event_source ()->broadcast (mmrest_event_);
240 Part_combine_iterator::unisono (bool silent)
242 Status newstate = (silent) ? UNISILENCE : UNISONO;
244 if (newstate == state_)
249 If we're coming from SOLO2 state, we might have kill mmrests
250 in the 1st voice, so in that case, we use the second voice
251 as a basis for events.
253 Outlet_type c1 = (last_playing_ == SOLO2) ? CONTEXT_NULL : CONTEXT_SHARED;
254 Outlet_type c2 = (last_playing_ == SOLO2) ? CONTEXT_SHARED : CONTEXT_NULL;
255 substitute_both (c1, c2);
256 kill_mmrest ((last_playing_ == SOLO2) ? CONTEXT_ONE : CONTEXT_TWO);
257 kill_mmrest (CONTEXT_SHARED);
259 if (playing_state_ != UNISONO
260 && newstate == UNISONO)
264 unisono_event_ = new Stream_event (ly_symbol2scm ("unisono-event"));
265 unisono_event_->unprotect ();
268 Context *out = (last_playing_ == SOLO2 ? second_iter_ : first_iter_)
270 out->event_source ()->broadcast (unisono_event_);
271 playing_state_ = UNISONO;
278 Part_combine_iterator::solo1 ()
285 substitute_both (CONTEXT_SOLO, CONTEXT_NULL);
287 kill_mmrest (CONTEXT_TWO);
288 kill_mmrest (CONTEXT_SHARED);
290 if (playing_state_ != SOLO1)
292 if (!solo_one_event_)
294 solo_one_event_ = new Stream_event (ly_symbol2scm ("solo-one-event"));
295 solo_one_event_->unprotect ();
298 first_iter_->get_outlet ()->event_source ()->broadcast (solo_one_event_);
300 playing_state_ = SOLO1;
305 Part_combine_iterator::solo2 ()
313 substitute_both (CONTEXT_NULL, CONTEXT_SOLO);
315 if (playing_state_ != SOLO2)
317 if (!solo_two_event_)
319 solo_two_event_ = new Stream_event (ly_symbol2scm ("solo-two-event"));
320 solo_two_event_->unprotect ();
323 second_iter_->get_outlet ()->event_source ()->broadcast (solo_two_event_);
324 playing_state_ = SOLO2;
330 Part_combine_iterator::chords_together ()
332 if (state_ == TOGETHER)
336 playing_state_ = TOGETHER;
339 substitute_both (CONTEXT_SHARED, CONTEXT_SHARED);
344 Part_combine_iterator::apart (bool silent)
347 playing_state_ = APART;
354 substitute_both (CONTEXT_ONE, CONTEXT_TWO);
359 Part_combine_iterator::construct_children ()
361 start_moment_ = get_outlet ()->now_mom ();
362 split_list_ = get_music ()->get_property ("split-list");
363 direction_ = get_music ()->get_property ("direction");
364 if (is_direction (direction_))
366 directionOne_ = direction_;
367 directionTwo_ = direction_;
368 if (scm_is_true (scm_negative_p (direction_)))
370 horizontalShiftOne_ = scm_from_int (1);
371 horizontalShiftTwo_ = scm_from_int (0);
375 Context *c = get_outlet ();
377 for (int i = 0; i < NUM_OUTLETS; i++)
379 SCM type = (i == CONTEXT_NULL) ? ly_symbol2scm ("Devnull") : ly_symbol2scm ("Voice");
380 /* find context below c: otherwise we may create new staff for each voice */
381 c = c->find_create_context (type, outlet_names_[i], SCM_EOL);
382 handles_[i].set_context (c);
383 if (c->is_alias (ly_symbol2scm ("Voice")))
384 c->event_source ()->add_listener (GET_LISTENER (set_busy), ly_symbol2scm ("music-event"));
387 SCM lst = get_music ()->get_property ("elements");
388 Context *one = handles_[CONTEXT_ONE].get_context ();
390 first_iter_ = unsmob_iterator (get_iterator (unsmob_music (scm_car (lst))));
391 Context *two = handles_[CONTEXT_TWO].get_context ();
393 second_iter_ = unsmob_iterator (get_iterator (unsmob_music (scm_cadr (lst))));
394 Context *shared = handles_[CONTEXT_SHARED].get_context ();
395 set_context (shared);
397 /* Mimic all settings of voiceOne/voiceTwo for the two separate voices...*/
398 /* FIXME: Is there any way to use the definition of \voiceOne/\voiceTwo
404 "DynamicLineSpanner",
414 for (char const **p = syms; *p; p++)
416 SCM sym = ly_symbol2scm (*p);
417 execute_pushpop_property (one, sym,
418 ly_symbol2scm ("direction"), directionOne_);
420 execute_pushpop_property (two, sym,
421 ly_symbol2scm ("direction"), directionTwo_);
423 if (scm_is_number (direction_))
424 execute_pushpop_property (shared, sym,
425 ly_symbol2scm ("direction"), direction_);
427 /* Handle horizontal shifts for crossing notes */
428 execute_pushpop_property (one, ly_symbol2scm ("NoteColumn"),
429 ly_symbol2scm ("horizontal-shift"), horizontalShiftOne_);
430 execute_pushpop_property (two, ly_symbol2scm ("NoteColumn"),
431 ly_symbol2scm ("horizontal-shift"), horizontalShiftTwo_);
432 /* Also handle MultiMeasureRest positions for voice 1/2 */
433 execute_pushpop_property (one, ly_symbol2scm ("MultiMeasureRest"),
434 ly_symbol2scm ("staff-position"), scm_from_int (4));
435 execute_pushpop_property (two, ly_symbol2scm ("MultiMeasureRest"),
436 ly_symbol2scm ("staff-position"), scm_from_int (-4));
440 IMPLEMENT_LISTENER (Part_combine_iterator, set_busy);
442 Part_combine_iterator::set_busy (SCM se)
447 Stream_event *e = unsmob_stream_event (se);
449 if (e->in_event_class ("note-event") || e->in_event_class ("cluster-note-event"))
454 Processes a moment in an iterator, and returns whether any new music
458 Part_combine_iterator::try_process (Music_iterator *i, Moment m)
465 notice_busy_ = false;
470 Part_combine_iterator::process (Moment m)
472 Moment now = get_outlet ()->now_mom ();
475 /* This is needed if construct_children was called before iteration
477 if (start_moment_.main_part_.is_infinity () && start_moment_ < 0)
480 for (; scm_is_pair (split_list_); split_list_ = scm_cdr (split_list_))
482 splitm = unsmob_moment (scm_caar (split_list_));
483 if (splitm && *splitm + start_moment_ > now)
486 SCM tag = scm_cdar (split_list_);
488 if (tag == ly_symbol2scm ("chords"))
490 else if (tag == ly_symbol2scm ("apart")
491 || tag == ly_symbol2scm ("apart-silence")
492 || tag == ly_symbol2scm ("apart-spanner"))
493 apart (tag == ly_symbol2scm ("apart-silence"));
494 else if (tag == ly_symbol2scm ("unisono"))
496 else if (tag == ly_symbol2scm ("unisilence"))
498 else if (tag == ly_symbol2scm ("solo1"))
500 else if (tag == ly_symbol2scm ("solo2"))
502 else if (scm_is_symbol (tag))
504 string s = "Unknown split directive: "
505 + (scm_is_symbol (tag) ? ly_symbol2string (tag) : string ("not a symbol"));
506 programming_error (s);
510 if (first_iter_->ok ())
512 if (try_process (first_iter_, m))
513 last_playing_ = SOLO1;
516 if (second_iter_->ok ())
518 if (try_process (second_iter_, m))
519 last_playing_ = SOLO2;
523 IMPLEMENT_CTOR_CALLBACK (Part_combine_iterator);