X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=inline;f=lily%2Frest-engraver.cc;h=0a76fcdb245ff121b4e60f8c935d9981d54efd83;hb=108cf0e8c08c8e15e2a800feb161cfad9057daa8;hp=599df04acefb2c974af77b3e96d402fbded6fb98;hpb=38fa6a3720e1187ec51514ab2a209c67ce19e14c;p=lilypond.git diff --git a/lily/rest-engraver.cc b/lily/rest-engraver.cc index 599df04ace..0a76fcdb24 100644 --- a/lily/rest-engraver.cc +++ b/lily/rest-engraver.cc @@ -1,108 +1,109 @@ /* - rest-grav.cc -- implement Rest_engraver + rest-engraver.cc -- implement Rest_engraver source file of the GNU LilyPond music typesetter - (c) 1997--2000 Han-Wen Nienhuys + (c) 1997--2005 Han-Wen Nienhuys */ + +#include "engraver.hh" + +#include "duration.hh" #include "item.hh" #include "staff-symbol-referencer.hh" -#include "musical-request.hh" #include "dots.hh" #include "rhythmic-head.hh" -#include "engraver.hh" - +#include "music.hh" class Rest_engraver : public Engraver { - Rest_req *rest_req_l_; - Item * dot_p_; - Grob* rest_p_; + Music *rest_event_; + Item *dot_; + Grob *rest_; protected: virtual bool try_music (Music *); - virtual void stop_translation_timestep (); - virtual void start_translation_timestep (); - virtual void create_grobs (); + void start_translation_timestep (); + void process_music (); public: - - VIRTUAL_COPY_CONS(Translator); - Rest_engraver (); + TRANSLATOR_DECLARATIONS (Rest_engraver); }; - /* Should merge with Note_head_engraver - */ +*/ Rest_engraver::Rest_engraver () { - rest_req_l_ =0; - rest_p_ =0; - dot_p_ =0; + rest_event_ = 0; + rest_ = 0; + dot_ = 0; } void Rest_engraver::start_translation_timestep () { - rest_req_l_ =0; + rest_event_ = 0; + rest_ = 0; + dot_ = 0; } void -Rest_engraver::stop_translation_timestep () +Rest_engraver::process_music () { - if (rest_p_) - { - typeset_grob (rest_p_); - rest_p_ =0; - } - if (dot_p_) + if (rest_event_ && !rest_) { - typeset_grob (dot_p_); - dot_p_ =0; - } -} + rest_ = make_item ("Rest", rest_event_->self_scm ()); + + int durlog = unsmob_duration (rest_event_->get_property ("duration"))->duration_log (); + + rest_->set_property ("duration-log", + scm_from_int (durlog)); + + int dots = unsmob_duration (rest_event_->get_property ("duration"))->dot_count (); -void -Rest_engraver::create_grobs () -{ - if (rest_req_l_ && !rest_p_) - { - rest_p_ = new Item (get_property ("Rest")); - Rhythmic_head::set_interface (rest_p_); - Staff_symbol_referencer::set_interface (rest_p_); - - - int durlog = unsmob_duration (rest_req_l_->get_mus_property ("duration"))-> duration_log (); - - rest_p_->set_grob_property ("duration-log", - gh_int2scm (durlog)); - - int dots =unsmob_duration (rest_req_l_->get_mus_property ("duration"))->dot_count (); - if (dots) { - dot_p_ = new Item (get_property ("Dots")); + dot_ = make_item ("Dots", SCM_EOL); - Rhythmic_head::set_dots (rest_p_, dot_p_); - dot_p_->set_parent (rest_p_, Y_AXIS); - dot_p_->set_grob_property ("dot-count", gh_int2scm (dots)); - announce_grob (dot_p_,0); + Rhythmic_head::set_dots (rest_, dot_); + dot_->set_parent (rest_, Y_AXIS); + dot_->set_property ("dot-count", scm_from_int (dots)); } - announce_grob (rest_p_, rest_req_l_); + Pitch *p = unsmob_pitch (rest_event_->get_property ("pitch")); + + /* + This is ridiculous -- rests don't have pitch, but we act as if + our nose is bleeding. + */ + if (p) + { + int pos = p->steps (); + SCM c0 = get_property ("middleCPosition"); + if (scm_is_number (c0)) + pos += scm_to_int (c0); + + rest_->set_property ("staff-position", scm_from_int (pos)); + } } } bool Rest_engraver::try_music (Music *m) { - if (Rest_req *r = dynamic_cast (m)) + if (m->is_mus_type ("rest-event")) { - rest_req_l_ = r; + rest_event_ = m; return true; - } + } return false; } +#include "translator.icc" -ADD_THIS_TRANSLATOR(Rest_engraver); +ADD_TRANSLATOR (Rest_engraver, + /* doc */ "", + /* create */ "Rest Dots", + /* accept */ "rest-event", + /* read */ "middleCPosition", + /* write */ "");