]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/custos-engraver.cc
* lily/include/lily-guile.hh: compatibility glue for 1.6
[lilypond.git] / lily / custos-engraver.cc
index e8d9a820df48a87011db019439489dafc6c84b2b..0538aef4527eee03547bdc714b889272fe0439d1 100644 (file)
@@ -3,10 +3,8 @@
 
   source file of the GNU LilyPond music typesetter
 
- (C) 2000 Juergen Reuter <reuterj@ira.uka.de>,
-
-  Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
+  (c) 2000--2004 Juergen Reuter <reuter@ipd.uka.de>,
+                  Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "engraver.hh"
 #include "note-head.hh"
 #include "staff-symbol-referencer.hh"
 #include "warn.hh"
-#include "musical-request.hh"
+#include "event.hh"
 
 /*
-  This class implements an engraver for custos symbols.
-*/
+ * This class implements an engraver for custos symbols.
+ *
+ * FIXME: note heads inside of ligatures (i.e. ligature heads) are
+ * sometimes not recognized by this engraver. --jr
+ */
 class Custos_engraver : public Engraver
 {
 public:
-TRANSLATOR_DECLARATIONS(  Custos_engraver);
+  TRANSLATOR_DECLARATIONS (Custos_engraver);
   virtual void start_translation_timestep ();
   virtual void acknowledge_grob (Grob_info);
   virtual void process_acknowledged_grobs ();
@@ -50,19 +51,15 @@ Custos_engraver::stop_translation_timestep ()
   /*
     delay typeset until we're at the next moment, so we can silence custodes at the end of the piece.
    */
+  pitches_.clear ();
+
+  custos_permitted = false;
 }
 
 void
 Custos_engraver::start_translation_timestep ()
 {
-  for (int i = custodes_.size (); i--;)
-    {
-      typeset_grob (custodes_[i]);
-    }
   custodes_.clear ();
-  pitches_.clear ();
-
-  custos_permitted = false;
 }
 
 
@@ -72,9 +69,12 @@ Custos_engraver::acknowledge_grob (Grob_info info)
   Item *item = dynamic_cast <Item *> (info.grob_);
   if (item)
     {
+      Music * m = info.music_cause ();
       if (Bar_line::has_interface (info.grob_))
        custos_permitted = true;
-      else if (Note_head::has_interface (info.grob_))
+      else if (Note_head::has_interface (info.grob_)
+              && m
+              && m->is_mus_type ("note-event"))
        {
 
          /*
@@ -85,9 +85,7 @@ Custos_engraver::acknowledge_grob (Grob_info info)
            don't look at the staff-position, since we can't be sure
            whether Clef_engraver already applied a vertical shift.
          */
-         Note_req * nr = dynamic_cast<Note_req*> (info.music_cause ());
-         if (nr)
-           pitches_.push (*unsmob_pitch (nr->get_mus_property ("pitch")));
+           pitches_.push (*unsmob_pitch (m->get_property ("pitch")));
        }
     }
 }
@@ -95,7 +93,7 @@ Custos_engraver::acknowledge_grob (Grob_info info)
 void
 Custos_engraver::process_acknowledged_grobs ()
 {
-  if (gh_string_p (get_property ("whichBar")))
+  if (scm_is_string (get_property ("whichBar")))
     custos_permitted = true;
   
   if (custos_permitted)
@@ -105,13 +103,13 @@ Custos_engraver::process_acknowledged_grobs ()
          Item *c = create_custos ();
 
          int p = pitches_[i].steps ();
-         SCM c0 = get_property ("centralCPosition");
-         if (gh_number_p (c0))
-           p += gh_scm2int (c0);
+         SCM c0 = get_property ("middleCPosition");
+         if (ly_c_number_p (c0))
+           p += ly_scm2int (c0);
 
          
-         c->set_grob_property ("staff-position",
-                               gh_int2scm (p));
+         c->set_property ("staff-position",
+                               scm_int2num (p));
          
        }
 
@@ -122,10 +120,9 @@ Custos_engraver::process_acknowledged_grobs ()
 Item* 
 Custos_engraver::create_custos ()
 {
-  SCM basicProperties = get_property ("Custos");
-  Item* custos = new Item (basicProperties);
+  Item* custos = make_item ("Custos", SCM_EOL);
+  
   
-  announce_grob(custos, SCM_EOL);
   custodes_.push (custos);
   
   return custos;
@@ -137,17 +134,16 @@ Custos_engraver::finalize ()
   for (int i = custodes_.size (); i--;)
     {
       custodes_[i]->suicide ();
-      typeset_grob (custodes_[i]);
     }
   custodes_.clear ();
 }
 
 
 
-ENTER_DESCRIPTION(Custos_engraver,
+ENTER_DESCRIPTION (Custos_engraver,
 /* descr */       "",
 /* creats*/       "Custos",
-/* accepts */     "general-music",
+/* accepts */     "",
 /* acks  */      "bar-line-interface note-head-interface",
 /* reads */       "",
 /* write */       "");