X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fambitus-engraver.cc;h=79605c3b6d93094c227617e54a302fd35c17e82e;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=a84f9d65ec35b4d7d2d7855ef693049a332c76ca;hpb=38f134e6a20904161c33faa37a67a7994c5e3b75;p=lilypond.git diff --git a/lily/ambitus-engraver.cc b/lily/ambitus-engraver.cc index a84f9d65ec..79605c3b6d 100644 --- a/lily/ambitus-engraver.cc +++ b/lily/ambitus-engraver.cc @@ -3,26 +3,34 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2005 Juergen Reuter + (c) 2002--2008 Juergen Reuter Han-Wen Nienhuys heads_; Drul_array accidentals_; + Drul_array causes_; Pitch_interval pitch_interval_; bool is_typeset_; int start_c0_; @@ -55,11 +64,10 @@ Ambitus_engraver::create_ambitus () heads_[d] = make_item ("AmbitusNoteHead", SCM_EOL); accidentals_[d] = make_item ("AmbitusAccidental", SCM_EOL); accidentals_[d]->set_parent (heads_[d], Y_AXIS); - heads_[d]->set_property ("accidental-grob", - accidentals_[d]->self_scm ()); + heads_[d]->set_object ("accidental-grob", + accidentals_[d]->self_scm ()); Axis_group_interface::add_element (group_, heads_[d]); Axis_group_interface::add_element (group_, accidentals_[d]); - Side_position_interface::add_support (accidentals_[d], heads_[d]); } while (flip (&d) != DOWN); @@ -83,15 +91,10 @@ void Ambitus_engraver::process_music () { /* - * Ensure that ambitus is created in the very first timestep (on - * which lily does not call start_translation_timestep ()). - * Otherwise, if a voice begins with a rest, the ambitus grob will - * be placed after the rest. + * Ensure that ambitus is created in the very first timestep */ if (!ambitus_) - { - create_ambitus (); - } + create_ambitus (); } void @@ -113,20 +116,17 @@ Ambitus_engraver::stop_translation_timestep () } void -Ambitus_engraver::acknowledge_grob (Grob_info info) +Ambitus_engraver::acknowledge_note_head (Grob_info info) { - Item *item = dynamic_cast (info.grob ()); - if (item) + Stream_event *nr = info.event_cause (); + if (nr && nr->in_event_class ("note-event")) { - if (Note_head::has_interface (info.grob ())) - { - Music *nr = info.music_cause (); - if (nr && nr->is_mus_type ("note-event")) - { - Pitch pitch = *unsmob_pitch (nr->get_property ("pitch")); - pitch_interval_.add_point (pitch); - } - } + Pitch pitch = *unsmob_pitch (nr->get_property ("pitch")); + Drul_array expands = pitch_interval_.add_point (pitch); + if (expands[UP]) + causes_[UP] = nr; + if (expands[DOWN]) + causes_[DOWN] = nr; } } @@ -135,10 +135,15 @@ Ambitus_engraver::finalize () { if (ambitus_ && !pitch_interval_.is_empty ()) { + Grob *accidental_placement = + make_item ("AccidentalPlacement", + accidentals_[DOWN]->self_scm ()); + Direction d = DOWN; do { Pitch p = pitch_interval_[d]; + heads_[d]->set_property ("cause", causes_[d]->self_scm()); heads_[d]->set_property ("staff-position", scm_from_int (start_c0_ + p.steps ())); @@ -151,25 +156,27 @@ Ambitus_engraver::finalize () handle = scm_assoc (scm_from_int (p.get_notename ()), start_key_sig_); - int sig_alter = (handle != SCM_BOOL_F) - ? scm_to_int (scm_cdr (handle)) : 0; - + Rational sig_alter = (handle != SCM_BOOL_F) + ? robust_scm2rational (scm_cdr (handle), Rational (0)) : Rational (0); + if (sig_alter == p.get_alteration ()) { accidentals_[d]->suicide (); - heads_[d]->set_property ("accidental-grob", SCM_EOL); + heads_[d]->set_object ("accidental-grob", SCM_EOL); } else { - SCM l = scm_list_1 (scm_from_int (p.get_alteration ())); - accidentals_[d]->set_property ("accidentals", l); - + accidentals_[d]->set_property ("alteration", ly_rational2scm (p.get_alteration ())); } + Separation_item::add_conditional_item (heads_[d], accidental_placement); + Accidental_placement::add_accidental (accidental_placement, accidentals_[d]); } while (flip (&d) != DOWN); - ambitus_->set_property ("note-heads", scm_list_2 (heads_[DOWN]->self_scm (), - heads_[UP]->self_scm ())); + + Pointer_group_interface::add_grob (ambitus_, ly_symbol2scm ("note-heads"), heads_[DOWN]); + Pointer_group_interface::add_grob (ambitus_, ly_symbol2scm ("note-heads"), heads_[UP]); + Axis_group_interface::add_element (group_, accidental_placement); } else { @@ -185,10 +192,21 @@ Ambitus_engraver::finalize () } } +ADD_ACKNOWLEDGER (Ambitus_engraver, note_head); ADD_TRANSLATOR (Ambitus_engraver, - /* descr */ "", - /* creats*/ "Ambitus AmbitusLine AmbitusNoteHead AmbitusAccidental", - /* accepts */ "", - /* acks */ "note-head-interface", - /* reads */ "", - /* write */ ""); + /* doc */ + "", + + /* create */ + "AccidentalPlacement " + "Ambitus " + "AmbitusAccidental " + "AmbitusLine " + "AmbitusNoteHead ", + + /* read */ + "", + + /* write */ + "" + );