]> git.mxchange.org Git - flightgear.git/blob - src/Airports/xmlloader.cxx
Interim windows build fix
[flightgear.git] / src / Airports / xmlloader.cxx
1 // This program is free software; you can redistribute it and/or
2 // modify it under the terms of the GNU General Public License as
3 // published by the Free Software Foundation; either version 2 of the
4 // License, or (at your option) any later version.
5 //
6 // This program is distributed in the hope that it will be useful, but
7 // WITHOUT ANY WARRANTY; without even the implied warranty of
8 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9 // General Public License for more details.
10 //
11 // You should have received a copy of the GNU General Public License
12 // along with this program; if not, write to the Free Software
13 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
14 //
15
16 #ifdef HAVE_CONFIG_H
17 #  include "config.h"
18 #endif
19
20 #include <cstdio>
21
22 #include <simgear/misc/sg_path.hxx>
23 #include <simgear/xml/easyxml.hxx>
24 #include <simgear/misc/strutils.hxx>
25 #include <simgear/timing/timestamp.hxx>
26
27 #include <Main/globals.hxx>
28 #include <Main/fg_props.hxx>
29
30 #include "xmlloader.hxx"
31 #include "dynamicloader.hxx"
32 #include "runwayprefloader.hxx"
33
34 #include "dynamics.hxx"
35 #include "airport.hxx"
36 #include "runwayprefs.hxx"
37
38 #include <Navaids/NavDataCache.hxx>
39
40 using std::string;
41
42 XMLLoader::XMLLoader() {}
43 XMLLoader::~XMLLoader() {}
44
45 void XMLLoader::load(FGAirportDynamics* d)
46 {
47   SGPath path;
48   if (!findAirportData(d->parent()->ident(), "groundnet", path)) {
49     return;
50   }
51
52   SG_LOG(SG_NAVAID, SG_INFO, "reading groundnet data from " << path);
53   SGTimeStamp t;
54   t.stamp();
55   try {
56       FGAirportDynamicsXMLLoader visitor(d);
57       readXML(path.str(), visitor);
58   } catch (sg_exception& e) {
59     SG_LOG(SG_NAVAID, SG_INFO, "parsing groundnet XML failed:" << e.getFormattedMessage());
60   }
61
62   SG_LOG(SG_NAVAID, SG_INFO, "parsing groundnet XML took " << t.elapsedMSec());
63 }
64
65 void XMLLoader::load(FGRunwayPreference* p) {
66   FGRunwayPreferenceXMLLoader visitor(p);
67   loadAirportXMLDataIntoVisitor(p->getId(), "rwyuse", visitor);
68 }
69
70 bool XMLLoader::findAirportData(const std::string& aICAO, 
71     const std::string& aFileName, SGPath& aPath)
72 {
73   string fileName(aFileName);
74   if (!simgear::strutils::ends_with(aFileName, ".xml")) {
75     fileName.append(".xml");
76   }
77   
78   string_list sc = globals->get_fg_scenery();
79   char buffer[128];
80   ::snprintf(buffer, 128, "%c/%c/%c/%s.%s", 
81     aICAO[0], aICAO[1], aICAO[2], 
82     aICAO.c_str(), fileName.c_str());
83
84   for (string_list_iterator it = sc.begin(); it != sc.end(); ++it) {
85     // fg_senery contains empty strings as "markers" (see FGGlobals::set_fg_scenery)
86     if (!it->empty()) {
87         SGPath path(*it);
88         path.append("Airports");
89         path.append(string(buffer));
90         if (path.exists()) {
91           aPath = path;
92           return true;
93         } // of path exists
94     }
95   } // of scenery path iteration
96   return false;
97 }
98
99 bool XMLLoader::loadAirportXMLDataIntoVisitor(const string& aICAO, 
100     const string& aFileName, XMLVisitor& aVisitor)
101 {
102   SGPath path;
103   if (!findAirportData(aICAO, aFileName, path)) {
104     SG_LOG(SG_NAVAID, SG_DEBUG, "loadAirportXMLDataIntoVisitor: failed to find data for " << aICAO << "/" << aFileName);
105     return false;
106   }
107
108   SG_LOG(SG_GENERAL, SG_DEBUG, "loadAirportXMLDataIntoVisitor: loading from " << path.str());
109   readXML(path.str(), aVisitor);
110   return true;
111 }
112