]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tuplet-spanner.cc
release: 1.3.101
[lilypond.git] / lily / tuplet-spanner.cc
index a879a6881c971e5b542cd7233f1a5f3085ca4b11..312bb37b9658894cf1f1cb9e6de82d5e916f9d6b 100644 (file)
 /*
-  plet-spanner.cc -- implement Plet_spanner
+  plet-spanner.cc -- implement Tuplet_spanner
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c)  1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
 */
-/*
-  todo: handle breaking elegantly.
- */
+
+
 #include "beam.hh"
-#include "atom.hh"
 #include "box.hh"
 #include "debug.hh"
-#include "lookup.hh"
+#include "font-interface.hh"
 #include "molecule.hh"
-#include "p-col.hh"
+#include "paper-column.hh"
 #include "paper-def.hh"
+#include "text-item.hh"
 #include "tuplet-spanner.hh"
 #include "stem.hh"
-#include "text-def.hh"
 #include "note-column.hh"
+#include "dimensions.hh"
+#include "group-interface.hh"
+#include "directional-element-interface.hh"
+#include "spanner.hh"
 
-Plet_spanner::Plet_spanner ()
+void
+Tuplet_spanner::set_interface (Score_element*me)
 {
-  bracket_visibility_b_ = true;
-  num_visibility_b_ = true;
-  
-  tdef_p_.set_p(new Text_def);
-  tdef_p_->align_dir_ = CENTER;
-  tdef_p_->style_str_ = "italic";
+  me->set_interface (ly_symbol2scm ("tuplet-bracket"));
 }
 
-Molecule*
-Plet_spanner::brew_molecule_p () const
+/*
+  TODO. 
+ */
+
+MAKE_SCHEME_CALLBACK(Tuplet_spanner,brew_molecule,1);
+
+SCM
+Tuplet_spanner::brew_molecule (SCM smob) 
 {
-  Molecule* mol_p = new Molecule;
-
-  if (column_arr_.size ()){
-    Real ncw = column_arr_.top ()->extent (X_AXIS).length ();
-    Atom num (tdef_p_->get_atom (paper (), CENTER));
-
-    if (beam_l_ && !bracket_visibility_b_)
-      {
-       num.translate (((Directional_spanner*)beam_l_)->center ());
-       num.translate_axis (ncw, X_AXIS);
-      }
-    
-    if (bracket_visibility_b_)      
-      {
-       Real dy = column_arr_.top ()->extent (Y_AXIS) [dir_]
-         - column_arr_[0]->extent (Y_AXIS) [dir_];
-       Real w = width ().length () + ncw;
-
-       num.translate (Offset (w/2, dy/2));
-       mol_p->add_atom (lookup_l ()->plet (dy, w, dir_));
-      }
-
-    if (num_visibility_b_)
-      mol_p->add_atom (num);
-  }
-  return mol_p;
-}
+  Score_element *me= unsmob_element (smob);
+  Molecule  mol;
+
+  // Default behaviour: number always, bracket when no beam!
+  bool par_beam = to_boolean (me->get_elt_property ("parallel-beam"));
+  bool bracket_visibility = !par_beam;
+  bool number_visibility = true;
+
+  SCM bracket = me->get_elt_property ("tuplet-bracket-visibility");
+  if (gh_boolean_p (bracket))
+    {
+      bracket_visibility = gh_scm2bool (bracket);
+    }
+  else if (bracket == ly_symbol2scm ("if-no-beam"))
+    bracket_visibility = !par_beam;
+
+  SCM numb = me->get_elt_property ("tuplet-number-visibility");  
+  if (gh_boolean_p (numb))
+    {
+      number_visibility = gh_scm2bool (numb);
+    }
+  else if (bracket == ly_symbol2scm ("if-no-beam"))
+    number_visibility = !par_beam;
   
