X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FATC%2Fatc_mgr.cxx;h=416229ca7ee47bb7213919bc8e503c0c8f91d600;hb=ea13c0f2de111a56bd4bf97113b50e29a693c7fc;hp=bbfc73311b52a41c9dd1b783372b5ffe03256fb7;hpb=7d547d128702a643c40b54809e2b4e1a38c4a16d;p=flightgear.git diff --git a/src/ATC/atc_mgr.cxx b/src/ATC/atc_mgr.cxx index bbfc73311..416229ca7 100644 --- a/src/ATC/atc_mgr.cxx +++ b/src/ATC/atc_mgr.cxx @@ -27,11 +27,13 @@ #include #include -#include +#include #include #include "atc_mgr.hxx" +using std::string; + FGATCManager::FGATCManager() { controller = 0; prevController = 0; @@ -48,6 +50,8 @@ void FGATCManager::init() { int leg = 0; + trans_num = globals->get_props()->getNode("/sim/atc/transmission-num", true); + // find a reasonable controller for our user's aircraft.. // Let's start by working out the following three scenarios: // Starting on ground at a parking position @@ -101,29 +105,11 @@ void FGATCManager::init() { FGAirport *apt = FGAirport::findByIdent(airport); if (apt && onGround) {// && !runway.empty()) { FGAirportDynamics* dcs = apt->getDynamics(); - int park_index = dcs->getNrOfParkings() - 1; - //cerr << "found information: " << runway << " " << airport << ": parking = " << parking << endl; - fp = new FGAIFlightPlan; - while (park_index >= 0 && dcs->getParkingName(park_index) != parking) park_index--; + ParkingAssignment pk(dcs->getParkingByName(parking)); + // No valid parking location, so either at the runway or at a random location. - if (parking.empty() || (park_index < 0)) { - if (!runway.empty()) { - controller = apt->getDynamics()->getTowerController(); - int stationFreq = apt->getDynamics()->getTowerFrequency(2); - if (stationFreq > 0) - { - //cerr << "Setting radio frequency to in airfrequency: " << stationFreq << endl; - fgSetDouble("/instrumentation/comm[0]/frequencies/selected-mhz", ((double) stationFreq / 100.0)); - } - leg = 3; - string fltType = "ga"; - fp->setRunway(runway); - fp->createTakeOff(&ai_ac, false, apt, 0, fltType); - ai_ac.setTakeOffStatus(2); - } else { - // We're on the ground somewhere. Handle this case later. - } - } else { + if (pk.isValid()) { + fp = new FGAIFlightPlan; controller = apt->getDynamics()->getStartupController(); int stationFreq = apt->getDynamics()->getGroundFrequency(1); if (stationFreq > 0) @@ -134,25 +120,45 @@ void FGATCManager::init() { leg = 1; //double, lat, lon, head; // Unused variables; //int getId = apt->getDynamics()->getParking(gateId, &lat, &lon, &head); - FGParking* parking = dcs->getParking(park_index); - aircraftRadius = parking->getRadius(); - string fltType = parking->getType(); // gate / ramp, ga, etc etc. + aircraftRadius = pk.parking()->getRadius(); + string fltType = pk.parking()->getType(); // gate / ramp, ga, etc etc. string aircraftType; // Unused. string airline; // Currently used for gate selection, but a fallback mechanism will apply when not specified. - fp->setGate(park_index); + fp->setGate(pk); if (!(fp->createPushBack(&ai_ac, - false, - apt, - aircraftRadius, - fltType, - aircraftType, - airline))) { + false, + apt, + aircraftRadius, + fltType, + aircraftType, + airline))) { controller = 0; return; } + + + } else if (!runway.empty()) { + controller = apt->getDynamics()->getTowerController(); + int stationFreq = apt->getDynamics()->getTowerFrequency(2); + if (stationFreq > 0) + { + //cerr << "Setting radio frequency to in airfrequency: " << stationFreq << endl; + fgSetDouble("/instrumentation/comm[0]/frequencies/selected-mhz", ((double) stationFreq / 100.0)); + } + fp = new FGAIFlightPlan; + leg = 3; + string fltType = "ga"; + fp->setRunway(runway); + fp->createTakeOff(&ai_ac, false, apt, 0, fltType); + ai_ac.setTakeOffStatus(2); + } else { + // We're on the ground somewhere. Handle this case later. + } + + if (fp) { + fp->getLastWaypoint()->setName( fp->getLastWaypoint()->getName() + string("legend")); } - fp->getLastWaypoint()->setName( fp->getLastWaypoint()->getName() + string("legend")); } else { controller = 0; } @@ -261,8 +267,7 @@ void FGATCManager::update ( double time ) { //string airport = fgGetString("/sim/presets/airport-id"); //FGAirport *apt = FGAirport::findByIdent(airport); // AT this stage we should update the flightplan, so that waypoint incrementing is conducted as well as leg loading. - static SGPropertyNode_ptr trans_num = globals->get_props()->getNode("/sim/atc/transmission-num", true); - int n = trans_num->getIntValue(); + int n = trans_num->getIntValue(); if (n == 1) { //cerr << "Toggling ground network visibility " << networkVisible << endl; networkVisible = !networkVisible;