]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-engraver.cc
* lily/context.cc (where_defined): also assign value in
[lilypond.git] / lily / script-engraver.cc
index b40fb63eb52bd8322b6a2da0a2c40b959ced919c..e818c9d48280d1af427768e19dd142e6a0435ee8 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "context.hh"
@@ -38,10 +38,14 @@ class Script_engraver : public Engraver
   Spanner *slur_;
 
 protected:
-  virtual bool try_music (Music*);
-  virtual void stop_translation_timestep ();
-  virtual void process_music ();
-  virtual void acknowledge_grob (Grob_info);
+  virtual bool try_music (Music *);
+  PRECOMPUTED_VIRTUAL void stop_translation_timestep ();
+  PRECOMPUTED_VIRTUAL void process_music ();
+
+  DECLARE_ACKNOWLEDGER( slur);
+  DECLARE_ACKNOWLEDGER( rhythmic_head);
+  DECLARE_ACKNOWLEDGER( stem);
+  DECLARE_ACKNOWLEDGER( note_column);
 
 public:
   TRANSLATOR_DECLARATIONS (Script_engraver);
@@ -60,9 +64,9 @@ Script_engraver::try_music (Music *m)
       /* Discard double articulations for part-combining.  */
       int script_count = scripts_.size ();
       for (int i = 0; i < script_count; i++)
-       if (ly_c_equal_p (scripts_[i].event_
-                         ->get_property ("articulation-type"),
-                         m->get_property ("articulation-type")))
+       if (ly_is_equal (scripts_[i].event_
+                        ->get_property ("articulation-type"),
+                        m->get_property ("articulation-type")))
          return true;
 
       Script_tuple t;
@@ -87,9 +91,8 @@ copy_property (Grob *g, SCM sym, SCM alist)
 /* Add the properties, one by one for each Script.  A little memory
    could be saved by tacking the props onto the Script grob (i.e. make
    ScriptStaccato , ScriptMarcato, etc. ).
-
 */
