X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fproperty-iterator.cc;h=480b506858d7fe62b885c1cf14861351a42ec91c;hb=5cee1f33692a248c1e8439e6629003735c9c24c1;hp=9589804ecfbbe7311e3fe8bddcfb8c6ccb0eb1b2;hpb=0817e0513d1016ff22a633b6fee20ddba2a062f2;p=lilypond.git diff --git a/lily/property-iterator.cc b/lily/property-iterator.cc index 9589804ecf..480b506858 100644 --- a/lily/property-iterator.cc +++ b/lily/property-iterator.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2001 Han-Wen Nienhuys + (c) 1997--2002 Han-Wen Nienhuys */ #include "property-iterator.hh" @@ -11,22 +11,25 @@ #include "translator-def.hh" #include "translator-group.hh" + +bool check_grob(Music *mus, SCM sym); + /** - There is no real processing to a property: just lookup the - translation unit, and set the property. - */ + There is no real processing to a property: just lookup the + translation unit, and set the property. +*/ void Property_iterator::process (Moment m) { - SCM sym = music_l ()->get_mus_property ("symbol"); + SCM sym = get_music ()->get_mus_property ("symbol"); if (gh_symbol_p (sym)) { - SCM val = music_l ()->get_mus_property ("value"); + SCM val = get_music ()->get_mus_property ("value"); bool ok= true; if (val != SCM_EOL) - ok = type_check_assignment (val, sym, ly_symbol2scm ("translation-type?")); + ok = type_check_assignment (sym, val, ly_symbol2scm ("translation-type?")); if (ok) - report_to_l ()->internal_set_property (sym, val); + report_to ()->internal_set_property (sym, val); } Simple_music_iterator::process (m); } @@ -34,38 +37,62 @@ Property_iterator::process (Moment m) void Property_unset_iterator::process (Moment m) { - SCM sym = music_l ()->get_mus_property ("symbol"); - if (gh_symbol_p (sym)) - { - report_to_l ()->unset_property (sym); - } + SCM sym = get_music ()->get_mus_property ("symbol"); + type_check_assignment (sym, SCM_EOL, ly_symbol2scm ("translation-type?")); + report_to ()->unset_property (sym); + Simple_music_iterator::process (m); } +SCM list_p = 0; + +bool +check_grob(Music *mus, SCM sym) +{ + if (!list_p) + { + list_p = gh_eval_str ("list?"); + } + + + SCM type = scm_object_property (sym, ly_symbol2scm ("translation-type?")); + bool ok = type == list_p; + + if (!ok) + { + mus->origin()->warning (_f("Not a grob name, `%s'." , ly_symbol2string (sym))); + } + return ok; +} + void Push_property_iterator::process (Moment m) { - SCM syms = music_l ()->get_mus_property ("symbols"); - SCM eprop = music_l ()->get_mus_property ("grob-property"); - SCM val = music_l ()->get_mus_property ("grob-value"); + SCM sym = get_music ()->get_mus_property ("symbol"); + if (check_grob (get_music (), sym)) + { + SCM eprop = get_music ()->get_mus_property ("grob-property"); + SCM val = get_music ()->get_mus_property ("grob-value"); - if (to_boolean (music_l ()->get_mus_property ("pop-first"))) - Translator_def::apply_pushpop_property (report_to_l (), - syms, eprop, SCM_UNDEFINED); + if (to_boolean (get_music ()->get_mus_property ("pop-first"))) + Translator_def::apply_pushpop_property (report_to (), + sym, eprop, SCM_UNDEFINED); - Translator_def::apply_pushpop_property (report_to_l (), syms, eprop, val); - + Translator_def::apply_pushpop_property (report_to (), sym, eprop, val); + } Simple_music_iterator::process (m); } void Pop_property_iterator::process (Moment m) { - SCM syms = music_l ()->get_mus_property ("symbols"); - SCM eprop = music_l ()->get_mus_property ("grob-property"); - Translator_def::apply_pushpop_property (report_to_l (), syms, eprop, SCM_UNDEFINED); - + SCM sym = get_music ()->get_mus_property ("symbol"); + if (check_grob (get_music (), sym)) + { + SCM eprop = get_music ()->get_mus_property ("grob-property"); + Translator_def::apply_pushpop_property (report_to (), sym, eprop, SCM_UNDEFINED); + } Simple_music_iterator::process (m); }