X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fslur.cc;h=6d0d84203ea0da8b80a2d30b5a59d7d739ccfeb5;hb=236a505268a4c008206d4cc903e908af7c02e9c4;hp=91b4e2bb2cd232c10a2f4be46d817cca24b5e23b;hpb=f6613d01ea86355ea5ce8598aac4352e11191b38;p=lilypond.git diff --git a/lily/slur.cc b/lily/slur.cc index 91b4e2bb2c..6d0d84203e 100644 --- a/lily/slur.cc +++ b/lily/slur.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1996--2011 Han-Wen Nienhuys + Copyright (C) 1996--2012 Han-Wen Nienhuys Jan Nieuwenhuizen LilyPond is free software: you can redistribute it and/or modify @@ -32,6 +32,7 @@ #include "note-column.hh" #include "output-def.hh" #include "spanner.hh" +#include "skyline-pair.hh" #include "staff-symbol-referencer.hh" #include "stem.hh" #include "text-interface.hh" @@ -100,10 +101,8 @@ Slur::pure_height (SCM smob, SCM start_scm, SCM end_scm) Interval d = encompasses[i]->pure_height (parent, start, end); if (!d.is_empty ()) { - Direction downup = DOWN; - do + for (DOWN_and_UP (downup)) ret.add_point (d[dir]); - while (flip (&downup) != DOWN); if (extremal_heights[LEFT] == infinity_f) extremal_heights[LEFT] = d[dir]; @@ -116,10 +115,8 @@ Slur::pure_height (SCM smob, SCM start_scm, SCM end_scm) Interval extremal_span; extremal_span.set_empty (); - Direction d = LEFT; - do + for (LEFT_and_RIGHT (d)) extremal_span.add_point (extremal_heights[d]); - while (flip (&d) != LEFT); ret[-dir] = minmax (dir, extremal_span[-dir], ret[-dir]); /* @@ -313,10 +310,8 @@ Slur::outside_slur_callback (SCM grob, SCM offset_scm) return offset_scm; bool contains = false; - Direction d = LEFT; - do + for (LEFT_and_RIGHT (d)) contains |= slur_wid.contains (xext[d]); - while (flip (&d) != LEFT); if (!contains) return offset_scm; @@ -334,8 +329,7 @@ Slur::outside_slur_callback (SCM grob, SCM offset_scm) Real EPS = 1.0e-5; if (avoid == ly_symbol2scm ("outside")) { - Direction d = LEFT; - do + for (LEFT_and_RIGHT (d)) { Real x = minmax (-d, xext[d], curve.control_[d == LEFT ? 0 : 3][X_AXIS] + -d * EPS); Real y = curve.get_other_coordinate (X_AXIS, x); @@ -343,14 +337,12 @@ Slur::outside_slur_callback (SCM grob, SCM offset_scm) if (do_shift) break; } - while (flip (&d) != LEFT); } else { for (int a = X_AXIS; a < NO_AXES; a++) { - Direction d = LEFT; - do + for (LEFT_and_RIGHT (d)) { vector coords = curve.get_other_coordinates (Axis (a), exts[a][d]); for (vsize i = 0; i < coords.size (); i++) @@ -362,7 +354,6 @@ Slur::outside_slur_callback (SCM grob, SCM offset_scm) if (do_shift) break; } - while (flip (&d) != LEFT); if (do_shift) break; } @@ -373,6 +364,29 @@ Slur::outside_slur_callback (SCM grob, SCM offset_scm) return scm_from_double (offset + avoidance_offset); } +MAKE_SCHEME_CALLBACK_WITH_OPTARGS (Slur, vertical_skylines, 1, 0, ""); +SCM +Slur::vertical_skylines (SCM smob) +{ + Grob *me = unsmob_grob (smob); + vector boxes; + + if (!me) + return Skyline_pair (boxes, 0.0, X_AXIS).smobbed_copy (); + + Bezier curve = Slur::get_curve (me); + vsize box_count = robust_scm2vsize (me->get_property ("skyline-quantizing"), 10); + for (vsize i = 0; i < box_count; i++) + { + Box b; + b.add_point (curve.curve_point (i * 1.0 / box_count)); + b.add_point (curve.curve_point ((i + 1) * 1.0 / box_count)); + boxes.push_back (b); + } + + return Skyline_pair (boxes, 0.0, X_AXIS).smobbed_copy (); +} + /* * Used by Slur_engraver:: and Phrasing_slur_engraver:: */ @@ -386,6 +400,12 @@ Slur::auxiliary_acknowledge_extra_object (Grob_info const &info, Grob *e = info.grob (); SCM avoid = e->get_property ("avoid-slur"); + Grob *slur; + if (end_slurs.size () && !slurs.size ()) + slur = end_slurs[0]; + else + slur = slurs[0]; + if (Tie::has_interface (e) || avoid == ly_symbol2scm ("inside")) { @@ -393,16 +413,12 @@ Slur::auxiliary_acknowledge_extra_object (Grob_info const &info, add_extra_encompass (slurs[i], e); for (vsize i = end_slurs.size (); i--;) add_extra_encompass (end_slurs[i], e); + if (slur) + e->set_object ("slur", slur->self_scm ()); } else if (avoid == ly_symbol2scm ("outside") || avoid == ly_symbol2scm ("around")) { - Grob *slur; - if (end_slurs.size () && !slurs.size ()) - slur = end_slurs[0]; - else - slur = slurs[0]; - if (slur) { chain_offset_callback (e, outside_slur_callback_proc, Y_AXIS); @@ -411,7 +427,7 @@ Slur::auxiliary_acknowledge_extra_object (Grob_info const &info, } } else if (avoid != ly_symbol2scm ("ignore")) - e->warning (_f ("Ignoring grob for slur: %s. avoid-slur not set?", + e->warning (_f ("Ignoring grob for slur: %s. avoid-slur not set?", e->name ().c_str ())); } @@ -546,8 +562,10 @@ ADD_INTERFACE (Slur, "inspect-index " "line-thickness " "note-columns " + "skyline-quantizing " "positions " "ratio " "thickness " + "vertical-skylines " );