2004-11-19 23:10:44 +00:00
|
|
|
// navradio.cxx -- class to manage a nav radio instance
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 - 2002 Curtis L. Olson - http://www.flightgear.org/~curt
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-11-19 23:10:44 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <simgear/sg_inlines.h>
|
2008-08-03 14:34:42 +00:00
|
|
|
#include <simgear/timing/sg_time.hxx>
|
2004-11-19 23:10:44 +00:00
|
|
|
#include <simgear/math/vector.hxx>
|
2008-08-03 14:34:42 +00:00
|
|
|
#include <simgear/math/sg_random.h>
|
2008-12-25 23:11:43 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2008-08-03 14:34:42 +00:00
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
2008-07-29 08:27:48 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
#include <Navaids/navlist.hxx>
|
2008-08-28 21:24:02 +00:00
|
|
|
#include <Main/util.hxx>
|
2004-11-19 23:10:44 +00:00
|
|
|
#include "navradio.hxx"
|
|
|
|
|
2008-07-27 16:25:13 +00:00
|
|
|
using std::string;
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
// Constructor
|
|
|
|
FGNavRadio::FGNavRadio(SGPropertyNode *node) :
|
|
|
|
lon_node(fgGetNode("/position/longitude-deg", true)),
|
|
|
|
lat_node(fgGetNode("/position/latitude-deg", true)),
|
|
|
|
alt_node(fgGetNode("/position/altitude-ft", true)),
|
2006-01-02 23:01:45 +00:00
|
|
|
is_valid_node(NULL),
|
2005-12-28 17:26:57 +00:00
|
|
|
power_btn_node(NULL),
|
|
|
|
freq_node(NULL),
|
|
|
|
alt_freq_node(NULL),
|
|
|
|
sel_radial_node(NULL),
|
|
|
|
vol_btn_node(NULL),
|
|
|
|
ident_btn_node(NULL),
|
|
|
|
audio_btn_node(NULL),
|
2006-07-21 19:37:04 +00:00
|
|
|
backcourse_node(NULL),
|
2005-12-28 18:05:03 +00:00
|
|
|
nav_serviceable_node(NULL),
|
|
|
|
cdi_serviceable_node(NULL),
|
|
|
|
gs_serviceable_node(NULL),
|
|
|
|
tofrom_serviceable_node(NULL),
|
2006-07-18 21:35:11 +00:00
|
|
|
fmt_freq_node(NULL),
|
|
|
|
fmt_alt_freq_node(NULL),
|
2005-12-28 17:26:57 +00:00
|
|
|
heading_node(NULL),
|
|
|
|
radial_node(NULL),
|
|
|
|
recip_radial_node(NULL),
|
|
|
|
target_radial_true_node(NULL),
|
|
|
|
target_auto_hdg_node(NULL),
|
2005-12-28 21:45:43 +00:00
|
|
|
time_to_intercept(NULL),
|
2005-12-28 17:26:57 +00:00
|
|
|
to_flag_node(NULL),
|
|
|
|
from_flag_node(NULL),
|
|
|
|
inrange_node(NULL),
|
2008-08-28 21:24:02 +00:00
|
|
|
signal_quality_norm_node(NULL),
|
2005-12-28 17:26:57 +00:00
|
|
|
cdi_deflection_node(NULL),
|
|
|
|
cdi_xtrack_error_node(NULL),
|
2005-12-28 21:45:43 +00:00
|
|
|
cdi_xtrack_hdg_err_node(NULL),
|
2005-12-28 17:26:57 +00:00
|
|
|
has_gs_node(NULL),
|
|
|
|
loc_node(NULL),
|
|
|
|
loc_dist_node(NULL),
|
|
|
|
gs_deflection_node(NULL),
|
|
|
|
gs_rate_of_climb_node(NULL),
|
|
|
|
gs_dist_node(NULL),
|
2005-12-28 19:11:30 +00:00
|
|
|
nav_id_node(NULL),
|
2005-12-28 17:26:57 +00:00
|
|
|
id_c1_node(NULL),
|
|
|
|
id_c2_node(NULL),
|
|
|
|
id_c3_node(NULL),
|
|
|
|
id_c4_node(NULL),
|
2005-12-28 18:05:03 +00:00
|
|
|
nav_slaved_to_gps_node(NULL),
|
|
|
|
gps_cdi_deflection_node(NULL),
|
|
|
|
gps_to_flag_node(NULL),
|
|
|
|
gps_from_flag_node(NULL),
|
2009-04-09 15:36:42 +00:00
|
|
|
gps_has_gs_node(NULL),
|
2005-12-28 19:11:30 +00:00
|
|
|
last_nav_id(""),
|
2004-11-19 23:10:44 +00:00
|
|
|
last_nav_vor(false),
|
2005-12-28 18:05:03 +00:00
|
|
|
play_count(0),
|
|
|
|
last_time(0),
|
2005-12-28 19:11:30 +00:00
|
|
|
radial(0.0),
|
2005-12-28 18:05:03 +00:00
|
|
|
target_radial(0.0),
|
2004-11-19 23:10:44 +00:00
|
|
|
horiz_vel(0.0),
|
|
|
|
last_x(0.0),
|
2005-12-28 21:45:43 +00:00
|
|
|
last_loc_dist(0.0),
|
|
|
|
last_xtrack_error(0.0),
|
2006-12-06 22:11:43 +00:00
|
|
|
_name(node->getStringValue("name", "nav")),
|
|
|
|
_num(node->getIntValue("number", 0)),
|
2005-08-22 17:49:50 +00:00
|
|
|
_time_before_search_sec(-1.0)
|
2004-11-19 23:10:44 +00:00
|
|
|
{
|
|
|
|
SGPath path( globals->get_fg_root() );
|
|
|
|
SGPath term = path;
|
|
|
|
term.append( "Navaids/range.term" );
|
|
|
|
SGPath low = path;
|
|
|
|
low.append( "Navaids/range.low" );
|
|
|
|
SGPath high = path;
|
|
|
|
high.append( "Navaids/range.high" );
|
|
|
|
|
|
|
|
term_tbl = new SGInterpTable( term.str() );
|
|
|
|
low_tbl = new SGInterpTable( low.str() );
|
|
|
|
high_tbl = new SGInterpTable( high.str() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
FGNavRadio::~FGNavRadio()
|
|
|
|
{
|
|
|
|
delete term_tbl;
|
|
|
|
delete low_tbl;
|
|
|
|
delete high_tbl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FGNavRadio::init ()
|
|
|
|
{
|
|
|
|
morse.init();
|
|
|
|
|
|
|
|
string branch;
|
2006-12-06 22:11:43 +00:00
|
|
|
branch = "/instrumentation/" + _name;
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2006-12-06 22:11:43 +00:00
|
|
|
SGPropertyNode *node = fgGetNode(branch.c_str(), _num, true );
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 17:26:57 +00:00
|
|
|
bus_power_node =
|
2006-12-06 22:11:43 +00:00
|
|
|
fgGetNode(("/systems/electrical/outputs/" + _name).c_str(), true);
|
2005-12-28 16:53:19 +00:00
|
|
|
|
|
|
|
// inputs
|
2006-01-02 23:01:45 +00:00
|
|
|
is_valid_node = node->getChild("data-is-valid", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
power_btn_node = node->getChild("power-btn", 0, true);
|
|
|
|
power_btn_node->setBoolValue( true );
|
|
|
|
vol_btn_node = node->getChild("volume", 0, true);
|
|
|
|
ident_btn_node = node->getChild("ident", 0, true);
|
|
|
|
ident_btn_node->setBoolValue( true );
|
|
|
|
audio_btn_node = node->getChild("audio-btn", 0, true);
|
|
|
|
audio_btn_node->setBoolValue( true );
|
2006-07-21 19:37:04 +00:00
|
|
|
backcourse_node = node->getChild("back-course-btn", 0, true);
|
|
|
|
backcourse_node->setBoolValue( false );
|
2005-12-28 18:05:03 +00:00
|
|
|
nav_serviceable_node = node->getChild("serviceable", 0, true);
|
|
|
|
cdi_serviceable_node = (node->getChild("cdi", 0, true))
|
|
|
|
->getChild("serviceable", 0, true);
|
|
|
|
gs_serviceable_node = (node->getChild("gs", 0, true))
|
|
|
|
->getChild("serviceable");
|
|
|
|
tofrom_serviceable_node = (node->getChild("to-from", 0, true))
|
|
|
|
->getChild("serviceable", 0, true);
|
2005-12-28 16:53:19 +00:00
|
|
|
|
|
|
|
// frequencies
|
|
|
|
SGPropertyNode *subnode = node->getChild("frequencies", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
freq_node = subnode->getChild("selected-mhz", 0, true);
|
|
|
|
alt_freq_node = subnode->getChild("standby-mhz", 0, true);
|
|
|
|
fmt_freq_node = subnode->getChild("selected-mhz-fmt", 0, true);
|
|
|
|
fmt_alt_freq_node = subnode->getChild("standby-mhz-fmt", 0, true);
|
2005-12-28 16:53:19 +00:00
|
|
|
|
|
|
|
// radials
|
|
|
|
subnode = node->getChild("radials", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
sel_radial_node = subnode->getChild("selected-deg", 0, true);
|
|
|
|
radial_node = subnode->getChild("actual-deg", 0, true);
|
|
|
|
recip_radial_node = subnode->getChild("reciprocal-radial-deg", 0, true);
|
|
|
|
target_radial_true_node = subnode->getChild("target-radial-deg", 0, true);
|
|
|
|
target_auto_hdg_node = subnode->getChild("target-auto-hdg-deg", 0, true);
|
2005-12-28 16:53:19 +00:00
|
|
|
|
|
|
|
// outputs
|
2005-12-28 17:26:57 +00:00
|
|
|
heading_node = node->getChild("heading-deg", 0, true);
|
2005-12-28 21:45:43 +00:00
|
|
|
time_to_intercept = node->getChild("time-to-intercept-sec", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
to_flag_node = node->getChild("to-flag", 0, true);
|
|
|
|
from_flag_node = node->getChild("from-flag", 0, true);
|
|
|
|
inrange_node = node->getChild("in-range", 0, true);
|
2008-08-28 21:24:02 +00:00
|
|
|
signal_quality_norm_node = node->getChild("signal-quality-norm", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
cdi_deflection_node = node->getChild("heading-needle-deflection", 0, true);
|
|
|
|
cdi_xtrack_error_node = node->getChild("crosstrack-error-m", 0, true);
|
2005-12-28 21:45:43 +00:00
|
|
|
cdi_xtrack_hdg_err_node
|
|
|
|
= node->getChild("crosstrack-heading-error-deg", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
has_gs_node = node->getChild("has-gs", 0, true);
|
|
|
|
loc_node = node->getChild("nav-loc", 0, true);
|
|
|
|
loc_dist_node = node->getChild("nav-distance", 0, true);
|
|
|
|
gs_deflection_node = node->getChild("gs-needle-deflection", 0, true);
|
|
|
|
gs_rate_of_climb_node = node->getChild("gs-rate-of-climb", 0, true);
|
|
|
|
gs_dist_node = node->getChild("gs-distance", 0, true);
|
2005-12-28 19:11:30 +00:00
|
|
|
nav_id_node = node->getChild("nav-id", 0, true);
|
2005-12-28 17:26:57 +00:00
|
|
|
id_c1_node = node->getChild("nav-id_asc1", 0, true);
|
|
|
|
id_c2_node = node->getChild("nav-id_asc2", 0, true);
|
|
|
|
id_c3_node = node->getChild("nav-id_asc3", 0, true);
|
|
|
|
id_c4_node = node->getChild("nav-id_asc4", 0, true);
|
|
|
|
|
2005-12-28 18:05:03 +00:00
|
|
|
// gps slaving support
|
2005-12-28 17:26:57 +00:00
|
|
|
nav_slaved_to_gps_node = node->getChild("slaved-to-gps", 0, true);
|
|
|
|
gps_cdi_deflection_node = fgGetNode("/instrumentation/gps/cdi-deflection", true);
|
|
|
|
gps_to_flag_node = fgGetNode("/instrumentation/gps/to-flag", true);
|
|
|
|
gps_from_flag_node = fgGetNode("/instrumentation/gps/from-flag", true);
|
2009-04-09 15:36:42 +00:00
|
|
|
gps_has_gs_node = fgGetNode("/instrumentation/gps/has-gs", true);
|
2005-11-29 22:46:07 +00:00
|
|
|
|
2004-12-03 21:21:16 +00:00
|
|
|
std::ostringstream temp;
|
2006-12-06 22:11:43 +00:00
|
|
|
temp << _name << "nav-ident" << _num;
|
2004-12-03 21:21:16 +00:00
|
|
|
nav_fx_name = temp.str();
|
2006-12-06 22:11:43 +00:00
|
|
|
temp << _name << "dme-ident" << _num;
|
2004-12-03 21:21:16 +00:00
|
|
|
dme_fx_name = temp.str();
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FGNavRadio::bind ()
|
|
|
|
{
|
|
|
|
std::ostringstream temp;
|
|
|
|
string branch;
|
2006-12-06 22:11:43 +00:00
|
|
|
temp << _num;
|
|
|
|
branch = "/instrumentation/" + _name + "[" + temp.str() + "]";
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FGNavRadio::unbind ()
|
|
|
|
{
|
|
|
|
std::ostringstream temp;
|
|
|
|
string branch;
|
2006-12-06 22:11:43 +00:00
|
|
|
temp << _num;
|
|
|
|
branch = "/instrumentation/" + _name + "[" + temp.str() + "]";
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// model standard VOR/DME/TACAN service volumes as per AIM 1-1-8
|
|
|
|
double FGNavRadio::adjustNavRange( double stationElev, double aircraftElev,
|
|
|
|
double nominalRange )
|
|
|
|
{
|
|
|
|
// extend out actual usable range to be 1.3x the published safe range
|
|
|
|
const double usability_factor = 1.3;
|
|
|
|
|
|
|
|
// assumptions we model the standard service volume, plus
|
|
|
|
// ... rather than specifying a cylinder, we model a cone that
|
|
|
|
// contains the cylinder. Then we put an upside down cone on top
|
|
|
|
// to model diminishing returns at too-high altitudes.
|
|
|
|
|
|
|
|
// altitude difference
|
|
|
|
double alt = ( aircraftElev * SG_METER_TO_FEET - stationElev );
|
|
|
|
// cout << "aircraft elev = " << aircraftElev * SG_METER_TO_FEET
|
|
|
|
// << " station elev = " << stationElev << endl;
|
|
|
|
|
|
|
|
if ( nominalRange < 25.0 + SG_EPSILON ) {
|
|
|
|
// Standard Terminal Service Volume
|
|
|
|
return term_tbl->interpolate( alt ) * usability_factor;
|
|
|
|
} else if ( nominalRange < 50.0 + SG_EPSILON ) {
|
|
|
|
// Standard Low Altitude Service Volume
|
|
|
|
// table is based on range of 40, scale to actual range
|
|
|
|
return low_tbl->interpolate( alt ) * nominalRange / 40.0
|
|
|
|
* usability_factor;
|
|
|
|
} else {
|
|
|
|
// Standard High Altitude Service Volume
|
|
|
|
// table is based on range of 130, scale to actual range
|
|
|
|
return high_tbl->interpolate( alt ) * nominalRange / 130.0
|
|
|
|
* usability_factor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// model standard ILS service volumes as per AIM 1-1-9
|
|
|
|
double FGNavRadio::adjustILSRange( double stationElev, double aircraftElev,
|
|
|
|
double offsetDegrees, double distance )
|
|
|
|
{
|
|
|
|
// assumptions we model the standard service volume, plus
|
|
|
|
|
|
|
|
// altitude difference
|
|
|
|
// double alt = ( aircraftElev * SG_METER_TO_FEET - stationElev );
|
|
|
|
// double offset = fabs( offsetDegrees );
|
|
|
|
|
|
|
|
// if ( offset < 10 ) {
|
|
|
|
// return FG_ILS_DEFAULT_RANGE;
|
|
|
|
// } else if ( offset < 35 ) {
|
|
|
|
// return 10 + (35 - offset) * (FG_ILS_DEFAULT_RANGE - 10) / 25;
|
|
|
|
// } else if ( offset < 45 ) {
|
|
|
|
// return (45 - offset);
|
|
|
|
// } else if ( offset > 170 ) {
|
|
|
|
// return FG_ILS_DEFAULT_RANGE;
|
|
|
|
// } else if ( offset > 145 ) {
|
|
|
|
// return 10 + (offset - 145) * (FG_ILS_DEFAULT_RANGE - 10) / 25;
|
|
|
|
// } else if ( offset > 135 ) {
|
|
|
|
// return (offset - 135);
|
|
|
|
// } else {
|
|
|
|
// return 0;
|
|
|
|
// }
|
|
|
|
return FG_LOC_DEFAULT_RANGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2004-11-19 23:10:44 +00:00
|
|
|
// Update the various nav values based on position and valid tuned in navs
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2004-11-19 23:10:44 +00:00
|
|
|
void
|
|
|
|
FGNavRadio::update(double dt)
|
|
|
|
{
|
2006-01-02 23:01:45 +00:00
|
|
|
// Do a nav station search only once a second to reduce
|
|
|
|
// unnecessary work. (Also, make sure to do this before caching
|
|
|
|
// any values!)
|
|
|
|
_time_before_search_sec -= dt;
|
|
|
|
if ( _time_before_search_sec < 0 ) {
|
|
|
|
search();
|
|
|
|
}
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
// cache a few strategic values locally for speed
|
2006-06-15 19:16:21 +00:00
|
|
|
SGGeod pos = SGGeod::fromDegFt(lon_node->getDoubleValue(),
|
|
|
|
lat_node->getDoubleValue(),
|
|
|
|
alt_node->getDoubleValue());
|
2005-12-28 19:11:30 +00:00
|
|
|
bool power_btn = power_btn_node->getBoolValue();
|
|
|
|
bool nav_serviceable = nav_serviceable_node->getBoolValue();
|
|
|
|
bool cdi_serviceable = cdi_serviceable_node->getBoolValue();
|
|
|
|
bool tofrom_serviceable = tofrom_serviceable_node->getBoolValue();
|
2009-04-09 15:36:42 +00:00
|
|
|
bool inrange = false;
|
|
|
|
bool has_gs = false;
|
|
|
|
if ( nav_slaved_to_gps_node->getBoolValue() ) {
|
|
|
|
has_gs = gps_has_gs_node->getBoolValue();
|
2009-04-10 18:40:54 +00:00
|
|
|
has_gs_node->setBoolValue( has_gs );
|
2009-04-09 15:36:42 +00:00
|
|
|
inrange = gps_to_flag_node->getBoolValue()
|
|
|
|
|| gps_from_flag_node->getBoolValue();
|
|
|
|
} else {
|
|
|
|
has_gs = has_gs_node->getBoolValue();
|
|
|
|
inrange = inrange_node->getBoolValue();
|
|
|
|
}
|
2005-12-28 19:11:30 +00:00
|
|
|
bool is_loc = loc_node->getBoolValue();
|
|
|
|
double loc_dist = loc_dist_node->getDoubleValue();
|
2008-08-28 21:24:02 +00:00
|
|
|
double effective_range_m;
|
|
|
|
double signal_quality_norm = signal_quality_norm_node->getDoubleValue();
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
double az1, az2, s;
|
|
|
|
|
2005-01-19 02:11:28 +00:00
|
|
|
// Create "formatted" versions of the nav frequencies for
|
2005-12-28 21:45:43 +00:00
|
|
|
// instrument displays.
|
2005-01-19 02:11:28 +00:00
|
|
|
char tmp[16];
|
2005-12-28 17:26:57 +00:00
|
|
|
sprintf( tmp, "%.2f", freq_node->getDoubleValue() );
|
|
|
|
fmt_freq_node->setStringValue(tmp);
|
|
|
|
sprintf( tmp, "%.2f", alt_freq_node->getDoubleValue() );
|
|
|
|
fmt_alt_freq_node->setStringValue(tmp);
|
2005-01-19 02:11:28 +00:00
|
|
|
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << "is_valid = " << is_valid
|
2005-12-28 19:11:30 +00:00
|
|
|
// << " power_btn = " << power_btn
|
2005-12-28 17:26:57 +00:00
|
|
|
// << " bus_power = " << bus_power_node->getDoubleValue()
|
2005-12-28 19:11:30 +00:00
|
|
|
// << " nav_serviceable = " << nav_serviceable
|
2004-12-30 14:57:12 +00:00
|
|
|
// << endl;
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
if ( is_valid && power_btn && (bus_power_node->getDoubleValue() > 1.0)
|
2005-12-28 19:11:30 +00:00
|
|
|
&& nav_serviceable )
|
2004-11-19 23:10:44 +00:00
|
|
|
{
|
2006-06-15 19:16:21 +00:00
|
|
|
SGVec3d aircraft = SGVec3d::fromGeod(pos);
|
|
|
|
loc_dist = dist(aircraft, nav_xyz);
|
2005-12-28 19:11:30 +00:00
|
|
|
loc_dist_node->setDoubleValue( loc_dist );
|
2006-06-21 21:23:20 +00:00
|
|
|
// cout << "dt = " << dt << " dist = " << loc_dist << endl;
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( has_gs ) {
|
2004-11-19 23:10:44 +00:00
|
|
|
// find closest distance to the gs base line
|
2006-06-15 19:16:21 +00:00
|
|
|
SGVec3d p = aircraft;
|
|
|
|
double dist = sgdClosestPointToLineDistSquared(p.sg(), gs_xyz.sg(),
|
|
|
|
gs_base_vec.sg());
|
2005-12-28 17:26:57 +00:00
|
|
|
gs_dist_node->setDoubleValue( sqrt( dist ) );
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << "gs_dist = " << gs_dist_node->getDoubleValue()
|
2005-12-28 16:53:19 +00:00
|
|
|
// << endl;
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
// wgs84 heading to glide slope (to determine sign of distance)
|
2006-06-15 19:16:21 +00:00
|
|
|
geo_inverse_wgs_84( pos, SGGeod::fromDeg(gs_lon, gs_lat),
|
2004-11-19 23:10:44 +00:00
|
|
|
&az1, &az2, &s );
|
2005-12-28 18:05:03 +00:00
|
|
|
double r = az1 - target_radial;
|
2004-11-19 23:10:44 +00:00
|
|
|
while ( r > 180.0 ) { r -= 360.0;}
|
|
|
|
while ( r < -180.0 ) { r += 360.0;}
|
|
|
|
if ( r >= -90.0 && r <= 90.0 ) {
|
2005-12-28 18:05:03 +00:00
|
|
|
gs_dist_signed = gs_dist_node->getDoubleValue();
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
2005-12-28 18:05:03 +00:00
|
|
|
gs_dist_signed = -gs_dist_node->getDoubleValue();
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 18:05:03 +00:00
|
|
|
/* cout << "Target Radial = " << target_radial
|
2004-11-19 23:10:44 +00:00
|
|
|
<< " Bearing = " << az1
|
2005-12-28 18:05:03 +00:00
|
|
|
<< " dist (signed) = " << gs_dist_signed
|
2004-11-19 23:10:44 +00:00
|
|
|
<< endl; */
|
|
|
|
|
|
|
|
} else {
|
2005-12-28 17:26:57 +00:00
|
|
|
gs_dist_node->setDoubleValue( 0.0 );
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute forward and reverse wgs84 headings to localizer
|
|
|
|
//////////////////////////////////////////////////////////
|
2005-12-28 16:53:19 +00:00
|
|
|
double hdg;
|
2006-06-15 19:16:21 +00:00
|
|
|
geo_inverse_wgs_84( pos, SGGeod::fromDeg(loc_lon, loc_lat),
|
2005-12-28 16:53:19 +00:00
|
|
|
&hdg, &az2, &s );
|
2004-11-19 23:10:44 +00:00
|
|
|
// cout << "az1 = " << az1 << " magvar = " << nav_magvar << endl;
|
2005-12-28 17:26:57 +00:00
|
|
|
heading_node->setDoubleValue( hdg );
|
2005-12-28 19:11:30 +00:00
|
|
|
radial = az2 - twist;
|
2005-12-28 16:53:19 +00:00
|
|
|
double recip = radial + 180.0;
|
|
|
|
if ( recip >= 360.0 ) { recip -= 360.0; }
|
2005-12-28 17:26:57 +00:00
|
|
|
radial_node->setDoubleValue( radial );
|
|
|
|
recip_radial_node->setDoubleValue( recip );
|
|
|
|
// cout << " heading = " << heading_node->getDoubleValue()
|
2004-11-19 23:10:44 +00:00
|
|
|
// << " dist = " << nav_dist << endl;
|
|
|
|
|
2005-12-29 04:07:49 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute the target/selected radial in "true" heading
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
double trtrue = 0.0;
|
|
|
|
if ( is_loc ) {
|
|
|
|
// ILS localizers radials are already "true" in our
|
|
|
|
// database
|
|
|
|
trtrue = target_radial;
|
|
|
|
} else {
|
|
|
|
// VOR radials need to have that vor's offset added in
|
|
|
|
trtrue = target_radial + twist;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( trtrue < 0.0 ) { trtrue += 360.0; }
|
|
|
|
while ( trtrue > 360.0 ) { trtrue -= 360.0; }
|
|
|
|
target_radial_true_node->setDoubleValue( trtrue );
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// adjust reception range for altitude
|
2006-07-18 21:35:11 +00:00
|
|
|
// FIXME: make sure we are using the navdata range now that
|
|
|
|
// it is valid in the data file
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( is_loc ) {
|
2005-12-28 18:05:03 +00:00
|
|
|
double offset = radial - target_radial;
|
2004-11-19 23:10:44 +00:00
|
|
|
while ( offset < -180.0 ) { offset += 360.0; }
|
|
|
|
while ( offset > 180.0 ) { offset -= 360.0; }
|
|
|
|
// cout << "ils offset = " << offset << endl;
|
2005-12-28 18:05:03 +00:00
|
|
|
effective_range
|
2006-07-18 21:35:11 +00:00
|
|
|
= adjustILSRange( nav_elev, pos.getElevationM(), offset,
|
|
|
|
loc_dist * SG_METER_TO_NM );
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
2006-07-18 21:35:11 +00:00
|
|
|
effective_range
|
|
|
|
= adjustNavRange( nav_elev, pos.getElevationM(), range );
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2008-08-28 21:24:02 +00:00
|
|
|
|
|
|
|
effective_range_m = effective_range * SG_NM_TO_METER;
|
|
|
|
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << "nav range = " << effective_range
|
|
|
|
// << " (" << range << ")" << endl;
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2008-08-28 21:24:02 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute signal quality
|
|
|
|
// 100% within effective_range
|
|
|
|
// decreases 1/x^2 further out
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
{
|
|
|
|
double last_signal_quality_norm = signal_quality_norm;
|
|
|
|
|
|
|
|
if ( loc_dist < effective_range_m ) {
|
|
|
|
signal_quality_norm = 1.0;
|
|
|
|
} else {
|
|
|
|
double range_exceed_norm = loc_dist/effective_range_m;
|
|
|
|
signal_quality_norm = 1/(range_exceed_norm*range_exceed_norm);
|
|
|
|
}
|
|
|
|
|
|
|
|
signal_quality_norm = fgGetLowPass( last_signal_quality_norm,
|
|
|
|
signal_quality_norm, dt );
|
|
|
|
}
|
|
|
|
signal_quality_norm_node->setDoubleValue( signal_quality_norm );
|
2009-04-10 18:45:41 +00:00
|
|
|
if ( ! nav_slaved_to_gps_node->getBoolValue() ) {
|
|
|
|
/* not slaved to gps */
|
|
|
|
inrange = signal_quality_norm > 0.2;
|
|
|
|
}
|
2005-12-28 19:11:30 +00:00
|
|
|
inrange_node->setBoolValue( inrange );
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( !is_loc ) {
|
2005-12-28 18:05:03 +00:00
|
|
|
target_radial = sel_radial_node->getDoubleValue();
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute to/from flag status
|
|
|
|
//////////////////////////////////////////////////////////
|
2007-02-09 05:41:42 +00:00
|
|
|
bool value = false;
|
2005-12-28 21:45:43 +00:00
|
|
|
double offset = fabs(radial - target_radial);
|
|
|
|
if ( tofrom_serviceable ) {
|
|
|
|
if ( nav_slaved_to_gps_node->getBoolValue() ) {
|
|
|
|
value = gps_to_flag_node->getBoolValue();
|
|
|
|
} else if ( inrange ) {
|
|
|
|
if ( is_loc ) {
|
|
|
|
value = true;
|
|
|
|
} else {
|
|
|
|
value = !(offset <= 90.0 || offset >= 270.0);
|
|
|
|
}
|
|
|
|
}
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
2005-12-28 21:45:43 +00:00
|
|
|
value = false;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 21:45:43 +00:00
|
|
|
to_flag_node->setBoolValue( value );
|
|
|
|
|
|
|
|
value = false;
|
|
|
|
if ( tofrom_serviceable ) {
|
|
|
|
if ( nav_slaved_to_gps_node->getBoolValue() ) {
|
|
|
|
value = gps_from_flag_node->getBoolValue();
|
|
|
|
} else if ( inrange ) {
|
|
|
|
if ( is_loc ) {
|
|
|
|
value = false;
|
|
|
|
} else {
|
|
|
|
value = !(offset > 90.0 && offset < 270.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
value = false;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 21:45:43 +00:00
|
|
|
from_flag_node->setBoolValue( value );
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute the deflection of the CDI needle, clamped to the range
|
|
|
|
// of ( -10 , 10 )
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
double r = 0.0;
|
2006-07-21 19:37:04 +00:00
|
|
|
bool loc_backside = false; // an in-code flag indicating that we are
|
|
|
|
// on a localizer backcourse.
|
2005-12-28 21:45:43 +00:00
|
|
|
if ( cdi_serviceable ) {
|
|
|
|
if ( nav_slaved_to_gps_node->getBoolValue() ) {
|
|
|
|
r = gps_cdi_deflection_node->getDoubleValue();
|
|
|
|
// We want +- 5 dots deflection for the gps, so clamp
|
|
|
|
// to -12.5/12.5
|
2006-07-18 21:35:11 +00:00
|
|
|
SG_CLAMP_RANGE( r, -12.5, 12.5 );
|
2005-12-28 21:45:43 +00:00
|
|
|
} else if ( inrange ) {
|
|
|
|
r = radial - target_radial;
|
|
|
|
// cout << "Target radial = " << target_radial
|
|
|
|
// << " Actual radial = " << radial << endl;
|
|
|
|
|
|
|
|
while ( r > 180.0 ) { r -= 360.0;}
|
|
|
|
while ( r < -180.0 ) { r += 360.0;}
|
|
|
|
if ( fabs(r) > 90.0 ) {
|
|
|
|
r = ( r<0.0 ? -r-180.0 : -r+180.0 );
|
2006-07-18 21:35:11 +00:00
|
|
|
} else {
|
|
|
|
if ( is_loc ) {
|
2006-07-21 19:37:04 +00:00
|
|
|
loc_backside = true;
|
2006-07-18 21:35:11 +00:00
|
|
|
}
|
2005-12-28 21:45:43 +00:00
|
|
|
}
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
r = -r; // reverse, since radial is outbound
|
2006-07-18 21:35:11 +00:00
|
|
|
if ( is_loc ) {
|
|
|
|
// According to Robin Peel, the ILS is 4x more
|
|
|
|
// sensitive than a vor
|
|
|
|
r *= 4.0;
|
|
|
|
}
|
|
|
|
SG_CLAMP_RANGE( r, -10.0, 10.0 );
|
2008-08-28 21:24:02 +00:00
|
|
|
r *= signal_quality_norm;
|
2005-12-28 21:45:43 +00:00
|
|
|
}
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 21:45:43 +00:00
|
|
|
cdi_deflection_node->setDoubleValue( r );
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute the amount of cross track distance error in meters
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
double xtrack_error = 0.0;
|
|
|
|
if ( inrange && nav_serviceable && cdi_serviceable ) {
|
|
|
|
r = radial - target_radial;
|
|
|
|
// cout << "Target radial = " << target_radial
|
|
|
|
// << " Actual radial = " << radial
|
|
|
|
// << " r = " << r << endl;
|
|
|
|
|
|
|
|
while ( r > 180.0 ) { r -= 360.0;}
|
|
|
|
while ( r < -180.0 ) { r += 360.0;}
|
|
|
|
if ( fabs(r) > 90.0 ) {
|
|
|
|
r = ( r<0.0 ? -r-180.0 : -r+180.0 );
|
|
|
|
}
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
r = -r; // reverse, since radial is outbound
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
xtrack_error = loc_dist * sin(r * SGD_DEGREES_TO_RADIANS);
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
2005-12-28 21:45:43 +00:00
|
|
|
xtrack_error = 0.0;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 21:45:43 +00:00
|
|
|
cdi_xtrack_error_node->setDoubleValue( xtrack_error );
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute an approximate ground track heading error
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
double hdg_error = 0.0;
|
|
|
|
if ( inrange && cdi_serviceable ) {
|
2006-06-21 21:23:20 +00:00
|
|
|
double vn = fgGetDouble( "/velocities/speed-north-fps" );
|
|
|
|
double ve = fgGetDouble( "/velocities/speed-east-fps" );
|
|
|
|
double gnd_trk_true = atan2( ve, vn ) * SGD_RADIANS_TO_DEGREES;
|
|
|
|
if ( gnd_trk_true < 0.0 ) { gnd_trk_true += 360.0; }
|
|
|
|
|
2005-12-29 04:07:49 +00:00
|
|
|
SGPropertyNode *true_hdg
|
|
|
|
= fgGetNode("/orientation/heading-deg", true);
|
2006-06-21 21:23:20 +00:00
|
|
|
hdg_error = gnd_trk_true - true_hdg->getDoubleValue();
|
|
|
|
|
|
|
|
// cout << "ground track = " << gnd_trk_true
|
|
|
|
// << " orientation = " << true_hdg->getDoubleValue() << endl;
|
2005-12-28 21:45:43 +00:00
|
|
|
}
|
|
|
|
cdi_xtrack_hdg_err_node->setDoubleValue( hdg_error );
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute the time to intercept selected radial (based on
|
|
|
|
// current and last cross track errors and dt
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
double t = 0.0;
|
|
|
|
if ( inrange && cdi_serviceable ) {
|
|
|
|
double xrate_ms = (last_xtrack_error - xtrack_error) / dt;
|
|
|
|
if ( fabs(xrate_ms) > 0.00001 ) {
|
|
|
|
t = xtrack_error / xrate_ms;
|
|
|
|
} else {
|
|
|
|
t = 9999.9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time_to_intercept->setDoubleValue( t );
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// compute the amount of glide slope needle deflection
|
|
|
|
// (.i.e. the number of degrees we are off the glide slope * 5.0
|
2006-03-13 20:20:27 +00:00
|
|
|
//
|
|
|
|
// CLO - 13 Mar 2006: The glide slope needle should peg at
|
|
|
|
// +/-0.7 degrees off the ideal glideslope. I'm not sure why
|
|
|
|
// we compute the factor the way we do (5*gs_error), but we
|
|
|
|
// need to compensate for our 'odd' number in the glideslope
|
|
|
|
// needle animation. This means that the needle should peg
|
|
|
|
// when this values is +/-3.5.
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
r = 0.0;
|
|
|
|
if ( has_gs && gs_serviceable_node->getBoolValue() ) {
|
|
|
|
if ( nav_slaved_to_gps_node->getBoolValue() ) {
|
|
|
|
// FIXME/FINISHME, what should be set here?
|
|
|
|
} else if ( inrange ) {
|
|
|
|
double x = gs_dist_node->getDoubleValue();
|
2009-04-02 18:14:50 +00:00
|
|
|
double y = (alt_node->getDoubleValue() - nav_elev)
|
2005-12-28 21:45:43 +00:00
|
|
|
* SG_FEET_TO_METER;
|
|
|
|
// cout << "dist = " << x << " height = " << y << endl;
|
2009-04-02 18:14:50 +00:00
|
|
|
double angle = atan2( y, x ) * SGD_RADIANS_TO_DEGREES;
|
2005-12-28 21:45:43 +00:00
|
|
|
r = (target_gs - angle) * 5.0;
|
2008-08-28 21:24:02 +00:00
|
|
|
r *= signal_quality_norm;
|
2005-12-28 21:45:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
gs_deflection_node->setDoubleValue( r );
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
2004-11-19 23:10:44 +00:00
|
|
|
// Calculate desired rate of climb for intercepting the GS
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
2005-12-28 17:26:57 +00:00
|
|
|
double x = gs_dist_node->getDoubleValue();
|
2004-11-19 23:10:44 +00:00
|
|
|
double y = (alt_node->getDoubleValue() - nav_elev)
|
|
|
|
* SG_FEET_TO_METER;
|
|
|
|
double current_angle = atan2( y, x ) * SGD_RADIANS_TO_DEGREES;
|
|
|
|
|
2005-12-28 18:05:03 +00:00
|
|
|
double target_angle = target_gs;
|
2004-11-19 23:10:44 +00:00
|
|
|
double gs_diff = target_angle - current_angle;
|
|
|
|
|
|
|
|
// convert desired vertical path angle into a climb rate
|
|
|
|
double des_angle = current_angle - 10 * gs_diff;
|
|
|
|
|
|
|
|
// estimate horizontal speed towards ILS in meters per minute
|
|
|
|
double dist = last_x - x;
|
|
|
|
last_x = x;
|
|
|
|
if ( dt > 0.0 ) {
|
|
|
|
// avoid nan
|
|
|
|
double new_vel = ( dist / dt );
|
|
|
|
|
|
|
|
horiz_vel = 0.75 * horiz_vel + 0.25 * new_vel;
|
|
|
|
// double horiz_vel = cur_fdm_state->get_V_ground_speed()
|
|
|
|
// * SG_FEET_TO_METER * 60.0;
|
|
|
|
// double horiz_vel = airspeed_node->getFloatValue()
|
|
|
|
// * SG_FEET_TO_METER * 60.0;
|
|
|
|
|
2005-12-28 17:26:57 +00:00
|
|
|
gs_rate_of_climb_node
|
2005-12-28 16:53:19 +00:00
|
|
|
->setDoubleValue( -sin( des_angle * SGD_DEGREES_TO_RADIANS )
|
|
|
|
* horiz_vel * SG_METER_TO_FEET );
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// Calculate a suggested target heading to smoothly intercept
|
|
|
|
// a nav/ils radial.
|
|
|
|
//////////////////////////////////////////////////////////
|
2005-12-28 16:53:19 +00:00
|
|
|
|
2006-07-18 21:35:11 +00:00
|
|
|
// Now that we have cross track heading adjustment built in,
|
|
|
|
// we shouldn't need to overdrive the heading angle within 8km
|
|
|
|
// of the station.
|
2005-12-28 21:45:43 +00:00
|
|
|
//
|
2006-07-18 21:35:11 +00:00
|
|
|
// The cdi deflection should be +/-10 for a full range of deflection
|
|
|
|
// so multiplying this by 3 gives us +/- 30 degrees heading
|
|
|
|
// compensation.
|
|
|
|
double adjustment = cdi_deflection_node->getDoubleValue() * 3.0;
|
2005-12-28 21:45:43 +00:00
|
|
|
SG_CLAMP_RANGE( adjustment, -30.0, 30.0 );
|
2006-07-21 19:37:04 +00:00
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
// determine the target heading to fly to intercept the
|
|
|
|
// tgt_radial = target radial (true) + cdi offset adjustmest -
|
|
|
|
// xtrack heading error adjustment
|
2006-07-21 19:37:04 +00:00
|
|
|
double nta_hdg;
|
|
|
|
if ( is_loc && backcourse_node->getBoolValue() ) {
|
|
|
|
// tuned to a localizer and backcourse mode activated
|
|
|
|
trtrue += 180.0; // reverse the target localizer heading
|
|
|
|
while ( trtrue > 360.0 ) { trtrue -= 360.0; }
|
|
|
|
nta_hdg = trtrue - adjustment - hdg_error;
|
|
|
|
} else {
|
|
|
|
nta_hdg = trtrue + adjustment - hdg_error;
|
2006-07-18 21:35:11 +00:00
|
|
|
}
|
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
while ( nta_hdg < 0.0 ) { nta_hdg += 360.0; }
|
2006-06-21 21:23:20 +00:00
|
|
|
while ( nta_hdg >= 360.0 ) { nta_hdg -= 360.0; }
|
2005-12-28 21:45:43 +00:00
|
|
|
target_auto_hdg_node->setDoubleValue( nta_hdg );
|
2005-12-28 16:53:19 +00:00
|
|
|
|
2005-12-28 21:45:43 +00:00
|
|
|
last_xtrack_error = xtrack_error;
|
|
|
|
} else {
|
|
|
|
inrange_node->setBoolValue( false );
|
|
|
|
cdi_deflection_node->setDoubleValue( 0.0 );
|
|
|
|
cdi_xtrack_error_node->setDoubleValue( 0.0 );
|
|
|
|
cdi_xtrack_hdg_err_node->setDoubleValue( 0.0 );
|
|
|
|
time_to_intercept->setDoubleValue( 0.0 );
|
|
|
|
gs_deflection_node->setDoubleValue( 0.0 );
|
|
|
|
to_flag_node->setBoolValue( false );
|
|
|
|
from_flag_node->setBoolValue( false );
|
|
|
|
// cout << "not picking up vor. :-(" << endl;
|
2005-12-28 16:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// audio effects
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( is_valid && inrange && nav_serviceable ) {
|
2004-11-19 23:10:44 +00:00
|
|
|
// play station ident via audio system if on + ident,
|
|
|
|
// otherwise turn it off
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( power_btn
|
2005-12-28 17:26:57 +00:00
|
|
|
&& (bus_power_node->getDoubleValue() > 1.0)
|
|
|
|
&& ident_btn_node->getBoolValue()
|
|
|
|
&& audio_btn_node->getBoolValue() )
|
2004-11-19 23:10:44 +00:00
|
|
|
{
|
|
|
|
SGSoundSample *sound;
|
|
|
|
sound = globals->get_soundmgr()->find( nav_fx_name );
|
2005-12-28 17:26:57 +00:00
|
|
|
double vol = vol_btn_node->getDoubleValue();
|
2005-12-28 16:53:19 +00:00
|
|
|
if ( vol < 0.0 ) { vol = 0.0; }
|
|
|
|
if ( vol > 1.0 ) { vol = 1.0; }
|
2004-11-19 23:10:44 +00:00
|
|
|
if ( sound != NULL ) {
|
2005-12-28 16:53:19 +00:00
|
|
|
sound->set_volume( vol );
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
|
|
|
SG_LOG( SG_COCKPIT, SG_ALERT,
|
|
|
|
"Can't find nav-vor-ident sound" );
|
|
|
|
}
|
|
|
|
sound = globals->get_soundmgr()->find( dme_fx_name );
|
|
|
|
if ( sound != NULL ) {
|
2005-12-28 16:53:19 +00:00
|
|
|
sound->set_volume( vol );
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
|
|
|
SG_LOG( SG_COCKPIT, SG_ALERT,
|
|
|
|
"Can't find nav-dme-ident sound" );
|
|
|
|
}
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << "last_time = " << last_time << " ";
|
2004-11-19 23:10:44 +00:00
|
|
|
// cout << "cur_time = "
|
|
|
|
// << globals->get_time_params()->get_cur_time();
|
2005-12-28 18:05:03 +00:00
|
|
|
if ( last_time <
|
2004-11-19 23:10:44 +00:00
|
|
|
globals->get_time_params()->get_cur_time() - 30 ) {
|
2005-12-28 18:05:03 +00:00
|
|
|
last_time = globals->get_time_params()->get_cur_time();
|
|
|
|
play_count = 0;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << " play_count = " << play_count << endl;
|
2004-11-19 23:10:44 +00:00
|
|
|
// cout << "playing = "
|
|
|
|
// << globals->get_soundmgr()->is_playing(nav_fx_name)
|
|
|
|
// << endl;
|
2005-12-28 18:05:03 +00:00
|
|
|
if ( play_count < 4 ) {
|
2004-11-19 23:10:44 +00:00
|
|
|
// play VOR ident
|
|
|
|
if ( !globals->get_soundmgr()->is_playing(nav_fx_name) ) {
|
|
|
|
globals->get_soundmgr()->play_once( nav_fx_name );
|
2005-12-28 18:05:03 +00:00
|
|
|
++play_count;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 18:05:03 +00:00
|
|
|
} else if ( play_count < 5 && has_dme ) {
|
2004-11-19 23:10:44 +00:00
|
|
|
// play DME ident
|
|
|
|
if ( !globals->get_soundmgr()->is_playing(nav_fx_name) &&
|
|
|
|
!globals->get_soundmgr()->is_playing(dme_fx_name) ) {
|
|
|
|
globals->get_soundmgr()->play_once( dme_fx_name );
|
2005-12-28 18:05:03 +00:00
|
|
|
++play_count;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
globals->get_soundmgr()->stop( nav_fx_name );
|
|
|
|
globals->get_soundmgr()->stop( dme_fx_name );
|
|
|
|
}
|
|
|
|
}
|
2005-12-28 21:45:43 +00:00
|
|
|
|
|
|
|
last_loc_dist = loc_dist;
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update current nav/adf radio stations based on current postition
|
|
|
|
void FGNavRadio::search()
|
|
|
|
{
|
|
|
|
|
|
|
|
// reset search time
|
|
|
|
_time_before_search_sec = 1.0;
|
|
|
|
|
2005-12-28 19:11:30 +00:00
|
|
|
// cache values locally for speed
|
2008-12-25 23:11:43 +00:00
|
|
|
SGGeod pos = SGGeod::fromDegFt(lon_node->getDoubleValue(),
|
|
|
|
lat_node->getDoubleValue(), alt_node->getDoubleValue());
|
2004-11-19 23:10:44 +00:00
|
|
|
FGNavRecord *nav = NULL;
|
|
|
|
FGNavRecord *loc = NULL;
|
|
|
|
FGNavRecord *dme = NULL;
|
|
|
|
FGNavRecord *gs = NULL;
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Nav.
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2005-12-28 17:26:57 +00:00
|
|
|
double freq = freq_node->getDoubleValue();
|
2008-12-25 23:11:43 +00:00
|
|
|
nav = globals->get_navlist()->findByFreq(freq, pos);
|
|
|
|
dme = globals->get_dmelist()->findByFreq(freq, pos);
|
2004-11-19 23:10:44 +00:00
|
|
|
if ( nav == NULL ) {
|
2008-12-25 23:11:43 +00:00
|
|
|
loc = globals->get_loclist()->findByFreq(freq, pos);
|
|
|
|
gs = globals->get_gslist()->findByFreq(freq, pos);
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
2005-12-28 19:11:30 +00:00
|
|
|
|
|
|
|
string nav_id = "";
|
|
|
|
|
2004-11-19 23:10:44 +00:00
|
|
|
if ( loc != NULL ) {
|
2005-12-28 19:11:30 +00:00
|
|
|
nav_id = loc->get_ident();
|
|
|
|
nav_id_node->setStringValue( nav_id.c_str() );
|
|
|
|
// cout << "localizer = " << nav_id_node->getStringValue() << endl;
|
2005-12-28 18:05:03 +00:00
|
|
|
is_valid = true;
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( last_nav_id != nav_id || last_nav_vor ) {
|
2005-12-28 18:05:03 +00:00
|
|
|
trans_ident = loc->get_trans_ident();
|
|
|
|
target_radial = loc->get_multiuse();
|
|
|
|
while ( target_radial < 0.0 ) { target_radial += 360.0; }
|
|
|
|
while ( target_radial > 360.0 ) { target_radial -= 360.0; }
|
|
|
|
loc_lon = loc->get_lon();
|
|
|
|
loc_lat = loc->get_lat();
|
2008-12-25 23:11:43 +00:00
|
|
|
nav_xyz = loc->cart();
|
2005-12-28 19:11:30 +00:00
|
|
|
last_nav_id = nav_id;
|
2004-11-19 23:10:44 +00:00
|
|
|
last_nav_vor = false;
|
2005-12-28 17:26:57 +00:00
|
|
|
loc_node->setBoolValue( true );
|
2005-12-28 18:05:03 +00:00
|
|
|
has_dme = (dme != NULL);
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( gs != NULL ) {
|
|
|
|
has_gs_node->setBoolValue( true );
|
2005-12-28 18:05:03 +00:00
|
|
|
gs_lon = gs->get_lon();
|
|
|
|
gs_lat = gs->get_lat();
|
2004-11-19 23:10:44 +00:00
|
|
|
nav_elev = gs->get_elev_ft();
|
|
|
|
int tmp = (int)(gs->get_multiuse() / 1000.0);
|
2005-12-28 18:05:03 +00:00
|
|
|
target_gs = (double)tmp / 100.0;
|
2008-12-25 23:11:43 +00:00
|
|
|
gs_xyz = gs->cart();
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
// derive GS baseline (perpendicular to the runay
|
|
|
|
// along the ground)
|
|
|
|
double tlon, tlat, taz;
|
2005-12-28 18:05:03 +00:00
|
|
|
geo_direct_wgs_84 ( 0.0, gs_lat, gs_lon,
|
2006-06-15 19:16:21 +00:00
|
|
|
target_radial + 90,
|
2004-11-19 23:10:44 +00:00
|
|
|
100.0, &tlat, &tlon, &taz );
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << "target_radial = " << target_radial << endl;
|
2005-12-28 17:26:57 +00:00
|
|
|
// cout << "nav_loc = " << loc_node->getBoolValue() << endl;
|
2005-12-28 18:05:03 +00:00
|
|
|
// cout << gs_lon << "," << gs_lat << " "
|
2004-11-19 23:10:44 +00:00
|
|
|
// << tlon << "," << tlat << " (" << nav_elev << ")"
|
|
|
|
// << endl;
|
2006-06-15 19:16:21 +00:00
|
|
|
SGGeod tpos = SGGeod::fromDegFt(tlon, tlat, nav_elev);
|
|
|
|
SGVec3d p1 = SGVec3d::fromGeod(tpos);
|
|
|
|
|
|
|
|
// cout << gs_xyz << endl;
|
2004-11-19 23:10:44 +00:00
|
|
|
// cout << p1 << endl;
|
2006-06-15 19:16:21 +00:00
|
|
|
gs_base_vec = p1 - gs_xyz;
|
|
|
|
// cout << gs_base_vec << endl;
|
2004-11-19 23:10:44 +00:00
|
|
|
} else {
|
2005-12-28 19:11:30 +00:00
|
|
|
has_gs_node->setBoolValue( false );
|
2004-11-19 23:10:44 +00:00
|
|
|
nav_elev = loc->get_elev_ft();
|
|
|
|
}
|
2005-12-28 18:05:03 +00:00
|
|
|
twist = 0;
|
|
|
|
range = FG_LOC_DEFAULT_RANGE;
|
|
|
|
effective_range = range;
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
if ( globals->get_soundmgr()->exists( nav_fx_name ) ) {
|
|
|
|
globals->get_soundmgr()->remove( nav_fx_name );
|
|
|
|
}
|
|
|
|
SGSoundSample *sound;
|
2005-12-28 18:05:03 +00:00
|
|
|
sound = morse.make_ident( trans_ident, LO_FREQUENCY );
|
2004-11-19 23:10:44 +00:00
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
globals->get_soundmgr()->add( sound, nav_fx_name );
|
|
|
|
|
|
|
|
if ( globals->get_soundmgr()->exists( dme_fx_name ) ) {
|
|
|
|
globals->get_soundmgr()->remove( dme_fx_name );
|
|
|
|
}
|
2005-12-28 18:05:03 +00:00
|
|
|
sound = morse.make_ident( trans_ident, HI_FREQUENCY );
|
2004-11-19 23:10:44 +00:00
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
globals->get_soundmgr()->add( sound, dme_fx_name );
|
|
|
|
|
|
|
|
int offset = (int)(sg_random() * 30.0);
|
2005-12-28 18:05:03 +00:00
|
|
|
play_count = offset / 4;
|
|
|
|
last_time = globals->get_time_params()->get_cur_time() -
|
2004-11-19 23:10:44 +00:00
|
|
|
offset;
|
|
|
|
// cout << "offset = " << offset << " play_count = "
|
2005-12-28 18:05:03 +00:00
|
|
|
// << play_count
|
|
|
|
// << " last_time = " << last_time
|
2004-11-19 23:10:44 +00:00
|
|
|
// << " current time = "
|
|
|
|
// << globals->get_time_params()->get_cur_time() << endl;
|
|
|
|
|
|
|
|
// cout << "Found an loc station in range" << endl;
|
|
|
|
// cout << " id = " << loc->get_locident() << endl;
|
|
|
|
}
|
|
|
|
} else if ( nav != NULL ) {
|
2005-12-28 19:11:30 +00:00
|
|
|
nav_id = nav->get_ident();
|
|
|
|
nav_id_node->setStringValue( nav_id.c_str() );
|
|
|
|
// cout << "nav = " << nav_id << endl;
|
2005-12-28 18:05:03 +00:00
|
|
|
is_valid = true;
|
2005-12-28 19:11:30 +00:00
|
|
|
if ( last_nav_id != nav_id || !last_nav_vor ) {
|
|
|
|
last_nav_id = nav_id;
|
2004-11-19 23:10:44 +00:00
|
|
|
last_nav_vor = true;
|
2005-12-28 18:05:03 +00:00
|
|
|
trans_ident = nav->get_trans_ident();
|
2005-12-28 17:26:57 +00:00
|
|
|
loc_node->setBoolValue( false );
|
2005-12-28 18:05:03 +00:00
|
|
|
has_dme = (dme != NULL);
|
2005-12-28 17:26:57 +00:00
|
|
|
has_gs_node->setBoolValue( false );
|
2005-12-28 18:05:03 +00:00
|
|
|
loc_lon = nav->get_lon();
|
|
|
|
loc_lat = nav->get_lat();
|
2004-11-19 23:10:44 +00:00
|
|
|
nav_elev = nav->get_elev_ft();
|
2005-12-28 18:05:03 +00:00
|
|
|
twist = nav->get_multiuse();
|
|
|
|
range = nav->get_range();
|
2008-12-25 23:11:43 +00:00
|
|
|
effective_range = adjustNavRange(nav_elev, pos.getElevationM(), range);
|
2005-12-28 18:05:03 +00:00
|
|
|
target_gs = 0.0;
|
|
|
|
target_radial = sel_radial_node->getDoubleValue();
|
2008-12-25 23:11:43 +00:00
|
|
|
nav_xyz = nav->cart();
|
2004-11-19 23:10:44 +00:00
|
|
|
|
|
|
|
if ( globals->get_soundmgr()->exists( nav_fx_name ) ) {
|
|
|
|
globals->get_soundmgr()->remove( nav_fx_name );
|
|
|
|
}
|
2006-02-12 19:57:57 +00:00
|
|
|
try {
|
|
|
|
SGSoundSample *sound;
|
|
|
|
sound = morse.make_ident( trans_ident, LO_FREQUENCY );
|
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
if ( globals->get_soundmgr()->add( sound, nav_fx_name ) ) {
|
|
|
|
// cout << "Added nav-vor-ident sound" << endl;
|
|
|
|
} else {
|
|
|
|
SG_LOG(SG_COCKPIT, SG_WARN, "Failed to add v1-vor-ident sound");
|
|
|
|
}
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2006-02-12 19:57:57 +00:00
|
|
|
if ( globals->get_soundmgr()->exists( dme_fx_name ) ) {
|
|
|
|
globals->get_soundmgr()->remove( dme_fx_name );
|
|
|
|
}
|
|
|
|
sound = morse.make_ident( trans_ident, HI_FREQUENCY );
|
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
globals->get_soundmgr()->add( sound, dme_fx_name );
|
|
|
|
|
|
|
|
int offset = (int)(sg_random() * 30.0);
|
|
|
|
play_count = offset / 4;
|
|
|
|
last_time = globals->get_time_params()->get_cur_time() - offset;
|
|
|
|
// cout << "offset = " << offset << " play_count = "
|
|
|
|
// << play_count << " last_time = "
|
|
|
|
// << last_time << " current time = "
|
|
|
|
// << globals->get_time_params()->get_cur_time() << endl;
|
|
|
|
|
|
|
|
// cout << "Found a vor station in range" << endl;
|
|
|
|
// cout << " id = " << nav->get_ident() << endl;
|
|
|
|
} catch ( sg_io_exception &e ) {
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, e.getFormattedMessage());
|
|
|
|
}
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|
|
|
|
} else {
|
2005-12-28 18:05:03 +00:00
|
|
|
is_valid = false;
|
2005-12-28 19:11:30 +00:00
|
|
|
nav_id_node->setStringValue( "" );
|
2005-12-28 18:05:03 +00:00
|
|
|
target_radial = 0;
|
|
|
|
trans_ident = "";
|
2005-12-28 19:11:30 +00:00
|
|
|
last_nav_id = "";
|
2006-10-20 12:12:12 +00:00
|
|
|
globals->get_soundmgr()->remove( nav_fx_name );
|
2004-11-19 23:10:44 +00:00
|
|
|
globals->get_soundmgr()->remove( dme_fx_name );
|
|
|
|
}
|
|
|
|
|
2006-01-02 23:01:45 +00:00
|
|
|
is_valid_node->setBoolValue( is_valid );
|
|
|
|
|
2005-12-28 16:53:19 +00:00
|
|
|
char tmpid[5];
|
2005-12-28 19:11:30 +00:00
|
|
|
strncpy( tmpid, nav_id.c_str(), 5 );
|
2005-12-28 17:26:57 +00:00
|
|
|
id_c1_node->setIntValue( (int)tmpid[0] );
|
|
|
|
id_c2_node->setIntValue( (int)tmpid[1] );
|
|
|
|
id_c3_node->setIntValue( (int)tmpid[2] );
|
|
|
|
id_c4_node->setIntValue( (int)tmpid[3] );
|
2004-11-19 23:10:44 +00:00
|
|
|
}
|