]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/side-position-interface.cc
release: 1.3.110
[lilypond.git] / lily / side-position-interface.cc
index f19cbf83e38cf361ab2af6eb12818efb3c559b5d..60fbcd8a697bec83e633ed95f7d7f659e0eaede1 100644 (file)
@@ -9,81 +9,72 @@
 #include <math.h>              // ceil.
 
 #include "side-position-interface.hh"
-#include "staff-symbol.hh"
 #include "debug.hh"
 #include "warn.hh"
 #include "dimensions.hh"
-#include "dimension-cache.hh"
 #include "staff-symbol-referencer.hh"
-
-Side_position_interface::Side_position_interface (Score_element const *e)
-{
-  elt_l_ = (Score_element*)e;
-}
-
+#include "group-interface.hh"
 
 void
-Side_position_interface::add_support (Score_element*e)
+Side_position::add_support (Grob*me, Grob*e)
 {
-  SCM sup = elt_l_->get_elt_property ("side-support");
-  elt_l_->set_elt_property ("side-support",
-                           gh_cons (e->self_scm_,sup));
+  Pointer_group_interface::add_element (me, "side-support-elements",e);
 }
 
 
 
 Direction
-Side_position_interface::get_direction () const
+Side_position::get_direction (Grob*me)
 {
-  SCM d = elt_l_->get_elt_property ("direction");
+  SCM d = me->get_grob_property ("direction");
   if (isdir_b (d))
     return to_dir (d) ? to_dir (d) : DOWN;
 
   Direction relative_dir = UP;
-  SCM reldir = elt_l_->get_elt_property ("side-relative-direction");   // should use a lambda.
+  SCM reldir = me->get_grob_property ("side-relative-direction");      // should use a lambda.
   if (isdir_b (reldir))
     {
       relative_dir = to_dir (reldir);
     }
   
-  SCM other_elt = elt_l_->get_elt_property ("direction-source");
-  Score_element * e = unsmob_element(other_elt);
+  SCM other_elt = me->get_grob_property ("direction-source");
+  Grob * e = unsmob_grob(other_elt);
   if (e)
     {
-      return (Direction)(relative_dir * Side_position_interface (e).get_direction ());
+      return (Direction)(relative_dir * Side_position::get_direction (e));
     }
   
   return DOWN;
 }
   
-/**
-   Callback that does the aligning.
+/*
+   Callback that does the aligning. Puts the element next to the support
  */
-Real
-Side_position_interface::side_position (Dimension_cache const * c)
+
+MAKE_SCHEME_CALLBACK(Side_position,side_position,2);
+SCM
+Side_position::side_position (SCM element_smob, SCM axis)
 {
-  Score_element * me = dynamic_cast<Score_element*> (c->element_l ());
+  Grob *me = unsmob_grob (element_smob);
+  Axis a = (Axis) gh_scm2int (axis);
 
-  Interval dim;
-  Axis  axis = c->axis ();
-  Score_element *common = me->parent_l (axis);
-  SCM support = me->get_elt_property ("side-support");
+  Grob *common = me->parent_l (a);
+  SCM support = me->get_grob_property ("side-support-elements");
   for (SCM s = support; s != SCM_EOL; s = gh_cdr (s))
     {
-      Score_element * e  = unsmob_element ( gh_car (s));
+      Grob * e  = unsmob_grob (gh_car (s));
       if (e)
-       common = common->common_refpoint (e, axis);
+       common = common->common_refpoint (e, a);
     }
   
+  Interval dim;
   for (SCM s = support; s != SCM_EOL; s = gh_cdr (s))
     {
 
-      Score_element * e  = unsmob_element ( gh_car (s));
+      Grob * e  = unsmob_grob ( gh_car (s));
       if (e)
        {
-         Real coord = e->relative_coordinate (common, axis);
-
-         dim.unite (coord + e->extent (axis));
+         dim.unite (e->extent (common, a));
        }
     }
 
@@ -92,47 +83,64 @@ Side_position_interface::side_position (Dimension_cache const * c)
       dim = Interval(0,0);
     }
 
-  Real off =  me->parent_l (axis)->relative_coordinate (common, axis);
-
-
-  Direction dir = Side_position_interface (me).get_direction ();
+  Direction dir = Side_position::get_direction (me);
     
