1 // dynamics.cxx - Code to manage the higher order airport ground activities
2 // Written by Durk Talsma, started December 2004.
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.
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.
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.
27 #include <simgear/compiler.h>
32 #include <Environment/environment_mgr.hxx>
33 #include <Environment/environment.hxx>
34 #include <simgear/misc/sg_path.hxx>
35 #include <simgear/props/props.hxx>
36 #include <simgear/structure/subsystem_mgr.hxx>
37 #include <simgear/debug/logstream.hxx>
38 #include <simgear/route/waypoint.hxx>
39 #include <Main/globals.hxx>
40 #include <Main/fg_props.hxx>
41 #include <Airports/runways.hxx>
49 using std::random_shuffle;
52 #include "dynamics.hxx"
54 FGAirportDynamics::FGAirportDynamics(FGAirport* ap) :
55 _ap(ap), rwyPrefs(ap) {
57 for (int i = 0; i < 10; i++)
59 //avWindHeading [i] = 0;
60 //avWindSpeed [i] = 0;
64 // Note that the ground network should also be copied
65 FGAirportDynamics::FGAirportDynamics(const FGAirportDynamics& other) :
66 rwyPrefs(other.rwyPrefs)
68 for (FGParkingVecConstIterator ip= other.parkings.begin(); ip != other.parkings.end(); ip++)
69 parkings.push_back(*(ip));
70 // rwyPrefs = other.rwyPrefs;
71 lastUpdate = other.lastUpdate;
73 stringVecConstIterator il;
74 for (il = other.landing.begin(); il != other.landing.end(); il++)
75 landing.push_back(*il);
76 for (il = other.takeoff.begin(); il != other.takeoff.end(); il++)
77 takeoff.push_back(*il);
78 lastUpdate = other.lastUpdate;
79 for (int i = 0; i < 10; i++)
81 //avWindHeading [i] = other.avWindHeading[i];
82 //avWindSpeed [i] = other.avWindSpeed [i];
87 FGAirportDynamics::~FGAirportDynamics()
92 // Initialization required after XMLRead
93 void FGAirportDynamics::init()
95 // This may seem a bit weird to first randomly shuffle the parkings
96 // and then sort them again. However, parkings are sorted here by ascending
97 // radius. Since many parkings have similar radii, with each radius class they will
98 // still be allocated relatively systematically. Randomizing prior to sorting will
99 // prevent any initial orderings to be destroyed, leading (hopefully) to a more
100 // naturalistic gate assignment.
101 random_shuffle(parkings.begin(), parkings.end());
102 sort(parkings.begin(), parkings.end());
103 // add the gate positions to the ground network.
104 groundNetwork.addNodes(&parkings);
105 groundNetwork.init();
106 groundNetwork.setTowerController(&towerController);
107 groundNetwork.setParent(_ap);
110 bool FGAirportDynamics::getAvailableParking(double *lat, double *lon, double *heading, int *gateId, double rad, const string &flType, const string &acType, const string &airline)
113 bool available = false;
116 FGParkingVecIterator i;
117 // if (flType == "cargo")
119 // gateType = "RAMP_CARGO";
121 // else if (flType == "ga")
123 // gateType = "RAMP_GA";
125 // else gateType = "GATE";
127 if (parkings.begin() == parkings.end())
129 //cerr << "Could not find parking spot at " << _ap->getId() << endl;
130 *lat = _ap->getLatitude();
131 *lon = _ap->getLongitude();
137 // First try finding a parking with a designated airline code
138 for (i = parkings.begin(); !(i == parkings.end() || found); i++)
140 //cerr << "Gate Id: " << i->getIndex()
141 // << " Type : " << i->getType()
142 // << " Codes : " << i->getCodes()
143 // << " Radius: " << i->getRadius()
144 // << " Name : " << i->getName()
145 // << " Available: " << i->isAvailable() << endl;
147 // Taken by another aircraft
148 if (!(i->isAvailable()))
153 // No airline codes, so skip
154 if (i->getCodes().empty())
159 else // Airline code doesn't match
161 //cerr << "Code = " << airline << ": Codes " << i->getCodes();
162 if (i->getCodes().find(airline, 0) == string::npos)
165 //cerr << "Unavailable" << endl;
170 //cerr << "Available" << endl;
173 // Type doesn't match
174 if (i->getType() != flType)
180 if (i->getRadius() < rad)
188 *lat = i->getLatitude ();
189 *lon = i->getLongitude();
190 *heading = i->getHeading ();
191 *gateId = i->getIndex ();
192 i->setAvailable(false);
196 // then try again for those without codes.
197 for (i = parkings.begin(); !(i == parkings.end() || found); i++)
200 if (!(i->isAvailable()))
205 if (!(i->getCodes().empty()))
207 if ((i->getCodes().find(airline,0) == string::npos))
213 if (i->getType() != flType)
219 if (i->getRadius() < rad)
227 *lat = i->getLatitude ();
228 *lon = i->getLongitude();
229 *heading = i->getHeading ();
230 *gateId = i->getIndex ();
231 i->setAvailable(false);
235 // And finally once more if that didn't work. Now ignore the airline codes, as a last resort
236 for (i = parkings.begin(); !(i == parkings.end() || found); i++)
239 if (!(i->isAvailable()))
244 if (i->getType() != flType)
250 if (i->getRadius() < rad)
258 *lat = i->getLatitude ();
259 *lon = i->getLongitude();
260 *heading = i->getHeading ();
261 *gateId = i->getIndex ();
262 i->setAvailable(false);
269 //cerr << "Traffic overflow at" << _ap->getId()
270 // << ". flType = " << flType
271 // << ". airline = " << airline
272 // << " Radius = " <<rad
274 *lat = _ap->getLatitude();
275 *lon = _ap->getLongitude();
283 void FGAirportDynamics::getParking (int id, double *lat, double* lon, double *heading)
287 *lat = _ap->getLatitude();
288 *lon = _ap->getLongitude();
293 FGParkingVecIterator i = parkings.begin();
294 for (i = parkings.begin(); i != parkings.end(); i++)
296 if (id == i->getIndex())
298 *lat = i->getLatitude();
299 *lon = i->getLongitude();
300 *heading = i->getHeading();
306 FGParking *FGAirportDynamics::getParking(int id)
308 FGParkingVecIterator i = parkings.begin();
309 for (i = parkings.begin(); i != parkings.end(); i++)
311 if (id == i->getIndex()) {
317 string FGAirportDynamics::getParkingName(int id)
319 FGParkingVecIterator i = parkings.begin();
320 for (i = parkings.begin(); i != parkings.end(); i++)
322 if (id == i->getIndex()) {
327 return string("overflow");
329 void FGAirportDynamics::releaseParking(int id)
334 FGParkingVecIterator i = parkings.begin();
335 for (i = parkings.begin(); i != parkings.end(); i++)
337 if (id == i->getIndex())
339 i -> setAvailable(true);
345 void FGAirportDynamics::setRwyUse(const FGRunwayPreference& ref)
348 //cerr << "Exiting due to not implemented yet" << endl;
351 void FGAirportDynamics::getActiveRunway(const string &trafficType, int action, string &runway)
360 if (!(rwyPrefs.available()))
362 runway = chooseRunwayFallback();
363 return; // generic fall back goes here
367 RunwayGroup *currRunwayGroup = 0;
368 int nrActiveRunways = 0;
369 time_t dayStart = fgGetLong("/sim/time/utc/day-seconds");
370 if ((abs((long)(dayStart - lastUpdate)) > 600) || trafficType != prevTrafficType)
374 lastUpdate = dayStart;
375 prevTrafficType = trafficType;
378 stationweather = ((FGEnvironmentMgr *) globals->get_subsystem("environment"))
379 ->getEnvironment(getLatitude(),
383 windSpeed = stationweather.get_wind_speed_kt();
384 windHeading = stationweather.get_wind_from_heading_deg();
386 //cerr << "finding active Runway for" << _ap->getId() << endl;
387 //cerr << "Nr of seconds since day start << " << dayStart << endl;
389 ScheduleTime *currSched;
390 //cerr << "A"<< endl;
391 currSched = rwyPrefs.getSchedule(trafficType.c_str());
394 //cerr << "B"<< endl;
395 scheduleName = currSched->getName(dayStart);
396 maxTail = currSched->getTailWind ();
397 maxCross = currSched->getCrossWind ();
398 //cerr << "SChedule anme = " << scheduleName << endl;
399 if (scheduleName.empty())
401 //cerr << "C"<< endl;
402 currRunwayGroup = rwyPrefs.getGroup(scheduleName);
403 //cerr << "D"<< endl;
404 if (!(currRunwayGroup))
406 nrActiveRunways = currRunwayGroup->getNrActiveRunways();
408 // Keep a history of the currently active runways, to ensure
409 // that an already established selection of runways will not
410 // be overridden once a more preferred selection becomes
411 // available as that can lead to random runway swapping.
412 if (trafficType == "com") {
413 currentlyActive = &comActive;
414 } else if (trafficType == "gen") {
415 currentlyActive = &genActive;
416 } else if (trafficType == "mil") {
417 currentlyActive = &milActive;
418 } else if (trafficType == "ul") {
419 currentlyActive = &ulActive;
422 currRunwayGroup->setActive(_ap->getId(),
429 // Note that I SHOULD keep multiple lists in memory, one for
430 // general aviation, one for commercial and one for military
432 currentlyActive->clear();
433 nrActiveRunways = currRunwayGroup->getNrActiveRunways();
434 //cerr << "Choosing runway for " << trafficType << endl;
435 for (int i = 0; i < nrActiveRunways; i++)
437 type = "unknown"; // initialize to something other than landing or takeoff
438 currRunwayGroup->getActive(i, name, type);
439 if (type == "landing")
441 landing.push_back(name);
442 currentlyActive->push_back(name);
443 //cerr << "Landing " << name << endl;
445 if (type == "takeoff")
447 takeoff.push_back(name);
448 currentlyActive->push_back(name);
449 //cerr << "takeoff " << name << endl;
454 if (action == 1) // takeoff
456 int nr = takeoff.size();
459 // Note that the randomization below, is just a placeholder to choose between
460 // multiple active runways for this action. This should be
461 // under ATC control.
462 runway = takeoff[(rand() % nr)];
466 runway = chooseRunwayFallback();
469 if (action == 2) // landing
471 int nr = landing.size();
474 runway = landing[(rand() % nr)];
478 runway = chooseRunwayFallback();
481 //runway = globals->get_runways()->search(_ap->getId(), int(windHeading));
482 //cerr << "Seleceted runway: " << runway << endl;
486 string FGAirportDynamics::chooseRunwayFallback()
489 stationweather = ((FGEnvironmentMgr *) globals->get_subsystem("environment"))
490 ->getEnvironment(getLatitude(),
494 double windSpeed = stationweather.get_wind_speed_kt();
495 double windHeading = stationweather.get_wind_from_heading_deg();
496 if (windSpeed == 0) {
497 windHeading = 270; // This forces West-facing rwys to be used in no-wind situations
498 //which is consistent with Flightgear's initial setup.
501 return globals->get_runways()->search(_ap->getId(), int(windHeading));
504 void FGAirportDynamics::addParking(FGParking& park) {
505 parkings.push_back(park);
508 double FGAirportDynamics::getLatitude() const {
509 return _ap->getLatitude();
512 double FGAirportDynamics::getLongitude() const {
513 return _ap->getLongitude();
516 double FGAirportDynamics::getElevation() const {
517 return _ap->getElevation();
520 const string& FGAirportDynamics::getId() const {