]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-heads-engraver.cc
2002-07-17 Han-Wen <hanwen@cs.uu.nl>
[lilypond.git] / lily / note-heads-engraver.cc
index 49524aea218df88ae88af231d0ae1a7415b395e8..802c2278edbe983b449051a3dd7b544d978ba841 100644 (file)
 /*
   head-grav.cc -- part of GNU LilyPond
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
+#include <ctype.h>
 
 #include "rhythmic-head.hh"
-#include "engraver.hh"
 #include "paper-def.hh"
 #include "musical-request.hh"
 #include "dots.hh"
 #include "dot-column.hh"
 #include "staff-symbol-referencer.hh"
+#include "item.hh"
 #include "engraver.hh"
-#include "pqueue.hh"
+#include "warn.hh"
 
 /**
   make balls and rests
  */
 class Note_heads_engraver : public Engraver
 {
-  Link_array<Rhythmic_head> note_p_arr_;
+  Link_array<Item> note_p_arr_;
+  
   Link_array<Item> dot_p_arr_;
   Link_array<Note_req> note_req_l_arr_;
-  Moment note_end_mom_;
-public:
-  VIRTUAL_COPY_CONS(Translator);
-  Note_heads_engraver();
-  
-protected:
-  virtual bool do_try_music (Music *req_l) ;
-  virtual void do_process_music();
-  virtual void do_pre_move_processing();
-};
 
+public:
+  TRANSLATOR_DECLARATIONS(Note_heads_engraver);
 
+protected:
+  virtual void start_translation_timestep ();
+  virtual bool try_music (Music *req_l) ;
+  virtual void process_music ();
 
+  virtual void stop_translation_timestep ();
 
+private:
+  bool in_ligature;
+};
 
 Note_heads_engraver::Note_heads_engraver()
 {
+  in_ligature = 0;
 }
 
 bool
-Note_heads_engraver::do_try_music (Music *m) 
+Note_heads_engraver::try_music (Music *m) 
 {
   if (Note_req * n =dynamic_cast <Note_req *> (m))
     {
       note_req_l_arr_.push (n);
-      note_end_mom_  = note_end_mom_ >? now_mom () + m->length_mom ();
-      
       return true;
     }
-  else if (Tonic_req* t = dynamic_cast<Tonic_req*> (m))
+  else if (dynamic_cast<Busy_playing_req*> (m))
     {
-      return true;
+      return note_req_l_arr_.size ();
     }
-  else if (Inversion_req* i = dynamic_cast<Inversion_req*> (m))
+  else if (Span_req *req_ = dynamic_cast<Span_req*> (m))
     {
-      return true;
-    }
-  else if (Bass_req* b = dynamic_cast<Bass_req*> (m))
-    {
-      return true;
-    }
-  else if (Busy_playing_req * p = dynamic_cast<Busy_playing_req*> (m))
-    {
-      return now_mom () < note_end_mom_;
-    }
-  else if (Pitch_interrogate_req *p = dynamic_cast<Pitch_interrogate_req*> (m))
-    {
-      for (int i= note_req_l_arr_.size (); i--;)
-       p->pitch_arr_.push (note_req_l_arr_[i]->pitch_); // GUH UGH UGHUGH.
-      return true;
+      if (scm_equal_p (req_->get_mus_property ("span-type"),
+                      ly_str02scm ("abort")) == SCM_BOOL_T)
+       {
+         in_ligature = 0;
+       }
+      else if (scm_equal_p (req_->get_mus_property ("span-type"),
+                           ly_str02scm ("ligature")) == SCM_BOOL_T)
+       {
+         in_ligature = (req_->get_span_dir () == START);
+       }
     }
-  return false;
   
+  return false;
 }
 
+
 void
-Note_heads_engraver::do_process_music()
+Note_heads_engraver::process_music ()
 {
-  if (note_p_arr_.size ())
-    return ;
-  
   for (int i=0; i < note_req_l_arr_.size (); i++)
     {
-      Rhythmic_head *note_p  = new Rhythmic_head (get_property ("basicNoteHeadProperties"));
-      
-      Staff_symbol_referencer_interface::set_interface (note_p);
-
+      Item *note_p =
+       new Item (get_property ((in_ligature) ? "LigatureHead" : "NoteHead"));
 
+      Music * req = note_req_l_arr_[i];
       
-      Note_req * note_req_l = note_req_l_arr_[i];
-      
-      note_p->set_elt_property ("duration-log",
-                               gh_int2scm (note_req_l->duration_.durlog_i_ <? 2));
+      Duration dur = *unsmob_duration (req->get_mus_property ("duration"));
 
-      if (note_req_l->duration_.dots_i_)
-       {
-         Item * d = new Item (get_property ("basicDotsProperties"));
+      note_p->set_grob_property ("duration-log", gh_int2scm (dur.duration_log ()));
 
-         Staff_symbol_referencer_interface::set_interface (d);
-         
-         note_p->set_dots (d);
+      if (dur.dot_count ())
+       {
+         Item * d = new Item (get_property ("Dots"));
+         Rhythmic_head::set_dots (note_p, d);
          
-         if (note_req_l->duration_.dots_i_
-             != gh_scm2int (d->get_elt_property ("dot-count")))
-           d->set_elt_property ("dot-count", gh_int2scm (note_req_l->duration_.dots_i_));
+         if (dur.dot_count ()
+             != gh_scm2int (d->get_grob_property ("dot-count")))
+           d->set_grob_property ("dot-count", gh_int2scm (dur.dot_count ()));
 
          d->set_parent (note_p, Y_AXIS);
-         d->add_offset_callback (Dots::quantised_position_callback, Y_AXIS);
-         announce_element (Score_element_info (d,0));
+         announce_grob (d, SCM_EOL);
          dot_p_arr_.push (d);
        }
 
-      note_p->set_elt_property("staff-position",  gh_int2scm (note_req_l->pitch_.steps ()));
+      Pitch *pit =unsmob_pitch (req->get_mus_property ("pitch"));
+
+      int pos = pit->steps ();
+      SCM c0 = get_property ("centralCPosition");
+      if (gh_number_p (c0))
+       pos += gh_scm2int (c0);
 
-      Score_element_info itinf (note_p,note_req_l);
-      announce_element (itinf);
+      note_p->set_grob_property ("staff-position",   gh_int2scm (pos));
+      announce_grob (note_p,req->self_scm());
       note_p_arr_.push (note_p);
     }
 }
+
 void
-Note_heads_engraver::do_pre_move_processing()
+Note_heads_engraver::stop_translation_timestep ()
 {
   for (int i=0; i < note_p_arr_.size (); i++)
     {
-      typeset_element (note_p_arr_[i]);
+      typeset_grob (note_p_arr_[i]);
     }
+
   note_p_arr_.clear ();
   for (int i=0; i < dot_p_arr_.size (); i++)
     {
-      typeset_element (dot_p_arr_[i]);
+      typeset_grob (dot_p_arr_[i]);
     }
   dot_p_arr_.clear ();
   
   note_req_l_arr_.clear ();
 }
 
+void
+Note_heads_engraver::start_translation_timestep ()
+{
+}
 
 
-
-ADD_THIS_TRANSLATOR(Note_heads_engraver);
-
+ENTER_DESCRIPTION(Note_heads_engraver,
+/* descr */       "Generate one or more noteheads from Music of type Note_req.",
+/* creats*/       "NoteHead Dots",
+/* acks  */       "",
+/* reads */       "centralCPosition",
+/* write */       "");