]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/custos-engraver.cc
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / lily / custos-engraver.cc
index 2e232ea8ca683f139f64987f1fb83fc50cbe4064..7d15aeaba85a77e91f5b772eeace86aafbd5fc1d 100644 (file)
@@ -1,19 +1,33 @@
 /*
-  custos-engraver.cc -- implement Custos_engraver
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 2000--2015 Juergen Reuter <reuter@ipd.uka.de>,
+  Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 2000--2005 Juergen Reuter <reuter@ipd.uka.de>,
-  Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "engraver.hh"
-#include "bar-line.hh"
 #include "item.hh"
 #include "note-head.hh"
+#include "pitch.hh"
 #include "staff-symbol-referencer.hh"
+#include "stream-event.hh"
 #include "warn.hh"
 
+#include "translator.icc"
+
 /*
  * This class implements an engraver for custos symbols.
  *
@@ -24,22 +38,24 @@ class Custos_engraver : public Engraver
 {
 public:
   TRANSLATOR_DECLARATIONS (Custos_engraver);
-  virtual void start_translation_timestep ();
-  virtual void acknowledge_grob (Grob_info);
-  virtual void process_acknowledged_grobs ();
-  virtual void stop_translation_timestep ();
+  void start_translation_timestep ();
+  void acknowledge_bar (Grob_info);
+  void acknowledge_note_head (Grob_info);
+  void process_acknowledged ();
+  void stop_translation_timestep ();
   virtual void finalize ();
 
 private:
   Item *create_custos ();
-  bool custos_permitted;
-  Link_array<Grob> custodes_;
-  Array<Pitch> pitches_;
+  bool custos_permitted_;
+  vector<Grob *> custodes_;
+  vector<Pitch> pitches_;
 };
 
-Custos_engraver::Custos_engraver ()
+Custos_engraver::Custos_engraver (Context *c)
+  : Engraver (c)
 {
-  custos_permitted = false;
+  custos_permitted_ = false;
 }
 
 void
@@ -50,7 +66,7 @@ Custos_engraver::stop_translation_timestep ()
   */
   pitches_.clear ();
 
-  custos_permitted = false;
+  custos_permitted_ = false;
 }
 
 void
@@ -60,52 +76,50 @@ Custos_engraver::start_translation_timestep ()
 }
 
 void
-Custos_engraver::acknowledge_grob (Grob_info info)
+Custos_engraver::acknowledge_bar (Grob_info /* info */)
+{
+  custos_permitted_ = true;
+}
+
+void
+Custos_engraver::acknowledge_note_head (Grob_info info)
 {
-  Item *item = dynamic_cast<Item *> (info.grob ());
-  if (item)
+  Stream_event *ev = info.event_cause ();
+  if (ev && ev->in_event_class ("note-event"))
     {
-      Music *m = info.music_cause ();
-      if (Bar_line::has_interface (info.grob ()))
-       custos_permitted = true;
-      else if (Note_head::has_interface (info.grob ())
-              && m
-              && m->is_mus_type ("note-event"))
-       {
-
-         /*
-           ideally, we'd do custos->set_parent (Y_AXIS, notehead),
-           but since the note head lives on the other system, we can't
-
-           So we copy the position from the note head pitch.  We
-           don't look at the staff-position, since we can't be sure
-           whether Clef_engraver already applied a vertical shift.
-         */
-         pitches_.push (*unsmob_pitch (m->get_property ("pitch")));
-       }
+
+      /*
+        ideally, we'd do custos->set_parent (Y_AXIS, notehead),
+        but since the note head lives on the other system, we can't
+
+        So we copy the position from the note head pitch.  We
+        don't look at the staff-position, since we can't be sure
+        whether Clef_engraver already applied a vertical shift.
+      */
+      pitches_.push_back (*unsmob<Pitch> (ev->get_property ("pitch")));
     }
 }
 
 void
-Custos_engraver::process_acknowledged_grobs ()
+Custos_engraver::process_acknowledged ()
 {
   if (scm_is_string (get_property ("whichBar")))
-    custos_permitted = true;
+    custos_permitted_ = true;
 
-  if (custos_permitted)
+  if (custos_permitted_)
     {
-      for (int i = pitches_.size (); i--;)
-       {
-         Item *c = create_custos ();
+      for (vsize i = pitches_.size (); i--;)
+        {
+          Item *c = create_custos ();
 
-         int p = pitches_[i].steps ();
-         SCM c0 = get_property ("middleCPosition");
-         if (scm_is_number (c0))
-           p += scm_to_int (c0);
+          int p = pitches_[i].steps ();
+          SCM c0 = get_property ("middleCPosition");
+          if (scm_is_number (c0))
+            p += scm_to_int (c0);
 
-         c->set_property ("staff-position",
-                          scm_int2num (p));
-       }
+          c->set_property ("staff-position",
+                           scm_from_int (p));
+        }
 
       pitches_.clear ();
     }
@@ -116,7 +130,7 @@ Custos_engraver::create_custos ()
 {
   Item *custos = make_item ("Custos", SCM_EOL);
 
-  custodes_.push (custos);
+  custodes_.push_back (custos);
 
   return custos;
 }
@@ -124,17 +138,29 @@ Custos_engraver::create_custos ()
 void
 Custos_engraver::finalize ()
 {
-  for (int i = custodes_.size (); i--;)
-    {
-      custodes_[i]->suicide ();
-    }
+  for (vsize i = custodes_.size (); i--;)
+    custodes_[i]->suicide ();
   custodes_.clear ();
 }
 
+
+void
+Custos_engraver::boot ()
+{
+  ADD_ACKNOWLEDGER (Custos_engraver, bar);
+  ADD_ACKNOWLEDGER (Custos_engraver, note_head);
+}
+
 ADD_TRANSLATOR (Custos_engraver,
-               /* descr */ "",
-               /* creats*/ "Custos",
-               /* accepts */ "",
-               /* acks  */ "bar-line-interface note-head-interface",
-               /* reads */ "",
-               /* write */ "");
+                /* doc */
+                "Engrave custodes.",
+
+                /* create */
+                "Custos ",
+
+                /* read */
+                "",
+
+                /* write */
+                ""
+               );