X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstaff-symbol-referencer.cc;h=e8ef99f9dd3e180d4e386e2c490fd62f72f465bc;hb=37ca1f80bf5401accd17056938f4f7b2c147ddb2;hp=1a729e1e0f77c70b82d269da1694f53636458a0b;hpb=9106e3bd374198c5457c35181ae1d66b3ec95236;p=lilypond.git diff --git a/lily/staff-symbol-referencer.cc b/lily/staff-symbol-referencer.cc index 1a729e1e0f..e8ef99f9dd 100644 --- a/lily/staff-symbol-referencer.cc +++ b/lily/staff-symbol-referencer.cc @@ -3,13 +3,13 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2005 Han-Wen Nienhuys + (c) 1999--2007 Han-Wen Nienhuys */ #include "staff-symbol-referencer.hh" - #include "staff-symbol.hh" +#include "grob.hh" #include "output-def.hh" #include "libc-extension.hh" @@ -21,22 +21,30 @@ Staff_symbol_referencer::line_count (Grob *me) } bool -Staff_symbol_referencer::on_staffline (Grob *me) +Staff_symbol_referencer::on_line (Grob *me) { - return on_staffline (me, (int) rint (get_position (me))); + return on_line (me, (int) rint (get_position (me))); +} + +bool +Staff_symbol_referencer::on_staff_line (Grob *me) +{ + return on_staff_line (me, (int) rint (get_position (me))); } -/* - This does not take size into account. - maybe rename: on_virtual_staffline, on_staff_or_ledger_line? -*/ bool -Staff_symbol_referencer::on_staffline (Grob *me, int pos) +Staff_symbol_referencer::on_line (Grob *me, int pos) { int sz = line_count (me) - 1; return ((pos + sz) % 2) == 0; } +bool +Staff_symbol_referencer::on_staff_line (Grob *me, int pos) +{ + return on_line (me, pos) && abs (pos) <= 2 * staff_radius (me); +} + Grob * Staff_symbol_referencer::get_staff_symbol (Grob *me) { @@ -62,7 +70,7 @@ Staff_symbol_referencer::line_thickness (Grob *me) Grob *st = get_staff_symbol (me); if (st) return Staff_symbol::get_line_thickness (st); - return me->get_layout ()->get_dimension (ly_symbol2scm ("linethickness")); + return me->layout ()->get_dimension (ly_symbol2scm ("line-thickness")); } Real @@ -84,25 +92,29 @@ Staff_symbol_referencer::get_position (Grob *me) return robust_scm2double (me->get_property ("staff-position"), p); } -int -Staff_symbol_referencer::get_rounded_position (Grob *me) + +Interval +Staff_symbol_referencer::extent_in_staff (Grob *me) { - return int (rint (get_position (me))); + Grob *st = get_staff_symbol (me); + Grob *c = st ? me->common_refpoint (st, Y_AXIS) : 0; + + Interval retval; + if (st && c) + { + retval = me->extent (c, Y_AXIS) + - st->relative_coordinate (c, Y_AXIS); + } + + return retval; } -LY_DEFINE (ly_grob_staff_position, "ly:grob-staff-position", - 1, 0, 0, (SCM sg), - "Return the Y-position of @var{sg} relative to the staff.") -{ - Grob *g = unsmob_grob (sg); - SCM_ASSERT_TYPE (g, sg, SCM_ARG1, __FUNCTION__, "grob"); - Real pos = Staff_symbol_referencer::get_position (g); - if (fabs (rint (pos) -pos) < 1e-6) // ugh. - return scm_from_int ((int) my_round (pos)); - else - return scm_from_double (pos); +int +Staff_symbol_referencer::get_rounded_position (Grob *me) +{ + return int (rint (get_position (me))); } MAKE_SCHEME_CALLBACK (Staff_symbol_referencer, callback, 1); @@ -117,7 +129,6 @@ Staff_symbol_referencer::callback (SCM smob) { Real space = Staff_symbol_referencer::staff_space (me); off = scm_to_double (pos) * space / 2.0; - me->set_property ("staff-position", scm_from_int (0)); } return scm_from_double (off); @@ -164,10 +175,19 @@ compare_position (Grob *const &a, Grob *const &b) - Staff_symbol_referencer::get_position ((Grob *) b)); } -ADD_INTERFACE (Staff_symbol_referencer, "staff-symbol-referencer-interface", - "An object whose Y position is meant relative to a staff " - "symbol. " - "These usually have @code{Staff_symbol_referencer::callback} " - "in their @code{Y-offset-callbacks}. ", - "staff-position"); +bool +position_less (Grob *const &a, Grob *const &b) +{ + return Staff_symbol_referencer::get_position (a) + < Staff_symbol_referencer::get_position (b); +} + +ADD_INTERFACE (Staff_symbol_referencer, + "An object whose Y@tie{}position is meant relative to a staff" + " symbol. These usually" + " have @code{Staff_symbol_referencer::callback} in their" + " @code{Y-offset-callbacks}.", + /* properties */ + "staff-position " + );