]> git.mxchange.org Git - flightgear.git/blob - src/Airports/sidstar.cxx
Update FGRunway to process information from threshold.xml files.
[flightgear.git] / src / Airports / sidstar.cxx
1 // sidstar.cxx - Code to manage departure / arrival procedures
2 // Written by Durk Talsma, started March 2009.
3 //
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19 // $Id$
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #include <iostream>
26 #include <stdlib.h>
27
28 #include <simgear/props/props.hxx>
29 #include <simgear/props/props_io.hxx>
30
31
32
33 #include <Airports/simple.hxx>
34
35
36 #include "sidstar.hxx"
37
38 using std::cerr;
39 using std::endl;
40
41 FGSidStar::FGSidStar(FGAirport *ap) {
42      id = ap->getId();
43      initialized = false;
44 }
45
46
47 FGSidStar::FGSidStar(const FGSidStar &other) {
48      cerr << "TODO" << endl;
49      exit(1);
50 }
51
52 void FGSidStar::load(SGPath filename) {
53   SGPropertyNode root;
54   string runway;
55   string name;
56   try {
57       readProperties(filename.str(), &root);
58   } catch (const sg_exception &) {
59       SG_LOG(SG_GENERAL, SG_ALERT,
60        "Error reading AI flight plan: " << filename.str());
61        // cout << path.str() << endl;
62      return;
63   }
64
65   SGPropertyNode * node = root.getNode("SIDS");
66   FGAIFlightPlan *fp;
67   for (int i = 0; i < node->nChildren(); i++) { 
68      fp = new FGAIFlightPlan;
69      SGPropertyNode * fpl_node = node->getChild(i);
70      name   =  fpl_node->getStringValue("name", "END");
71      runway =  fpl_node->getStringValue("runway", "27");
72      //cerr << "Runway = " << runway << endl;
73      fp->setName(name);
74      SGPropertyNode * wpts_node = fpl_node->getNode("wpts");
75      for (int j = 0; j < wpts_node->nChildren(); j++) { 
76           FGAIFlightPlan::waypoint* wpt = new FGAIFlightPlan::waypoint;
77           SGPropertyNode * wpt_node = wpts_node->getChild(j);
78           //cerr << "Reading waypoint " << j << wpt_node->getStringValue("name", "END") << endl;
79           wpt->name      = wpt_node->getStringValue("name", "END");
80           wpt->latitude  = wpt_node->getDoubleValue("lat", 0);
81           wpt->longitude = wpt_node->getDoubleValue("lon", 0);
82           wpt->altitude  = wpt_node->getDoubleValue("alt", 0);
83           wpt->speed     = wpt_node->getDoubleValue("ktas", 0);
84           wpt->crossat   = wpt_node->getDoubleValue("crossat", -10000);
85           wpt->gear_down = wpt_node->getBoolValue("gear-down", false);
86           wpt->flaps_down= wpt_node->getBoolValue("flaps-down", false);
87           wpt->on_ground = wpt_node->getBoolValue("on-ground", false);
88           wpt->time_sec   = wpt_node->getDoubleValue("time-sec", 0);
89           wpt->time       = wpt_node->getStringValue("time", "");
90
91           if (wpt->name == "END") wpt->finished = true;
92           else wpt->finished = false;
93
94           // 
95           fp->addWaypoint( wpt );
96      }
97      data[runway].push_back(fp);
98      //cerr << "Runway = " << runway << endl;
99    }
100
101
102   //wpt_iterator = waypoints.begin();
103   //cout << waypoints.size() << " waypoints read." << endl;
104 }
105
106
107 FGAIFlightPlan *FGSidStar::getBest(string activeRunway, double heading)
108 {
109     //cerr << "Getting best procedure for " << activeRunway << endl;
110     for (FlightPlanVecIterator i = data[activeRunway].begin(); i != data[activeRunway].end(); i++) {
111         //cerr << (*i)->getName() << endl;
112     }
113     int size = data[activeRunway].size();
114     //cerr << "size is " << size << endl;
115     if (size) {
116         return data[activeRunway][(rand() % size)];
117      } else {
118         return 0;
119     }
120 }