]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/separating-group-spanner.cc
Merge branch 'master' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / separating-group-spanner.cc
index 295bef4824fa866176c26ac6224b0a8dc1add831..f8975cd5158e5eb62be38f642899c8d3972cc220 100644 (file)
-/*   
-  separating-group-spanner.cc --  implement Separating_group_spanner
-  
+/*
+  separating-group-spanner.cc -- implement Separating_group_spanner
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1998--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #include "separating-group-spanner.hh"
-#include "single-malt-grouping-item.hh"
+
+#include "separation-item.hh"
 #include "paper-column.hh"
-#include "paper-def.hh"
+#include "output-def.hh"
 #include "dimensions.hh"
+#include "pointer-group-interface.hh"
 
-static Rod
-make_rod (Single_malt_grouping_item *l, Single_malt_grouping_item *r)
+void
+Separating_group_spanner::find_rods (Item *r,
+                                    vector<Grob*> const &separators,
+                                    vsize idx,
+                                    Real padding)
 {
-  Rod rod;
 
-  Interval li (l->my_width ());
-  Interval ri (r->my_width ());
+  /*
+    This is an inner loop: look for the first normal (unbroken) Left
+    grob.  This looks like an inner loop (ie. quadratic total), but in
+    most cases, the interesting L will just be the first entry of
+    NEXT, making it linear in most of the cases.
+  */
+  for (; idx != VPOS; idx--)
+    {
+      Item *l = dynamic_cast<Item *> (separators[idx]);
+      Item *lb = l->find_prebroken_piece (RIGHT);
 
-  rod.item_l_drul_[LEFT] =l;
-  rod.item_l_drul_[RIGHT]=r;
+      if (lb)
+       {
+         Separation_item::set_distance (Drul_array<Item*> (lb, r), padding);
+       }
 
-  if (li.empty_b () || ri.empty_b ())
-    rod.distance_f_ = 0;
-  else
-    rod.distance_f_ = li[RIGHT] - ri[LEFT];
+      if (Separation_item::set_distance (Drul_array<Item *> (l, r), padding))
+       break;
 
-  rod.columnize ();
-  return rod;
+      /*
+       this grob doesn't cause a constraint. We look further until we
+       find one that does.
+      */
+    }
 }
-  
 
-Array<Rod>
-Separating_group_spanner::get_rods () const
+MAKE_SCHEME_CALLBACK (Separating_group_spanner, set_spacing_rods, 1);
+SCM
+Separating_group_spanner::set_spacing_rods (SCM smob)
 {
-  Array<Rod> a;
-  
-  for (SCM s = get_elt_property ("elements"); gh_pair_p (s) && gh_pair_p (gh_cdr (s)); s = gh_cdr (s))
-    {
-      /*
-       Order of elements is reversed!
-       */
-      SCM elt = gh_cadr (s);
-      SCM next_elt = gh_car (s);
+  Grob *me = unsmob_grob (smob);
 
-      Single_malt_grouping_item *l = dynamic_cast<Single_malt_grouping_item*> (unsmob_element (elt));
-      Single_malt_grouping_item *r = dynamic_cast<Single_malt_grouping_item*> (unsmob_element ( next_elt));
+  /*
+    Ugh: padding is added doubly, also for SeparationItem
+  */
+  Real padding = robust_scm2double (me->get_property ("padding"), 0.1);
 
-      if (!r || !l)
+  extract_grob_set (me, "elements", elts);
+  for (vsize i = elts.size (); i-- > 1;)
+    {
+      Item *r = dynamic_cast<Item *> (elts[i]);
+      if (!r)
        continue;
-      
-      Single_malt_grouping_item *lb
-       = dynamic_cast<Single_malt_grouping_item*>(l->find_prebroken_piece (RIGHT));
-
-      Single_malt_grouping_item *rb
-       = dynamic_cast<Single_malt_grouping_item*>(r->find_prebroken_piece (LEFT));
-      
-      a.push (make_rod(l,  r));
-      if (lb)
-       {
-         Rod rod(make_rod (lb, r));
-         a.push (rod);
-       }
-      
+
+      if (Separation_item::width (r).is_empty ())
+       continue;
+
+      Item *rb
+       = dynamic_cast<Item *> (r->find_prebroken_piece (LEFT));
+
+      find_rods (r, elts, i - 1, padding);
       if (rb)
-       {
-         a.push (make_rod (l, rb));
-       }
-      
-      if (lb && rb)
-       {
-         Rod rod(make_rod (lb, rb));
-         a.push (rod);
-       }
+       find_rods (rb, elts, i - 1, padding);
     }
 
-  /*
-    We've done our job, so we get lost. 
-   */
-  for (SCM s = get_elt_property ("elements"); gh_pair_p (s); s = gh_cdr (s))
-    {
-      Item * it =dynamic_cast<Item*>(unsmob_element (gh_car (s)));
-      if (it && it->broken_b ())
-       {
-         it->find_prebroken_piece (LEFT) ->suicide ();
-         it->find_prebroken_piece (RIGHT)->suicide ();
-       }
-      it->suicide ();
-    }
-  
-  ((Separating_group_spanner *)this)->suicide ();
-  
-  return a;
+  return SCM_UNSPECIFIED;
 }
 
 void
-Separating_group_spanner::add_spacing_unit (Single_malt_grouping_item*i)
+Separating_group_spanner::add_spacing_unit (Grob *me, Item *i)
 {
-  set_elt_property ("elements",
-                   gh_cons (i->self_scm_,
-                            get_elt_property ("elements")));
-  add_dependency (i);
+  Pointer_group_interface::add_unordered_grob (me, ly_symbol2scm ("elements"), i);
 }
 
+ADD_INTERFACE (Separating_group_spanner,
+              "A spanner that calculates spacing constraints (\"rods\") "
+              "using the @code{separation-item-interface} grobs in @code{elements}.",
 
-Separating_group_spanner::Separating_group_spanner ()
-{
-  set_elt_property ("elements", SCM_EOL);
-}
+              /* properties */
+              "elements "
+              "padding ");