X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcustos-engraver.cc;h=0c5157d599c976e620a7e11747e360cf0ac14b51;hb=9602a6de93da3d612b7833fdd56168c3c8d19df1;hp=5b110886c347b13fa86b2e7eafc1d16853934e41;hpb=ba858880848d6aca1de4401d185860eb2017a01c;p=lilypond.git diff --git a/lily/custos-engraver.cc b/lily/custos-engraver.cc index 5b110886c3..0c5157d599 100644 --- a/lily/custos-engraver.cc +++ b/lily/custos-engraver.cc @@ -3,8 +3,8 @@ source file of the GNU LilyPond music typesetter - (c) 2000--2004 Juergen Reuter , - Han-Wen Nienhuys + (c) 2000--2005 Juergen Reuter , + Han-Wen Nienhuys */ #include "engraver.hh" @@ -13,7 +13,6 @@ #include "note-head.hh" #include "staff-symbol-referencer.hh" #include "warn.hh" -#include "event.hh" /* * This class implements an engraver for custos symbols. @@ -31,9 +30,8 @@ public: virtual void stop_translation_timestep (); virtual void finalize (); - private: - Item * create_custos (); + Item *create_custos (); bool custos_permitted; Link_array custodes_; Array pitches_; @@ -44,17 +42,12 @@ Custos_engraver::Custos_engraver () custos_permitted = false; } - void Custos_engraver::stop_translation_timestep () { /* delay typeset until we're at the next moment, so we can silence custodes at the end of the piece. - */ - for (int i = custodes_.size (); i--;) - { - typeset_grob (custodes_[i]); - } + */ pitches_.clear (); custos_permitted = false; @@ -66,14 +59,13 @@ Custos_engraver::start_translation_timestep () custodes_.clear (); } - void Custos_engraver::acknowledge_grob (Grob_info info) { - Item *item = dynamic_cast (info.grob_); + Item *item = dynamic_cast (info.grob_); if (item) { - Music * m = info.music_cause (); + Music *m = info.music_cause (); if (Bar_line::has_interface (info.grob_)) custos_permitted = true; else if (Note_head::has_interface (info.grob_) @@ -89,7 +81,7 @@ Custos_engraver::acknowledge_grob (Grob_info info) don't look at the staff-position, since we can't be sure whether Clef_engraver already applied a vertical shift. */ - pitches_.push (*unsmob_pitch (m->get_property ("pitch"))); + pitches_.push (*unsmob_pitch (m->get_property ("pitch"))); } } } @@ -97,9 +89,9 @@ Custos_engraver::acknowledge_grob (Grob_info info) void Custos_engraver::process_acknowledged_grobs () { - if (ly_c_string_p (get_property ("whichBar"))) + if (scm_is_string (get_property ("whichBar"))) custos_permitted = true; - + if (custos_permitted) { for (int i = pitches_.size (); i--;) @@ -108,27 +100,24 @@ Custos_engraver::process_acknowledged_grobs () int p = pitches_[i].steps (); SCM c0 = get_property ("middleCPosition"); - if (is_number (c0)) - p += ly_scm2int (c0); + if (scm_is_number (c0)) + p += scm_to_int (c0); - c->set_property ("staff-position", - scm_int2num (p)); - + scm_int2num (p)); } pitches_.clear (); } } -Item* +Item * Custos_engraver::create_custos () { - Item* custos = make_item ("Custos"); - - announce_grob (custos, SCM_EOL); + Item *custos = make_item ("Custos", SCM_EOL); + custodes_.push (custos); - + return custos; } @@ -138,17 +127,14 @@ Custos_engraver::finalize () for (int i = custodes_.size (); i--;) { custodes_[i]->suicide (); - typeset_grob (custodes_[i]); } custodes_.clear (); } - - -ENTER_DESCRIPTION (Custos_engraver, -/* descr */ "", -/* creats*/ "Custos", -/* accepts */ "", -/* acks */ "bar-line-interface note-head-interface", -/* reads */ "", -/* write */ ""); +ADD_TRANSLATOR (Custos_engraver, + /* descr */ "", + /* creats*/ "Custos", + /* accepts */ "", + /* acks */ "bar-line-interface note-head-interface", + /* reads */ "", + /* write */ "");