X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fhairpin.cc;h=6e9591130ce35bb23f53abf373dd153a1c906e5d;hb=1eb080d3e3acfe927eb163abb8c5ca6e08b43769;hp=26518b007f167fc25e0a7b746b3676a07772e366;hpb=ce521e79fd7669b45c8c1132e4b5693a03b5d90a;p=lilypond.git diff --git a/lily/hairpin.cc b/lily/hairpin.cc index 26518b007f..6e9591130c 100644 --- a/lily/hairpin.cc +++ b/lily/hairpin.cc @@ -3,140 +3,166 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2002 Han-Wen Nienhuys + (c) 1997--2005 Han-Wen Nienhuys */ -#include "molecule.hh" #include "hairpin.hh" + +#include "staff-symbol-referencer.hh" +#include "line-interface.hh" #include "spanner.hh" #include "font-interface.hh" #include "dimensions.hh" -#include "paper-def.hh" -#include "debug.hh" +#include "output-def.hh" +#include "warn.hh" #include "paper-column.hh" +#include "lookup.hh" +#include "text-interface.hh" +#include "pointer-group-interface.hh" -MAKE_SCHEME_CALLBACK (Hairpin, brew_molecule, 1); +MAKE_SCHEME_CALLBACK (Hairpin, after_line_breaking, 1); +SCM +Hairpin::after_line_breaking (SCM smob) +{ + Spanner *me = dynamic_cast (unsmob_grob (smob)); + + Drul_array broken; + Drul_array bounds; + Direction d = LEFT; + do + { + bounds[d] = me->get_bound (d); + broken[d] = bounds[d]->break_status_dir () != CENTER; + } + while (flip (&d) != LEFT); + + if (broken[LEFT] + && ly_is_equal (bounds[RIGHT]->get_column ()->get_property ("when"), + bounds[LEFT]->get_property ("when"))) + me->suicide (); + return SCM_UNSPECIFIED; +} + +MAKE_SCHEME_CALLBACK (Hairpin, print, 1); SCM -Hairpin::brew_molecule (SCM smob) +Hairpin::print (SCM smob) { - Grob *me= unsmob_grob (smob); - Spanner *spanner = dynamic_cast (me); + Spanner *me = dynamic_cast (unsmob_grob (smob)); - Real line = me->paper_l ()->get_var ("stafflinethickness"); - - SCM s = me->get_grob_property ("grow-direction"); - if (!ly_dir_p (s)) + SCM s = me->get_property ("grow-direction"); + if (!is_direction (s)) { me->suicide (); return SCM_EOL; } - - Direction grow_dir = to_dir (s); + Direction grow_dir = to_dir (s); + Real padding = robust_scm2double (me->get_property ("bound-padding"), 0.5); - /* Ugh, must be same as Text_spanner::brew_molecule. */ - Real padding = gh_scm2double (me->get_grob_property ("if-text-padding")); - Drul_array broken; - Drul_array bounds ; + Drul_array bounds; Direction d = LEFT; do { - bounds[d] =spanner->get_bound (d); + bounds[d] = me->get_bound (d); broken[d] = bounds[d]->break_status_dir () != CENTER; } while (flip (&d) != LEFT); Grob *common = bounds[LEFT]->common_refpoint (bounds[RIGHT], X_AXIS); - Drul_array x_points ; - + Drul_array x_points; + do { Item *b = bounds[d]; - x_points[d] = b->relative_coordinate (common, X_AXIS); + x_points[d] = b->relative_coordinate (common, X_AXIS); if (broken [d]) { if (d == LEFT) - x_points[d] = b->extent (common,X_AXIS)[RIGHT] ; + x_points[d] = b->extent (common, X_AXIS)[RIGHT]; } else { - if (dynamic_cast (b)) + if (Text_interface::has_interface (b)) { + Interval e = b->extent (common, X_AXIS); + if (!e.is_empty ()) + x_points[d] = e[-d] - d * padding; + } + else + { + bool neighbor_found = false; + extract_grob_set (me, "adjacent-hairpins", pins); + for (int i = 0; i < pins.size (); i++) + { + /* + FIXME: this will fuck up in case of polyphonic + notes in other voices. Need to look at note-columns + in the current staff/voice. + */ + + Spanner *pin = dynamic_cast (pins[i]); + if (pin + && (pin->get_bound (LEFT)->get_column () == b->get_column () + || pin->get_bound (RIGHT)->get_column () == b->get_column ())) + neighbor_found = true; + } + /* If we're hung on a paper column, that means we're not adjacent to a text-dynamic, and we may move closer. We make the padding a little smaller, here. */ - Interval e =b->extent (common, X_AXIS); - if (e.empty_b ()) - e = Interval (0,0) + b->relative_coordinate (common, X_AXIS); - - x_points[d] = e.center () - d * padding /3; // ugh. - } - else - { - Interval e =b->extent (common, X_AXIS); - if (!e.empty_b ()) - x_points[d] = e[-d] - d*padding; + Interval e = robust_relative_extent (b, common, X_AXIS); + x_points[d] + = neighbor_found ? e.center () - d * padding / 3 : e[d]; } } } while (flip (&d) != LEFT); - Real width = x_points[RIGHT] - x_points[LEFT]; - if (width < 0) { me->warning (_ ((grow_dir < 0) ? "decrescendo too small" - : "crescendo too small")); + : "crescendo too small")); width = 0; } bool continued = broken[Direction (-grow_dir)]; - Real height = gh_scm2double (me->get_grob_property ("height")); - Real thick = line * gh_scm2double (me->get_grob_property ("thickness")); + Real height = robust_scm2double (me->get_property ("height"), 0.2) * + Staff_symbol_referencer::staff_space (me); Real starth, endh; if (grow_dir < 0) { starth = height; - endh = continued ? height/2 : 0.0; + endh = continued ? height / 2 : 0.0; } else { - starth = continued ? height/2 : 0.0; + starth = continued ? height / 2 : 0.0; endh = height; } - - /* - TODO: junk this and, make a general - - Lookup::line (XY1, XY2). - */ - SCM hairpin = scm_list_n (ly_symbol2scm ("hairpin"), - gh_double2scm (thick), - gh_double2scm (width), - gh_double2scm (starth), - gh_double2scm (endh), - SCM_UNDEFINED); /* - We make the hairpin too large in Y direction, so it stays at - proper distance from the staff. + should do relative to staff-symbol staff-space? */ - Interval yext = 2* height * Interval (-1,1); - Box b (Interval (0, width), yext); - Molecule mol (b, hairpin); - + + Stencil mol; + mol = Line_interface::line (me, Offset (0, starth), Offset (width, endh)); + mol.add_stencil (Line_interface::line (me, + Offset (0, -starth), + Offset (width, -endh))); + mol.translate_axis (x_points[LEFT] - bounds[LEFT]->relative_coordinate (common, X_AXIS), X_AXIS); - return mol.smobbed_copy (); } - +ADD_INTERFACE (Hairpin, "hairpin-interface", + "A hairpin (de)crescendo.", + "grow-direction height bound-padding adjacent-hairpins");