X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fambitus-engraver.cc;h=9ceea9387c59eb09a380fd23ebeaf4b84d9601c9;hb=512fc5ece5ff691520bf93badaa0a77a46370839;hp=2d2f027c4ee4277318da5c144051d8f8a1117fec;hpb=16ac0db39d8cca1de68ce79154386764172aca10;p=lilypond.git diff --git a/lily/ambitus-engraver.cc b/lily/ambitus-engraver.cc index 2d2f027c4e..9ceea9387c 100644 --- a/lily/ambitus-engraver.cc +++ b/lily/ambitus-engraver.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2002--2012 Juergen Reuter + Copyright (C) 2002--2015 Juergen Reuter Han-Wen Nienhuys set_parent (heads_[DOWN], X_AXIS); Axis_group_interface::add_element (group_, ambitus_); @@ -128,7 +126,7 @@ Ambitus_engraver::stop_translation_timestep () int offset = robust_scm2int (get_property ("middleCOffset"), 0); start_c0_ = clef_pos + offset; - start_key_sig_ = get_property ("keySignature"); + start_key_sig_ = get_property ("keyAlterations"); is_typeset_ = true; } @@ -138,16 +136,17 @@ void Ambitus_engraver::acknowledge_note_head (Grob_info info) { Stream_event *nr = info.event_cause (); - if (nr && nr->in_event_class ("note-event")) + if (nr && nr->in_event_class ("note-event") + && !to_boolean (info.grob ()->get_property ("ignore-ambitus"))) { SCM p = nr->get_property ("pitch"); /* If the engraver is added to a percussion context, filter out unpitched note heads. */ - if (!unsmob_pitch (p)) + if (!unsmob (p)) return; - Pitch pitch = *unsmob_pitch (p); + Pitch pitch = *unsmob (p); Drul_array expands = pitch_interval_.add_point (pitch); if (expands[UP]) causes_[UP] = nr; @@ -164,8 +163,7 @@ Ambitus_engraver::finalize () Grob *accidental_placement = make_item ("AccidentalPlacement", accidentals_[DOWN]->self_scm ()); - Direction d = DOWN; - do + for (DOWN_and_UP (d)) { Pitch p = pitch_interval_[d]; heads_[d]->set_property ("cause", causes_[d]->self_scm ()); @@ -176,11 +174,11 @@ Ambitus_engraver::finalize () scm_from_int (p.get_notename ())), start_key_sig_); - if (handle == SCM_BOOL_F) + if (scm_is_false (handle)) handle = scm_assoc (scm_from_int (p.get_notename ()), start_key_sig_); - Rational sig_alter = (handle != SCM_BOOL_F) + Rational sig_alter = (scm_is_true (handle)) ? robust_scm2rational (scm_cdr (handle), Rational (0)) : Rational (0); @@ -200,24 +198,21 @@ Ambitus_engraver::finalize () Separation_item::add_conditional_item (heads_[d], accidental_placement); Accidental_placement::add_accidental (accidental_placement, - accidentals_[d]); + accidentals_[d], false, 0); Pointer_group_interface::add_grob (ambitus_, ly_symbol2scm ("note-heads"), heads_[d]); } - while (flip (&d) != DOWN); Axis_group_interface::add_element (group_, accidental_placement); } else { - Direction d = DOWN; - do + for (DOWN_and_UP (d)) { accidentals_[d]->suicide (); heads_[d]->suicide (); } - while (flip (&d) != DOWN); ambitus_->suicide (); } @@ -236,7 +231,7 @@ ADD_TRANSLATOR (Ambitus_engraver, "AmbitusNoteHead ", /* read */ - "keySignature " + "keyAlterations " "middleCClefPosition " "middleCOffset ",