X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcluster.cc;h=b6008fea6095d6d629f3b695756a918f54900599;hb=f6e9afcbcca74efbf3d18bf05e32f4c5291e04de;hp=cefb02f78207f5eb95799e7bcf546ceda9e51a6e;hpb=c8e9703dffb4d1e774ead41c150fe9d3ef29bc4c;p=lilypond.git diff --git a/lily/cluster.cc b/lily/cluster.cc index cefb02f782..b6008fea60 100644 --- a/lily/cluster.cc +++ b/lily/cluster.cc @@ -3,16 +3,12 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2006 Juergen Reuter + (c) 2002--2007 Juergen Reuter Han-Wen Nienhuys */ #include "cluster.hh" - -#include -using namespace std; - #include "international.hh" #include "item.hh" #include "lookup.hh" @@ -25,9 +21,9 @@ using namespace std; /* TODO: Add support for cubic spline segments. -*/ + */ Stencil -brew_cluster_piece (Grob *me, std::vector bottom_points, std::vector top_points) +brew_cluster_piece (Grob *me, vector bottom_points, vector top_points) { Real blotdiameter = Staff_symbol_referencer::staff_space (me) / 2; @@ -38,7 +34,7 @@ brew_cluster_piece (Grob *me, std::vector bottom_points, std::vectorget_property ("style"); - std::string shape; + string shape; if (scm_is_symbol (shape_scm)) shape = ly_symbol2string (shape_scm); @@ -50,7 +46,7 @@ brew_cluster_piece (Grob *me, std::vector bottom_points, std::vector points; + vector points; points.clear (); int size = bottom_points.size (); if (shape == "leftsided-stairs") @@ -115,6 +111,18 @@ brew_cluster_piece (Grob *me, std::vector bottom_points, std::vectorget_parent (Y_AXIS)); +} + MAKE_SCHEME_CALLBACK (Cluster, print, 1); SCM Cluster::print (SCM smob) @@ -133,7 +141,7 @@ Cluster::print (SCM smob) Grob *commonx = left_bound->common_refpoint (right_bound, X_AXIS); - Link_array const &cols = extract_grob_array (me, "columns"); + vector const &cols = extract_grob_array (me, "columns"); if (cols.empty ()) { me->warning (_ ("junking empty cluster")); @@ -144,8 +152,8 @@ Cluster::print (SCM smob) commonx = common_refpoint_of_array (cols, commonx, X_AXIS); Grob *commony = common_refpoint_of_array (cols, me, Y_AXIS); - std::vector bottom_points; - std::vector top_points; + vector bottom_points; + vector top_points; Real left_coord = left_bound->relative_coordinate (commonx, X_AXIS); @@ -168,52 +176,49 @@ Cluster::print (SCM smob) /* Across a line break we anticipate on the next pitches. */ - if (spanner->original ()) + if (Spanner *next = spanner->broken_neighbor (RIGHT)) { - Spanner *orig = dynamic_cast (spanner->original ()); - - if (spanner->get_break_index () < orig->broken_intos_.size () - 1) + extract_grob_set (next, "columns", next_cols); + if (next_cols.size () > 0) { - Spanner *next = orig->broken_intos_[spanner->get_break_index () + 1]; - Link_array const &next_cols = extract_grob_array (next, "columns"); - if (next_cols.size () > 0) - { - Grob *next_commony = common_refpoint_of_array (next_cols, next, Y_AXIS); - Grob *col = next_cols[0]; - - Interval v = col->extent (next_commony, Y_AXIS); - Real x = right_bound->relative_coordinate (commonx, X_AXIS) - left_coord; - - bottom_points.insert (bottom_points.begin (), - Offset (x, v[DOWN])); - top_points.insert (top_points.begin (), Offset (x, v[UP])); - } + Grob *next_commony = common_refpoint_of_array (next_cols, next, Y_AXIS); + Grob *col = next_cols[0]; + + Interval v = col->extent (next_commony, Y_AXIS); + Real x = right_bound->relative_coordinate (commonx, X_AXIS) - left_coord; + + bottom_points.push_back (Offset (x, v[DOWN])); + top_points.push_back (Offset (x, v[UP])); } } - reverse (bottom_points); - reverse (top_points); - Stencil out = brew_cluster_piece (me, bottom_points, top_points); out.translate_axis (- me->relative_coordinate (commony, Y_AXIS), Y_AXIS); return out.smobbed_copy (); } -ADD_INTERFACE (Cluster, "cluster-interface", - "A graphically drawn musical cluster. " - "\n\n" - "@code{padding} adds to the vertical extent of the shape (top and " - "bottom). \n\n" - "The property @code{style} controls the shape of cluster segments. Valid values " - "include @code{leftsided-stairs}, @code{rightsided-stairs}, @code{centered-stairs}, " - "and @code{ramp}.\n", - "style padding columns"); +ADD_INTERFACE (Cluster, + "A graphically drawn musical cluster.\n" + "\n" + "@code{padding} adds to the vertical extent of the shape (top" + " and bottom).\n" + "\n" + "The property @code{style} controls the shape of cluster" + " segments. Valid values include @code{leftsided-stairs}," + " @code{rightsided-stairs}, @code{centered-stairs}, and" + " @code{ramp}.\n", + + /* properties */ + "style " + "padding " + "columns " + ); struct Cluster_beacon { public: DECLARE_SCHEME_CALLBACK (height, (SCM)); - static bool has_interface (Grob *); + DECLARE_GROB_INTERFACE (); }; MAKE_SCHEME_CALLBACK (Cluster_beacon, height, 1); @@ -227,9 +232,10 @@ Cluster_beacon::height (SCM g) } ADD_INTERFACE (Cluster_beacon, - "cluster-beacon-interface", - "A place holder for the cluster spanner to determine the vertical " - "extents of a cluster spanner at this X position.", + "A place holder for the cluster spanner to determine the" + " vertical extents of a cluster spanner at this" + " X@tie{}position.", /* properties */ - "positions "); + "positions " + );