/*
- change-iterator.cc -- implement
+ change-iterator.cc -- implement Change_iterator
source file of the GNU LilyPond music typesetter
#include "change-iterator.hh"
#include "translator-group.hh"
#include "change-translator.hh"
+#include "debug.hh"
Change_iterator::Change_iterator (Change_translator *change_l)
{
change_l_ = change_l;
}
+void
+Change_iterator::error (String reason)
+{
+ String to_type = change_l_->change_to_type_str_;
+ String to_id = change_l_->change_to_id_str_;
+
+ String warn1 =
+ _ ("Can't change ") + to_type
+ + _(" to ") + "`" + to_id + "\': " + reason;
+ String warn2= "Change_iterator::process_and_next (): " + report_to_l ()->type_str_ + " = `"
+ + report_to_l ()->id_str_ + "\': ";
+ warning (warn2);
+ change_l_->warning (warn1);
+}
+
/*
move to construct_children ?
*/
{
Translator_group * current = report_to_l ();
Translator_group * last = 0;
- while (current && current->type_str_ != change_l_->change_to_type_str_)
+
+ String to_type = change_l_->change_to_type_str_;
+ String to_id = change_l_->change_to_id_str_;
+
+ /* find the type of translator that we're changing.
+
+ If \translator Staff = bass, then look for Staff = *
+ */
+ while (current && current->type_str_ != to_type)
{
last = current;
current = current->daddy_trans_l_;
}
- if (current)
- {
- Translator_group * dest =
- report_to_l ()->find_create_translator_l (change_l_->change_to_type_str_,
- change_l_->change_to_id_str_);
- current->remove_translator_p (last);
- dest->add (last);
- }
+
+ if (current)
+ if (last)
+ {
+ Translator_group * dest =
+ report_to_l ()->find_create_translator_l (to_type, to_id);
+ current->remove_translator_p (last);
+ dest->add (last);
+ }
+ else
+ {
+
+ /*
+ 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_;
+ */
+ error ("I'm one myself");
+ }
+ else
+ error ("None of these in my family.");
Music_iterator::process_and_next (m);
}