]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/rest-engraver.cc
2003 -> 2004
[lilypond.git] / lily / rest-engraver.cc
index 2bb3506c49e3c27535d835ac44cf252434582395..a660dfda44912bc197b8ad0cb2e8238bb4d156d0 100644 (file)
@@ -3,11 +3,11 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 #include "item.hh"
 #include "staff-symbol-referencer.hh"
-#include "musical-request.hh"
+#include "event.hh"
 #include "dots.hh"
 #include "rhythmic-head.hh"
 #include "engraver.hh"
@@ -15,9 +15,9 @@
 
 class Rest_engraver : public Engraver
 {
-  Rest_req *rest_req_l_;
-  Item * dot_p_;
-  Grob* rest_p_;
+  Music *rest_req_;
+  Item * dot_;
+  Grob* rest_;
 protected:
   virtual bool try_music (Music *);
   virtual void stop_translation_timestep ();
@@ -34,59 +34,57 @@ public:
  */
 Rest_engraver::Rest_engraver ()
 {
-  rest_req_l_ =0;
-  rest_p_ =0;
-  dot_p_ =0;
+  rest_req_ =0;
+  rest_ =0;
+  dot_ =0;
 }
 
 void
 Rest_engraver::start_translation_timestep ()
 {
-  rest_req_l_ =0;
+  rest_req_ =0;
 }
 
 void
 Rest_engraver::stop_translation_timestep ()
 {
-  if (rest_p_)
+  if (rest_)
     {
-      typeset_grob (rest_p_);
-      rest_p_ =0;
+      typeset_grob (rest_);
+      rest_ =0;
     }
-  if (dot_p_)
+  if (dot_)
     {
-      typeset_grob (dot_p_);
-      dot_p_ =0;
+      typeset_grob (dot_);
+      dot_ =0;
     }    
 }
 
 void
 Rest_engraver::process_music ()
 {
-  if (rest_req_l_ && !rest_p_) 
+  if (rest_req_ && !rest_) 
     {
-      rest_p_ = new Item (get_property ("Rest"));
+      rest_ = make_item ("Rest");
 
-
-      
-      int durlog  = unsmob_duration (rest_req_l_->get_mus_property ("duration"))-> duration_log ();
+      int durlog  = unsmob_duration (rest_req_->get_mus_property ("duration"))-> duration_log ();
       
-      rest_p_->set_grob_property ("duration-log",
+      rest_->set_grob_property ("duration-log",
                                  gh_int2scm (durlog));
 
-      int dots =unsmob_duration (rest_req_l_->get_mus_property ("duration"))->dot_count ();
+      int dots =unsmob_duration (rest_req_->get_mus_property ("duration"))->dot_count ();
       
       if (dots)
        {
-         dot_p_ = new Item (get_property ("Dots"));
+         dot_ = make_item ("Dots");
 
-         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_, SCM_EOL);
+         Rhythmic_head::set_dots (rest_, dot_);
+         dot_->set_parent (rest_, Y_AXIS);
+         dot_->set_grob_property ("dot-count", gh_int2scm (dots));
+         announce_grob (dot_, SCM_EOL);
        }
 
-      Pitch *p = unsmob_pitch (rest_req_l_->get_mus_property ("pitch"));
+      Pitch *p = unsmob_pitch (rest_req_->get_mus_property ("pitch"));
 
       /*
        This is ridiculous -- rests don't have pitch, but we act as if
@@ -99,29 +97,28 @@ Rest_engraver::process_music ()
          if (gh_number_p (c0))
            pos += gh_scm2int (c0);
          
-         rest_p_->set_grob_property ("staff-position", gh_int2scm (pos));
+         rest_->set_grob_property ("staff-position", gh_int2scm (pos));
        }
       
-      announce_grob(rest_p_, rest_req_l_->self_scm());
+      announce_grob(rest_, rest_req_->self_scm());
     }
 }
 
 bool
 Rest_engraver::try_music (Music *m)
 {
-  if (Rest_req *r = dynamic_cast <Rest_req *> (m))
+  if (m->is_mus_type ("rest-event"))
     {
-      rest_req_l_ = r;
+      rest_req_ = m;
       return true;
-    }  
+    }
   return false;
 }
 
-
-
 ENTER_DESCRIPTION(Rest_engraver,
 /* descr */       "",
 /* creats*/       "Rest Dots",
-/* acks  */       "",
+/* accepts */     "rest-event",
+/* acks  */      "",
 /* reads */       "centralCPosition",
 /* write */       "");