]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/ATC.cxx
Fix the nmea and garmin output to a) fake a GSA sentence, b) fix a y2k bug
[flightgear.git] / src / ATC / ATC.cxx
index 3ff154cb3e839c77dd44963382b58750929c7006..7adb85c4f7d97b00d45f5cd005858ae6d9ba14f4 100644 (file)
@@ -55,14 +55,19 @@ void FGATC::Update(double dt) {
        }
 }
 
+void FGATC::ReceiveUserCallback(int code) {
+       SG_LOG(SG_ATC, SG_WARN, "WARNING - whichever ATC class was intended to receive callback code " << code << " didn't get it!!!");
+}
+
 void FGATC::SetResponseReqd(string rid) {
        receiving = false;
        responseReqd = true;
        respond = false;        // TODO - this ignores the fact that more than one plane could call this before response
                                                // Shouldn't happen with AI only, but user could confuse things??
        responseID = rid;
+       runResponseCounter = true;
        responseCounter = 0.0;
-       responseTime = 2.5;             // TODO - randomize this slightly.
+       responseTime = 1.8;             // TODO - randomize this slightly.
 }
 
 void FGATC::NotifyTransmissionFinished(string rid) {
@@ -71,7 +76,7 @@ void FGATC::NotifyTransmissionFinished(string rid) {
        if(responseReqd) {
                runResponseCounter = true;
                responseCounter = 0.0;
-               responseTime = 2.5;             // TODO - randomize this slightly.
+               responseTime = 1.8;             // TODO - randomize this slightly.
        } else {
                freqClear = true;
        }
@@ -161,6 +166,11 @@ void FGATC::NoRender(string refname) {
        }
 }
 
+// Generate the text of a message from its parameters and the current context.
+string FGATC::GenText(const string& m, int c) {
+       return("");
+}
+
 ostream& operator << (ostream& os, atc_type atc) {
        switch(atc) {
                case(INVALID):    return(os << "INVALID");