-  SCM pad = me->remove_elt_property ("padding");
-  if (gh_number_p (pad))
+  Real off =  me->parent_l (a)->relative_coordinate (common, a);
+  SCM minimum = me->remove_grob_property ("minimum-space");
+
+  Real total_off = dim[dir] + off;
+  SCM padding = me->remove_grob_property ("padding");
+  if (gh_number_p (padding))
     {
-      off += gh_scm2double (pad) * dir;
+      total_off += gh_scm2double (padding) * dir;
+    }
+  if (gh_number_p (minimum) && total_off * dir < gh_scm2double (minimum))
+    {
+      total_off = gh_scm2double (minimum) * dir;
     }
-  Real total_off = dim[dir] + off;
-
   if (fabs (total_off) > 100 CM)
     programming_error ("Huh ? Improbable staff side dim.");
 
-  return total_off;
+  return gh_double2scm (total_off);
 }
 
-Real
-Side_position_interface::self_alignment (Dimension_cache const *c)
+/**
+  callback that centers the element on itself
+ */
+MAKE_SCHEME_CALLBACK(Side_position,aligned_on_self,2);
+SCM
+Side_position::aligned_on_self (SCM element_smob, SCM axis)
 {
+  Grob *me = unsmob_grob (element_smob);
+  Axis a = (Axis) gh_scm2int (axis);
   String s ("self-alignment-");
-  Axis ax = c->axis ();
-  s +=  (ax == X_AXIS) ? "X" : "Y";
-  Score_element *elm = dynamic_cast<Score_element*> (c->element_l ());
-  SCM align (elm->get_elt_property (s));
-  if (isdir_b (align))
+
+  s +=  (a == X_AXIS) ? "X" : "Y";
+
+  SCM align (me->get_grob_property (s.ch_C()));
+  if (gh_number_p (align))
     {
-      Direction d = to_dir (align);
-      Interval ext(elm->extent (ax));
-      if (d)
+      Interval ext(me->extent (me,a));
+
+      if (ext.empty_b ())
+       {
+         programming_error ("I'm empty. Can't align on self");
+         return gh_double2scm (0.0);
+       }
+      else
        {
-         return - ext[d];
+         return gh_double2scm (- ext.linear_combination (gh_scm2double (align)));
        }
-      return - ext.center ();
     }
-  else
-    return 0.0;
+  else if (unsmob_grob (align))
+    {
+      return gh_double2scm (- unsmob_grob (align)->relative_coordinate (me,  a));
+    }
+    return gh_double2scm (0.0);
 }
 
 
+
 Real
 directed_round (Real f, Direction d)
 {
@@ -142,103 +150,139 @@ directed_round (Real f, Direction d)
     return ceil (f);
 }
 
-Real
-Side_position_interface::quantised_position (Dimension_cache const *c)
+/*
+  Callback that quantises in staff-spaces, rounding in the direction
+  of the elements "direction" elt property.
+
+  Only rounds when we're inside the staff, as determined by
+  Staff_symbol_referencer::staff_radius() */
+MAKE_SCHEME_CALLBACK(Side_position,quantised_position,2);
+SCM
+Side_position::quantised_position (SCM element_smob, SCM )
 {
-  Score_element * me = dynamic_cast<Score_element*> (c->element_l ());
-  Side_position_interface s(me);
-  Direction d = s.get_direction ();
-  Staff_symbol_referencer_interface si (me);
+  Grob *me = unsmob_grob (element_smob);
+  
+  
+  Direction d = Side_position::get_direction (me);
 
-  if (si.has_interface_b ())
+  if (Staff_symbol_referencer::has_interface (me))
     {
-      Real p = si.position_f ();
+      Real p = Staff_symbol_referencer::position_f (me);
       Real rp = directed_round (p, d);
-
+      Real rad = Staff_symbol_referencer::staff_radius (me) *2 ;
       int ip = int  (rp);
-      if ((ip % 2) == 0)
+
+      if (abs (ip) < rad && Staff_symbol_referencer::on_staffline (me,ip))
        {
          ip += d;
          rp += d;
        }
 
-      return (rp - p) * si.staff_space () / 2.0;
+      return gh_double2scm ((rp - p) * Staff_symbol_referencer::staff_space (me) / 2.0);
     }
-  return 0.0;
+  return gh_double2scm (0.0);
 }
 
