X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fambitus-engraver.cc;h=bf95336d8a2e2f7f2ae2097ddc771e941dfe0283;hb=ac93c7dd01e0b6661c360acf89721ce9d32e4e4c;hp=bd8fd0104d73b8cbdc938af26c056cd0911ed6b4;hpb=ce6631d3228ee491574ed841abc0ae06dc22f6e4;p=lilypond.git diff --git a/lily/ambitus-engraver.cc b/lily/ambitus-engraver.cc index bd8fd0104d..bf95336d8a 100644 --- a/lily/ambitus-engraver.cc +++ b/lily/ambitus-engraver.cc @@ -4,66 +4,22 @@ source file of the GNU LilyPond music typesetter (c) 2002--2004 Juergen Reuter + + Han-Wen Nienhuys heads_; Drul_array accidentals_; Pitch_interval pitch_interval_; bool is_typeset_; int start_c0_; - Protected_scm start_key_sig_; + SCM start_key_sig_; }; +void +Ambitus_engraver::derived_mark () const +{ + scm_gc_mark (start_key_sig_); +} + void Ambitus_engraver::create_ambitus () { - ambitus_ = make_item ("Ambitus",SCM_EOL); + ambitus_ = make_item ("AmbitusLine",SCM_EOL); + group_ = make_item ("Ambitus",SCM_EOL); + Direction d = DOWN; + do + { + 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 ()); + 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); + ambitus_->set_parent (heads_[DOWN], X_AXIS); + Axis_group_interface::add_element (group_, ambitus_); + is_typeset_ = false; } @@ -95,7 +75,11 @@ Ambitus_engraver::create_ambitus () Ambitus_engraver::Ambitus_engraver () { ambitus_ = 0; + heads_[LEFT] = heads_[RIGHT] = 0; + accidentals_[LEFT] = accidentals_[RIGHT] = 0; + group_ = 0; is_typeset_ = false; + start_key_sig_ = SCM_EOL; } void @@ -127,14 +111,7 @@ Ambitus_engraver::stop_translation_timestep () start_c0_ = robust_scm2int (get_property ("middleCPosition"), 0); start_key_sig_ = get_property ("keySignature"); - Direction d = DOWN; - do - { - heads_[d] = make_item ("AmbitusNoteHead", SCM_EOL); - accidentals_[d] = make_item ("AmbitusAccidental", SCM_EOL); - heads_[d]->set_property ("accidental-grob", accidentals_[d]->self_scm ()); - } - while (flip (&d) != DOWN); + is_typeset_ = true; } } @@ -166,7 +143,7 @@ Ambitus_engraver::finalize () do { Pitch p = pitch_interval_[d]; - heads_[d]->set_property ("position", + heads_[d]->set_property ("staff-position", scm_from_int (start_c0_ + p.steps ())); @@ -174,7 +151,11 @@ Ambitus_engraver::finalize () scm_from_int (p.get_notename ())), start_key_sig_); - int sig_alter = (handle != SCM_BOOL_F) ? ly_scm2int (ly_car (handle)) : 0; + if (handle == SCM_BOOL_F) + 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; if (sig_alter == p.get_alteration ()) { accidentals_[d]->suicide(); @@ -206,7 +187,7 @@ Ambitus_engraver::finalize () ENTER_DESCRIPTION (Ambitus_engraver, /* descr */ "", -/* creats*/ "Ambitus", +/* creats*/ "Ambitus AmbitusLine AmbitusNoteHead AmbitusAccidental", /* accepts */ "", /* acks */ "note-head-interface", /* reads */ "",