2005-10-01 11:08:06 +00:00
|
|
|
// tacan.cxx - Tactical Navigation Beacon.
|
|
|
|
// Written by Vivian Meazaa, started 2005.
|
|
|
|
//
|
|
|
|
// This file is in the Public Domain and comes with no warranty.
|
|
|
|
|
2006-02-22 21:04:47 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
|
|
|
#include <simgear/math/sg_random.h>
|
|
|
|
|
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
#include <Navaids/navlist.hxx>
|
2005-11-25 18:55:29 +00:00
|
|
|
#include <vector>
|
2005-10-01 11:08:06 +00:00
|
|
|
|
|
|
|
#include "tacan.hxx"
|
|
|
|
|
2005-11-25 18:55:29 +00:00
|
|
|
SG_USING_STD(vector);
|
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adjust the range.
|
|
|
|
*
|
|
|
|
* Start by calculating the radar horizon based on the elevation
|
|
|
|
* difference, then clamp to the maximum, then add a fudge for
|
|
|
|
* borderline reception.
|
|
|
|
*/
|
|
|
|
static double
|
|
|
|
adjust_range (double transmitter_elevation_ft, double aircraft_altitude_ft,
|
|
|
|
double max_range_nm)
|
|
|
|
{
|
|
|
|
max_range_nm = 150;
|
|
|
|
double delta_elevation_ft =
|
|
|
|
fabs(aircraft_altitude_ft - transmitter_elevation_ft);
|
|
|
|
double range_nm = 1.23 * sqrt(delta_elevation_ft);
|
|
|
|
if (range_nm > max_range_nm)
|
|
|
|
range_nm = max_range_nm;
|
|
|
|
else if (range_nm < 20.0)
|
|
|
|
range_nm = 20.0;
|
|
|
|
double rand = sg_random();
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " tacan range " << range_nm << " max range " << max_range_nm);
|
|
|
|
return range_nm + (range_nm * rand * rand);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TACAN::TACAN ( SGPropertyNode *node )
|
|
|
|
: _last_distance_nm(0),
|
|
|
|
_last_frequency_mhz(-1),
|
|
|
|
_time_before_search_sec(0),
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid(false),
|
2005-10-01 11:08:06 +00:00
|
|
|
_transmitter_valid(false),
|
2006-06-15 19:16:21 +00:00
|
|
|
_transmitter_pos(SGGeod::fromDeg(0, 0)),
|
2005-10-01 11:08:06 +00:00
|
|
|
_transmitter_range_nm(0),
|
|
|
|
_transmitter_bias(0.0),
|
|
|
|
name("tacan"),
|
|
|
|
num(0)
|
|
|
|
{
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
int i;
|
|
|
|
for ( i = 0; i < node->nChildren(); ++i ) {
|
|
|
|
SGPropertyNode *child = node->getChild(i);
|
|
|
|
string cname = child->getName();
|
|
|
|
string cval = child->getStringValue();
|
|
|
|
if ( cname == "name" ) {
|
|
|
|
name = cval;
|
|
|
|
} else if ( cname == "number" ) {
|
|
|
|
num = child->getIntValue();
|
|
|
|
} else {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "Error in TACAN config logic" );
|
|
|
|
if ( name.length() ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "Section = " << name );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TACAN::TACAN ()
|
|
|
|
: _last_distance_nm(0),
|
|
|
|
_last_frequency_mhz(-1),
|
|
|
|
_time_before_search_sec(0),
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid(false),
|
2005-10-01 11:08:06 +00:00
|
|
|
_transmitter_valid(false),
|
2006-06-15 19:16:21 +00:00
|
|
|
_transmitter_pos(SGGeod::fromDeg(0, 0)),
|
2005-10-01 11:08:06 +00:00
|
|
|
_transmitter_range_nm(0),
|
|
|
|
_transmitter_bearing_deg(0),
|
|
|
|
_transmitter_bias(0.0),
|
|
|
|
_transmitter_name(""),
|
|
|
|
name("tacan")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TACAN::~TACAN ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TACAN::init ()
|
|
|
|
{
|
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name;
|
|
|
|
|
|
|
|
SGPropertyNode *node = fgGetNode(branch.c_str(), num, true );
|
|
|
|
|
|
|
|
_longitude_node = fgGetNode("/position/longitude-deg", true);
|
|
|
|
_latitude_node = fgGetNode("/position/latitude-deg", true);
|
|
|
|
_altitude_node = fgGetNode("/position/altitude-ft", true);
|
2006-04-26 21:55:42 +00:00
|
|
|
_heading_node = fgGetNode("/orientation/heading-deg", true);
|
|
|
|
_yaw_node = fgGetNode("/orientation/side-slip-deg", true);
|
2005-10-01 11:08:06 +00:00
|
|
|
_serviceable_node = node->getChild("serviceable", 0, true);
|
|
|
|
_electrical_node = fgGetNode("/systems/electrical/outputs/tacan", true);
|
2006-06-09 18:48:57 +00:00
|
|
|
_ident_node = node->getChild("ident", 0, true);
|
2005-10-01 11:08:06 +00:00
|
|
|
SGPropertyNode *fnode = node->getChild("frequencies", 0, true);
|
|
|
|
_source_node = fnode->getChild("source", 0, true);
|
|
|
|
_frequency_node = fnode->getChild("selected-mhz", 0, true);
|
|
|
|
_channel_node = fnode->getChild("selected-channel", 1, true);
|
|
|
|
_channel_node = fnode->getChild("selected-channel", 2, true);
|
|
|
|
_channel_node = fnode->getChild("selected-channel", 3, true);
|
|
|
|
_channel_node = fnode->getChild("selected-channel", 4, true);
|
|
|
|
_in_range_node = node->getChild("in-range", 0, true);
|
|
|
|
_distance_node = node->getChild("indicated-distance-nm", 0, true);
|
|
|
|
_speed_node = node->getChild("indicated-ground-speed-kt", 0, true);
|
|
|
|
_time_node = node->getChild("indicated-time-min", 0, true);
|
|
|
|
_name_node = node->getChild("name", 0, true);
|
|
|
|
_bearing_node = node->getChild("indicated-bearing-true-deg", 0, true);
|
2006-04-26 21:55:42 +00:00
|
|
|
SGPropertyNode *dnode = node->getChild("display", 0, true);
|
|
|
|
_x_shift_node = dnode->getChild("x-shift", 0, true);
|
|
|
|
_y_shift_node = dnode->getChild("y-shift", 0, true);
|
|
|
|
_rotation_node = dnode->getChild("rotation", 0, true);
|
|
|
|
_channel_node = dnode->getChild("channel", 0, true);
|
2006-05-15 10:47:32 +00:00
|
|
|
|
|
|
|
SGPropertyNode *cnode = fgGetNode("/ai/models/carrier", num, false );
|
|
|
|
if (cnode)
|
|
|
|
_carrier_name_node = cnode->getChild("name", 0, false);
|
|
|
|
|
|
|
|
SGPropertyNode *tnode = fgGetNode("/ai/models/aircraft", num, false);
|
|
|
|
if (tnode)
|
|
|
|
_tanker_callsign_node = tnode->getChild("callsign", 0, false);
|
2006-05-18 16:59:04 +00:00
|
|
|
|
|
|
|
SGPropertyNode *mnode = fgGetNode("/ai/models/multiplayer", num, false);
|
|
|
|
if (mnode)
|
|
|
|
_mp_callsign_node = mnode->getChild("callsign", 0, false);
|
2005-10-01 11:08:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TACAN::update (double delta_time_sec)
|
2005-11-25 19:07:24 +00:00
|
|
|
{
|
|
|
|
double az2 = 0;
|
2005-10-01 11:08:06 +00:00
|
|
|
double bearing = 0;
|
2005-11-25 19:07:24 +00:00
|
|
|
double distance = 0;
|
2006-05-24 10:06:44 +00:00
|
|
|
double mobile_az2 = 0;
|
2006-04-19 17:36:41 +00:00
|
|
|
double mobile_bearing = 0;
|
|
|
|
double mobile_distance = 0;
|
2006-05-24 10:06:44 +00:00
|
|
|
double frequency_mhz = 0;
|
2006-04-19 17:36:41 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
string _channel, _last_channel, _channel_1, _channel_2,_channel_3, _channel_4;
|
|
|
|
|
2005-11-25 19:07:24 +00:00
|
|
|
// If it's off, don't waste any time.
|
|
|
|
if (!_serviceable_node->getBoolValue() || !_electrical_node->getBoolValue()) {
|
|
|
|
_last_distance_nm = 0;
|
|
|
|
_in_range_node->setBoolValue(false);
|
|
|
|
_distance_node->setDoubleValue(0);
|
|
|
|
_speed_node->setDoubleValue(0);
|
|
|
|
_time_node->setDoubleValue(0);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "skip tacan" );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
// Figure out the source
|
|
|
|
const char * source = _source_node->getStringValue();
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
if (source[0] == '\0') {
|
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name + "/frequencies/selected-channel";
|
|
|
|
_source_node->setStringValue(branch.c_str());
|
|
|
|
source = _source_node->getStringValue();
|
2005-11-25 19:07:24 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "source " << source );
|
2005-10-01 11:08:06 +00:00
|
|
|
}
|
2005-11-25 19:07:24 +00:00
|
|
|
// Get the channel
|
2005-10-01 11:08:06 +00:00
|
|
|
_channel_1 = fgGetString("/instrumentation/tacan/frequencies/selected-channel[1]");
|
|
|
|
_channel_2 = fgGetString("/instrumentation/tacan/frequencies/selected-channel[2]");
|
|
|
|
_channel_3 = fgGetString("/instrumentation/tacan/frequencies/selected-channel[3]");
|
|
|
|
_channel_4 = fgGetString("/instrumentation/tacan/frequencies/selected-channel[4]");
|
2006-04-26 21:55:42 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "channels " << _channel_1 << _channel_2 << _channel_3 << _channel_4);
|
2006-04-26 21:55:42 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
_channel = _channel_1 + _channel_2 + _channel_3 + _channel_4;
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2006-04-26 21:55:42 +00:00
|
|
|
// Get the frequency
|
2005-10-01 11:08:06 +00:00
|
|
|
if (_channel != _last_channel) {
|
|
|
|
_time_before_search_sec = 0;
|
|
|
|
_last_channel = _channel;
|
|
|
|
frequency_mhz = searchChannel(_channel);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "frequency " << frequency_mhz );
|
|
|
|
_frequency_node->setDoubleValue(frequency_mhz);
|
2005-11-25 19:07:24 +00:00
|
|
|
}
|
|
|
|
|
2006-04-26 21:55:42 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "channel " << _channel );
|
2005-10-01 11:08:06 +00:00
|
|
|
// Get the aircraft position
|
2005-11-25 19:07:24 +00:00
|
|
|
double longitude_deg = _longitude_node->getDoubleValue();
|
|
|
|
double latitude_deg = _latitude_node->getDoubleValue();
|
|
|
|
double altitude_m = _altitude_node->getDoubleValue() * SG_FEET_TO_METER;
|
2006-04-26 21:55:42 +00:00
|
|
|
double heading = _heading_node->getDoubleValue() ;
|
|
|
|
double yaw = _yaw_node->getDoubleValue() ;
|
2005-11-25 19:07:24 +00:00
|
|
|
double longitude_rad = longitude_deg * SGD_DEGREES_TO_RADIANS;
|
|
|
|
double latitude_rad = latitude_deg * SGD_DEGREES_TO_RADIANS;
|
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
// On timeout, scan again
|
|
|
|
_time_before_search_sec -= delta_time_sec;
|
2006-04-26 21:55:42 +00:00
|
|
|
if (_time_before_search_sec < 0 && frequency_mhz >= 0)
|
2005-11-25 19:07:24 +00:00
|
|
|
search(frequency_mhz, longitude_rad, latitude_rad, altitude_m);
|
2005-10-01 11:08:06 +00:00
|
|
|
|
|
|
|
// Calculate the distance to the transmitter
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
//calculate the bearing and range of the mobile from the aircraft
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "carrier_lat " << _mobile_lat);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "carrier_lon " << _mobile_lon);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "carrier_name " << _mobile_name);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "carrier_valid " << _mobile_valid);
|
2006-04-19 17:36:41 +00:00
|
|
|
geo_inverse_wgs_84(altitude_m,
|
|
|
|
latitude_deg,
|
|
|
|
longitude_deg,
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_lat,
|
|
|
|
_mobile_lon,
|
|
|
|
&mobile_bearing, &mobile_az2, &mobile_distance);
|
2005-11-25 19:07:24 +00:00
|
|
|
|
|
|
|
//calculate the bearing and range of the station from the aircraft
|
2006-06-15 19:16:21 +00:00
|
|
|
SGGeod pos = SGGeod::fromDegM(longitude_deg, latitude_deg, altitude_m);
|
|
|
|
geo_inverse_wgs_84(pos, _transmitter_pos,
|
2005-11-25 19:07:24 +00:00
|
|
|
&bearing, &az2, &distance);
|
|
|
|
|
|
|
|
|
|
|
|
//select the nearer
|
2006-05-24 10:06:44 +00:00
|
|
|
if ( mobile_distance <= distance && _mobile_valid) {
|
2006-04-19 17:36:41 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "mobile_distance_m " << mobile_distance);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "distance_m " << distance);
|
|
|
|
bearing = mobile_bearing;
|
|
|
|
distance = mobile_distance;
|
2006-06-15 19:16:21 +00:00
|
|
|
_transmitter_pos.setElevationFt(_mobile_elevation_ft);
|
2006-05-24 10:06:44 +00:00
|
|
|
_transmitter_range_nm = _mobile_range_nm;
|
|
|
|
_transmitter_bias = _mobile_bias;
|
|
|
|
_transmitter_name = _mobile_name;
|
2005-11-25 19:07:24 +00:00
|
|
|
_name_node->setStringValue(_transmitter_name.c_str());
|
2006-06-09 18:29:51 +00:00
|
|
|
_transmitter_ident = _mobile_ident;
|
|
|
|
_ident_node->setStringValue(_transmitter_ident.c_str());
|
2006-04-26 21:55:42 +00:00
|
|
|
_channel_node->setStringValue(_channel.c_str());
|
2005-11-25 19:07:24 +00:00
|
|
|
}
|
|
|
|
|
2006-04-26 21:55:42 +00:00
|
|
|
//// calculate some values for boresight display
|
2005-11-25 19:07:24 +00:00
|
|
|
double distance_nm = distance * SG_METER_TO_NM;
|
2006-04-26 21:55:42 +00:00
|
|
|
|
|
|
|
//// calculate look left/right to target, without yaw correction
|
|
|
|
// double horiz_offset = bearing - heading;
|
|
|
|
//
|
|
|
|
// if (horiz_offset > 180.0) horiz_offset -= 360.0;
|
|
|
|
// if (horiz_offset < -180.0) horiz_offset += 360.0;
|
|
|
|
|
|
|
|
//// now correct look left/right for yaw
|
|
|
|
// horiz_offset += yaw;
|
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
// use the bearing for a plan position indicator display
|
2006-04-26 21:55:42 +00:00
|
|
|
|
|
|
|
double horiz_offset = bearing;
|
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "distance_nm " << distance_nm << " bearing "
|
|
|
|
<< bearing << " horiz_offset " << horiz_offset);
|
|
|
|
|
|
|
|
// calculate values for radar display
|
|
|
|
double y_shift = distance_nm * cos( horiz_offset * SG_DEGREES_TO_RADIANS);
|
|
|
|
double x_shift = distance_nm * sin( horiz_offset * SG_DEGREES_TO_RADIANS);
|
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "y_shift " << y_shift << " x_shift " << x_shift);
|
|
|
|
|
|
|
|
double rotation = 0;
|
2005-10-01 11:08:06 +00:00
|
|
|
|
2006-06-15 19:16:21 +00:00
|
|
|
double range_nm = adjust_range(_transmitter_pos.getElevationFt(),
|
2005-10-01 11:08:06 +00:00
|
|
|
altitude_m * SG_METER_TO_FEET,
|
|
|
|
_transmitter_range_nm);
|
|
|
|
|
|
|
|
if (distance_nm <= range_nm) {
|
|
|
|
double speed_kt = (fabs(distance_nm - _last_distance_nm) *
|
|
|
|
((1 / delta_time_sec) * 3600.0));
|
|
|
|
_last_distance_nm = distance_nm;
|
|
|
|
|
|
|
|
_in_range_node->setBoolValue(true);
|
|
|
|
double tmp_dist = distance_nm - _transmitter_bias;
|
|
|
|
if ( tmp_dist < 0.0 ) {
|
|
|
|
tmp_dist = 0.0;
|
|
|
|
}
|
|
|
|
_distance_node->setDoubleValue( tmp_dist );
|
|
|
|
_speed_node->setDoubleValue(speed_kt);
|
|
|
|
_time_node->setDoubleValue(distance_nm/speed_kt*60.0);
|
|
|
|
_bearing_node->setDoubleValue(bearing);
|
2006-04-26 21:55:42 +00:00
|
|
|
_x_shift_node->setDoubleValue(x_shift);
|
|
|
|
_y_shift_node->setDoubleValue(y_shift);
|
|
|
|
_rotation_node->setDoubleValue(rotation);
|
2005-10-01 11:08:06 +00:00
|
|
|
} else {
|
|
|
|
_last_distance_nm = 0;
|
|
|
|
_in_range_node->setBoolValue(false);
|
|
|
|
_distance_node->setDoubleValue(0);
|
|
|
|
_speed_node->setDoubleValue(0);
|
|
|
|
_time_node->setDoubleValue(0);
|
|
|
|
_bearing_node->setDoubleValue(0);
|
2006-04-26 21:55:42 +00:00
|
|
|
_x_shift_node->setDoubleValue(0);
|
|
|
|
_y_shift_node->setDoubleValue(0);
|
|
|
|
_rotation_node->setDoubleValue(0);
|
2005-10-01 11:08:06 +00:00
|
|
|
}
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
// If we can't find a valid station set everything to zero
|
2006-05-24 10:06:44 +00:00
|
|
|
if (!_transmitter_valid && !_mobile_valid ) {
|
2005-10-01 11:08:06 +00:00
|
|
|
_in_range_node->setBoolValue(false);
|
|
|
|
_distance_node->setDoubleValue(0);
|
|
|
|
_speed_node->setDoubleValue(0);
|
|
|
|
_time_node->setDoubleValue(0);
|
|
|
|
_bearing_node->setDoubleValue(0);
|
2006-04-26 21:55:42 +00:00
|
|
|
_x_shift_node->setDoubleValue(0);
|
|
|
|
_y_shift_node->setDoubleValue(0);
|
|
|
|
_rotation_node->setDoubleValue(0);
|
2005-10-01 11:08:06 +00:00
|
|
|
_transmitter_name = "";
|
|
|
|
_name_node->setStringValue(_transmitter_name.c_str());
|
2006-06-09 18:29:51 +00:00
|
|
|
_transmitter_ident = "";
|
|
|
|
_ident_node->setStringValue(_transmitter_ident.c_str());
|
2006-04-26 21:55:42 +00:00
|
|
|
_channel_node->setStringValue(_channel.c_str());
|
2005-10-01 11:08:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} // end function update
|
|
|
|
|
|
|
|
void
|
|
|
|
TACAN::search (double frequency_mhz, double longitude_rad,
|
2005-11-25 19:07:24 +00:00
|
|
|
double latitude_rad, double altitude_m)
|
|
|
|
{
|
2006-04-19 17:36:41 +00:00
|
|
|
int number, i;
|
2006-05-24 10:06:44 +00:00
|
|
|
bool freq_valid = false;
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "tacan freq " << frequency_mhz );
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
// reset search time
|
|
|
|
_time_before_search_sec = 1.0;
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
//try any carriers first
|
2006-05-24 10:06:44 +00:00
|
|
|
FGNavRecord *mobile_tacan
|
2005-10-01 11:08:06 +00:00
|
|
|
= globals->get_carrierlist()->findStationByFreq( frequency_mhz );
|
2006-05-24 10:06:44 +00:00
|
|
|
freq_valid = (mobile_tacan != NULL);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "mobile freqency valid " << freq_valid );
|
2005-10-01 11:08:06 +00:00
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
if ( freq_valid ) {
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
string str1( mobile_tacan->get_name() );
|
2005-11-25 18:55:29 +00:00
|
|
|
|
|
|
|
SGPropertyNode * branch = fgGetNode("ai/models", true);
|
|
|
|
vector<SGPropertyNode_ptr> carrier = branch->getChildren("carrier");
|
|
|
|
|
2006-04-19 17:36:41 +00:00
|
|
|
number = carrier.size();
|
2005-11-25 18:55:29 +00:00
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "carrier " << number );
|
|
|
|
|
|
|
|
for ( i = 0; i < number; ++i ) {
|
2005-11-25 19:07:24 +00:00
|
|
|
string str2 ( carrier[i]->getStringValue("name", ""));
|
2006-04-19 17:36:41 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "carrier name " << str2 );
|
2005-11-25 19:07:24 +00:00
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "strings 1 " << str1 << " 2 " << str2 );
|
|
|
|
unsigned int loc1= str1.find( str2, 0 );
|
|
|
|
if ( loc1 != string::npos && str2 != "" ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " string found" );
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_lat = carrier[i]->getDoubleValue("position/latitude-deg");
|
|
|
|
_mobile_lon = carrier[i]->getDoubleValue("position/longitude-deg");
|
|
|
|
_mobile_elevation_ft = mobile_tacan->get_elev_ft();
|
|
|
|
_mobile_range_nm = mobile_tacan->get_range();
|
|
|
|
_mobile_bias = mobile_tacan->get_multiuse();
|
|
|
|
_mobile_name = mobile_tacan->get_name();
|
2006-06-09 18:29:51 +00:00
|
|
|
_mobile_ident = mobile_tacan->get_trans_ident();
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = true;
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " carrier transmitter valid " << _mobile_valid );
|
2005-11-25 19:07:24 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = false;
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " carrier transmitter invalid " << _mobile_valid );
|
2005-11-25 19:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "name " << _mobile_name);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "lat " << _mobile_lat << "lon " << _mobile_lon);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "elev " << _mobile_elevation_ft);
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
//try any AI tankers second
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
if ( !_mobile_valid) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "tanker transmitter valid start " << _mobile_valid );
|
2006-04-19 17:36:41 +00:00
|
|
|
|
|
|
|
SGPropertyNode * branch = fgGetNode("ai/models", true);
|
|
|
|
vector<SGPropertyNode_ptr> tanker = branch->getChildren("aircraft");
|
|
|
|
|
|
|
|
number = tanker.size();
|
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "tanker number " << number );
|
|
|
|
|
|
|
|
for ( i = 0; i < number; ++i ) {
|
|
|
|
string str4 ( tanker[i]->getStringValue("callsign", ""));
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "tanker callsign " << str4 );
|
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "strings 1 " << str1 << " 4 " << str4 );
|
|
|
|
unsigned int loc1= str1.find( str4, 0 );
|
2006-04-19 17:36:41 +00:00
|
|
|
if ( loc1 != string::npos && str4 != "" ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " string found" );
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_lat = tanker[i]->getDoubleValue("position/latitude-deg");
|
|
|
|
_mobile_lon = tanker[i]->getDoubleValue("position/longitude-deg");
|
|
|
|
_mobile_elevation_ft = tanker[i]->getDoubleValue("position/altitude-ft");
|
|
|
|
_mobile_range_nm = mobile_tacan->get_range();
|
|
|
|
_mobile_bias = mobile_tacan->get_multiuse();
|
|
|
|
_mobile_name = mobile_tacan->get_name();
|
2006-06-09 18:29:51 +00:00
|
|
|
_mobile_ident = mobile_tacan->get_trans_ident();
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = true;
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " tanker transmitter valid " << _mobile_valid );
|
2006-04-19 17:36:41 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = false;
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " tanker transmitter invalid " << _mobile_valid );
|
2006-04-19 17:36:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "tanker name " << _mobile_name);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "lat " << _mobile_lat << "lon " << _mobile_lon);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "elev " << _mobile_elevation_ft);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "range " << _mobile_range_nm);
|
2006-04-19 17:36:41 +00:00
|
|
|
}
|
2005-10-01 11:08:06 +00:00
|
|
|
|
2006-05-18 16:59:04 +00:00
|
|
|
//try any mp tankers third, if we haven't found the tanker in the ai aircraft
|
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
if ( !_mobile_valid ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp tanker transmitter valid start " << _mobile_valid );
|
2006-05-18 16:59:04 +00:00
|
|
|
|
|
|
|
SGPropertyNode * branch = fgGetNode("ai/models", true);
|
|
|
|
vector<SGPropertyNode_ptr> mp_tanker = branch->getChildren("multiplayer");
|
|
|
|
|
|
|
|
number = mp_tanker.size();
|
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp tanker number " << number );
|
|
|
|
|
|
|
|
for ( i = 0; i < number; ++i ) {
|
|
|
|
string str6 ( mp_tanker[i]->getStringValue("callsign", ""));
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "mp tanker callsign " << str6 );
|
|
|
|
|
2006-05-24 10:06:44 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "strings 1 " << str1 << " 5 " << str6 );
|
|
|
|
unsigned int loc1= str1.find( str6, 0 );
|
2006-05-18 16:59:04 +00:00
|
|
|
if ( loc1 != string::npos && str6 != "" ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " string found" );
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_lat = mp_tanker[i]->getDoubleValue("position/latitude-deg");
|
|
|
|
_mobile_lon = mp_tanker[i]->getDoubleValue("position/longitude-deg");
|
|
|
|
_mobile_elevation_ft = mp_tanker[i]->getDoubleValue("position/altitude-ft");
|
|
|
|
_mobile_range_nm = mobile_tacan->get_range();
|
|
|
|
_mobile_bias = mobile_tacan->get_multiuse();
|
|
|
|
_mobile_name = mobile_tacan->get_name();
|
2006-06-09 18:29:51 +00:00
|
|
|
_mobile_ident = mobile_tacan->get_trans_ident();
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = true;
|
|
|
|
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp tanker transmitter valid " << _mobile_valid );
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp_tanker name " << _mobile_name);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp lat " << _mobile_lat << "lon " << _mobile_lon);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp elev " << _mobile_elevation_ft);
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp range " << _mobile_range_nm);
|
2006-05-18 16:59:04 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = false;
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mp tanker transmitter invalid " << _mobile_valid );
|
|
|
|
}
|
2006-05-18 16:59:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2006-05-24 10:06:44 +00:00
|
|
|
_mobile_valid = false;
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, " mobile transmitter invalid " << _mobile_valid );
|
2006-05-18 16:59:04 +00:00
|
|
|
}
|
2006-05-24 10:06:44 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
// try the TACAN/VORTAC list next
|
|
|
|
FGNavRecord *tacan
|
|
|
|
= globals->get_tacanlist()->findByFreq( frequency_mhz, longitude_rad,
|
2005-11-25 19:07:24 +00:00
|
|
|
latitude_rad, altitude_m);
|
2005-10-01 11:08:06 +00:00
|
|
|
|
|
|
|
_transmitter_valid = (tacan != NULL);
|
|
|
|
|
|
|
|
if ( _transmitter_valid ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "transmitter valid " << _transmitter_valid );
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2006-06-15 19:16:21 +00:00
|
|
|
_transmitter_pos = tacan->get_pos();
|
2005-10-01 11:08:06 +00:00
|
|
|
_transmitter_range_nm = tacan->get_range();
|
|
|
|
_transmitter_bias = tacan->get_multiuse();
|
|
|
|
_transmitter_name = tacan->get_name();
|
|
|
|
_name_node->setStringValue(_transmitter_name.c_str());
|
2006-06-09 18:29:51 +00:00
|
|
|
_transmitter_ident = tacan->get_trans_ident();
|
|
|
|
_ident_node->setStringValue(_transmitter_ident.c_str());
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-11-25 18:55:29 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "name " << _transmitter_name);
|
2006-06-15 19:16:21 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, _transmitter_pos);
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
} else {
|
2005-11-25 19:07:24 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "transmitter invalid " << _transmitter_valid );
|
|
|
|
}
|
2005-10-01 11:08:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double
|
2005-10-25 13:49:55 +00:00
|
|
|
TACAN::searchChannel (const string& _channel){
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
double frequency_khz = 0;
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
FGTACANRecord *freq
|
|
|
|
= globals->get_channellist()->findByChannel( _channel );
|
2005-11-25 19:07:24 +00:00
|
|
|
double _freq_valid = (freq != NULL);
|
2005-10-01 11:08:06 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "freq valid " << _freq_valid );
|
|
|
|
if ( _freq_valid ) {
|
|
|
|
frequency_khz = freq->get_freq();
|
|
|
|
SG_LOG( SG_INSTR, SG_DEBUG, "freq output " << frequency_khz );
|
|
|
|
//check sanity
|
2006-06-19 10:00:25 +00:00
|
|
|
if (frequency_khz >=9620 && frequency_khz <= 121300)
|
2005-11-25 19:07:24 +00:00
|
|
|
return frequency_khz/100;
|
2005-10-01 11:08:06 +00:00
|
|
|
}
|
|
|
|
return frequency_khz = 0;
|
|
|
|
} // end TACAN::searchChannel
|
2005-11-25 19:07:24 +00:00
|
|
|
|
2005-10-01 11:08:06 +00:00
|
|
|
// end of TACAN.cxx
|