-void
-Plet_spanner::do_add_processing ()
-{
-  if (column_arr_.size ())
+  if (gh_pair_p (me->get_elt_property ("columns")))
     {
-      set_bounds (LEFT, column_arr_[0]);
-      set_bounds (RIGHT, column_arr_.top ());  
+      Link_array<Score_element> column_arr=
+       Pointer_group_interface__extract_elements (me, (Score_element*)0, "columns");
+       
+      Real ncw = column_arr.top ()->extent(column_arr.top (), X_AXIS).length ();
+      Real w = dynamic_cast<Spanner*>(me)->spanner_length () + ncw;
+
+      Real staff_space = 1.0;
+      Direction dir = Directional_element_interface::get (me);
+      Real dy = gh_scm2double (me->get_elt_property ("delta-y"));
+      SCM number = me->get_elt_property ("text");
+      if (gh_string_p (number) && number_visibility)
+       {
+         SCM properties = Font_interface::font_alist_chain (me);
+         Molecule num = Text_item::text2molecule (me, number, properties);
+         num.align_to (X_AXIS, CENTER);
+         num.translate_axis (w/2, X_AXIS);
+         num.align_to (Y_AXIS, CENTER);
+         num.translate_axis (dir * staff_space, Y_AXIS);
+       
+         num.translate_axis (dy/2, Y_AXIS);
+
+         mol.add_molecule (num);
+       }
+      
+      if (bracket_visibility)      
+       {
+         Real  lt =  me->paper_l ()->get_var ("stafflinethickness");
+         
+         SCM thick = me->get_elt_property ("thick");
+         SCM gap = me->get_elt_property ("number-gap");
+         
+         SCM at =gh_list(ly_symbol2scm ("tuplet"),
+                         gh_double2scm (1.0),
+                         gap,
+                         gh_double2scm (w),
+                         gh_double2scm (dy),
+                         gh_double2scm (gh_scm2double (thick)* lt),
+                         gh_int2scm (dir),
+                         SCM_UNDEFINED);
+
+         Box b;
+         mol.add_molecule (Molecule (b, at));
+       }
     }
+  return mol.create_scheme();
 }
-  
+
+
+
+
+/*
+  use first -> last note for slope, and then correct for disturbing
+  notes in between.  */
 void
-Plet_spanner::do_post_processing ()
+Tuplet_spanner::calc_position_and_height (Score_element*me,Real *offset, Real * dy) 
 {
-  if (column_arr_.size())
-    translate_axis (column_arr_[0]->extent (Y_AXIS)[dir_], Y_AXIS);
+  Link_array<Score_element> column_arr=
+    Pointer_group_interface__extract_elements (me, (Score_element*)0, "columns");
 
-  if (!broken_into_l_arr_.size () && beam_l_
-      && spanned_drul_[LEFT]->column_l () == beam_l_->spanned_drul_[LEFT]->column_l ()
-      && spanned_drul_[RIGHT]->column_l () == beam_l_->spanned_drul_[RIGHT]->column_l ())
-    bracket_visibility_b_ = false;
 
-  if (column_arr_.size () == 1)
-    bracket_visibility_b_ = false;
+  Score_element * commony = me->common_refpoint (me->get_elt_property ("columns"), Y_AXIS);
+  Score_element * commonx = me->common_refpoint (me->get_elt_property ("columns"), X_AXIS);  
+  
+  Direction d = Directional_element_interface::get (me);
+
+  /*
+    Use outer non-rest columns to determine slope
+   */
+  int l = 0;
+  while (l <column_arr.size() && Note_column::rest_b(column_arr[l]))
+    l ++;
+
+  int r = column_arr.size ()- 1;
+  while (r >= l && Note_column::rest_b(column_arr[r]))
+    r--;
+  
+  if (l < r)
+    {
+      *dy = column_arr[r]->extent (commony, Y_AXIS) [d]
+       - column_arr[l]->extent (commony, Y_AXIS) [d] ;
+    }
+  else
+    * dy = 0;
+
+
+  *offset = - d * infinity_f;
+
+  if (!column_arr.size ())
+    return;
+  
+  Real x0 = column_arr[0]->relative_coordinate (commonx, X_AXIS);
+  Real x1 = column_arr.top ()->relative_coordinate (commonx, X_AXIS);
+  
+  Real factor = column_arr.size () > 1 ? 1/(x1 - x0) : 1.0;
+  
+  for (int i = 0; i < column_arr.size ();  i++)
+    {
+      Real notey = column_arr[i]->extent (commony, Y_AXIS)[d] 
+       - me->relative_coordinate (commony, Y_AXIS);
+
+      Real x = column_arr[i]->relative_coordinate (commonx, X_AXIS) - x0;
+      Real tuplety =  *dy * x * factor;
+
+      if (notey * d > (*offset + tuplety) * d)
+       *offset = notey - tuplety; 
+    }
 }
 
