X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscript.cc;h=44ee942f2a71775b14010fa5223d8d14379423b9;hb=d9b43b93f2c885409bafdb157138158f65cc49aa;hp=3e78d6acd8a4d2ecd2fff26dfd522d3c61d22db7;hpb=28d97df78de5e56962730b42119c2d9b73401fa7;p=lilypond.git diff --git a/lily/script.cc b/lily/script.cc index 3e78d6acd8..44ee942f2a 100644 --- a/lily/script.cc +++ b/lily/script.cc @@ -3,69 +3,90 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2000 Han-Wen Nienhuys + (c) 1999--2002 Han-Wen Nienhuys */ #include "debug.hh" #include "script.hh" -#include "lookup.hh" +#include "font-interface.hh" #include "side-position-interface.hh" #include "paper-def.hh" -#include "dimension-cache.hh" - +#include "item.hh" +#include "molecule.hh" +#include "lookup.hh" Molecule -Script::get_molecule(Direction d) const +Script::get_molecule (Grob * me, Direction d) { - SCM s = get_elt_property ("molecule"); + SCM s = me->get_grob_property ("molecule"); assert (gh_pair_p (s)); - SCM key = gh_car (s); + SCM key = ly_car (s); if (key == ly_symbol2scm ("feta")) { - return lookup_l ()->afm_find ("scripts-" + - ly_scm2string (index_cell (gh_cdr (s), d))); + return Font_interface::get_default_font (me)->find_by_name ("scripts-" + + ly_scm2string (index_cell (ly_cdr (s), d))); } else if (key == ly_symbol2scm ("accordion")) { - return lookup_l ()->accordion (gh_cdr (s), paper_l()->get_var("interline")); + return Lookup::accordion (ly_cdr (s), 1.0, Font_interface::get_default_font (me)); } - - else assert (false); + else + assert (false); return Molecule (); } - -void -Script::before_line_breaking () +MAKE_SCHEME_CALLBACK (Script,before_line_breaking,1); +SCM +Script::before_line_breaking (SCM smob) { + Grob * me = unsmob_grob (smob); + + Direction d = Side_position_interface::get_direction (me); + + if (!d) + { /* - center my self on the note head. + we should not have `arbitrary' directions. */ - Score_element * e = parent_l(X_AXIS); - translate_axis (e->extent (X_AXIS).center (), X_AXIS); -} + programming_error ("Script direction not yet known!"); + d = DOWN; + } + + Side_position_interface::set_direction (me,d); -void -Script::after_line_breaking () -{ - Side_position_interface i (this); - Direction d = i.get_direction (); - i.set_direction (d); + return SCM_UNSPECIFIED; } -Molecule -Script::do_brew_molecule () const + +MAKE_SCHEME_CALLBACK (Script,brew_molecule,1); + +SCM +Script::brew_molecule (SCM smob) { - Direction dir = DOWN; - SCM d = get_elt_property ("direction"); - if (isdir_b (d)) - dir = to_dir (d); + Grob *me= unsmob_grob (smob); + + Direction dir = Side_position_interface::get_direction (me); + if (!dir) + { + programming_error ("Script direction not known, but molecule wanted."); + dir= DOWN; + } - return get_molecule (dir); + return get_molecule (me, dir).smobbed_copy (); } +bool +Script::has_interface (Grob*me) +{ + return me->has_interface (ly_symbol2scm ("script-interface")); +} +void +Script::set_interface (Grob*me) +{ + return me->set_interface (ly_symbol2scm ("script-interface")); +}