]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tie-performer.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / tie-performer.cc
index 5bcc1987a0df73c47c620bd92e8555e6b218c44e..bf3c513bcbdf578ba1aa44814500fcea2c54e178 100644 (file)
@@ -1,33 +1,33 @@
-/*   
-  new-tie-engraver.cc --  implement Tie_performer
-  
+/*
+  tie-performer.cc -- implement Tie_performer
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
 
+  (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
+
+#include "performer.hh"
+
+#include "music.hh"
 #include "context.hh"
 #include "audio-item.hh"
-#include "event.hh"
 #include "pqueue.hh"
-#include "performer.hh"
 
 class Tie_performer : public Performer
 {
   Music *event_;
   Music *last_event_;
-  Array<Audio_element_info> now_heads_;
-  Array<Audio_element_info> heads_to_tie_;
+  vector<Audio_element_info> now_heads_;
+  vector<Audio_element_info> heads_to_tie_;
 
   bool ties_created_;
-  
+
 protected:
-  virtual void stop_translation_timestep ();
-  virtual void start_translation_timestep ();
+  void stop_translation_timestep ();
+  void start_translation_timestep ();
   virtual void acknowledge_audio_element (Audio_element_info);
-  virtual bool try_music (Music*);
-  virtual void process_music ();
+  virtual bool try_music (Music *);
+  void process_music ();
 public:
   TRANSLATOR_DECLARATIONS (Tie_performer);
 };
@@ -35,7 +35,7 @@ public:
 Tie_performer::Tie_performer ()
 {
   event_ = 0;
-  last_event_  = 0;
+  last_event_ = 0;
   ties_created_ = false;
 }
 
@@ -43,10 +43,8 @@ bool
 Tie_performer::try_music (Music *mus)
 {
   if (mus->is_mus_type ("tie-event"))
-    {
-      event_ = mus;
-    }
-  
+    event_ = mus;
+
   return true;
 }
 
@@ -60,22 +58,22 @@ Tie_performer::process_music ()
 void
 Tie_performer::acknowledge_audio_element (Audio_element_info inf)
 {
-  if (Audio_note * an = dynamic_cast<Audio_note *> (inf.elem_))
+  if (Audio_note *an = dynamic_cast<Audio_note *> (inf.elem_))
     {
-      now_heads_.push (inf);
-      for  (int i = heads_to_tie_.size (); i--;)
+      now_heads_.push_back (inf);
+      for (vsize i = heads_to_tie_.size (); i--;)
        {
-         Music * right_mus = inf.event_;
-         
-         Audio_note *th =  dynamic_cast<Audio_note*> (heads_to_tie_[i].elem_);
-         Music * left_mus = heads_to_tie_[i].event_;
+         Music *right_mus = inf.event_;
+
+         Audio_note *th = dynamic_cast<Audio_note *> (heads_to_tie_[i].elem_);
+         Music *left_mus = heads_to_tie_[i].event_;
 
          if (right_mus && left_mus
-             && ly_c_equal_p (right_mus->get_property ("pitch"),
-                              left_mus->get_property ("pitch")))
+             && ly_is_equal (right_mus->get_property ("pitch"),
+                             left_mus->get_property ("pitch")))
            {
              an->tie_to (th);
-             ties_created_ = true;  
+             ties_created_ = true;
            }
        }
     }
@@ -86,7 +84,6 @@ Tie_performer::start_translation_timestep ()
 {
   context ()->set_property ("tieMelismaBusy",
                            ly_bool2scm (heads_to_tie_.size ()));
-      
 }
 
 void
@@ -98,7 +95,7 @@ Tie_performer::stop_translation_timestep ()
       last_event_ = 0;
       ties_created_ = false;
     }
-  
+
   if (event_)
     {
       heads_to_tie_ = now_heads_;
@@ -108,10 +105,11 @@ Tie_performer::stop_translation_timestep ()
   now_heads_.clear ();
 }
 
-ENTER_DESCRIPTION (Tie_performer,
-/* descr */       "Generate ties between noteheads of equal pitch.",
-/* creats*/       "",
-/* accepts */     "tie-event",
-/* acks  */       "",
-/* reads */       "tieMelismaBusy",
-/* write */       "");
+#include "translator.icc"
+
+ADD_TRANSLATOR (Tie_performer,
+               /* doc */ "Generate ties between noteheads of equal pitch.",
+               /* create */ "",
+               /* accept */ "tie-event",
+               /* read */ "tieMelismaBusy",
+               /* write */ "");