X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fclef-engraver.cc;h=090647ae71771d4eae6eef463c23b0a438f5840e;hb=1402d6d957bee7d47e0bddf4c57dd89912182b26;hp=b36fc2dc8aba81cd337d54b71a8c7af98ce1796d;hpb=a6ee9dcd388111e842064a8d46ab06c4897a00d2;p=lilypond.git diff --git a/lily/clef-engraver.cc b/lily/clef-engraver.cc index b36fc2dc8a..090647ae71 100644 --- a/lily/clef-engraver.cc +++ b/lily/clef-engraver.cc @@ -3,39 +3,34 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2002 Han-Wen Nienhuys , + (c) 1997--2005 Han-Wen Nienhuys , Mats Bengtsson */ -#include - -#include "translator-group.hh" +#include +#include "context.hh" #include "bar-line.hh" #include "staff-symbol-referencer.hh" - #include "engraver.hh" #include "direction.hh" #include "side-position-interface.hh" -#include "item.hh" - -class Clef_engraver : public Engraver +class Clef_engraver : public Engraver { public: - TRANSLATOR_DECLARATIONS(Clef_engraver); + TRANSLATOR_DECLARATIONS (Clef_engraver); Direction octave_dir_; protected: - virtual void stop_translation_timestep (); - virtual void start_translation_timestep (); - virtual void process_music (); + PRECOMPUTED_VIRTUAL void stop_translation_timestep (); + PRECOMPUTED_VIRTUAL void process_music (); virtual void acknowledge_grob (Grob_info); private: - Item * clef_; - Item * octavate_; + Item *clef_; + Item *octavate_; SCM prev_glyph_; SCM prev_cpos_; @@ -53,7 +48,7 @@ Clef_engraver::Clef_engraver () /* will trigger a clef at the start since #f != ' () - */ + */ prev_cpos_ = prev_glyph_ = SCM_BOOL_F; } @@ -64,26 +59,25 @@ Clef_engraver::set_glyph () SCM glyph = get_property ("clefGlyph"); SCM basic = ly_symbol2scm ("Clef"); - - daddy_trans_->execute_single_pushpop_property (basic, glyph_sym, SCM_UNDEFINED); - daddy_trans_->execute_single_pushpop_property (basic, glyph_sym, glyph); + + execute_pushpop_property (context (), basic, glyph_sym, SCM_UNDEFINED); + execute_pushpop_property (context (), basic, glyph_sym, glyph); } -/** - Generate a clef at the start of a measure. (when you see a Bar, - ie. a breakpoint) - */ +/** + Generate a clef at the start of a measure. (when you see a Bar, + ie. a breakpoint) +*/ void Clef_engraver::acknowledge_grob (Grob_info info) { - Item * item =dynamic_cast (info.grob_); + Item *item = dynamic_cast (info.grob ()); if (item) { - if (Bar_line::has_interface (info.grob_) - && gh_string_p (get_property ("clefGlyph"))) + if (Bar_line::has_interface (info.grob ()) + && scm_is_string (get_property ("clefGlyph"))) create_clef (); - - } + } } void @@ -91,32 +85,38 @@ Clef_engraver::create_clef () { if (!clef_) { - Item *c= new Item (get_property ("Clef")); - announce_grob(c, SCM_EOL); + Item *c = make_item ("Clef", SCM_EOL); clef_ = c; - } - SCM cpos = get_property ("clefPosition"); + SCM cpos = get_property ("clefPosition"); - if (gh_number_p (cpos)) - Staff_symbol_referencer::set_position (clef_, gh_scm2int (cpos)); + if (scm_is_number (cpos)) + clef_->set_property ("staff-position", cpos); - SCM oct = get_property ("clefOctavation"); - if (gh_number_p (oct) && gh_scm2int (oct)) - { - Item * g = new Item (get_property ("OctavateEight")); + SCM oct = get_property ("clefOctavation"); + if (scm_is_number (oct) && scm_to_int (oct)) + { + Item *g = make_item ("OctavateEight", SCM_EOL); + + int abs_oct = scm_to_int (oct); + int dir = sign (abs_oct); + abs_oct = abs (abs_oct) + 1; - Side_position_interface::add_support (g,clef_); + SCM txt = scm_number_to_string (scm_int2num (abs_oct), + scm_from_int (10)); - g->set_parent (clef_, Y_AXIS); - g->set_parent (clef_, X_AXIS); + g->set_property ("text", + scm_list_n (ly_lily_module_constant ("vcenter-markup"), + txt, SCM_UNDEFINED)); + Side_position_interface::add_support (g, clef_); - g->set_grob_property ("direction", gh_int2scm (sign (gh_scm2int (oct)))); - octavate_ = g; - announce_grob(octavate_, SCM_EOL); + g->set_parent (clef_, Y_AXIS); + g->set_parent (clef_, X_AXIS); + g->set_property ("direction", scm_int2num (dir)); + octavate_ = g; + } } } - void Clef_engraver::process_music () { @@ -130,18 +130,19 @@ Clef_engraver::inspect_clef_properties () SCM clefpos = get_property ("clefPosition"); SCM octavation = get_property ("clefOctavation"); SCM force_clef = get_property ("forceClef"); - - if (clefpos == SCM_EOL - || scm_equal_p (glyph, prev_glyph_) == SCM_BOOL_F - || scm_equal_p (clefpos, prev_cpos_) == SCM_BOOL_F - || scm_equal_p (octavation, prev_octavation_) == SCM_BOOL_F - || to_boolean (force_clef) -) + + if (clefpos == SCM_EOL + || scm_equal_p (glyph, prev_glyph_) == SCM_BOOL_F + || scm_equal_p (clefpos, prev_cpos_) == SCM_BOOL_F + || scm_equal_p (octavation, prev_octavation_) == SCM_BOOL_F + || to_boolean (force_clef)) { set_glyph (); - create_clef (); + if (prev_cpos_ != SCM_BOOL_F || to_boolean (get_property ("firstClef"))) + create_clef (); - clef_->set_grob_property ("non-default", SCM_BOOL_T); + if (clef_) + clef_->set_property ("non-default", SCM_BOOL_T); prev_cpos_ = clefpos; prev_glyph_ = glyph; @@ -150,56 +151,43 @@ Clef_engraver::inspect_clef_properties () if (to_boolean (force_clef)) { - Translator_group * w = daddy_trans_->where_defined (ly_symbol2scm ("forceClef")); + Context *w = context ()->where_defined (ly_symbol2scm ("forceClef")); w->set_property ("forceClef", SCM_EOL); } } - void Clef_engraver::stop_translation_timestep () { if (clef_) { - SCM vis = 0; - if (to_boolean (clef_->get_grob_property ("non-default"))) + SCM vis = 0; + if (to_boolean (clef_->get_property ("non-default"))) { vis = get_property ("explicitClefVisibility"); } if (vis) { - clef_->set_grob_property ("break-visibility", vis); + clef_->set_property ("break-visibility", vis); if (octavate_) { - octavate_->set_grob_property ("break-visibility", vis); - + octavate_->set_property ("break-visibility", vis); } } - - typeset_grob (clef_); - clef_ =0; - if (octavate_) - { - Side_position_interface::add_staff_support (octavate_); - typeset_grob (octavate_); - } + clef_ = 0; octavate_ = 0; } } -void -Clef_engraver::start_translation_timestep () -{ -} - - +#include "translator.icc" -ENTER_DESCRIPTION(Clef_engraver, -/* descr */ "Determine and set reference point for pitches", -/* creats*/ "Clef OctavateEight", -/* acks */ "bar-line-interface", -/* reads */ "clefPosition clefGlyph centralCPosition clefOctavation explicitClefVisibility", -/* write */ ""); +ADD_TRANSLATOR (Clef_engraver, + /* descr */ "Determine and set reference point for pitches", + /* creats*/ "Clef OctavateEight", + /* accepts */ "", + /* acks */ "bar-line-interface", + /* reads */ "clefPosition clefGlyph middleCPosition clefOctavation explicitClefVisibility forceClef", + /* write */ "");