]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/a2-engraver.cc
release: 1.3.142
[lilypond.git] / lily / a2-engraver.cc
index 796056eb4de1eb1f8df7d6b21d419c41c737a75c..f52b9f03875d22bde03f4fa5c0c066a61c1b492b 100644 (file)
@@ -3,32 +3,31 @@
 
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2000--2001 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "engraver.hh"
 #include "item.hh"
 #include "note-head.hh"
 #include "stem.hh"
+#include "slur.hh"
 #include "translator-group.hh"
 #include "side-position-interface.hh"
 #include "directional-element-interface.hh"
+#include "multi-measure-rest.hh"
 
 class A2_engraver : public Engraver
 {
 public:
   A2_engraver ();
   VIRTUAL_COPY_CONS (Translator);
-  
 protected:
-  virtual void do_process_music ();
-  virtual void acknowledge_element (Score_element_info);
-
-  virtual void do_pre_move_processing ();
-
+  virtual void acknowledge_grob (Grob_info);
+  virtual void create_grobs ();
+  virtual void stop_translation_timestep ();
 private:
   Item* text_p_;
-  enum State { NORMAL, SOLO, SPLIT_INTERVAL, UNISON } state_;
+  enum State { SOLO, SPLIT_INTERVAL, UNIRHYTHM, UNISILENCE, UNISON } state_;
 };
 
 ADD_THIS_TRANSLATOR (A2_engraver);
@@ -36,35 +35,35 @@ ADD_THIS_TRANSLATOR (A2_engraver);
 A2_engraver::A2_engraver ()
 {
   text_p_ = 0;
-  state_ = NORMAL;
+  state_ = UNISILENCE;
 }
 
 void
-A2_engraver::do_process_music ()
+A2_engraver::create_grobs ()
 {
+  if (!to_boolean (get_property ("combineParts")))
+    return ;
   if (!text_p_)
     {
       SCM unison = get_property ("unison");
-      SCM unirhythm = get_property ("unirhythm");
       SCM solo = get_property ("solo");
-      SCM split_interval = get_property ("split-interval");
       SCM solo_adue = get_property ("soloADue");
 
       if (solo_adue == SCM_BOOL_T
          && ((solo == SCM_BOOL_T && state_ != SOLO)
              || (unison == SCM_BOOL_T && state_ != UNISON
-                 && daddy_trans_l_->id_str_ == "one")))
+                 && daddy_trans_l_->id_str_.left_str (3) == "one")))
        {
-         text_p_ = new Item (get_property ("basicTextScriptProperties"));
-         Side_position::set_axis (text_p_, Y_AXIS);
-         announce_element (text_p_, 0);
+         text_p_ = new Item (get_property ("TextScript"));
+         Side_position_interface::set_axis (text_p_, Y_AXIS);
+         announce_grob (text_p_, 0);
       
          Direction dir = UP;
          SCM text;
          if (solo == SCM_BOOL_T)
            {
              state_ = SOLO;
-             if (daddy_trans_l_->id_str_ == "one")
+             if (daddy_trans_l_->id_str_.left_str (3) == "one")
                {
                  text = get_property ("soloText");
                }
@@ -77,73 +76,122 @@ A2_engraver::do_process_music ()
          else if (unison == SCM_BOOL_T)
            {
              state_ = UNISON;
-             if (daddy_trans_l_->id_str_ == "one")
+             if (daddy_trans_l_->id_str_.left_str (3) == "one")
                text = get_property ("aDueText");
            }
          
-         Side_position::set_direction (text_p_, dir);
-         text_p_->set_elt_property ("text", text);
+         Side_position_interface::set_direction (text_p_, dir);
+         text_p_->set_grob_property ("text", text);
        }
-      else if (unison == SCM_BOOL_T)
-       state_ = UNISON;
-      else if (unirhythm == SCM_BOOL_T && split_interval == SCM_BOOL_T)
-       state_ = SPLIT_INTERVAL;
     }
 }
 
 void
