X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fauto-change-iterator.cc;h=852df8d28794a724ae3dd943fd5e236cf5170dc0;hb=a7ab348abcd7ace19950a2ecb5862cc246995c20;hp=030e7444401d8f94cc1396e84c617a7290604983;hpb=b4ee6cee22686157744f382b2fdc4279f147f310;p=lilypond.git diff --git a/lily/auto-change-iterator.cc b/lily/auto-change-iterator.cc index 030e744440..852df8d287 100644 --- a/lily/auto-change-iterator.cc +++ b/lily/auto-change-iterator.cc @@ -3,14 +3,33 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2003 Han-Wen Nienhuys + (c) 1999--2004 Han-Wen Nienhuys */ #include "music.hh" -#include "auto-change-iterator.hh" -#include "translator-group.hh" +#include "context.hh" #include "event.hh" +#include "music-wrapper-iterator.hh" +#include "direction.hh" + +class Auto_change_iterator : public Music_wrapper_iterator +{ +public: + DECLARE_SCHEME_CALLBACK (constructor, ()); + + Auto_change_iterator (); + +protected: + virtual void construct_children (); + virtual void process (Moment); + Array pending_pitch (Moment)const; +private: + SCM split_list_; + Direction where_dir_; + void change_to (Music_iterator* , SCM, String); + Moment start_moment_; +}; @@ -18,8 +37,8 @@ void Auto_change_iterator::change_to (Music_iterator *it, SCM to_type_sym, String to_id) { - Translator_group * current = it->report_to (); - Translator_group * last = 0; + Context * current = it->get_outlet (); + Context * last = 0; /* Cut & Paste from Change_iterator (ugh). @@ -34,7 +53,7 @@ Auto_change_iterator::change_to (Music_iterator *it, SCM to_type_sym, while (current && !current->is_alias (to_type_sym)) { last = current; - current = current->daddy_trans_; + current = current->daddy_context_; } if (current && current->id_string_ == to_id) @@ -46,10 +65,10 @@ Auto_change_iterator::change_to (Music_iterator *it, SCM to_type_sym, if (current) if (last) { - Translator_group * dest = - it->report_to ()->find_create_translator (to_type_sym, to_id, SCM_EOL); - current->remove_translator (last); - dest->add_used_group_translator (last); + Context * dest = + it->get_outlet ()->find_create_context (to_type_sym, to_id, SCM_EOL); + current->remove_context (last); + dest->add_context (last); } else { @@ -57,84 +76,37 @@ Auto_change_iterator::change_to (Music_iterator *it, SCM to_type_sym, We could change the current translator's id, but that would make errors hard to catch - last->translator_id_string_ = get_change ()->change_to_id_string_; */ - // error (_ ("I'm one myself")); } else - ; // error (_ ("none of these in my family")); + ; } -/* - Look ahead to find first pitches to determine staff position. - WARNING: this means that - - \autochange Staff \notes { .... \context Staff = otherstaff { .. } .. } - - will confuse the autochanger, since it will not notice that the - music for OTHERSTAFF is not his. - - PRECONDITION: this->ok () holds. -*/ -Array -Auto_change_iterator::pending_pitch (Moment m) const -{ - Music_iterator * iter = child_iter_ ->clone (); - Array ps; - while (1) - { - SCM muses = iter->get_pending_events (m); - for (SCM s = muses; gh_pair_p (s); s=ly_cdr (s)) - { - Music * m = unsmob_music (ly_car (s)); - if (m && m->is_mus_type ("note-event")) - { - ps.push (*unsmob_pitch (m->get_mus_property ("pitch"))); - } - } - - if (ps.size ()) - break; - - iter->skip (m); - if (!iter->ok ()) - break; - - m = iter->pending_moment (); - } - - scm_gc_unprotect_object (iter->self_scm()); - - return ps; -} - void Auto_change_iterator::process (Moment m) { - /* - first we get the pitches, then we do the real work. - Music_wrapper_iterator::process () might process (and throw away) - pitches we need. */ - Array ps = pending_pitch (m); - Music_wrapper_iterator::process (m); - if (ps.size ()) + + Moment now = get_outlet ()->now_mom (); + Moment *splitm = 0; + + for (; gh_pair_p (split_list_); split_list_ = gh_cdr (split_list_)) { - Pitch p = ps[0]; - Direction s = Direction (sign (p.steps ())); - /* - Don't change for central C. - - TODO: make this tunable somehow. Sometimes, you'd want to - switch for C.C. as well. + splitm = unsmob_moment (gh_caar (split_list_)); + if ((*splitm + start_moment_) > now) + break ; - */ - if (s && s != where_dir_) + SCM tag = gh_cdar (split_list_); + Direction d = to_dir (tag); + + if (d && d != where_dir_) { - where_dir_ = s; - String to_id = (s >= 0) ? "up" : "down"; - change_to (child_iter_, get_music ()->get_mus_property ("what"), to_id); + where_dir_ = d; + String to_id = (d >= 0) ? "up" : "down"; + change_to (child_iter_, + ly_symbol2scm ("Staff"), + to_id); } } } @@ -142,6 +114,15 @@ Auto_change_iterator::process (Moment m) Auto_change_iterator::Auto_change_iterator () { where_dir_ = CENTER; + split_list_ = SCM_EOL; +} + +void +Auto_change_iterator::construct_children () +{ + Music_wrapper_iterator::construct_children (); + split_list_ = get_music ()->get_property ("split-list"); + start_moment_ = get_outlet ()->now_mom (); } IMPLEMENT_CTOR_CALLBACK (Auto_change_iterator);