+/*
+  use first -> last note for slope,
+*/
 void
-Plet_spanner::do_substitute_dependency (Score_element* o, Score_element* n)
+Tuplet_spanner::calc_dy (Score_element*me,Real * dy)
 {
-  if (Note_column *onc = dynamic_cast <Note_column *> (o))
-    column_arr_.substitute (onc, dynamic_cast<Note_column*> (n));
-  else if (Beam *b = dynamic_cast<Beam *> (o))
+  Link_array<Score_element> column_arr=
+    Pointer_group_interface__extract_elements (me, (Score_element*)0, "columns");
+
+  /*
+    ugh. refps.
+   */
+  Direction d = Directional_element_interface::get (me);
+  *dy = column_arr.top ()->extent (column_arr.top (), Y_AXIS) [d]
+    - column_arr[0]->extent (column_arr[0], Y_AXIS) [d];
+}
+MAKE_SCHEME_CALLBACK(Tuplet_spanner,after_line_breaking,1);
+
+SCM
+Tuplet_spanner::after_line_breaking (SCM smob)
+{
+  Score_element * me = unsmob_element (smob);
+  Link_array<Note_column> column_arr=
+    Pointer_group_interface__extract_elements (me, (Note_column*)0, "columns");
+  Spanner *sp = dynamic_cast<Spanner*> (me);
+
+
+  if (!column_arr.size ())
     {
-      if (b == beam_l_) 
-       beam_l_ = dynamic_cast<Beam*> (n);
+      me->suicide ();
+      return SCM_UNSPECIFIED;
     }
-}
+
+  Direction d = Directional_element_interface::get (me);
+  if (!d)
+    {
+      d = Tuplet_spanner::get_default_dir (me);
+      Directional_element_interface::set (me, d);
+
+    }
+  Real dy, offset;
+
+  calc_position_and_height (me,&offset,&dy);
   
-void
-Plet_spanner::set_default_dir ()
+  me->set_elt_property ("delta-y", gh_double2scm (dy));
+
+  me->translate_axis (offset, Y_AXIS);
+  
+  if (scm_ilength (me->get_elt_property ("beams")) == 1)
+    {
+      SCM bs = me->get_elt_property ("beams");
+      Score_element *b = unsmob_element (gh_car (bs));
+      Spanner * beam_l = dynamic_cast<Spanner *> (b);
+      if (!sp->broken_b () 
+         && sp->get_bound (LEFT)->column_l () == beam_l->get_bound (LEFT)->column_l ()
+         && sp->get_bound (RIGHT)->column_l () == beam_l->get_bound (RIGHT)->column_l ())
+       me->set_elt_property ("parallel-beam", SCM_BOOL_T);
+    }
+  return SCM_UNSPECIFIED;
+}
+
+
+Direction
+Tuplet_spanner::get_default_dir (Score_element*me)
 {
-  dir_ = UP;
-  for (int i=0; i < column_arr_.size (); i ++) 
+  Direction d = UP;
+  SCM dir_sym =me->get_elt_property ("dir-forced");
+  if (isdir_b (dir_sym))
     {
-      if (column_arr_[i]->dir_ < 0) 
+      d= to_dir (dir_sym);
+      if (d != CENTER)
+       return d;
+    }
+
+  d = UP ;
+  for (SCM s = me->get_elt_property ("columns"); gh_pair_p (s); s = gh_cdr (s))
+    {
+      Score_element * nc = unsmob_element (gh_car (s));
+      if (Note_column::dir (nc) < 0) 
        {
-         dir_ = DOWN;
+         d = DOWN;
          break;
        }
     }
+  
+  return d;
 }
 
 void
-Plet_spanner::set_beam (Beam *b)
+Tuplet_spanner::add_beam (Score_element*me, Score_element *b)
 {
-  beam_l_ = b;
-  add_dependency (b);
+  me->add_dependency (b);
+  Pointer_group_interface::add_element (me, "beams",b);
 }
 
 void
-Plet_spanner::add_column (Note_column*n)
+Tuplet_spanner::add_column (Score_element*me, Item*n)
 {
-  column_arr_.push (n);
-  add_dependency (n);
+  Pointer_group_interface::add_element (me, "columns",n);
+  me->add_dependency (n);
+
+  add_bound_item (dynamic_cast<Spanner*> (me), n);
 }
 
+