X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fauto-change-iterator.cc;h=55ff27d316aa5d453024fdda1f76c75c7007f26e;hb=97a0169312a260933246ab224e4f8b0969871dd5;hp=f5bb1bbe39542c3afe5ab3d492ac8ea9fa6f4a35;hpb=e58fce49b3113408254011774685370b8233df17;p=lilypond.git diff --git a/lily/auto-change-iterator.cc b/lily/auto-change-iterator.cc index f5bb1bbe39..55ff27d316 100644 --- a/lily/auto-change-iterator.cc +++ b/lily/auto-change-iterator.cc @@ -1,128 +1,41 @@ -/* - auto-change-iterator.cc -- implement Auto_change_iterator +/* + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter - - (c) 1999--2003 Han-Wen Nienhuys - - */ + Copyright (C) 1999--2015 Han-Wen Nienhuys -#include "music.hh" -#include "translator-group.hh" -#include "event.hh" -#include "music-wrapper-iterator.hh" -#include "direction.hh" + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. -class Auto_change_iterator : public Music_wrapper_iterator -{ -public: - VIRTUAL_COPY_CONS (Music_iterator); - 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); -}; - - - -void -Auto_change_iterator::change_to (Music_iterator *it, SCM to_type_sym, - String to_id) -{ - Translator_group * current = it->get_outlet (); - Translator_group * last = 0; - - /* - Cut & Paste from Change_iterator (ugh). + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - TODO: abstract this function - */ - - /* find the type of translator that we're changing. - - If \translator Staff = bass, then look for Staff = * - */ - while (current && !current->is_alias (to_type_sym)) - { - last = current; - current = current->daddy_trans_; - } + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ - if (current && current->id_string_ == to_id) - { - String msg; - msg += _ ("Can't switch translators, I'm there already"); - } - - if (current) - if (last) - { - Translator_group * dest = - it->get_outlet ()->find_create_translator (to_type_sym, to_id, SCM_EOL); - current->remove_translator (last); - dest->add_used_group_translator (last); - } - else - { - /* - We could change the current translator's id, but that would make - errors hard to catch - - */ - } - else - ; +#include "change-iterator.hh" +#include "change-sequence-iterator.hh" -} - -void -Auto_change_iterator::process (Moment m) +class Auto_change_iterator : public Change_sequence_iterator { - Music_wrapper_iterator::process (m); - - - Moment now = get_outlet ()->now_mom (); - Moment *splitm = 0; - - for (; gh_pair_p (split_list_); split_list_ = gh_cdr (split_list_)) - { - splitm = unsmob_moment (gh_caar (split_list_)); - if (*splitm > now) - break ; - - SCM tag = gh_cdar (split_list_); - Direction d = to_dir (tag); - - if (d && d != where_dir_) - { - where_dir_ = d; - String to_id = (d >= 0) ? "up" : "down"; - change_to (child_iter_, - ly_symbol2scm ("Staff"), - to_id); - } - } -} +public: + DECLARE_SCHEME_CALLBACK (constructor, ()); + Auto_change_iterator () {} -Auto_change_iterator::Auto_change_iterator () -{ - where_dir_ = CENTER; - split_list_ = SCM_EOL; -} +private: + virtual void change_to (const string &id); +}; void -Auto_change_iterator::construct_children () +Auto_change_iterator::change_to (const string &id) { - Music_wrapper_iterator::construct_children (); - split_list_ = get_music ()->get_mus_property ("split-list"); + // N.B. change_to() returns an error message. Silence is the legacy + // behavior here, but maybe that should be changed. + Change_iterator::change_to (*child_iter_, ly_symbol2scm ("Staff"), id); } IMPLEMENT_CTOR_CALLBACK (Auto_change_iterator);