X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstaff-performer.cc;h=1af71efd86db801f06c6b6222e8e7d73e8eae730;hb=97a0169312a260933246ab224e4f8b0969871dd5;hp=d413a46835b8694fc1c9af157de340fb35059a88;hpb=fb2041257a9f00d4dbfab1766beefc0ef1425ea4;p=lilypond.git diff --git a/lily/staff-performer.cc b/lily/staff-performer.cc index d413a46835..1af71efd86 100644 --- a/lily/staff-performer.cc +++ b/lily/staff-performer.cc @@ -55,7 +55,6 @@ private: int get_channel (const string &instrument); Audio_staff *get_audio_staff (const string &voice); Audio_staff *new_audio_staff (const string &voice); - Audio_span_dynamic *get_dynamic (const string &voice); class Midi_control_initializer : public Midi_control_change_announcer { @@ -79,10 +78,8 @@ private: Audio_text *instrument_name_; Audio_text *name_; Audio_tempo *tempo_; - map > note_map_; map staff_map_; map channel_map_; - map dynamic_map_; // Would prefer to have the following two items be // members of the containing class Performance, // so they can be reset for each new midi file output. @@ -115,8 +112,9 @@ ADD_TRANSLATOR (Staff_performer, /* write */ ""); -Staff_performer::Staff_performer () - : channel_ (-1), +Staff_performer::Staff_performer (Context *c) + : Performer (c), + channel_ (-1), instrument_ (0), instrument_name_ (0), name_ (0), @@ -178,15 +176,6 @@ Staff_performer::get_audio_staff (const string &voice) return new_audio_staff (voice); } -Audio_span_dynamic * -Staff_performer::get_dynamic (const string &voice) -{ - map::const_iterator i = dynamic_map_.find (voice); - if (i != dynamic_map_.end ()) - return i->second; - return 0; -} - void Staff_performer::process_music () { @@ -220,21 +209,6 @@ Staff_performer::stop_translation_timestep () tempo_ = 0; instrument_name_ = 0; instrument_ = 0; - // For each voice with a note played in the current translation time step, - // check if the voice has a dynamic registered: if yes, apply the dynamic - // to every note played in the voice in the current translation time step. - for (map >::iterator vi = note_map_.begin (); - vi != note_map_.end (); ++vi) - { - Audio_span_dynamic *d = get_dynamic (vi->first); - if (d) - { - for (deque::iterator ni = vi->second.begin (); - ni != vi->second.end (); ++ni) - (*ni)->dynamic_ = d; - } - } - note_map_.clear (); } void @@ -331,19 +305,8 @@ Staff_performer::acknowledge_audio_element (Audio_element_info inf) if (Audio_item *ai = dynamic_cast (inf.elem_)) { ai->channel_ = channel_; - if (Audio_note *n = dynamic_cast (inf.elem_)) - { - // Keep track of the notes played in the current voice in this - // translation time step (for adjusting their dynamics later in - // stop_translation_timestep). - note_map_[voice].push_back (n); - } audio_staff->add_audio_item (ai); } - else if (Audio_span_dynamic *d = dynamic_cast (inf.elem_)) - { - dynamic_map_[voice] = d; - } } Staff_performer::Midi_control_initializer::Midi_control_initializer