X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAirports%2Fxmlloader.cxx;h=8b35cabd5b03bab346f5df79fd9f2ec9f8a83219;hb=72131a4a4971df690ec5004977ee8eca1d0aa114;hp=9487144c99817ed42361776b9d4c495d19c368c7;hpb=e503591af4f16814d78ded49c5979e273d81a0be;p=flightgear.git diff --git a/src/Airports/xmlloader.cxx b/src/Airports/xmlloader.cxx index 9487144c9..8b35cabd5 100644 --- a/src/Airports/xmlloader.cxx +++ b/src/Airports/xmlloader.cxx @@ -13,9 +13,13 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // -#include +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif +#include #include +#include #include
#include
@@ -25,6 +29,7 @@ #include "runwayprefloader.hxx" #include "dynamics.hxx" +#include "simple.hxx" #include "runwayprefs.hxx" using std::string; @@ -32,72 +37,44 @@ using std::string; XMLLoader::XMLLoader() {} XMLLoader::~XMLLoader() {} -void XMLLoader::load(FGAirportDynamics* d) { +void XMLLoader::load(FGAirportDynamics* d) +{ FGAirportDynamicsXMLLoader visitor(d); - if (fgGetBool("/sim/paths/use-custom-scenery-data") == false) { - SGPath parkpath( globals->get_fg_root() ); - parkpath.append( "/AI/Airports/" ); - parkpath.append( d->getId() ); - parkpath.append( "parking.xml" ); - SG_LOG(SG_GENERAL, SG_DEBUG, "running old loader:" << parkpath.c_str()); - if (parkpath.exists()) { - try { - readXML(parkpath.str(), visitor); - d->init(); - } - catch (const sg_exception &) { - } - } - } else { - if(loadAirportXMLDataIntoVisitor(d->getId(), "groundnet", visitor)) { - d->init(); - } + if(loadAirportXMLDataIntoVisitor(d->parent()->ident(), "groundnet", visitor)) { + d->init(); } } void XMLLoader::load(FGRunwayPreference* p) { FGRunwayPreferenceXMLLoader visitor(p); - if (fgGetBool("/sim/paths/use-custom-scenery-data") == false) { - SGPath rwyPrefPath( globals->get_fg_root() ); - rwyPrefPath.append( "AI/Airports/" ); - rwyPrefPath.append( p->getId() ); - rwyPrefPath.append( "rwyuse.xml" ); - if (rwyPrefPath.exists()) { - try { - readXML(rwyPrefPath.str(), visitor); - } - catch (const sg_exception &) { - } - } - } else { - loadAirportXMLDataIntoVisitor(p->getId(), "rwyuse", visitor); - } -} - -void XMLLoader::load(FGSidStar* p) { - SGPath path; - if (findAirportData(p->getId(), "SID", path)) { - p->load(path); - } + loadAirportXMLDataIntoVisitor(p->getId(), "rwyuse", visitor); } bool XMLLoader::findAirportData(const std::string& aICAO, const std::string& aFileName, SGPath& aPath) { + string fileName(aFileName); + if (!simgear::strutils::ends_with(aFileName, ".xml")) { + fileName.append(".xml"); + } + string_list sc = globals->get_fg_scenery(); char buffer[128]; - ::snprintf(buffer, 128, "%c/%c/%c/%s.%s.xml", + ::snprintf(buffer, 128, "%c/%c/%c/%s.%s", aICAO[0], aICAO[1], aICAO[2], - aICAO.c_str(), aFileName.c_str()); + aICAO.c_str(), fileName.c_str()); for (string_list_iterator it = sc.begin(); it != sc.end(); ++it) { - SGPath path(*it); - path.append("Airports"); - path.append(string(buffer)); - if (path.exists()) { - aPath = path; - return true; - } // of path exists + // fg_senery contains empty strings as "markers" (see FGGlobals::set_fg_scenery) + if (!it->empty()) { + SGPath path(*it); + path.append("Airports"); + path.append(string(buffer)); + if (path.exists()) { + aPath = path; + return true; + } // of path exists + } } // of scenery path iteration return false; }