X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Foutput-property-engraver.cc;h=4f7c3a0e2018cb9e311fc5e6231c93aaee62f4f2;hb=b9955d706ca6f136b160f0611db85c6bdf0fea9b;hp=e852d666fa646094b553c1a7d48b04ca80bc7527;hpb=0817e0513d1016ff22a633b6fee20ddba2a062f2;p=lilypond.git diff --git a/lily/output-property-engraver.cc b/lily/output-property-engraver.cc index e852d666fa..4f7c3a0e20 100644 --- a/lily/output-property-engraver.cc +++ b/lily/output-property-engraver.cc @@ -3,31 +3,19 @@ source file of the GNU LilyPond music typesetter - (c) 2000--2001 Han-Wen Nienhuys + (c) 2000--2003 Han-Wen Nienhuys */ #include "engraver.hh" #include "grob.hh" #include "output-property-music-iterator.hh" +#include "translator-group.hh" class Output_property_engraver : public Engraver { TRANSLATOR_DECLARATIONS(Output_property_engraver); protected: - - /* - should do this with \once and \push ? - - - \property Voice.outputProperties \push #pred = #modifier - - where both MODIFIER and PRED are functions taking a - grob. - - */ - - Link_array props_; virtual void stop_translation_timestep (); @@ -39,8 +27,7 @@ protected: bool Output_property_engraver::try_music (Music* m) { - if (m->get_mus_property ("iterator-ctor") == - Output_property_music_iterator::constructor_cxx_function) + if (m->is_mus_type ("layout-instruction")) { props_.push (m); return true; @@ -55,17 +42,35 @@ Output_property_engraver::acknowledge_grob (Grob_info inf) { Music * o = props_[i]; SCM pred = o->get_mus_property ("predicate"); - - /* - should typecheck pred. - */ - SCM result=gh_apply (pred, - scm_list_n (inf.grob_l_->self_scm (), SCM_UNDEFINED)); - if (to_boolean (result)) + + + + if (gh_procedure_p (pred)) { - SCM sym = o->get_mus_property ("grob-property"); - SCM val = o->get_mus_property ("grob-value"); - inf.grob_l_->internal_set_grob_property (sym, val); + /* + should typecheck pred. + */ + SCM result=scm_call_1 (pred, inf.grob_->self_scm ()); + if (to_boolean (result)) + { + SCM sym = o->get_mus_property ("grob-property"); + SCM val = o->get_mus_property ("grob-value"); + inf.grob_->internal_set_grob_property (sym, val); + } + } + else + { + Translator_group * d = + dynamic_cast (inf.origin_trans_); + + if (!d) + d = dynamic_cast (inf.origin_trans_->daddy_trans_); + + SCM proc = o->get_mus_property ("procedure"); + scm_call_3 (proc, + inf.grob_->self_scm(), + d->self_scm(), + daddy_trans_->self_scm()); } } } @@ -81,9 +86,10 @@ Output_property_engraver::Output_property_engraver() } ENTER_DESCRIPTION(Output_property_engraver, -/* descr */ "Interpret Music of Output_property type, and apply a function -to any Graphic objects that satisfies the predicate.", +/* descr */ "Interpret Music of Output_property type, and apply a function " +" to any Graphic objects that satisfies the predicate.", /* creats*/ "", +/* accepts */ "layout-instruction", /* acks */ "grob-interface", /* reads */ "", /* write */ "");