// forward decls
class FGAirport;
+class FGNavRecord;
class FGRunway : public FGRunwayBase
{
bool _reciprocal;
double _displ_thresh;
double _stopway;
+ FGNavRecord* _ils;
public:
FGRunway(FGAirport* aAirport, const std::string& rwy_no,
double stopwayM() const
{ return _stopway * SG_FEET_TO_METER; }
- /**
+ /**
* Airport this runway is located at
*/
FGAirport* airport() const
// FIXME - should die once airport / runway creation is cleaned up
void setAirport(FGAirport* aAirport)
{ _airport = aAirport; }
+
+ FGNavRecord* ILS() const { return _ils; }
+ void setILS(FGNavRecord* nav) { _ils = nav; }
};
#endif // _FG_RUNWAYS_HXX
#include <simgear/misc/sgstream.hxx>
#include <simgear/structure/exception.hxx>
#include <simgear/debug/logstream.hxx>
+#include <simgear/sg_inlines.h>
#include <Navaids/navrecord.hxx>
#include <Navaids/navdb.hxx>
range(aRange),
multiuse(aMultiuse),
_name(aName),
+ mRunway(NULL),
serviceable(true),
trans_ident(aIdent)
{
return; // not airport-located
}
- FGRunway* runway = getRunwayFromName(_name);
+ mRunway = getRunwayFromName(_name);
// fudge elevation to the runway elevation if it's not specified
if (fabs(elevation()) < 0.01) {
- mPosition.setElevationFt(runway->elevation());
+ mPosition.setElevationFt(mRunway->elevation());
+ }
+
+ if (type() == ILS) {
+ mRunway->setILS(this);
}
// align localizers with their runway
double threshold
= fgGetDouble( "/sim/navdb/localizers/auto-align-threshold-deg", 5.0 );
- alignLocaliserWithRunway(runway, threshold);
+ alignLocaliserWithRunway(threshold);
}
}
-void FGNavRecord::alignLocaliserWithRunway(FGRunway* aRunway, double aThreshold)
+void FGNavRecord::alignLocaliserWithRunway(double aThreshold)
{
// find the distance from the threshold to the localizer
- SGGeod runwayThreshold(aRunway->threshold());
+ SGGeod runwayThreshold(mRunway->threshold());
double dist, az1, az2;
SGGeodesy::inverse(mPosition, runwayThreshold, az1, az2, dist);
// back project that distance along the runway center line
- SGGeod newPos = aRunway->pointOnCenterline(dist);
+ SGGeod newPos = mRunway->pointOnCenterline(dist);
- double hdg_diff = get_multiuse() - aRunway->headingDeg();
-
- // clamp to [-180.0 ... 180.0]
- if ( hdg_diff < -180.0 ) {
- hdg_diff += 360.0;
- } else if ( hdg_diff > 180.0 ) {
- hdg_diff -= 360.0;
- }
+ double hdg_diff = get_multiuse() - mRunway->headingDeg();
+ SG_NORMALIZE_RANGE(hdg_diff, -180.0, 180.0);
if ( fabs(hdg_diff) <= aThreshold ) {
mPosition = newPos;
- set_multiuse( aRunway->headingDeg() );
+ set_multiuse( mRunway->headingDeg() );
} else {
SG_LOG(SG_GENERAL, SG_WARN, "localizer:" << ident() << ", aligning with runway "
- << aRunway->ident() << " exceeded heading threshold");
+ << mRunway->ident() << " exceeded heading threshold");
}
}
// (degrees) or dme bias (nm)
std::string _name; // verbose name in nav database
- FGRunway* runway;
+ FGRunway* mRunway; // associated runway, if there is one
bool serviceable; // for failure modeling
std::string trans_ident; // for failure modeling
*/
void initAirportRelation();
- void alignLocaliserWithRunway(FGRunway* aRunway, double aThreshold);
+ void alignLocaliserWithRunway(double aThreshold);
public:
inline ~FGNavRecord(void) {}
virtual const std::string& name() const
{ return _name; }
+
+ /**
+ * Retrieve the runway this navaid is associated with (for ILS/LOC/GS)
+ */
+ FGRunway* runway() const { return mRunway; }
};
class FGTACANRecord : public SGReferenced {