-Real
-Side_position_interface::aligned_side (Dimension_cache const *c)
+/*
+  Position next to support, taking into account my own dimensions and padding.
+ */
+MAKE_SCHEME_CALLBACK(Side_position,aligned_side,2);
+SCM
+Side_position::aligned_side (SCM element_smob, SCM axis)
 {
-  Score_element * me = dynamic_cast<Score_element*> (c->element_l ());
-  Side_position_interface s(me);
-  Direction d = s.get_direction ();
-  Axis ax = c->axis ();
-  Real o = side_position (c);
+  Grob *me = unsmob_grob (element_smob);
+  Axis a = (Axis) gh_scm2int (axis);
+  
+  Direction d = Side_position::get_direction (me);
+  Real o = gh_scm2double (side_position (element_smob,axis));
 
-  Interval iv =  me->extent (ax);
+  Interval iv =  me->extent (me, a);
 
   if (!iv.empty_b ())
     {
       o += - iv[-d];
 
-      SCM pad = me->get_elt_property ("padding");
+      SCM pad = me->get_grob_property ("padding");
       if (gh_number_p (pad))
        o += d *gh_scm2double (pad) ; 
     }
-  return o;
+  return gh_double2scm (o);
 }
 
+/*
+  Position centered on parent.
+ */
+MAKE_SCHEME_CALLBACK(Side_position,centered_on_parent,2);
+SCM
+Side_position::centered_on_parent (SCM element_smob, SCM axis)
+{
+  Grob *me = unsmob_grob (element_smob);
+  Axis a = (Axis) gh_scm2int (axis);
+  Grob *him = me->parent_l (a);
 
+  return gh_double2scm (him->extent (him,a).center ());  
+}
 
 
 void
-Side_position_interface::set_axis (Axis a)
+Side_position::add_staff_support (Grob*me)
 {
-  // prop transparent ? 
-  if (elt_l_->get_elt_property ("side-support") == SCM_UNDEFINED)
-    elt_l_->set_elt_property ("side-support" ,SCM_EOL);
-
-  elt_l_->dim_cache_[a]->off_callbacks_.push (aligned_side);
+  Grob* st = Staff_symbol_referencer::staff_symbol_l (me);
+  if (st)
+    {
+      add_support (me,st);
+    }
 }
 
-
 void
-Side_position_interface::set_quantised (Axis a)
+Side_position::set_axis (Grob*me, Axis a)
 {
-  Dimension_cache * c = elt_l_->dim_cache_[a];
-  
-  c->off_callbacks_.push (quantised_position);
+  me->add_offset_callback (Side_position::aligned_side_proc, a);
 }
 
+
+
+// ugh. doesn't cactch all variants. 
 Axis
-Side_position_interface::get_axis () const
+Side_position::get_axis (Grob*me)
 {
-  Dimension_cache * c =  elt_l_->dim_cache_[X_AXIS];
-  for (int i=0 ; i < c->off_callbacks_.size();i ++)
-    if (c->off_callbacks_[i] == side_position
-       ||c->off_callbacks_[i] == aligned_side)
-      return X_AXIS;
+  if (me->has_offset_callback_b (Side_position::aligned_side_proc, X_AXIS)
+      || me->has_offset_callback_b (Side_position::aligned_side_proc , X_AXIS))
+    return X_AXIS;
 
   
   return Y_AXIS;
 }
 
 void
-Side_position_interface::set_direction (Direction d) 
+Side_position::set_direction (Grob*me, Direction d)
+{
+  me->set_grob_property ("direction", gh_int2scm (d));
+}
+
+void
+Side_position::set_minimum_space (Grob*me, Real m)
 {
-  elt_l_->set_elt_property ("direction", gh_int2scm (d));
+  me->set_grob_property ("minimum-space", gh_double2scm (m));
+}
+
+void
+Side_position::set_padding (Grob*me, Real p)
+{
+  me->set_grob_property ("padding", gh_double2scm (p));
 }
 
 bool
-Side_position_interface::has_interface_b () const
+Side_position::has_interface (Grob*me) 
 {
-  return elt_l_->get_elt_property ("side-support") != SCM_UNDEFINED;
+  return me->has_interface (ly_symbol2scm ("side-position-interface"));
 }
 
 bool
-Side_position_interface::supported_b () const
+Side_position::supported_b (Grob*me) 
 {
-  SCM s =elt_l_->get_elt_property  ("side-support"); 
-  return s != SCM_UNDEFINED && s != SCM_EOL;
+  SCM s = me->get_grob_property  ("side-support-elements"); 
+  return gh_pair_p(s);
 }
+
+