X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Fnavrecord.cxx;h=5edc64ef180c2babd21b71e19b06eb617eea3de3;hb=cd20c6073c8f4341d0f82070abae14b765cc8630;hp=041c12f1a663fc84aef85f6b021682eedb01c089;hpb=4fae1160d4c8e6796fd4481a7c9b6470ed8e6158;p=flightgear.git diff --git a/src/Navaids/navrecord.cxx b/src/Navaids/navrecord.cxx index 041c12f1a..5edc64ef1 100644 --- a/src/Navaids/navrecord.cxx +++ b/src/Navaids/navrecord.cxx @@ -32,7 +32,7 @@ #include #include #include -#include + #include #include @@ -41,6 +41,7 @@ #include #include
+#include FGNavRecord::FGNavRecord(Type aTy, const std::string& aIdent, const std::string& aName, const SGGeod& aPos, @@ -82,6 +83,7 @@ FGNavRecord::FGNavRecord(Type aTy, const std::string& aIdent, } } + init(true); // init FGPositioned (now position is adjusted) } void FGNavRecord::initAirportRelation() @@ -96,7 +98,10 @@ void FGNavRecord::initAirportRelation() } if (type() != GS) { - readAirportSceneryData(); + SGPropertyNode* ilsData = ilsDataForRunwayAndNavaid(mRunway, ident()); + if (ilsData) { + processSceneryILS(ilsData); + } } // fudge elevation to the runway elevation if it's not specified @@ -120,36 +125,6 @@ void FGNavRecord::initAirportRelation() } } -void FGNavRecord::readAirportSceneryData() -{ - // 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")) { - return; - } - - SGPath path; - SGPropertyNode_ptr rootNode = new SGPropertyNode; - if (!XMLLoader::findAirportData(mRunway->airport()->ident(), "ils", path)) { - return; - } - - readProperties(path.str(), rootNode); - SGPropertyNode* runwayNode, *ilsNode; - for (int i=0; (runwayNode = rootNode->getChild("runway", i)) != NULL; ++i) { - for (int j=0; (ilsNode = runwayNode->getChild("ils", j)) != NULL; ++j) { - // must match on both nav-ident and runway ident, to support the following: - // - runways with multiple distinct ILS installations (KEWD, for example) - // - runways where both ends share the same nav ident (LFAT, for example) - if ((ilsNode->getStringValue("nav-id") == ident()) && - (ilsNode->getStringValue("rwy") == mRunway->ident())) { - processSceneryILS(ilsNode); - return; - } - } // of ILS iteration - } // of runway iteration -} - void FGNavRecord::processSceneryILS(SGPropertyNode* aILSNode) { double hdgDeg = aILSNode->getDoubleValue("hdg-deg"), @@ -213,6 +188,13 @@ double FGNavRecord::localizerWidth() const } +flightgear::PositionedBinding* +FGNavRecord::createBinding(SGPropertyNode* nd) const +{ + return new flightgear::NavaidBinding(this, nd); +} + + FGTACANRecord::FGTACANRecord(void) : channel(""), freq(0)