X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fauto-change-iterator.cc;h=74d345ee1470cbab47e9da292a9ce1d3eb855dfb;hb=d765f3af45be51f15da55cf570a4b172200e1035;hp=5d3537b46102cdb48553d55f317ecec45d3b8696;hpb=0f7b7e90fb80f52206e3bca71357eb2a4d481235;p=lilypond.git diff --git a/lily/auto-change-iterator.cc b/lily/auto-change-iterator.cc index 5d3537b461..74d345ee14 100644 --- a/lily/auto-change-iterator.cc +++ b/lily/auto-change-iterator.cc @@ -3,11 +3,11 @@ source file of the GNU LilyPond music typesetter - (c) 1999 Han-Wen Nienhuys + (c) 1999--2002 Han-Wen Nienhuys */ -#include "auto-change-music.hh" +#include "music.hh" #include "auto-change-iterator.hh" #include "translator-group.hh" #include "musical-request.hh" @@ -18,7 +18,7 @@ void Auto_change_iterator::change_to (Music_iterator *it, String to_type, String to_id) { - Translator_group * current = it->report_to_l (); + Translator_group * current = it->report_to (); Translator_group * last = 0; /* @@ -31,13 +31,13 @@ Auto_change_iterator::change_to (Music_iterator *it, String to_type, If \translator Staff = bass, then look for Staff = * */ - while (current && current->type_str_ != to_type) + while (current && current->type_string_ != to_type) { last = current; - current = current->daddy_trans_l_; + current = current->daddy_trans_; } - if (current && current->id_str_ == to_id) + if (current && current->id_string_ == to_id) { String msg; msg += _ ("Can't switch translators, I'm there already"); @@ -47,9 +47,9 @@ Auto_change_iterator::change_to (Music_iterator *it, String to_type, if (last) { Translator_group * dest = - it->report_to_l ()->find_create_translator_l (to_type, to_id); - current->remove_translator_p (last); - dest->add_translator (last); + it->report_to ()->find_create_translator (to_type, to_id); + current->remove_translator (last); + dest->add_used_group_translator (last); } else { @@ -57,7 +57,7 @@ Auto_change_iterator::change_to (Music_iterator *it, String to_type, We could change the current translator's id, but that would make errors hard to catch - last->translator_id_str_ = change_l ()->change_to_id_str_; + last->translator_id_string_ = get_change ()->change_to_id_string_; */ // error (_ ("I'm one myself")); } @@ -66,30 +66,80 @@ Auto_change_iterator::change_to (Music_iterator *it, String to_type, } -void -Auto_change_iterator::do_process_and_next (Moment m) +/* + 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_wrapper_iterator::do_process_and_next (m); - Pitch_interrogate_req spanish_inquisition; + 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)) + if (Note_req* nr = dynamic_cast (unsmob_music (ly_car (s)))) + { + ps.push (*unsmob_pitch (nr->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()); - Music_iterator *it = try_music (&spanish_inquisition); + 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); - if (it && spanish_inquisition.pitch_arr_.size ()) + Music_wrapper_iterator::process (m); + if (ps.size ()) { - Musical_pitch p = spanish_inquisition.pitch_arr_[0]; - Direction s = Direction (sign(p.semitone_pitch ())); + 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. + + */ if (s && s != where_dir_) { where_dir_ = s; - String to_id = (s > 0) ? "up" : "down"; - Auto_change_music const * auto_mus = dynamic_cast (music_l_); - - change_to (it, auto_mus->what_str_, to_id); + String to_id = (s >= 0) ? "up" : "down"; + String wh = ly_scm2string (get_music ()->get_mus_property ("what")); + change_to (child_iter_, wh, to_id); } } } -Auto_change_iterator::Auto_change_iterator( ) +Auto_change_iterator::Auto_change_iterator () { where_dir_ = CENTER; } + +IMPLEMENT_CTOR_CALLBACK (Auto_change_iterator);