X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstaff-performer.cc;h=7235c0486d639bcac2f1f12b7b92189648f31d91;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=31f3af6176ef91189a924c449e0fb3d7e57b4eb1;hpb=f0fe9c843e926066299c1f9a33004649f42e1f24;p=lilypond.git diff --git a/lily/staff-performer.cc b/lily/staff-performer.cc index 31f3af6176..7235c0486d 100644 --- a/lily/staff-performer.cc +++ b/lily/staff-performer.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1997--2012 Jan Nieuwenhuizen + Copyright (C) 1997--2015 Jan Nieuwenhuizen LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -46,12 +46,12 @@ protected: private: string new_instrument_string (); - void set_instrument_name (string voice); - void set_instrument (int channel, string voice); - int get_channel (string instrument); - Audio_staff *get_audio_staff (string voice); - Audio_staff *new_audio_staff (string voice); - Audio_dynamic *get_dynamic (string voice); + void set_instrument_name (const string &voice); + void set_instrument (int channel, const string &voice); + int get_channel (const string &instrument); + Audio_staff *get_audio_staff (const string &voice); + Audio_staff *new_audio_staff (const string &voice); + Audio_dynamic *get_dynamic (const string &voice); string instrument_string_; int channel_; @@ -111,7 +111,7 @@ Staff_performer::initialize () } Audio_staff * -Staff_performer::new_audio_staff (string voice) +Staff_performer::new_audio_staff (const string &voice) { Audio_staff *audio_staff = new Audio_staff; audio_staff->merge_unisons_ @@ -128,11 +128,37 @@ Staff_performer::new_audio_staff (string voice) staff_map_[voice] = audio_staff; if (!instrument_string_.empty ()) set_instrument (channel_, voice); + // Set initial values (if any) for control functions. + for (const Audio_control_function_value_change::Context_property *p + = Audio_control_function_value_change::context_properties_; + p->name_; ++p) + { + SCM value = get_property (p->name_); + if (scm_is_number (value)) + { + Real val = scm_to_double (value); + if (val >= p->range_min_ && val <= p->range_max_) + { + // Normalize the value to the 0.0 to 1.0 range. + val = ((val - p->range_min_) + / (p->range_max_ - p->range_min_)); + Audio_control_function_value_change *item + = new Audio_control_function_value_change (p->control_, val); + item->channel_ = channel_; + audio_staff->add_audio_item (item); + announce_element (Audio_element_info (item, 0)); + } + else + warning (_f ("ignoring out-of-range value change for MIDI " + "property `%s'", + p->name_)); + } + } return audio_staff; } Audio_staff * -Staff_performer::get_audio_staff (string voice) +Staff_performer::get_audio_staff (const string &voice) { SCM channel_mapping = get_property ("midiChannelMapping"); if (channel_mapping != ly_symbol2scm ("instrument") @@ -152,7 +178,7 @@ Staff_performer::get_audio_staff (string voice) } Audio_dynamic * -Staff_performer::get_dynamic (string voice) +Staff_performer::get_dynamic (const string &voice) { map::const_iterator i = dynamic_map_.find (voice); if (i != dynamic_map_.end ()) @@ -166,7 +192,7 @@ Staff_performer::process_music () } void -Staff_performer::set_instrument (int channel, string voice) +Staff_performer::set_instrument (int channel, const string &voice) { instrument_ = new Audio_instrument (instrument_string_); instrument_->channel_ = channel; @@ -179,7 +205,7 @@ Staff_performer::set_instrument (int channel, string voice) } void -Staff_performer::set_instrument_name (string voice) +Staff_performer::set_instrument_name (const string &voice) { instrument_name_ = new Audio_text (Audio_text::INSTRUMENT_NAME, instrument_string_); @@ -242,7 +268,7 @@ Staff_performer::new_instrument_string () } int -Staff_performer::get_channel (string instrument) +Staff_performer::get_channel (const string &instrument) { SCM channel_mapping = get_property ("midiChannelMapping"); map &channel_map