Remove more code only concerned with the depreciated interactive ATC/AI
This commit is contained in:
parent
f3cfddfd92
commit
b26705d3be
2 changed files with 5 additions and 89 deletions
|
@ -51,7 +51,6 @@ FGATC::FGATC() :
|
|||
pending_transmission(""),
|
||||
_timeout(0),
|
||||
_pending(false),
|
||||
_callback_code(0),
|
||||
_transmit(false),
|
||||
_transmitting(false),
|
||||
_counter(0.0),
|
||||
|
@ -134,11 +133,6 @@ void FGATC::Update(double dt) {
|
|||
//Render(pending_transmission, ident, false);
|
||||
Render(pending_transmission);
|
||||
}
|
||||
// Run the callback regardless of whether on same freq as user or not.
|
||||
//cout << "_callback_code = " << _callback_code << '\n';
|
||||
if(_callback_code) {
|
||||
ProcessCallback(_callback_code);
|
||||
}
|
||||
_transmit = false;
|
||||
_transmitting = true;
|
||||
} else if(_transmitting) {
|
||||
|
@ -187,43 +181,6 @@ void FGATC::NotifyTransmissionFinished(const string& rid) {
|
|||
}
|
||||
}
|
||||
|
||||
void FGATC::Transmit(int callback_code) {
|
||||
SG_LOG(SG_ATC, SG_INFO, "Transmit called by " << ident << " " << _type << ", msg = " << pending_transmission);
|
||||
_pending = true;
|
||||
_callback_code = callback_code;
|
||||
_timeout = 0.0;
|
||||
}
|
||||
|
||||
void FGATC::ConditionalTransmit(double timeout, int callback_code) {
|
||||
SG_LOG(SG_ATC, SG_INFO, "Timed transmit called by " << ident << " " << _type << ", msg = " << pending_transmission);
|
||||
_pending = true;
|
||||
_callback_code = callback_code;
|
||||
_timeout = timeout;
|
||||
}
|
||||
|
||||
void FGATC::ImmediateTransmit(int callback_code) {
|
||||
SG_LOG(SG_ATC, SG_INFO, "Immediate transmit called by " << ident << " " << _type << ", msg = " << pending_transmission);
|
||||
if(_display) {
|
||||
//Render(pending_transmission, ident, false);
|
||||
Render(pending_transmission);
|
||||
// At the moment Render doesn't work except for ATIS
|
||||
}
|
||||
if(callback_code) {
|
||||
ProcessCallback(callback_code);
|
||||
}
|
||||
}
|
||||
|
||||
// Derived classes should override this.
|
||||
void FGATC::ProcessCallback(int code) {
|
||||
}
|
||||
|
||||
void FGATC::AddPlane(const string& pid) {
|
||||
}
|
||||
|
||||
int FGATC::RemovePlane() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void FGATC::SetData(ATCData* d) {
|
||||
_type = d->type;
|
||||
_geod = d->geod;
|
||||
|
|
|
@ -51,27 +51,6 @@ inline int kHz10(double freq)
|
|||
return int(freq*100.0 + 0.25);
|
||||
}
|
||||
|
||||
enum plane_type {
|
||||
UNKNOWN,
|
||||
GA_SINGLE,
|
||||
GA_HP_SINGLE,
|
||||
GA_TWIN,
|
||||
GA_JET,
|
||||
MEDIUM,
|
||||
HEAVY,
|
||||
MIL_JET
|
||||
};
|
||||
|
||||
// PlaneRec - a structure holding ATC-centric details of planes under control
|
||||
// This might move or change eventually
|
||||
struct PlaneRec {
|
||||
PlaneRec() : type(UNKNOWN), squawkcode(0) {}
|
||||
PlaneRec(const std::string& s) : type(UNKNOWN), callsign(s), squawkcode(0) {}
|
||||
plane_type type;
|
||||
std::string callsign;
|
||||
int squawkcode;
|
||||
};
|
||||
|
||||
// Possible types of ATC type that the radios may be tuned to.
|
||||
// INVALID implies not tuned in to anything.
|
||||
enum atc_type {
|
||||
|
@ -132,12 +111,6 @@ public:
|
|||
// Recieve a coded callback from the ATC menu system based on the user's selection
|
||||
virtual void ReceiveUserCallback(int code);
|
||||
|
||||
// Add plane to a stack
|
||||
virtual void AddPlane(const std::string& pid);
|
||||
|
||||
// Remove plane from stack
|
||||
virtual int RemovePlane();
|
||||
|
||||
// Indicate that this instance should output to the display if appropriate
|
||||
inline void SetDisplay() { _display = true; }
|
||||
|
||||
|
@ -191,17 +164,6 @@ protected:
|
|||
// Requires the sound manager refname if audio, else "".
|
||||
void NoRender(const std::string& refname);
|
||||
|
||||
// Transmit a message when channel becomes free of other dialog
|
||||
void Transmit(int callback_code = 0);
|
||||
|
||||
// Transmit a message if channel becomes free within timeout (seconds). timeout of zero implies no limit
|
||||
void ConditionalTransmit(double timeout, int callback_code = 0);
|
||||
|
||||
// Transmit regardless of other dialog on the channel eg emergency
|
||||
void ImmediateTransmit(int callback_code = 0);
|
||||
|
||||
virtual void ProcessCallback(int code);
|
||||
|
||||
SGGeod _geod;
|
||||
SGVec3d _cart;
|
||||
int freq;
|
||||
|
@ -245,9 +207,6 @@ private:
|
|||
// Transmission timing stuff.
|
||||
double _timeout;
|
||||
bool _pending;
|
||||
|
||||
int _callback_code; // A callback code to be notified and processed by the derived classes
|
||||
// A value of zero indicates no callback required
|
||||
bool _transmit; // we are to transmit
|
||||
bool _transmitting; // we are transmitting
|
||||
double _counter;
|
||||
|
|
Loading…
Add table
Reference in a new issue