From: mfranz Date: Sat, 24 Jun 2006 07:43:09 +0000 (+0000) Subject: Josh BABCOCK: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=095efc1fcf88dd8ddad5f8c6698e702e26cc5b44;p=flightgear.git Josh BABCOCK: "Here is a patch that allows marker beacon volume to be set via /instrumentation/marker-beacon/volume." --- diff --git a/src/Instrumentation/marker_beacon.cxx b/src/Instrumentation/marker_beacon.cxx index 854a4ebb9..32fa58c8e 100644 --- a/src/Instrumentation/marker_beacon.cxx +++ b/src/Instrumentation/marker_beacon.cxx @@ -41,6 +41,7 @@ SG_USING_STD(string); // Constructor FGMarkerBeacon::FGMarkerBeacon(SGPropertyNode *node) : + audio_vol(NULL), need_update(true), outer_blink(false), middle_blink(false), @@ -105,6 +106,7 @@ FGMarkerBeacon::init () bus_power = fgGetNode("/systems/electrical/outputs/nav[0]", true); power_btn = node->getChild("power-btn", 0, true); audio_btn = node->getChild("audio-btn", 0, true); + audio_vol = node->getChild("volume", 0, true); serviceable = node->getChild("serviceable", 0, true); power_btn->setBoolValue( true ); @@ -292,63 +294,72 @@ void FGMarkerBeacon::search() globals->get_soundmgr()->stop( "outer-marker" ); globals->get_soundmgr()->stop( "middle-marker" ); globals->get_soundmgr()->stop( "inner-marker" ); - } else if ( beacon_type == OUTER ) { - outer_marker = true; - // cout << "OUTER MARKER" << endl; - if ( last_beacon != OUTER ) { - if ( ! globals->get_soundmgr()->exists( "outer-marker" ) ) { - SGSoundSample *sound = beacon.get_outer(); - if ( sound ) { - sound->set_volume( 0.3 ); - globals->get_soundmgr()->add( sound, "outer-marker" ); + } else { + + string current_sound_name; + + if ( beacon_type == OUTER ) { + outer_marker = true; + current_sound_name = "outer-marker"; + // cout << "OUTER MARKER" << endl; + if ( last_beacon != OUTER ) { + if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) { + SGSoundSample *sound = beacon.get_outer(); + if ( sound ) { + globals->get_soundmgr()->add( sound, current_sound_name ); + } } } - } - if ( audio_btn->getBoolValue() ) { - if ( !globals->get_soundmgr()->is_playing("outer-marker") ) { - globals->get_soundmgr()->play_looped( "outer-marker" ); + if ( audio_btn->getBoolValue() ) { + if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) { + globals->get_soundmgr()->play_looped( current_sound_name ); + } + } else { + globals->get_soundmgr()->stop( current_sound_name ); } - } else { - globals->get_soundmgr()->stop( "outer-marker" ); - } - } else if ( beacon_type == MIDDLE ) { - middle_marker = true; - // cout << "MIDDLE MARKER" << endl; - if ( last_beacon != MIDDLE ) { - if ( ! globals->get_soundmgr()->exists( "middle-marker" ) ) { - SGSoundSample *sound = beacon.get_middle(); - if ( sound ) { - sound->set_volume( 0.3 ); - globals->get_soundmgr()->add( sound, "middle-marker" ); + } else if ( beacon_type == MIDDLE ) { + middle_marker = true; + current_sound_name = "middle-marker"; + // cout << "MIDDLE MARKER" << endl; + if ( last_beacon != MIDDLE ) { + if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) { + SGSoundSample *sound = beacon.get_middle(); + if ( sound ) { + globals->get_soundmgr()->add( sound, current_sound_name ); + } + } + } + if ( audio_btn->getBoolValue() ) { + if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) { + globals->get_soundmgr()->play_looped( current_sound_name ); } - } - } - if ( audio_btn->getBoolValue() ) { - if ( !globals->get_soundmgr()->is_playing("middle-marker") ) { - globals->get_soundmgr()->play_looped( "middle-marker" ); + } else { + globals->get_soundmgr()->stop( current_sound_name ); } - } else { - globals->get_soundmgr()->stop( "middle-marker" ); - } - } else if ( beacon_type == INNER ) { - inner_marker = true; - // cout << "INNER MARKER" << endl; - if ( last_beacon != INNER ) { - if ( ! globals->get_soundmgr()->exists( "inner-marker" ) ) { - SGSoundSample *sound = beacon.get_inner(); - if ( sound ) { - sound->set_volume( 0.3 ); - globals->get_soundmgr()->add( sound, "inner-marker" ); + } else if ( beacon_type == INNER ) { + inner_marker = true; + current_sound_name = "inner-marker"; + // cout << "INNER MARKER" << endl; + if ( last_beacon != INNER ) { + if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) { + SGSoundSample *sound = beacon.get_inner(); + if ( sound ) { + globals->get_soundmgr()->add( sound, current_sound_name ); + } + } + } + if ( audio_btn->getBoolValue() ) { + if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) { + globals->get_soundmgr()->play_looped( current_sound_name ); } - } - } - if ( audio_btn->getBoolValue() ) { - if ( !globals->get_soundmgr()->is_playing("inner-marker") ) { - globals->get_soundmgr()->play_looped( "inner-marker" ); + } else { + globals->get_soundmgr()->stop( current_sound_name ); } - } else { - globals->get_soundmgr()->stop( "inner-marker" ); } + // cout << "VOLUME " << audio_vol->getDoubleValue() << endl; + SGSoundSample * mkr = globals->get_soundmgr()->find( current_sound_name ); + if (mkr) + mkr->set_volume( audio_vol->getDoubleValue() ); } if ( inrange ) { diff --git a/src/Instrumentation/marker_beacon.hxx b/src/Instrumentation/marker_beacon.hxx index 357728237..773542630 100644 --- a/src/Instrumentation/marker_beacon.hxx +++ b/src/Instrumentation/marker_beacon.hxx @@ -52,6 +52,7 @@ class FGMarkerBeacon : public SGSubsystem SGPropertyNode_ptr bus_power; SGPropertyNode_ptr power_btn; SGPropertyNode_ptr audio_btn; + SGPropertyNode_ptr audio_vol; SGPropertyNode_ptr serviceable; SGPropertyNode_ptr sound_pause;