-void make_script_from_event (Grob *p, bool * follow, Context *tg,
+void make_script_from_event (Grob *p, bool *follow, Context *tg,
                             SCM art_type, int index)
 {
   SCM alist = tg->get_property ("scriptDefinitions");
@@ -98,9 +101,10 @@ void make_script_from_event (Grob *p, bool * follow, Context *tg,
   if (art == SCM_BOOL_F)
     {
       /* FIXME: */
-      warning (_ ("Do not know how to interpret articulation: "));
-      warning (_ ("Scheme encoding: "));
+      warning (_ ("don't know how to interpret articulation: "));
+      warning (_ ("scheme encoding: "));
       scm_write (art_type, scm_current_error_port ());
+      message ("");
       return;
     }
 
@@ -110,15 +114,15 @@ void make_script_from_event (Grob *p, bool * follow, Context *tg,
                              art);
 
   *follow = scm_is_pair (follow_scm) && to_boolean (scm_cdr (follow_scm));
-  bool priority_found = false ; 
-    
-  for (SCM s = art ; scm_is_pair (s); s = scm_cdr (s))
+  bool priority_found = false;
+
+  for (SCM s = art; scm_is_pair (s); s = scm_cdr (s))
     {
       SCM sym = scm_caar (s);
       SCM type = scm_object_property (sym, ly_symbol2scm ("backend-type?"));
-      if (!ly_c_procedure_p (type))
+      if (!ly_is_procedure (type))
        continue;
-      
+
       SCM val = scm_cdar (s);
 
       if (sym == ly_symbol2scm ("script-priority"))
@@ -127,9 +131,8 @@ void make_script_from_event (Grob *p, bool * follow, Context *tg,
          /* Make sure they're in order of user input by adding index i.
             Don't use the direction in this priority. Smaller means closer
             to the head.  */
-         int prio  = scm_to_int (val) +  index;
-         
-        
+         int prio = scm_to_int (val) + index;
+
          val = scm_int2num (prio);
        }
       if (p->internal_get_property (sym) == SCM_EOL)
@@ -141,17 +144,15 @@ void make_script_from_event (Grob *p, bool * follow, Context *tg,
       p->set_property ("script-priority",
                       scm_int2num (index));
     }
-  
-  Side_position_interface::set_axis (p, Y_AXIS);
 
+  Side_position_interface::set_axis (p, Y_AXIS);
 }
 
 void
 Script_engraver::process_music ()
 {
-  int script_count = scripts_.size ();
-  for (int i = 0; i < script_count; i++)
-    {
+  for (int i = 0; i < scripts_.size(); i++)
+     {
       Music *m = scripts_[i].event_;
 
       Grob *p = make_item ("Script", m->self_scm ());
@@ -168,59 +169,68 @@ Script_engraver::process_music ()
     }
 }
 
+
 void
-Script_engraver::acknowledge_grob (Grob_info info)
+Script_engraver::acknowledge_stem (Grob_info info)
 {
   int script_count = scripts_.size ();
-  if (Stem::has_interface (info.grob_))
+  for (int i = 0; i < script_count; i++)
     {
-      for (int i = 0; i < script_count; i++)
-       {
-         Grob *e = scripts_[i].script_;
+      Grob *e = scripts_[i].script_;
 
-         if (to_dir (e->get_property ("side-relative-direction")))
-           e->set_property ("direction-source", info.grob_->self_scm ());
+      if (to_dir (e->get_property ("side-relative-direction")))
+       e->set_object ("direction-source", info.grob ()->self_scm ());
 
-         /* FIXME: add dependency */
-         e->add_dependency (info.grob_);
-         Side_position_interface::add_support (e, info.grob_);
-       }
+      /* FIXME: add dependency */
+      e->add_dependency (info.grob ());
+      Side_position_interface::add_support (e, info.grob ());
     }
-  else if (Rhythmic_head::has_interface (info.grob_)
-          && info.music_cause ())
+}
+
+void
+Script_engraver::acknowledge_rhythmic_head (Grob_info info)
+{
+  if(info.music_cause ())
     {
-      for (int i = 0; i < script_count; i++)
-       {
+     for (int i = 0; i < scripts_.size(); i++)
+       {
          Grob *e = scripts_[i].script_;
-       
+
          if (Side_position_interface::get_axis (e) == X_AXIS
              && !e->get_parent (Y_AXIS))
            {
-             e->set_parent (info.grob_, Y_AXIS);
-             e->add_dependency (info.grob_);
+             e->set_parent (info.grob (), Y_AXIS);
+             e->add_dependency (info.grob ());
            }
-         Side_position_interface::add_support (e,info.grob_);
+         Side_position_interface::add_support (e, info.grob ());
        }
     }
-  else if (Note_column::has_interface (info.grob_))
-    {
-      /* Make note column the parent of the script.  That is not
-       correct, but due to seconds in a chord, noteheads may be
-       swapped around horizontally.
+}
 
-       As the note head to put it on is not known now, postpone this
-       decision to Script_interface::before_line_breaking ().  */
-      for (int i = 0; i < script_count; i++)
-       {
-         Grob *e = scripts_[i].script_;
+void
+Script_engraver::acknowledge_note_column (Grob_info info)
+{
+  /* Make note column the parent of the script.  That is not
+     correct, but due to seconds in a chord, noteheads may be
+     swapped around horizontally.
 
-         if (!e->get_parent (X_AXIS)
-             && Side_position_interface::get_axis (e) == Y_AXIS)
-           e->set_parent (info.grob_, X_AXIS);
-       }
+     As the note head to put it on is not known now, postpone this
+     decision to Script_interface::before_line_breaking ().  */
+  
+  for (int i = 0; i < scripts_.size(); i++)
+    {
+      Grob *e = scripts_[i].script_;
+
+      if (!e->get_parent (X_AXIS)
+         && Side_position_interface::get_axis (e) == Y_AXIS)
+       e->set_parent (info.grob (), X_AXIS);
     }
-  else if (Slur::has_interface (info.grob_))
-    slur_ = dynamic_cast<Spanner*> (info.grob_);
+}
+void
+Script_engraver::acknowledge_slur (Grob_info info)
+{
+  slur_ = info.spanner ();
 }
 
 void
@@ -235,15 +245,20 @@ Script_engraver::stop_translation_timestep ()
                                 ::quantised_position_proc, Y_AXIS);
        sc->set_property ("staff-padding", SCM_EOL);
       }
-  
+
   scripts_.clear ();
 }
 
-ENTER_DESCRIPTION (Script_engraver,
-/* descr */       "Handles note scripted articulations.",
-/* creats*/       "Script",
-/* accepts */     "script-event articulation-event",
-/* acks  */       "stem-interface rhythmic-head-interface " 
-                 "slur-interface note-column-interface",
-/* reads */       "scriptDefinitions",
-/* write */       "");
+#include "translator.icc"
+
+ADD_ACKNOWLEDGER(Script_engraver, slur);
+ADD_ACKNOWLEDGER(Script_engraver, rhythmic_head);
+ADD_ACKNOWLEDGER(Script_engraver, stem);
+ADD_ACKNOWLEDGER(Script_engraver, note_column);
+
+ADD_TRANSLATOR (Script_engraver,
+               /* descr */ "Handles note scripted articulations.",
+               /* creats*/ "Script",
+               /* accepts */ "script-event articulation-event",
+               /* reads */ "scriptDefinitions",
+               /* write */ "");