X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FInstrumentation%2Fadf.cxx;h=41ee7700ed9860ce64b730839aad080f3cbdc13a;hb=dd7c88b8cb7bfd84dec3ce7dd0699a5652288b2a;hp=6da2a2ed40d1614d8f01386d6d3b3a1e0bd7fee1;hpb=cf9a520a9f404e66cef7fd1955a62127e6d31f93;p=flightgear.git diff --git a/src/Instrumentation/adf.cxx b/src/Instrumentation/adf.cxx index 6da2a2ed4..41ee7700e 100644 --- a/src/Instrumentation/adf.cxx +++ b/src/Instrumentation/adf.cxx @@ -101,6 +101,10 @@ ADF::init () _bearing_node = node->getChild("indicated-bearing-deg", 0, true); _ident_node = node->getChild("ident", 0, true); _ident_audible_node = node->getChild("ident-audible", 0, true); + _power_btn_node = node->getChild("power-btn", 0, true); + + if (_power_btn_node->getType() == simgear::props::NONE) + _power_btn_node->setBoolValue(true); // front end didn't implement a power button SGSoundMgr *smgr = globals->get_soundmgr(); _sgr = smgr->find("avionics", true); @@ -117,13 +121,19 @@ void ADF::update (double delta_time_sec) { // If it's off, don't waste any time. - if (_electrical_node->getDoubleValue() < 1.0 - || !_serviceable_node->getBoolValue()) { - set_bearing(delta_time_sec, 90); + if (_electrical_node->getDoubleValue() < 8.0 + || !_serviceable_node->getBoolValue() + || !_power_btn_node->getBoolValue() ) { _ident_node->setStringValue(""); return; } + string mode = _mode_node->getStringValue(); + if (mode == "ant" || mode == "test") set_bearing(delta_time_sec, 90); + if (mode != "bfo" && mode != "adf") { + _ident_node->setStringValue(""); + return; + } // Get the frequency int frequency_khz = _frequency_node->getIntValue(); if (frequency_khz != _last_frequency_khz) { @@ -144,11 +154,7 @@ ADF::update (double delta_time_sec) if (_time_before_search_sec < 0) search(frequency_khz, longitude_rad, latitude_rad, altitude_m); - // If it's off, don't bother. - string mode = _mode_node->getStringValue(); - if (!_transmitter_valid || (mode != "bfo" && mode != "adf")) - { - set_bearing(delta_time_sec, 90); + if (!_transmitter_valid) { _ident_node->setStringValue(""); return; } @@ -208,7 +214,6 @@ ADF::update (double delta_time_sec) } } else { _in_range_node->setBoolValue(false); - set_bearing(delta_time_sec, 90); _ident_node->setStringValue(""); _sgr->stop( _adf_ident ); }