2000-04-24 23:50:59 +00:00
|
|
|
// radiostack.cxx -- class to manage an instance of the radio stack
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
2001-03-21 23:16:21 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2002-02-05 15:57:46 +00:00
|
|
|
#include <stdio.h> // snprintf
|
|
|
|
|
2001-03-21 23:16:21 +00:00
|
|
|
#include <simgear/compiler.h>
|
2001-03-09 23:35:21 +00:00
|
|
|
#include <simgear/math/sg_random.h>
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
2000-04-24 23:50:59 +00:00
|
|
|
#include <Navaids/ilslist.hxx>
|
2001-03-16 23:59:02 +00:00
|
|
|
#include <Navaids/mkrbeacons.hxx>
|
2000-04-24 23:50:59 +00:00
|
|
|
#include <Navaids/navlist.hxx>
|
2002-04-05 20:03:49 +00:00
|
|
|
#include <Time/FGEventMgr.hxx>
|
2000-04-24 23:50:59 +00:00
|
|
|
|
|
|
|
#include "radiostack.hxx"
|
|
|
|
|
2001-11-07 17:55:28 +00:00
|
|
|
#include <string>
|
|
|
|
SG_USING_STD(string);
|
|
|
|
|
2001-03-09 23:35:21 +00:00
|
|
|
|
2001-03-14 01:31:04 +00:00
|
|
|
FGRadioStack *current_radiostack;
|
|
|
|
|
|
|
|
|
2000-05-30 16:49:44 +00:00
|
|
|
/**
|
|
|
|
* Boy, this is ugly! Make the VOR range vary by altitude difference.
|
|
|
|
*/
|
2001-03-14 01:31:04 +00:00
|
|
|
static double kludgeRange ( double stationElev, double aircraftElev,
|
|
|
|
double nominalRange)
|
2000-05-30 16:49:44 +00:00
|
|
|
{
|
|
|
|
// Assume that the nominal range (usually
|
|
|
|
// 50nm) applies at a 5,000 ft difference.
|
|
|
|
// Just a wild guess!
|
2001-03-24 04:56:46 +00:00
|
|
|
double factor = ((aircraftElev*SG_METER_TO_FEET) - stationElev) / 5000.0;
|
2000-05-30 16:49:44 +00:00
|
|
|
double range = fabs(nominalRange * factor);
|
|
|
|
|
|
|
|
// Clamp the range to keep it sane; for
|
|
|
|
// now, never less than 25% or more than
|
|
|
|
// 500% of nominal range.
|
|
|
|
if (range < nominalRange/4.0) {
|
|
|
|
range = nominalRange/4.0;
|
|
|
|
} else if (range > nominalRange*5.0) {
|
|
|
|
range = nominalRange*5.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return range;
|
|
|
|
}
|
|
|
|
|
2000-04-24 23:50:59 +00:00
|
|
|
|
|
|
|
// Constructor
|
2001-07-11 18:54:50 +00:00
|
|
|
FGRadioStack::FGRadioStack() :
|
|
|
|
lon_node(fgGetNode("/position/longitude-deg", true)),
|
|
|
|
lat_node(fgGetNode("/position/latitude-deg", true)),
|
|
|
|
alt_node(fgGetNode("/position/altitude-ft", true)),
|
|
|
|
need_update(true),
|
2001-07-30 16:26:46 +00:00
|
|
|
dme_freq(0.0),
|
|
|
|
dme_dist(0.0),
|
|
|
|
dme_prev_dist(0.0),
|
|
|
|
dme_spd(0.0),
|
2001-10-11 22:07:45 +00:00
|
|
|
dme_ete(0.0),
|
2002-03-30 12:49:17 +00:00
|
|
|
outer_blink(false),
|
|
|
|
middle_blink(false),
|
2002-06-16 00:05:07 +00:00
|
|
|
inner_blink(false)
|
2001-07-11 18:54:50 +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() );
|
2001-07-30 16:26:46 +00:00
|
|
|
dme_last_time.stamp();
|
2000-04-24 23:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destructor
|
2001-01-11 22:44:18 +00:00
|
|
|
FGRadioStack::~FGRadioStack()
|
|
|
|
{
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.unbind();
|
|
|
|
navcom2.unbind();
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.unbind();
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.unbind();
|
2001-01-11 22:44:18 +00:00
|
|
|
unbind(); // FIXME: should be called externally
|
2001-07-11 18:54:50 +00:00
|
|
|
|
|
|
|
delete term_tbl;
|
|
|
|
delete low_tbl;
|
|
|
|
delete high_tbl;
|
2001-01-11 22:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FGRadioStack::init ()
|
|
|
|
{
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.set_bind_index( 0 );
|
|
|
|
navcom1.init();
|
|
|
|
|
|
|
|
navcom2.set_bind_index( 1 );
|
|
|
|
navcom2.init();
|
|
|
|
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.init();
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.init();
|
2002-06-16 00:05:07 +00:00
|
|
|
|
2001-03-09 02:41:04 +00:00
|
|
|
morse.init();
|
2001-03-28 07:12:11 +00:00
|
|
|
beacon.init();
|
2001-03-29 06:05:01 +00:00
|
|
|
blink.stamp();
|
2001-03-09 02:41:04 +00:00
|
|
|
|
2001-01-11 22:44:18 +00:00
|
|
|
search();
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.search();
|
|
|
|
navcom2.search();
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.search();
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.search();
|
2002-06-16 00:05:07 +00:00
|
|
|
|
2002-05-11 16:28:50 +00:00
|
|
|
update(0); // FIXME: use dt
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.update(0);
|
|
|
|
navcom2.update(0);
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.update(0);
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.update(0);
|
2001-01-11 22:44:18 +00:00
|
|
|
|
|
|
|
// Search radio database once per second
|
2002-04-05 20:03:49 +00:00
|
|
|
global_events.Register( "fgRadioSearch()",
|
2002-04-11 16:25:12 +00:00
|
|
|
current_radiostack, &FGRadioStack::search,
|
2002-04-05 20:03:49 +00:00
|
|
|
1000 );
|
2001-01-11 22:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FGRadioStack::bind ()
|
|
|
|
{
|
|
|
|
|
2001-07-30 16:26:46 +00:00
|
|
|
// User inputs
|
|
|
|
fgTie("/radios/dme/frequencies/selected-khz", this,
|
2002-02-05 04:42:39 +00:00
|
|
|
&FGRadioStack::get_dme_freq, &FGRadioStack::set_dme_freq);
|
2001-07-30 16:26:46 +00:00
|
|
|
|
|
|
|
// Radio outputs
|
|
|
|
fgTie("/radios/dme/in-range", this, &FGRadioStack::get_dme_inrange);
|
2002-09-19 01:11:07 +00:00
|
|
|
|
2001-07-30 16:26:46 +00:00
|
|
|
fgTie("/radios/dme/distance-nm", this, &FGRadioStack::get_dme_dist);
|
2002-09-19 01:11:07 +00:00
|
|
|
|
2001-07-30 16:26:46 +00:00
|
|
|
fgTie("/radios/dme/speed-kt", this, &FGRadioStack::get_dme_spd);
|
2002-09-19 01:11:07 +00:00
|
|
|
|
2001-07-30 16:26:46 +00:00
|
|
|
fgTie("/radios/dme/ete-min", this, &FGRadioStack::get_dme_ete);
|
|
|
|
|
2001-03-29 06:09:25 +00:00
|
|
|
fgTie("/radios/marker-beacon/inner", this,
|
2001-03-29 06:05:01 +00:00
|
|
|
&FGRadioStack::get_inner_blink);
|
2002-09-19 01:11:07 +00:00
|
|
|
|
2001-03-29 06:09:25 +00:00
|
|
|
fgTie("/radios/marker-beacon/middle", this,
|
2001-03-29 06:05:01 +00:00
|
|
|
&FGRadioStack::get_middle_blink);
|
2002-09-19 01:11:07 +00:00
|
|
|
|
2001-03-29 06:09:25 +00:00
|
|
|
fgTie("/radios/marker-beacon/outer", this,
|
2001-03-29 06:05:01 +00:00
|
|
|
&FGRadioStack::get_outer_blink);
|
2002-06-16 00:05:07 +00:00
|
|
|
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.set_bind_index( 0 );
|
|
|
|
navcom1.bind();
|
|
|
|
navcom2.set_bind_index( 1 );
|
|
|
|
navcom2.bind();
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.bind();
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.bind();
|
2000-04-24 23:50:59 +00:00
|
|
|
}
|
|
|
|
|
2001-01-11 22:44:18 +00:00
|
|
|
void
|
|
|
|
FGRadioStack::unbind ()
|
|
|
|
{
|
2001-07-30 16:26:46 +00:00
|
|
|
fgUntie("/radios/dme/frequencies/selected-khz");
|
|
|
|
|
|
|
|
// Radio outputs
|
|
|
|
fgUntie("/radios/dme/in-range");
|
|
|
|
fgUntie("/radios/dme/distance-nm");
|
|
|
|
fgUntie("/radios/dme/speed-kt");
|
|
|
|
fgUntie("/radios/dme/ete-min");
|
|
|
|
|
2001-03-29 06:09:25 +00:00
|
|
|
fgUntie("/radios/marker-beacon/inner");
|
|
|
|
fgUntie("/radios/marker-beacon/middle");
|
|
|
|
fgUntie("/radios/marker-beacon/outer");
|
2002-06-16 00:05:07 +00:00
|
|
|
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.unbind();
|
|
|
|
navcom2.unbind();
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.unbind();
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.unbind();
|
2001-01-11 22:44:18 +00:00
|
|
|
}
|
2000-04-24 23:50:59 +00:00
|
|
|
|
2001-03-14 07:25:14 +00:00
|
|
|
|
2001-03-09 02:41:04 +00:00
|
|
|
// Update the various nav values based on position and valid tuned in navs
|
2001-01-11 22:44:18 +00:00
|
|
|
void
|
2002-05-11 16:28:50 +00:00
|
|
|
FGRadioStack::update(double dt)
|
2001-01-11 22:44:18 +00:00
|
|
|
{
|
2001-06-06 19:12:24 +00:00
|
|
|
double lon = lon_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
|
|
|
|
double lat = lat_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
|
|
|
|
double elev = alt_node->getDoubleValue() * SG_FEET_TO_METER;
|
2001-01-11 22:44:18 +00:00
|
|
|
|
2000-04-24 23:50:59 +00:00
|
|
|
need_update = false;
|
|
|
|
|
2000-09-27 20:16:22 +00:00
|
|
|
Point3D aircraft = sgGeodToCart( Point3D( lon, lat, elev ) );
|
2000-05-04 01:18:45 +00:00
|
|
|
Point3D station;
|
2001-03-14 23:37:50 +00:00
|
|
|
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.update( dt );
|
|
|
|
navcom2.update( dt );
|
2001-07-30 16:26:46 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// DME.
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-09-23 18:44:09 +00:00
|
|
|
if ( dme_valid ) {
|
2001-07-30 16:26:46 +00:00
|
|
|
station = Point3D( dme_x, dme_y, dme_z );
|
|
|
|
dme_dist = aircraft.distance3D( station ) * SG_METER_TO_NM;
|
|
|
|
dme_effective_range = kludgeRange(dme_elev, elev, dme_range);
|
|
|
|
if (dme_dist < dme_effective_range * SG_NM_TO_METER) {
|
2002-09-23 18:44:09 +00:00
|
|
|
dme_inrange = true;
|
2001-07-30 16:26:46 +00:00
|
|
|
} else if (dme_dist < 2 * dme_effective_range * SG_NM_TO_METER) {
|
2002-09-23 18:44:09 +00:00
|
|
|
dme_inrange = sg_random() <
|
|
|
|
(2 * dme_effective_range * SG_NM_TO_METER - dme_dist) /
|
|
|
|
(dme_effective_range * SG_NM_TO_METER);
|
2001-07-30 16:26:46 +00:00
|
|
|
} else {
|
2002-09-23 18:44:09 +00:00
|
|
|
dme_inrange = false;
|
2001-07-30 16:26:46 +00:00
|
|
|
}
|
2002-09-23 18:44:09 +00:00
|
|
|
if ( dme_inrange ) {
|
|
|
|
SGTimeStamp current_time;
|
|
|
|
station = Point3D( dme_x, dme_y, dme_z );
|
|
|
|
dme_dist = aircraft.distance3D( station ) * SG_METER_TO_NM;
|
|
|
|
current_time.stamp();
|
|
|
|
long dMs = (current_time - dme_last_time) / 1000;
|
2001-07-30 16:26:46 +00:00
|
|
|
// Update every second
|
2002-09-23 18:44:09 +00:00
|
|
|
if (dMs >= 1000) {
|
|
|
|
double dDist = dme_dist - dme_prev_dist;
|
|
|
|
dme_spd = fabs((dDist/dMs) * 3600000);
|
2001-07-30 16:26:46 +00:00
|
|
|
// FIXME: the panel should be able to
|
|
|
|
// handle this!!!
|
2002-09-23 18:44:09 +00:00
|
|
|
if (dme_spd > 999.0)
|
|
|
|
dme_spd = 999.0;
|
|
|
|
dme_ete = fabs((dme_dist/dme_spd) * 60.0);
|
2001-07-30 16:26:46 +00:00
|
|
|
// FIXME: the panel should be able to
|
|
|
|
// handle this!!!
|
2002-09-23 18:44:09 +00:00
|
|
|
if (dme_ete > 99.0)
|
|
|
|
dme_ete = 99.0;
|
|
|
|
dme_prev_dist = dme_dist;
|
|
|
|
dme_last_time.stamp();
|
|
|
|
}
|
2001-07-30 16:26:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
2002-09-23 18:44:09 +00:00
|
|
|
dme_inrange = false;
|
|
|
|
dme_dist = 0.0;
|
|
|
|
dme_prev_dist = 0.0;
|
|
|
|
dme_spd = 0.0;
|
|
|
|
dme_ete = 0.0;
|
2001-07-30 16:26:46 +00:00
|
|
|
}
|
|
|
|
|
2001-03-29 06:05:01 +00:00
|
|
|
// marker beacon blinking
|
|
|
|
bool light_on = ( outer_blink || middle_blink || inner_blink );
|
|
|
|
SGTimeStamp current;
|
|
|
|
current.stamp();
|
|
|
|
|
|
|
|
if ( light_on && (current - blink > 400000) ) {
|
|
|
|
light_on = false;
|
|
|
|
blink.stamp();
|
|
|
|
} else if ( !light_on && (current - blink > 100000) ) {
|
|
|
|
light_on = true;
|
|
|
|
blink.stamp();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( outer_marker ) {
|
|
|
|
outer_blink = light_on;
|
|
|
|
} else {
|
|
|
|
outer_blink = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( middle_marker ) {
|
|
|
|
middle_blink = light_on;
|
|
|
|
} else {
|
|
|
|
middle_blink = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( inner_marker ) {
|
|
|
|
inner_blink = light_on;
|
|
|
|
} else {
|
|
|
|
inner_blink = false;
|
|
|
|
}
|
|
|
|
|
2001-03-29 06:14:42 +00:00
|
|
|
// cout << outer_blink << " " << middle_blink << " " << inner_blink << endl;
|
2002-06-16 00:05:07 +00:00
|
|
|
|
2002-06-30 22:44:38 +00:00
|
|
|
adf.update( dt );
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.update( dt );
|
2000-05-04 01:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update current nav/adf radio stations based on current postition
|
2001-03-09 02:41:04 +00:00
|
|
|
void FGRadioStack::search()
|
2001-01-11 22:44:18 +00:00
|
|
|
{
|
2001-03-28 07:12:11 +00:00
|
|
|
static FGMkrBeacon::fgMkrBeacType last_beacon = FGMkrBeacon::NOBEACON;
|
|
|
|
|
2001-06-06 19:12:24 +00:00
|
|
|
double lon = lon_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
|
|
|
|
double lat = lat_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
|
|
|
|
double elev = alt_node->getDoubleValue() * SG_FEET_TO_METER;
|
2001-01-11 22:44:18 +00:00
|
|
|
|
2001-07-30 16:26:46 +00:00
|
|
|
// FIXME: the panel should handle this
|
|
|
|
// don't worry about overhead for now,
|
|
|
|
// since this is handled only periodically
|
2001-12-10 22:06:57 +00:00
|
|
|
int dme_switch_pos = fgGetInt("/radios/dme/switch-position");
|
2002-09-23 18:44:09 +00:00
|
|
|
if ( dme_switch_pos == 1 && navcom1.get_power_btn() ) {
|
|
|
|
if ( dme_freq != navcom1.get_nav_freq() ) {
|
|
|
|
dme_freq = navcom1.get_nav_freq();
|
|
|
|
need_update = true;
|
|
|
|
}
|
|
|
|
} else if ( dme_switch_pos == 3 && navcom2.get_power_btn() ) {
|
|
|
|
if ( dme_freq != navcom2.get_nav_freq() ) {
|
|
|
|
dme_freq = navcom2.get_nav_freq();
|
|
|
|
need_update = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dme_freq = 0;
|
|
|
|
dme_inrange = false;
|
2001-07-30 16:26:46 +00:00
|
|
|
}
|
|
|
|
|
2000-04-25 03:09:26 +00:00
|
|
|
FGILS ils;
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
FGNav nav;
|
|
|
|
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.search();
|
|
|
|
navcom2.search();
|
2001-07-30 16:26:46 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// DME
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
if ( current_ilslist->query( lon, lat, elev, dme_freq, &ils ) ) {
|
|
|
|
if (ils.get_has_dme()) {
|
|
|
|
dme_valid = true;
|
|
|
|
dme_lon = ils.get_loclon();
|
|
|
|
dme_lat = ils.get_loclat();
|
|
|
|
dme_elev = ils.get_gselev();
|
|
|
|
dme_range = FG_ILS_DEFAULT_RANGE;
|
|
|
|
dme_effective_range = kludgeRange(dme_elev, elev, dme_range);
|
|
|
|
dme_x = ils.get_dme_x();
|
|
|
|
dme_y = ils.get_dme_y();
|
|
|
|
dme_z = ils.get_dme_z();
|
|
|
|
}
|
|
|
|
} else if ( current_navlist->query( lon, lat, elev, dme_freq, &nav ) ) {
|
|
|
|
if (nav.get_has_dme()) {
|
|
|
|
dme_valid = true;
|
|
|
|
dme_lon = nav.get_lon();
|
|
|
|
dme_lat = nav.get_lat();
|
|
|
|
dme_elev = nav.get_elev();
|
|
|
|
dme_range = nav.get_range();
|
|
|
|
dme_effective_range = kludgeRange(dme_elev, elev, dme_range);
|
|
|
|
dme_x = nav.get_x();
|
|
|
|
dme_y = nav.get_y();
|
|
|
|
dme_z = nav.get_z();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dme_valid = false;
|
|
|
|
dme_dist = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Beacons.
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-03-28 07:12:11 +00:00
|
|
|
FGMkrBeacon::fgMkrBeacType beacon_type
|
|
|
|
= current_beacons->query( lon * SGD_RADIANS_TO_DEGREES,
|
|
|
|
lat * SGD_RADIANS_TO_DEGREES, elev );
|
2001-03-16 23:59:02 +00:00
|
|
|
|
|
|
|
outer_marker = middle_marker = inner_marker = false;
|
|
|
|
|
2001-03-28 07:12:11 +00:00
|
|
|
if ( beacon_type == FGMkrBeacon::OUTER ) {
|
2001-03-16 23:59:02 +00:00
|
|
|
outer_marker = true;
|
2001-03-29 06:05:01 +00:00
|
|
|
// cout << "OUTER MARKER" << endl;
|
2001-05-15 16:52:02 +00:00
|
|
|
#ifdef ENABLE_AUDIO_SUPPORT
|
2001-03-28 07:12:11 +00:00
|
|
|
if ( last_beacon != FGMkrBeacon::OUTER ) {
|
|
|
|
if ( ! globals->get_soundmgr()->exists( "outer-marker" ) ) {
|
|
|
|
FGSimpleSound *sound = beacon.get_outer();
|
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
globals->get_soundmgr()->add( sound, "outer-marker" );
|
|
|
|
}
|
|
|
|
if ( !globals->get_soundmgr()->is_playing("outer-marker") ) {
|
|
|
|
globals->get_soundmgr()->play_looped( "outer-marker" );
|
|
|
|
}
|
|
|
|
}
|
2001-05-15 16:52:02 +00:00
|
|
|
#endif
|
2001-03-28 07:12:11 +00:00
|
|
|
} else if ( beacon_type == FGMkrBeacon::MIDDLE ) {
|
2001-03-16 23:59:02 +00:00
|
|
|
middle_marker = true;
|
2001-03-29 06:05:01 +00:00
|
|
|
// cout << "MIDDLE MARKER" << endl;
|
2001-05-15 16:52:02 +00:00
|
|
|
#ifdef ENABLE_AUDIO_SUPPORT
|
2001-03-28 07:12:11 +00:00
|
|
|
if ( last_beacon != FGMkrBeacon::MIDDLE ) {
|
|
|
|
if ( ! globals->get_soundmgr()->exists( "middle-marker" ) ) {
|
|
|
|
FGSimpleSound *sound = beacon.get_middle();
|
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
globals->get_soundmgr()->add( sound, "middle-marker" );
|
|
|
|
}
|
|
|
|
if ( !globals->get_soundmgr()->is_playing("middle-marker") ) {
|
|
|
|
globals->get_soundmgr()->play_looped( "middle-marker" );
|
|
|
|
}
|
|
|
|
}
|
2001-05-15 16:52:02 +00:00
|
|
|
#endif
|
2001-03-28 07:12:11 +00:00
|
|
|
} else if ( beacon_type == FGMkrBeacon::INNER ) {
|
2001-03-16 23:59:02 +00:00
|
|
|
inner_marker = true;
|
2001-03-29 06:05:01 +00:00
|
|
|
// cout << "INNER MARKER" << endl;
|
2001-05-15 16:52:02 +00:00
|
|
|
#ifdef ENABLE_AUDIO_SUPPORT
|
2001-03-28 07:12:11 +00:00
|
|
|
if ( last_beacon != FGMkrBeacon::INNER ) {
|
|
|
|
if ( ! globals->get_soundmgr()->exists( "inner-marker" ) ) {
|
|
|
|
FGSimpleSound *sound = beacon.get_inner();
|
|
|
|
sound->set_volume( 0.3 );
|
|
|
|
globals->get_soundmgr()->add( sound, "inner-marker" );
|
|
|
|
}
|
|
|
|
if ( !globals->get_soundmgr()->is_playing("inner-marker") ) {
|
|
|
|
globals->get_soundmgr()->play_looped( "inner-marker" );
|
|
|
|
}
|
|
|
|
}
|
2001-05-15 16:52:02 +00:00
|
|
|
#endif
|
2001-03-28 07:12:11 +00:00
|
|
|
} else {
|
2001-03-29 06:05:01 +00:00
|
|
|
// cout << "no marker" << endl;
|
2001-05-15 16:52:02 +00:00
|
|
|
#ifdef ENABLE_AUDIO_SUPPORT
|
2001-03-28 07:12:11 +00:00
|
|
|
globals->get_soundmgr()->stop( "outer-marker" );
|
|
|
|
globals->get_soundmgr()->stop( "middle-marker" );
|
|
|
|
globals->get_soundmgr()->stop( "inner-marker" );
|
2001-05-15 16:52:02 +00:00
|
|
|
#endif
|
2001-03-16 23:59:02 +00:00
|
|
|
}
|
2001-03-28 07:12:11 +00:00
|
|
|
last_beacon = beacon_type;
|
2001-03-16 23:59:02 +00:00
|
|
|
|
2002-09-19 01:11:07 +00:00
|
|
|
navcom1.search();
|
|
|
|
navcom2.search();
|
2002-06-16 00:05:07 +00:00
|
|
|
adf.search();
|
2002-07-04 21:37:34 +00:00
|
|
|
xponder.search();
|
2000-04-24 23:50:59 +00:00
|
|
|
}
|