]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/ground.cxx
Catch sound exceptions at the earliest, report problem has an alert, and continue...
[flightgear.git] / src / ATC / ground.cxx
index 6734b8be3485a166d3ddf8d1a4af85b330014cf6..ebd172d2319731508187897d9403e51540bab321 100644 (file)
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include <simgear/misc/sg_path.hxx>
 #include <simgear/math/sg_random.h>
 #include <simgear/debug/logstream.hxx>
 #include STL_FSTREAM
 
 #include "ground.hxx"
+#include "ATCmgr.hxx"
 #include "ATCutils.hxx"
+#include "ATCdisplay.hxx"
+#include "AILocalTraffic.hxx"
 
 SG_USING_STD(ifstream);
 SG_USING_STD(cout);
@@ -49,14 +56,33 @@ a_path::a_path() {
 }
 
 FGGround::FGGround() {
-       display = false;
+       ATCmgr = globals->get_ATC_mgr();
+       _type = GROUND;
        networkLoadOK = false;
+       ground_traffic.erase(ground_traffic.begin(), ground_traffic.end());
+       ground_traffic_itr = ground_traffic.begin();
+       
+       // Init the property nodes - TODO - need to make sure we're getting surface winds.
+       wind_from_hdg = fgGetNode("/environment/wind-from-heading-deg", true);
+       wind_speed_knots = fgGetNode("/environment/wind-speed-kt", true);
+       
+       // TODO - get the actual airport elevation
+       aptElev = 0.0;
 }
 