-A2_engraver::acknowledge_element (Score_element_info i)
+A2_engraver::acknowledge_grob (Grob_info i)
 {
+  if (!to_boolean (get_property ("combineParts")))
+    return ;
+  
   if (text_p_)
     {
       if (Note_head::has_interface (i.elem_l_))
        {
-         Score_element*t = text_p_;
-         Side_position::add_support (t, i.elem_l_);
-         if (Side_position::get_axis (t) == X_AXIS
+         Grob*t = text_p_;
+         Side_position_interface::add_support (t, i.elem_l_);
+         if (Side_position_interface::get_axis (t) == X_AXIS
              && !t->parent_l (Y_AXIS))
            t->set_parent (i.elem_l_, Y_AXIS);
        }
       if (Stem::has_interface (i.elem_l_))
        {
-         Side_position::add_support (text_p_, i.elem_l_);
+         Side_position_interface::add_support (text_p_, i.elem_l_);
        }
     }
          
-         
-  if (Stem::has_interface (i.elem_l_))
-    {
-      Item *stem_l = dynamic_cast<Item*> (i.elem_l_);
+  SCM unisilence = get_property ("unisilence");
+  SCM unison = get_property ("unison");
+  SCM unirhythm = get_property ("unirhythm");
+  SCM solo = get_property ("solo");
+  SCM split_interval = get_property ("split-interval");
+  SCM solo_adue = get_property ("soloADue");
+  
+  State previous_state = state_;
+  if (unisilence == SCM_BOOL_T)
+    /*
+      state_ = UNISILENCE;
+    */
+    ;
+  else if (solo == SCM_BOOL_T)
+    state_ = SOLO;
+  else if (unison == SCM_BOOL_T)
+    state_ = UNISON;
+  else if (unirhythm == SCM_BOOL_T && split_interval == SCM_BOOL_T)
+    state_ = SPLIT_INTERVAL;
+  else if (unirhythm)
+    state_ = UNIRHYTHM;
 
-      SCM unison = get_property ("unison");
-      SCM unirhythm = get_property ("unirhythm");
-      SCM solo = get_property ("solo");
-      SCM split_interval = get_property ("split-interval");
-      SCM solo_adue = get_property ("soloADue");
+  Direction d = CENTER;
+  if (daddy_trans_l_->id_str_.left_str (3) == "one")
+    d =  UP;
+  else if (daddy_trans_l_->id_str_.left_str (3) == "two")
+    d = DOWN;
 
-      if ((unirhythm != SCM_BOOL_T && solo != SCM_BOOL_T)
+  /* Must only set direction for VoiceCombines, not for StaffCombines:
+     we can't detect that here, so, ugh, yet another property */
+  if (!to_boolean (get_property ("noDirection"))
+      && (Stem::has_interface (i.elem_l_)
+         || Slur::has_interface (i.elem_l_)
+         // || Tie::has_interface (i.elem_l_)
+         || i.elem_l_->has_interface (ly_symbol2scm ("tie-interface"))
+         
+         /*
+           Usually, dynamics are removed by *_devnull_engravers for the
+           second voice.  On the one hand, we don't want all dynamics for
+           the first voice to be placed above the staff.  On the other
+           hand, colliding of scripts may be worse.
+           So, we don't set directions for these when we're playing solo.
+         */
+         || (i.elem_l_->has_interface (ly_symbol2scm ("dynamic-interface"))
+             && state_ != SOLO)
+         || (i.elem_l_->has_interface (ly_symbol2scm ("text-interface"))
+             && state_ != SOLO)
+         ))
+    {
+      /*
+       Hmm.  We must set dir when solo, in order to get
+       the rests collided to the right position
+      */
+      if ((unirhythm != SCM_BOOL_T) || (solo == SCM_BOOL_T)
+         || ((unisilence == SCM_BOOL_T && previous_state != UNISON))
          || (unirhythm == SCM_BOOL_T && split_interval == SCM_BOOL_T
              && (unison != SCM_BOOL_T || solo_adue != SCM_BOOL_T)))
        {
-         if (daddy_trans_l_->id_str_ == "one")
-           {
-             stem_l->set_elt_property ("direction", gh_int2scm (1));
-           }
-         else if (daddy_trans_l_->id_str_ == "two")
-           {
-             stem_l->set_elt_property ("direction", gh_int2scm (-1));
-           }
+       
+         /*
+           Blunt axe method: every grob gets a propertysetting.
+          */
+         i.elem_l_->set_grob_property ("direction", gh_int2scm (d));
        }
     }
+
+  /*
+    todo: should we have separate state variable for being "rest while
+    other has solo?"  */
+  if ( Multi_measure_rest::has_interface (i.elem_l_) && d )
+    if (state_ == UNIRHYTHM
+       && unisilence != SCM_BOOL_T)
+    {
+      i.elem_l_->set_grob_property ("staff-position", gh_int2scm (d * 6));
+    }
 }
 
 void 
-A2_engraver::do_pre_move_processing ()
+A2_engraver::stop_translation_timestep ()
 {
   if (text_p_)
     {
-      Side_position::add_staff_support (text_p_);
-      typeset_element (text_p_);
+      Side_position_interface::add_staff_support (text_p_);
+      typeset_grob (text_p_);
       text_p_ = 0;
     }
 }