]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/collision.cc
patch::: 1.3.141.jcn3
[lilypond.git] / lily / collision.cc
index 81de09987f31fedb0048aea0eb726dbd855f8044..5c0ae795180a2282a5e0150e3b1567b43854e175 100644 (file)
@@ -3,49 +3,57 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
+
 #include "debug.hh"
 #include "collision.hh"
 #include "note-column.hh"
-#include "note-head.hh"
+#include "rhythmic-head.hh"
 #include "paper-def.hh"
 #include "axis-group-interface.hh"
+#include "item.hh"
 
 
-Collision::Collision()
-{
-  Axis_group_interface (this).set_interface ();
-  Axis_group_interface (this).set_axes (X_AXIS, Y_AXIS);
-}
+MAKE_SCHEME_CALLBACK (Collision,force_shift_callback,2);
 
-void
-Collision::add_column (Note_column* ncol_l)
-{
-  Axis_group_interface (this).add_element (ncol_l);
-  add_dependency (ncol_l);
-}
-
-void
-Collision::before_line_breaking ()
+SCM
+Collision::force_shift_callback (SCM element_smob, SCM axis)
 {
-  do_shifts();
+  Grob *me = unsmob_grob (element_smob);
+  Axis a = (Axis) gh_scm2int (axis);
+  assert (a == X_AXIS);
+  
+   me = me->parent_l (a);
+  /*
+    ugh. the way DONE is done is not clean
+   */
+  if (!unsmob_grob (me->get_grob_property ("done")))
+    {
+      me->set_grob_property ("done", me->self_scm ());
+      do_shifts (me);
+    }
+  
+  return gh_double2scm (0.0);
 }
 
 /*
   TODO: make callback of this.
  */
 void