-FGGround::FGGround(string id) {
-       display = false;
+FGGround::FGGround(const string& id) {
+       ATCmgr = globals->get_ATC_mgr();
        networkLoadOK = false;
+       ground_traffic.erase(ground_traffic.begin(), ground_traffic.end());
+       ground_traffic_itr = ground_traffic.begin();
        ident = id;
+       
+       // Init the property nodes - TODO - need to make sure we're getting surface winds.
+       wind_from_hdg = fgGetNode("/environment/wind-from-heading-deg", true);
+       wind_speed_knots = fgGetNode("/environment/wind-speed-kt", true);
+       
+       // TODO - get the actual airport elevation
+       aptElev = 0.0;
 }
 
 FGGround::~FGGround() {
@@ -101,11 +127,11 @@ bool FGGround::LoadNetwork() {
        string taxiPath = "ATC/KEMT.taxi";      // FIXME - HARDWIRED FOR TESTING
        path.append(taxiPath);
        
-       SG_LOG(SG_GENERAL, SG_INFO, "Trying to read taxiway data for " << ident << "...");
+       SG_LOG(SG_ATC, SG_INFO, "Trying to read taxiway data for " << ident << "...");
        //cout << "Trying to read taxiway data for " << ident << "..." << endl;
        fin.open(path.c_str(), ios::in);
        if(!fin) {
-               SG_LOG(SG_GENERAL, SG_ALERT, "Unable to open taxiway data input file " << path.c_str());
+               SG_LOG(SG_ATC, SG_ALERT, "Unable to open taxiway data input file " << path.c_str());
                //cout << "Unable to open taxiway data input file " << path.c_str() << endl;
                return(false);
        }
@@ -117,7 +143,7 @@ bool FGGround::LoadNetwork() {
                // Node, arc, or [End]?
                //cout << "Read in ground network element type = " << buf << endl;
                if(!strcmp(buf, "[End]")) {             // TODO - maybe make this more robust to spelling errors by just looking for '['
-                       SG_LOG(SG_GENERAL, SG_INFO, "Done reading " << path.c_str() << endl);
+                       SG_LOG(SG_ATC, SG_INFO, "Done reading " << path.c_str() << endl);
                        break;
                } else if(!strcmp(buf, "N")) {
                        // Node
@@ -139,7 +165,7 @@ bool FGGround::LoadNetwork() {
                        } else if(!strcmp(buf, "H")) {
                                np->type = HOLD;
                        } else {
-                               SG_LOG(SG_GENERAL, SG_ALERT, "**** ERROR ***** Unknown node type in taxi network...\n");
+                               SG_LOG(SG_ATC, SG_ALERT, "**** ERROR ***** Unknown node type in taxi network...\n");
                                delete np;
                                return(false);
                        }
@@ -177,7 +203,7 @@ bool FGGround::LoadNetwork() {
                        } else if(!strcmp(buf, "T")) {
                                ap->type = TAXIWAY;
                        } else {
-                               SG_LOG(SG_GENERAL, SG_ALERT, "**** ERROR ***** Unknown arc type in taxi network...\n");
+                               SG_LOG(SG_ATC, SG_ALERT, "**** ERROR ***** Unknown arc type in taxi network...\n");
                                delete ap;
                                return(false);
                        }
@@ -188,7 +214,7 @@ bool FGGround::LoadNetwork() {
                        } else if(!strcmp(buf, "N")) {
                                ap->directed = false;
                        } else {
-                               SG_LOG(SG_GENERAL, SG_ALERT, "**** ERROR ***** Unknown arc directed value in taxi network - should be Y/N !!!\n");
+                               SG_LOG(SG_ATC, SG_ALERT, "**** ERROR ***** Unknown arc directed value in taxi network - should be Y/N !!!\n");
                                delete ap;
                                return(false);
                        }                       
@@ -240,7 +266,7 @@ bool FGGround::LoadNetwork() {
                        gateCount++;
                } else {
                        // Something has gone seriously pear-shaped
-                       SG_LOG(SG_GENERAL, SG_ALERT, "********* ERROR - unknown ground network element type... aborting read of " << path.c_str() << '\n');
+                       SG_LOG(SG_ATC, SG_ALERT, "********* ERROR - unknown ground network element type... aborting read of " << path.c_str() << '\n');
                        return(false);
                }
                
@@ -250,17 +276,19 @@ bool FGGround::LoadNetwork() {
 }
 
 void FGGround::Init() {
-       display = false;
-       
-       // For now we'll hardwire the threshold end
-       Point3D P010(-118.037483, 34.081358, 296 * SG_FEET_TO_METER);
-       double hdg = 25.32;
-       ortho.Init(P010, hdg);
+       untowered = false;
        
+       // Figure out which is the active runway - TODO - it would be better to have ground call tower
+       // for runway operation details, but at the moment we can't guarantee that tower control at a given airport
+       // will be initialised before ground so we can't do that.
+       DoRwyDetails();
+       //cout << "In FGGround::Init, active rwy is " << activeRwy << '\n';
+       ortho.Init(rwy.threshold_pos, rwy.hdg);
+
        networkLoadOK = LoadNetwork();
 }
 
-void FGGround::Update() {
+void FGGround::Update(double dt) {
        // Each time step, what do we need to do?
        // We need to go through the list of outstanding requests and acknowedgements
        // and process at least one of them.
@@ -272,7 +300,114 @@ void FGGround::Update() {
        // Lets take the example of a plane which has just contacted ground
        // following landing - presumably requesting where to go?
        // First we need to establish the position of the plane within the logical network.
-       // Next we need to decide where its going. 
+       // Next we need to decide where its going.
+       
+       if(ground_traffic.size()) {
+               if(ground_traffic_itr == ground_traffic.end()) {
+                       ground_traffic_itr = ground_traffic.begin();
+               }
+               
+               //Process(*ground_traffic_itr);
+               GroundRec* g = *ground_traffic_itr;
+               if(g->taxiRequestOutstanding) {
+                       double responseTime = 10.0;             // seconds - this should get more sophisticated at some point
+                       if(g->clearanceCounter > responseTime) {
+                               // DO CLEARANCE
+                               // TODO - move the mechanics of making up the transmission out of the main Update(...) routine.
+                               string trns = "";
+                               trns += g->plane.callsign;
+                               trns += " taxi holding point runway ";  // TODO - add the holding point name
+                               // eg " taxi holding point G2 runway "
+                               trns += ConvertRwyNumToSpokenString(activeRwy);
+                               if(_display) {
+                                       fgSetString("/sim/messages/ground", trns.c_str());
+                                       globals->get_ATC_display()->RegisterSingleMessage(trns, 0);
+                               }
+                               g->planePtr->RegisterTransmission(1);   // cleared to taxi
+                               g->clearanceCounter = 0.0;
+                               g->taxiRequestOutstanding = false;
+                       } else {
+                               g->clearanceCounter += (dt * ground_traffic.size());
+                       }
+               } else if(((FGAILocalTraffic*)(g->planePtr))->AtHoldShort()) {          // That's a hack - eventually we should monitor actual position
+                       // HACK ALERT - the automatic cast to AILocalTraffic has to go once we have other sorts working!!!!! FIXME TODO
+                       // NOTE - we don't need to do the contact tower bit unless we have separate tower and ground
+                       string trns = g->plane.callsign;
+                       trns += " contact Tower ";
+                       double f = globals->get_ATC_mgr()->GetFrequency(ident, TOWER) / 100.0;
+                       char buf[10];
+                       sprintf(buf, "%.2f", f);
+                       trns += buf;
+                       if(_display) {
+                               fgSetString("/sim/messages/ground", trns.c_str());
+                               globals->get_ATC_display()->RegisterSingleMessage(trns, 0);
+                       }
+                       g->planePtr->RegisterTransmission(2);   // contact tower
+                       delete *ground_traffic_itr;
+                       ground_traffic.erase(ground_traffic_itr);
+                       ground_traffic_itr = ground_traffic.begin();
+               }                               
+               ++ground_traffic_itr;
+       }
+       
+       // Call the base class update for the response time handling.
+       FGATC::Update(dt);
+}
+
+// Figure out which runways are active.
+// For now we'll just be simple and do one active runway - eventually this will get much more complex
+// Copied from FGTower - TODO - it would be better to implement this just once, and have ground call tower
+// for runway operation details, but at the moment we can't guarantee that tower control at a given airport
+// will be initialised before ground so we can't do that.
+void FGGround::DoRwyDetails() {
+       //cout << "GetRwyDetails called" << endl;
+       
+       // Based on the airport-id and wind get the active runway
+       
+       //wind
+       double hdg = wind_from_hdg->getDoubleValue();
+       double speed = wind_speed_knots->getDoubleValue();
+       hdg = (speed == 0.0 ? 270.0 : hdg);
+       //cout << "Heading = " << hdg << '\n';
+       
+       FGRunway runway;
+       bool rwyGood = globals->get_runways()->search(ident, int(hdg), &runway);
+       if(rwyGood) {
+               activeRwy = runway._rwy_no;
+               rwy.rwyID = runway._rwy_no;
+               SG_LOG(SG_ATC, SG_INFO, "In FGGround, active runway for airport " << ident << " is " << activeRwy);
+               
+               // Get the threshold position
+               double other_way = runway._heading - 180.0;
+               while(other_way <= 0.0) {
+                       other_way += 360.0;
+               }
+       // move to the +l end/center of the runway
+               //cout << "Runway center is at " << runway._lon << ", " << runway._lat << '\n';
+       Point3D origin = Point3D(runway._lon, runway._lat, aptElev);
+               Point3D ref = origin;
+       double tshlon, tshlat, tshr;
+               double tolon, tolat, tor;
+               rwy.length = runway._length * SG_FEET_TO_METER;
+       geo_direct_wgs_84 ( aptElev, ref.lat(), ref.lon(), other_way, 
+                               rwy.length / 2.0 - 25.0, &tshlat, &tshlon, &tshr );
+       geo_direct_wgs_84 ( aptElev, ref.lat(), ref.lon(), runway._heading, 
+                               rwy.length / 2.0 - 25.0, &tolat, &tolon, &tor );
+               // Note - 25 meters in from the runway end is a bit of a hack to put the plane ahead of the user.
+               // now copy what we need out of runway into rwy
+       rwy.threshold_pos = Point3D(tshlon, tshlat, aptElev);
+               Point3D takeoff_end = Point3D(tolon, tolat, aptElev);
+               //cout << "Threshold position = " << tshlon << ", " << tshlat << ", " << aptElev << '\n';
+               //cout << "Takeoff position = " << tolon << ", " << tolat << ", " << aptElev << '\n';
+               rwy.hdg = runway._heading;
+               // Set the projection for the local area based on this active runway
+               ortho.Init(rwy.threshold_pos, rwy.hdg); 
+               rwy.end1ortho = ortho.ConvertToLocal(rwy.threshold_pos);        // should come out as zero
+               rwy.end2ortho = ortho.ConvertToLocal(takeoff_end);
+       } else {
+               SG_LOG(SG_ATC, SG_ALERT, "Help  - can't get good runway in FGTower!!");
+               activeRwy = "NN";
+       }
 }
 
 // Return a random gate ID of an unused gate.
@@ -323,9 +458,15 @@ Gate* FGGround::GetGateNode() {
 }
 
 
+node* FGGround::GetHoldShortNode(const string& rwyID) {
+       return(NULL);   // TODO - either implement me or remove me!!!
+}
+
+
 // WARNING - This is hardwired to my prototype logical network format
 // and will almost certainly change when Bernie's stuff comes on-line.
-node* FGGround::GetThresholdNode(string rwyID) {
+// Returns NULL if it can't find a valid node.
+node* FGGround::GetThresholdNode(const string& rwyID) {
        // For now go through all the nodes and parse their names
        // Maybe in the future we'll map threshold nodes by ID
        //cout << "Size of network is " << network.size() << '\n';
@@ -347,6 +488,7 @@ node* FGGround::GetThresholdNode(string rwyID) {
        return NULL;
 }
 
+
 // Get a path from a point on a runway to a gate
 // TODO !!
 
@@ -359,10 +501,10 @@ ground_network_path_type FGGround::GetPath(node* A, node* B) {
 };
 
 // Get a path from a node to a runway threshold
-ground_network_path_type FGGround::GetPath(node* A, string rwyID) {
+ground_network_path_type FGGround::GetPath(node* A, const string& rwyID) {
        node* b = GetThresholdNode(rwyID);
        if(b == NULL) {
-               SG_LOG(SG_GENERAL, SG_ALERT, "ERROR - unable to find path to runway theshold in ground.cxx\n");
+               SG_LOG(SG_ATC, SG_ALERT, "ERROR - unable to find path to runway theshold in ground.cxx for airport " << ident << '\n');
                ground_network_path_type emptyPath;
                emptyPath.erase(emptyPath.begin(), emptyPath.end());
                return(emptyPath);
@@ -370,6 +512,16 @@ ground_network_path_type FGGround::GetPath(node* A, string rwyID) {
        return GetShortestPath(A, b);
 }
 
+// Get a path from a node to a runway hold short point
+// Bit of a hack this at the moment!
+ground_network_path_type FGGround::GetPathToHoldShort(node* A, const string& rwyID) {
+       ground_network_path_type path = GetPath(A, rwyID);
+       path.pop_back();        // That should be the threshold stripped of 
+       path.pop_back();        // and that should be the arc from hold short to threshold
+       // This isn't robust though - TODO - implement properly!
+       return(path);
+}
+
 // A shortest path algorithm from memory (ie. I can't find the bl&*dy book again!)
 // I'm sure there must be enchancements that we can make to this, such as biasing the
 // order in which the nodes are searched out from in favour of those geographically
@@ -496,7 +648,7 @@ ground_network_path_type FGGround::GetShortestPath(node* A, node* B) {
        
        //cout << "pathsCreated = " << pathsCreated << '\n';
        if(pathsCreated > 0) {
-               SG_LOG(SG_GENERAL, SG_ALERT, "WARNING - Possible memory leak in FGGround::GetShortestPath\n\
+               SG_LOG(SG_ATC, SG_ALERT, "WARNING - Possible memory leak in FGGround::GetShortestPath\n\
                                                                          Please report to flightgear-devel@flightgear.org\n");
        }
        
@@ -511,8 +663,32 @@ ground_network_path_type FGGround::GetShortestPath(node* A, node* B) {
 
 // Return a list of exits from a given runway
 // It is up to the calling function to check for non-zero size of returned array before use
-node_array_type FGGround::GetExits(int rwyID) {
-       return(runways[rwyID].exits);
+node_array_type FGGround::GetExits(const string& rwyID) {
+       // FIXME - get a 07L or similar in here and we're stuffed!!!
+       return(runways[atoi(rwyID.c_str())].exits);
+}
+
+void FGGround::RequestDeparture(const PlaneRec& plane, FGAIEntity* requestee) {
+       // For now we'll just automatically clear all planes to the runway hold.
+       // This communication needs to be delayed 20 sec or so from receiving the request.
+       // Even if display=false we still need to start the timer in case display=true when communication starts.
+       // We also need to bear in mind we also might have other outstanding communications, although for now we'll punt that issue!
+       // FIXME - sort the above!
+       
+       // HACK - assume that anything requesting departure is new for now - FIXME LATER
+       GroundRec* g = new GroundRec;
+       g->plane = plane;
+       g->planePtr = requestee;
+       g->taxiRequestOutstanding = true;
+       g->clearanceCounter = 0;
+       g->cleared = false;
+       g->incoming = false;
+       // TODO - need to handle the next 3 as well
+    //Point3D current_pos;
+    //node* destination;
+    //node* last_clearance;
+       
+       ground_traffic.push_back(g);
 }
 
 #if 0