X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Fkey-signature-interface.cc;h=375bac59b323a982f55c12b79d8a61395e28c285;hb=5eedf005834d8d3fdc64aee2554a9936c3ef1f57;hp=e0a21b85d7356d1e17b23d28e7fb12eaefe5d2ee;hpb=765d8e8dfee2fcc86493d8e01463947762079dbf;p=lilypond.git diff --git a/lily/key-signature-interface.cc b/lily/key-signature-interface.cc index e0a21b85d7..375bac59b3 100644 --- a/lily/key-signature-interface.cc +++ b/lily/key-signature-interface.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1996--2004 Han-Wen Nienhuys + (c) 1996--2005 Han-Wen Nienhuys keyplacement by Mats Bengtsson */ @@ -17,25 +17,21 @@ struct Key_signature_interface { - DECLARE_SCHEME_CALLBACK (print, (SCM )); + DECLARE_SCHEME_CALLBACK (print, (SCM)); - static bool has_interface (Grob*); + static bool has_interface (Grob *); }; - /* FIXME: too much hardcoding here. - */ -const int FLAT_TOP_PITCH =2; /* fes,ges,as and bes typeset in lower octave */ -const int SHARP_TOP_PITCH =4; /* ais and bis typeset in lower octave */ +*/ +const int FLAT_TOP_PITCH = 2; /* fes, ges, as and bes typeset in lower octave */ +const int SHARP_TOP_PITCH = 4; /* ais and bis typeset in lower octave */ /* - TODO: look this up. I'm not sure where the naturals ought to go. - */ -const int NATURAL_TOP_PITCH = 4; - - - + TODO: look this up. I'm not sure where the naturals ought to go. +*/ +const int NATURAL_TOP_PITCH = 4; /* FIXME: key-item should just get a list of (position, acc), and leave @@ -43,11 +39,10 @@ const int NATURAL_TOP_PITCH = 4; - TODO: put this in Scheme - TODO: can we do without c0pos? it's partly musical. - + TODO: can we do without c0pos? it's partly musical. */ int -alteration_pos (SCM what, int alter, int c0p) +alteration_pos (SCM what, int alter, int c0p) { if (scm_is_pair (what)) return scm_to_int (scm_car (what)) * 7 + scm_to_int (scm_cdr (what)) + c0p; @@ -60,41 +55,40 @@ alteration_pos (SCM what, int alter, int c0p) from_bottom_pos = (from_bottom_pos + 7)%7; // Precaution to get positive. int c0 = from_bottom_pos - 4; - - if ((alter <0 && ((p>FLAT_TOP_PITCH) || (p+c0>4)) && (p+c0>1)) - || (alter >0 && ((p > SHARP_TOP_PITCH) || (p+c0>5)) && (p+c0>2)) - || (alter == 0 && ((p > NATURAL_TOP_PITCH) || (p + c0>5)) && (p + c0>2))) + if ((alter < 0 && ((p > FLAT_TOP_PITCH) || (p + c0 > 4)) && (p + c0 > 1)) + || (alter > 0 && ((p > SHARP_TOP_PITCH) || (p + c0 > 5)) && (p + c0 > 2)) + || (alter == 0 && ((p > NATURAL_TOP_PITCH) || (p + c0 > 5)) && (p + c0 > 2))) { p -= 7; /* Typeset below c_position */ } - - /* Provide for the four cases in which there's a glitch - it's a hack, but probably not worth - the effort of finding a nicer solution. - --dl. */ - if (c0==2 && alter >0 && p ==3) + + /* Provide for the four cases in which there's a glitch + it's a hack, but probably not worth + the effort of finding a nicer solution. + --dl. */ + if (c0 == 2 && alter > 0 && p == 3) p -= 7; - if (c0==-3 && alter>0 && p ==-1) + if (c0==-3 && alter > 0 && p ==-1) p += 7; - if (c0==-4 && alter<0 && p ==-1) + if (c0==-4 && alter < 0 && p ==-1) p += 7; - if (c0==-2 && alter<0 && p ==-3) + if (c0==-2 && alter < 0 && p ==-3) p += 7; - + return p + c0; } /* TODO - space the `natural' signs wider - */ -MAKE_SCHEME_CALLBACK (Key_signature_interface,print,1); +*/ +MAKE_SCHEME_CALLBACK (Key_signature_interface, print, 1); SCM Key_signature_interface::print (SCM smob) { - Grob*me = unsmob_grob (smob); + Grob *me = unsmob_grob (smob); - Real inter = Staff_symbol_referencer::staff_space (me)/2.0; + Real inter = Staff_symbol_referencer::staff_space (me) / 2.0; SCM scm_style = me->get_property ("style"); String style; @@ -107,7 +101,7 @@ Key_signature_interface::print (SCM smob) style = ""; } - SCM newas = me->get_property ("new-accidentals"); + SCM newas = me->get_property ("new-accidentals"); Stencil mol; SCM c0s = me->get_property ("c0-position"); @@ -124,8 +118,8 @@ Key_signature_interface::print (SCM smob) for (SCM s = newas; scm_is_pair (s); s = scm_cdr (s)) { int alteration = scm_to_int (scm_cdar (s)); - String font_char = - Accidental_interface::get_fontcharname (style, alteration); + String font_char + = Accidental_interface::get_fontcharname (style, alteration); Stencil acc (fm->find_by_name ("accidentals." + font_char)); if (acc.is_empty ()) @@ -141,20 +135,19 @@ Key_signature_interface::print (SCM smob) } } - Item *it = dynamic_cast (me) ; + Item *it = dynamic_cast (me); if (it->break_status_dir () != RIGHT) { SCM old = me->get_property ("old-accidentals"); - + Stencil natural; if (scm_is_pair (old)) natural = Font_interface::get_default_font (me)-> - find_by_name (String ("accidentals.") + style + String ("0")); - + find_by_name (String ("accidentals.") + style + String ("0")); int last_pos = -100; for (; scm_is_pair (old); old = scm_cdr (old)) - { + { SCM found = scm_assoc (scm_caar (old), newas); if (found == SCM_BOOL_F || scm_cdr (found) != scm_cdar (old)) @@ -164,29 +157,29 @@ Key_signature_interface::print (SCM smob) int pos = alteration_pos (what, alteration, c0p); Stencil m = natural; - m.translate_axis (pos* inter, Y_AXIS); + m.translate_axis (pos * inter, Y_AXIS); /* The natural sign (unlike flat & sharp) has vertical edges on both sides. A little padding is needed to prevent collisions. - */ + */ Real padding = 0.0; if (last_pos < pos + 2 - && last_pos> pos - 6) + && last_pos > pos - 6) padding = 0.3; - + mol.add_at_edge (X_AXIS, LEFT, m, padding, 0); last_pos = pos; - } - } + } + } } mol.align_to (X_AXIS, LEFT); - + return mol.smobbed_copy (); } ADD_INTERFACE (Key_signature_interface, "key-signature-interface", - "A group of accidentals, to be printed as signature sign.", - "style c0-position old-accidentals new-accidentals"); + "A group of accidentals, to be printed as signature sign.", + "style c0-position old-accidentals new-accidentals");