]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/ottava-bracket.cc
Run `make grand-replace'.
[lilypond.git] / lily / ottava-bracket.cc
index 30c122da5da44d113c18c40d8901150ff369d158..70757d91588da33b3aee287883e8e2e26756c9a4 100644 (file)
@@ -1,57 +1,48 @@
-/*   
-  ottava-bracket.cc --  implement Ottava_bracket
+/*
+  ottava-bracket.cc -- implement Ottava_bracket
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
-
- */
+  (c) 2004--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
-#include "stencil.hh"
-#include "text-item.hh"
-#include "text-spanner.hh"
-#include "line-spanner.hh"
+#include "text-interface.hh"
 #include "spanner.hh"
 #include "font-interface.hh"
 #include "dimensions.hh"
-#include "paper-def.hh"
+#include "output-def.hh"
 #include "warn.hh"
 #include "paper-column.hh"
 #include "staff-symbol-referencer.hh"
 #include "note-column.hh"
 #include "directional-element-interface.hh"
 #include "tuplet-bracket.hh"
+#include "rhythmic-head.hh"
+#include "pointer-group-interface.hh"
 
 struct Ottava_bracket
 {
   DECLARE_SCHEME_CALLBACK (print, (SCM));
-  static bool has_interface (Grob*);
+  DECLARE_GROB_INTERFACE ();
 };
 
-
 /*
   TODO: the string for ottava shoudl depend on the available space, ie.
 
-  
   Long: 15ma        Short: 15ma    Empty: 15
-         8va                8va            8
-         8va bassa          8ba            8
-
+  8va                8va            8
+  8va bassa          8ba            8
 */
-
 MAKE_SCHEME_CALLBACK (Ottava_bracket, print, 1);
 SCM
 Ottava_bracket::print (SCM smob)
 {
-  Spanner*me  = dynamic_cast<Spanner*> (unsmob_grob (smob));
-  
-  
+  Spanner *me = dynamic_cast<Spanner *> (unsmob_grob (smob));
   Interval span_points;
-  
+
   Grob *common = me->get_bound (LEFT)->common_refpoint (me->get_bound (RIGHT), X_AXIS);
-  Paper_def * paper = me->get_paper ();
+  Output_def *layout = me->layout ();
 
-  
   Drul_array<bool> broken;
   Direction d = LEFT;
   do
@@ -61,7 +52,15 @@ Ottava_bracket::print (SCM smob)
 
       if (Note_column::has_interface (b))
        {
-         common = common_refpoint_of_list (b->get_property ("heads"), common, X_AXIS);
+         extract_grob_set (b, "note-heads", heads);
+         common = common_refpoint_of_array (heads, common, X_AXIS);
+         for (vsize i = 0; i < heads.size (); i++)
+           {
+             Grob *h = heads[i];
+             Grob *dots = Rhythmic_head::get_dots (h);
+             if (dots)
+               common = dots->common_refpoint (common, X_AXIS);
+           }
        }
     }
   while (flip (&d) != LEFT);
@@ -69,18 +68,17 @@ Ottava_bracket::print (SCM smob)
   SCM properties = Font_interface::text_font_alist_chain (me);
   SCM markup = me->get_property ("text");
   Stencil text;
-  if (Text_item::markup_p (markup)) 
-    text = *unsmob_stencil (Text_item::interpret_markup (paper->self_scm (), properties, markup));
-
+  if (Text_interface::is_markup (markup))
+    text = *unsmob_stencil (Text_interface::interpret_markup (layout->self_scm (),
+                                                             properties, markup));
 
   Drul_array<Real> shorten = robust_scm2interval (me->get_property ("shorten-pair"),
-                                                 Interval (0,0));
-
+                                                 Interval (0, 0));
 
   /*
     TODO: we should check if there are ledgers, and modify length of
     the spanner to that.
-   */
+  */
   do
     {
       Item *b = me->get_bound (d);
@@ -88,54 +86,66 @@ Ottava_bracket::print (SCM smob)
       Interval ext;
       if (Note_column::has_interface (b))
        {
-         for (SCM s = b->get_property ("note-heads"); ly_pair_p (s); s =ly_cdr (s))
-           ext.unite (unsmob_grob (ly_car (s))->extent (common, X_AXIS));
+         extract_grob_set (b, "note-heads", heads);
+         for (vsize i = 0; i < heads.size (); i++)
+           {
+             Grob *h = heads[i];
+             ext.unite (h->extent (common, X_AXIS));
+             Grob *dots = Rhythmic_head::get_dots (h);
+
+             if (dots && d == RIGHT)
+               ext.unite (dots->extent (common, X_AXIS));
+           }
        }
 
       if (ext.is_empty ())
-       ext = Interval (0,0);
-      
-      span_points[d] =  (broken [d]) ? b->extent (common, X_AXIS)[-d] : ext[d];
+       ext = robust_relative_extent (b, common, X_AXIS);
 
       if (broken[d])
-       shorten [d] = 0.0; 
+       {
+         span_points[d] = b->extent (common, X_AXIS)[RIGHT];
+         shorten[d] = 0.;
+       }
+
+      else
+       span_points[d] = ext[d];
     }
   while (flip (&d) != LEFT);
 
-
   /*
-    0.3 is ~ italic correction. 
-   */
-  Real text_size =  text.extent (X_AXIS).is_empty ()
-    ? 0.0 : text.extent (X_AXIS)[RIGHT] +  0.3;
-  
-  span_points[LEFT] = span_points[LEFT]
-    <? (span_points[RIGHT] - text_size
-       - robust_scm2double (me->get_property ("minimum-length"), -1.0)); 
-  
+    0.3 is ~ italic correction.
+  */
+  Real text_size = text.extent (X_AXIS).is_empty ()
+    ? 0.0 : text.extent (X_AXIS)[RIGHT] + 0.3;
+
+  span_points[LEFT]
+    = min (span_points[LEFT],
+          (span_points[RIGHT] - text_size
+           - robust_scm2double (me->get_property ("minimum-length"), -1.0)));
+
   Interval bracket_span_points = span_points;
   bracket_span_points[LEFT] += text_size;
-  
+
   Drul_array<Real> edge_height = robust_scm2interval (me->get_property ("edge-height"),
                                                      Interval (1.0, 1.0));
 
-  
   Drul_array<Real> flare = robust_scm2interval (me->get_property ("bracket-flare"),
-                                               Interval (0,0));
-
+                                               Interval (0, 0));
 
+  do
+    {
+      edge_height[d] *= -get_grob_direction (me);
+      if (broken[d])
+       edge_height[d] = 0.0;
+    }
+  while (flip(&d) != LEFT);
 
-  edge_height[LEFT] = 0.0;
-  edge_height[RIGHT] *=  - get_grob_direction (me);
-  if (broken[RIGHT])
-    edge_height[RIGHT] = 0.0;
-  
   Stencil b;
   Interval empty;
   if (!bracket_span_points.is_empty () && bracket_span_points.length () > 0.001)
     b = Tuplet_bracket::make_bracket (me,
                                      Y_AXIS, Offset (bracket_span_points.length (), 0),
-                                      edge_height,
+                                     edge_height,
                                      empty,
                                      flare, shorten);
 
@@ -143,33 +153,38 @@ Ottava_bracket::print (SCM smob)
     The vertical lines should not take space, for the following scenario:
 
     8 -----+
-        o  |
-       |
-       |
-       
+    o  |
+    |
+    |
+
 
     Just a small amount, yes.  In tight situations, it is even
     possible to center the `8' directly below the note, dropping the
     ottava line completely...
 
   */
-  
+
   b = Stencil (Box (b.extent (X_AXIS),
-                    Interval (0.1,0.1)),
-               b.get_expr ());
-  
+                   Interval (0.1, 0.1)),
+              b.expr ());
+
   b.translate_axis (bracket_span_points[LEFT], X_AXIS);
   text.translate_axis (span_points[LEFT], X_AXIS);
   text.align_to (Y_AXIS, CENTER);
   b.add_stencil (text);
-  
+
   b.translate_axis (- me->relative_coordinate (common, X_AXIS), X_AXIS);
-  
-  return b.smobbed_copy ();  
+
+  return b.smobbed_copy ();
 }
 
+ADD_INTERFACE (Ottava_bracket,
+              "An ottava bracket.",
 
-ADD_INTERFACE (Ottava_bracket, "ottava-bracket-interface",
-              "An ottava bracket",
-              "edge-height bracket-flare shorten-pair minimum-length");
+              /* properties */
+              "edge-height "
+              "bracket-flare "
+              "shorten-pair "
+              "minimum-length "
+              );