]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/rhythmic-column-engraver.cc
release: 1.3.16
[lilypond.git] / lily / rhythmic-column-engraver.cc
index 28e3cf89c4be93e84154ab31f78b2f76aa90fea2..2709b60a82568c89481782773b4994b45759896c 100644 (file)
@@ -3,14 +3,15 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+#include "dimension-cache.hh"
+#include "slur.hh"
 #include "rhythmic-column-engraver.hh"
 #include "note-head.hh"
 #include "stem.hh"
 #include "note-column.hh"
-#include "script.hh"
 #include "dot-column.hh"
 #include "musical-request.hh"
 
@@ -35,7 +36,8 @@ Rhythmic_column_engraver::process_acknowledged ()
 
       for (int i=0; i < rhead_l_arr_.size (); i++)
        {
-         ncol_p_->add_head (rhead_l_arr_[i]);
+         if (!rhead_l_arr_[i]->parent_l(X_AXIS))
+           ncol_p_->add_head (rhead_l_arr_[i]);
        }
       rhead_l_arr_.set_size (0);
     }
@@ -43,51 +45,61 @@ Rhythmic_column_engraver::process_acknowledged ()
   
   if (ncol_p_)
     {
-      if (dotcol_l_)
+      if (dotcol_l_
+         && !dotcol_l_->parent_l(X_AXIS))
        {
          ncol_p_->set_dotcol (dotcol_l_);
        }
 
-      if (stem_l_)
+      if (stem_l_
+         && !stem_l_->parent_l(X_AXIS))
        {
          ncol_p_->set_stem (stem_l_);
          stem_l_ = 0;
        }
-      
-      for (int i=0; i < script_l_arr_.size(); i++) 
-       {
-         if (ncol_p_)
-           ncol_p_->add_script (script_l_arr_[i]);
-       }
-  
-      script_l_arr_.clear();
+
+      SCM wg = get_property ("weAreGraceContext",0);
+      bool wegrace = to_boolean (wg);
+
+      if (!wegrace)
+       for (int i=0; i < grace_slur_endings_.size(); i++)
+         grace_slur_endings_[i]->add_column (ncol_p_);
+      grace_slur_endings_.clear ();
     }
 }
 
 void
 Rhythmic_column_engraver::acknowledge_element (Score_element_info i)
 {
+  SCM wg = get_property ("weAreGraceContext",0);
+  bool wegrace = to_boolean (wg);
+  if ((wegrace !=
+      (i.elem_l_->get_elt_property ("grace") != SCM_UNDEFINED))
+    && !dynamic_cast<Slur*> (i.elem_l_))
+    return ;
+  
   Item * item =  dynamic_cast <Item *> (i.elem_l_);
-  if (!item)
-    return;
-  if (dynamic_cast<Script *> (item)
-      && i.req_l_
-      && dynamic_cast <Musical_req *> (i.req_l_)) 
+  if (Stem*s=dynamic_cast<Stem *> (item))
     {
-      script_l_arr_.push ((Script*)item);
+      stem_l_ = s;
     }
-  else if (dynamic_cast<Stem *> (item))
+  else if (Rhythmic_head*r=dynamic_cast<Rhythmic_head *> (item))
     {
-      stem_l_ = (Stem*) item;
+      rhead_l_arr_.push (r);
     }
-  else if (dynamic_cast<Rhythmic_head *> (item))
+  else if (Dot_column*d =dynamic_cast<Dot_column *> (item))
     {
-      rhead_l_arr_.push ((Rhythmic_head*)item);
+      dotcol_l_ = d;
     }
-  else if (dynamic_cast<Dot_column *> (item))
+  else if (Slur *s = dynamic_cast<Slur*> (i.elem_l_))
     {
-      dotcol_l_ = (Dot_column*) item;
-    }
+      /*
+       end slurs starting on grace notes
+       */
+      
+      if (s->get_elt_property ("grace") != SCM_UNDEFINED)
+       grace_slur_endings_.push (s);
+   }
 }
 
 void
@@ -95,12 +107,6 @@ Rhythmic_column_engraver::do_pre_move_processing()
 {
   if (ncol_p_) 
     {
-      if (! ncol_p_->h_shift_b_)
-       // egcs
-       ncol_p_->h_shift_b_  = get_property ("hshift", 0).operator bool ();
-      if (! ncol_p_->dir_)
-       ncol_p_->dir_ =(Direction) int(get_property ("ydirection", 0));
-
       typeset_element (ncol_p_);
       ncol_p_ =0;
     }
@@ -109,13 +115,10 @@ Rhythmic_column_engraver::do_pre_move_processing()
 void
 Rhythmic_column_engraver::do_post_move_processing()
 {
-  script_l_arr_.clear();
+  grace_slur_endings_.clear ();
   dotcol_l_ =0;
   stem_l_ =0;
 }
 
-
-
-
-
 ADD_THIS_TRANSLATOR(Rhythmic_column_engraver);
+