-Collision::do_shifts()
+Collision::do_shifts (Grob* me)
 {
-  SCM autos (automatic_shift ());
-  SCM hand (forced_shift ());
-  Link_array<Score_element> done;
+  SCM autos (automatic_shift (me));
+  SCM hand (forced_shift (me));
+  
+  Link_array<Grob> done;
+  
+  Real wid
+    = gh_scm2double (me->get_grob_property ("note-width"));
   
-  Real wid = paper_l ()->get_var ("collision_note_width");
   for (; gh_pair_p (hand); hand =gh_cdr (hand))
     {
-      Score_element * s = unsmob_element (gh_caar (hand));
+      Grob * s = unsmob_grob (gh_caar (hand));
       Real amount = gh_scm2double (gh_cdar (hand));
       
       s->translate_axis (amount *wid, X_AXIS);
@@ -53,7 +61,7 @@ Collision::do_shifts()
     }
   for (; gh_pair_p (autos); autos =gh_cdr (autos))
     {
-      Score_element * s = unsmob_element (gh_caar (autos));
+      Grob * s = unsmob_grob (gh_caar (autos));
       Real amount = gh_scm2double (gh_cdar (autos));
       
       if (!done.find_l (s))
@@ -67,20 +75,20 @@ Collision::do_shifts()
   This should be put into Scheme.  
   */
 SCM
-Collision::automatic_shift ()
+Collision::automatic_shift (Grob *me)
 {
-  Drul_array<Link_array<Note_column> > clash_groups;
+  Drul_array<Link_array<Grob> > clash_groups;
   Drul_array<Array<int> > shifts;
   SCM  tups = SCM_EOL;
 
-  SCM s = get_elt_pointer ("elements");
+  SCM s = me->get_grob_property ("elements");
   for (; gh_pair_p (s); s = gh_cdr (s))
     {
       SCM car = gh_car (s);
 
-      Score_element * se = unsmob_element (car);
-      if (Note_column * col = dynamic_cast<Note_column*> (se))
-       clash_groups[col->dir ()].push (col);
+      Grob * se = unsmob_grob (car);
+      if (Note_column::has_interface (se))
+       clash_groups[Note_column::dir (se)].push (se);
     }
 
   
@@ -88,14 +96,14 @@ Collision::automatic_shift ()
   do
     {
       Array<int> & shift (shifts[d]);
-      Link_array<Note_column> & clashes (clash_groups[d]);
+      Link_array<Grob> & clashes (clash_groups[d]);
 
       clashes.sort (Note_column::shift_compare);
 
       for (int i=0; i < clashes.size (); i++)
        {
          SCM sh
-           = clashes[i]->remove_elt_property ("horizontal-shift");
+           = clashes[i]->get_grob_property ("horizontal-shift");
 
          if (gh_number_p (sh))
            shift.push (gh_scm2int (sh));
@@ -121,7 +129,7 @@ Collision::automatic_shift ()
     {
       for (int i=0; i < clash_groups[d].size (); i++)
        {
-         Slice s(clash_groups[d][i]->head_positions_interval ());
+         Slice s (Note_column::head_positions_interval (clash_groups[d][i]));
          s[LEFT] --;
          s[RIGHT]++;
          extents[d].push (s);
@@ -137,7 +145,7 @@ Collision::automatic_shift ()
          Slice prev =extents[d][i-1];
          prev.intersect (extents[d][i]);
          if (prev.length ()> 0 ||
            (extents[-d].size () && d * (extents[d][i][-d] - extents[-d][0][d]) < 0))
+ (extents[-d].size () && d * (extents[d][i][-d] - extents[-d][0][d]) < 0))
            for (int j = i; j <  clash_groups[d].size (); j++)
              offsets[d][j] += d * 0.5;
        }
@@ -149,31 +157,31 @@ Collision::automatic_shift ()
     all of them again. */
   if (extents[UP].size () && extents[DOWN].size ())
     {
-      Note_column *cu_l =clash_groups[UP][0];
-      Note_column *cd_l =clash_groups[DOWN][0];
+      Grob *cu_l =clash_groups[UP][0];
+      Grob *cd_l =clash_groups[DOWN][0];
 
 
       /*
        TODO.
        */
-      Note_head * nu_l= cu_l->first_head();
-      Note_head * nd_l = cd_l->first_head();
+      Grob * nu_l= Note_column::first_head (cu_l);
+      Grob * nd_l = Note_column::first_head (cd_l);
       
-      int downpos = cd_l->head_positions_interval ()[BIGGER];
-      int uppos = cu_l->head_positions_interval ()[SMALLER];      
+      int downpos = Note_column::head_positions_interval (cd_l)[BIGGER];
+      int uppos = Note_column::head_positions_interval (cu_l)[SMALLER];      
       
       bool merge  =
        downpos == uppos
-       && nu_l->balltype_i () == nd_l->balltype_i ();
+       && Rhythmic_head::balltype_i (nu_l) == Rhythmic_head::balltype_i (nd_l);
 
 
-      if (!to_boolean (get_elt_property ("merge-differently-dotted")))
-       merge = merge && nu_l->dot_count () == nd_l->dot_count ();
+      if (!to_boolean (me->get_grob_property ("merge-differently-dotted")))
+       merge = merge && Rhythmic_head::dot_count (nu_l) == Rhythmic_head::dot_count (nd_l);
 
       /*
        notes are close, but can not be merged.  Shift
        */
-      if (abs(uppos - downpos) < 2 && !merge)
+      if (abs (uppos - downpos) < 2 && !merge)
          do
          {
            for (int i=0; i < clash_groups[d].size (); i++)
@@ -187,7 +195,7 @@ Collision::automatic_shift ()
   do
     {
       for (int i=0; i < clash_groups[d].size (); i++)
-       tups = gh_cons (gh_cons (clash_groups[d][i]->self_scm_, gh_double2scm (offsets[d][i])),
+       tups = gh_cons (gh_cons (clash_groups[d][i]->self_scm (), gh_double2scm (offsets[d][i])),
                                 tups);
     }
   while (flip (&d) != UP);
@@ -196,24 +204,29 @@ Collision::automatic_shift ()
 
 
 SCM
-Collision::forced_shift ()
+Collision::forced_shift (Grob *me)
 {
   SCM tups = SCM_EOL;
   
-  SCM s = get_elt_pointer ("elements");
+  SCM s = me->get_grob_property ("elements");
   for (; gh_pair_p (s); s = gh_cdr (s))
     {
-      Score_element * se = unsmob_element (gh_car (s));
+      Grob * se = unsmob_grob (gh_car (s));
 
-      SCM force =  se->remove_elt_property ("force-hshift");
+      SCM force =  se->remove_grob_property ("force-hshift");
       if (gh_number_p (force))
        {
-         tups = gh_cons (gh_cons (se->self_scm_, force),
+         tups = gh_cons (gh_cons (se->self_scm (), force),
                          tups);
        }
     }
   return tups;
 }
 
-
-
+void
+Collision::add_column (Grob*me,Grob* ncol_l)
+{
+  ncol_l->add_offset_callback (Collision::force_shift_callback_proc, X_AXIS);
+  Axis_group_interface::add_element (me, ncol_l);
+  me->add_dependency (ncol_l);
+}