X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fchord-name.cc;h=24e2ced50997092ce6a28e640c346b021b0dbe8c;hb=a4d7106c75b325441063fd9ba9c4131979784aa5;hp=e8500f9c6c8bc4fb8cb5aaab230a35de92c5635e;hpb=76f13ab50fc726c89fa7c96f3deed519d2d773dc;p=lilypond.git diff --git a/lily/chord-name.cc b/lily/chord-name.cc index e8500f9c6c..24e2ced509 100644 --- a/lily/chord-name.cc +++ b/lily/chord-name.cc @@ -7,163 +7,62 @@ */ #include "chord-name.hh" -#include "musical-request.hh" -#include "warn.hh" -#include "debug.hh" #include "molecule.hh" #include "paper-def.hh" -#include "lookup.hh" +#include "font-interface.hh" +#include "score-element.hh" +#include "paper-column.hh" +#include "line-of-score.hh" #include "staff-symbol-referencer.hh" +#include "text-item.hh" - -/* - TODO: move text lookup out of Chord_name - */ - -/* - word is roman text or styled text: - "text" - ("style" . "text") - */ - -/* - UGH. remove Dictionary< > and use Scheme_hash_table - */ -Molecule -Chord_name::ly_word2molecule (SCM word) const +MAKE_SCHEME_CALLBACK (Chord_name,after_line_breaking,1); +SCM +Chord_name::after_line_breaking (SCM smob) { - /* - junkme. - - Using the dict doesn't save code, since you have to compare - dict entries by hand later on anyway. + Item* me = dynamic_cast (unsmob_element (smob)); + assert (me); - */ - Dictionary option_dict; - if (gh_pair_p (word)) - { - SCM options = gh_cdr (word); - word = gh_car (word); - while (gh_pair_p (options)) - { - SCM option = gh_car (options); - if (gh_pair_p (option)) - { - SCM key = gh_car (option); - SCM val = gh_cdr (option); - String k; - if (gh_symbol_p (key)) - k = ly_symbol2string (key); - else if (gh_string_p (key)) - k = ly_scm2string (key); - else - continue; - option_dict[k] = val; - } - options = gh_cdr (options); - } - } - - /* - UGH. Should read from font metric structure. - */ - Real ex = lookup_l ()->text ("", "x", paper_l ()).extent(Y_AXIS).length (); - if (gh_string_p (word)) + SCM s = me->get_elt_property ("begin-of-line-visible"); + if (to_boolean (s)) { - String w = ly_scm2string (word); - Molecule mol; - Offset offset; - - int size = 0; - if (option_dict.elem_b ("size")) - size = gh_scm2int (option_dict["size"]); - - String style; - if (option_dict.elem_b ("style")) - style = ly_scm2string (option_dict["style"]); - - if (option_dict.elem_b ("type") - && ly_scm2string (option_dict["type"]) == "super") - { - Real super_y = ex / 2; - //super_y += -acc.extent (Y_AXIS)[MIN]; - offset = Offset (0, super_y); - if (!size) - size = -2; - } - if (option_dict.elem_b ("offset")) - { - // hmm - SCM s = option_dict["offset"]; - if (gh_pair_p (s)) - offset = Offset (gh_scm2double (gh_car (s)), - gh_scm2double (gh_cdr (s))) * ex; - } - if (option_dict.elem_b ("font") - && ly_scm2string (option_dict["font"]) == "feta") - mol = paper_l ()->lookup_l (size)->afm_find (w); - else - mol = paper_l ()->lookup_l (size)->text (style, w, paper_l ()); - - mol.translate (offset); - return mol; + if (Paper_column::rank_i (me->column_l ()) - + /* + hmm, what's my column number in this line? + why doesn't this work? + me->line_l ()->rank_i_ > 2) + */ + me->line_l ()->spanned_rank_iv ()[LEFT] > 1) + me->suicide (); } - return Molecule (); + return SCM_UNSPECIFIED; } -/* - ;; text: list of word - ;; word: string + optional list of property - ;; property: align, kern, font (?), size - */ -Molecule -Chord_name::ly_text2molecule (SCM text) const +MAKE_SCHEME_CALLBACK (Chord_name,brew_molecule,1); +SCM +Chord_name::brew_molecule (SCM smob) { - Molecule mol; - if (gh_list_p (text)) - { - while (gh_cdr (text) != SCM_EOL) - { - Molecule m = ly_word2molecule (gh_car (text)); - if (!m.empty_b ()) - mol.add_at_edge (X_AXIS, RIGHT, m, 0); - text = gh_cdr (text); - } - text = gh_car (text); - } - Molecule m = ly_word2molecule (text); - if (!m.empty_b ()) - mol.add_at_edge (X_AXIS, RIGHT, m, 0); - return mol; -} + Score_element *me = unsmob_element (smob); + SCM style = me->get_elt_property ("style"); -Molecule -Chord_name::do_brew_molecule () const -{ - SCM style = get_elt_property ("style"); - if (style == SCM_UNDEFINED) + if (!gh_string_p (style)) style = ly_str02scm ("banter"); - SCM inversion = get_elt_property ("inversion"); - if (inversion == SCM_UNDEFINED) - inversion = SCM_BOOL_F; + SCM chord = me-> get_elt_property ("chord"); + SCM func = me->get_elt_property (ly_symbol2scm ("chord-name-function")); + SCM text = gh_call2 (func, style, chord); - SCM bass = get_elt_property ("bass"); - if (bass == SCM_UNDEFINED) - bass = SCM_BOOL_F; + SCM properties = Font_interface::font_alist_chain (me); + Molecule mol = Text_item::text2molecule (me, text, properties); - SCM pitches = get_elt_property ("pitches"); - - SCM text = scm_eval (gh_list (ly_symbol2scm ("chord::user-name"), - style, - ly_quote_scm (pitches), - ly_quote_scm (gh_cons (inversion, bass)), - SCM_UNDEFINED)); - - return ly_text2molecule (text); -} + SCM space = me->get_elt_property ("word-space"); + if (gh_number_p (space)) + { + Molecule m; + m.set_empty (false); + mol.add_at_edge (X_AXIS, RIGHT, m, gh_scm2double (space)* + Staff_symbol_referencer::staff_space (me)); + } -Chord_name::Chord_name (SCM s) - : Item (s) -{ + return mol.smobbed_copy (); }