_name(name),
_has_metar(has_metar),
_dynamics(0),
- mLoadedXML(false)
+ mRunwaysLoaded(false),
+ mTaxiwaysLoaded(true)
{
}
unsigned int FGAirport::numRunways() const
{
+ loadRunways();
return mRunways.size();
}
FGRunway* FGAirport::getRunwayByIndex(unsigned int aIndex) const
{
+ loadRunways();
+
assert(aIndex >= 0 && aIndex < mRunways.size());
return mRunways[aIndex];
}
FGAirport::Runway_iterator
FGAirport::getIteratorForRunwayIdent(const string& aIdent) const
-{
+{
+ loadRunways();
+
string ident(aIdent);
if ((aIdent.size() == 1) || !isdigit(aIdent[1])) {
ident = "0" + aIdent;
FGRunway* FGAirport::findBestRunwayForHeading(double aHeading) const
{
+ loadRunways();
+
Runway_iterator it = mRunways.begin();
FGRunway* result = NULL;
double currentBestQuality = 0.0;
bool FGAirport::hasHardRunwayOfLengthFt(double aLengthFt) const
{
+ loadRunways();
+
unsigned int numRunways(mRunways.size());
for (unsigned int r=0; r<numRunways; ++r) {
FGRunway* rwy = mRunways[r];
unsigned int FGAirport::numTaxiways() const
{
+ loadTaxiways();
return mTaxiways.size();
}
FGTaxiway* FGAirport::getTaxiwayByIndex(unsigned int aIndex) const
{
+ loadTaxiways();
assert(aIndex >= 0 && aIndex < mTaxiways.size());
return mTaxiways[aIndex];
}
unsigned int FGAirport::numPavements() const
{
+ loadTaxiways();
return mPavements.size();
}
FGPavement* FGAirport::getPavementByIndex(unsigned int aIndex) const
{
+ loadTaxiways();
assert(aIndex >= 0 && aIndex < mPavements.size());
return mPavements[aIndex];
}
return FGAirport::findByIdent(id);
}
-
-void FGAirport::loadSceneryDefintions() const
+void FGAirport::loadRunways() const
{
- mLoadedXML = true;
+ if (mRunwaysLoaded) {
+ return; // already loaded, great
+ }
+ mRunwaysLoaded = true;
+ loadSceneryDefintions();
+}
+
+void FGAirport::loadTaxiways() const
+{
+ if (mTaxiwaysLoaded) {
+ return; // already loaded, great
+ }
+}
+
+void FGAirport::loadSceneryDefintions() const
+{
// allow users to disable the scenery data in the short-term
// longer term, this option can probably disappear
- if (fgGetBool("/sim/use-scenery-airport-data") == false) {
+ if (!fgGetBool("/sim/use-scenery-airport-data")) {
return;
}
void FGAirport::readTowerData(SGPropertyNode* aRoot)
{
- SGPropertyNode* twrNode = aRoot->getChild("twr");
+ SGPropertyNode* twrNode = aRoot->getChild("tower")->getChild("twr");
double lat = twrNode->getDoubleValue("lat"),
lon = twrNode->getDoubleValue("lon"),
elevM = twrNode->getDoubleValue("elev-m");
bool _has_metar;
FGAirportDynamics *_dynamics;
- /**
- * This flag indicates if we have attempted to load data from the scenery
- * storage to supplement the Apt.Dat information.
- */
- mutable bool mLoadedXML;
+ void loadRunways() const;
+ void loadTaxiways() const;
+
+ mutable bool mRunwaysLoaded;
+ mutable bool mTaxiwaysLoaded;
std::vector<FGRunwayPtr> mRunways;
std::vector<FGTaxiwayPtr> mTaxiways;