2002-03-01 17:39:52 +00:00
|
|
|
// FGATC - abstract base class for the various actual atc classes
|
|
|
|
// such as FGATIS, FGTower etc.
|
|
|
|
//
|
|
|
|
// Written by David Luff, started Feburary 2002.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002 David C. Luff - david.luff@nottingham.ac.uk
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#ifndef _FG_ATC_HXX
|
|
|
|
#define _FG_ATC_HXX
|
|
|
|
|
2002-04-04 01:32:00 +00:00
|
|
|
#include <simgear/compiler.h>
|
2003-02-06 10:42:43 +00:00
|
|
|
#include <simgear/misc/sgstream.hxx>
|
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
|
|
|
#include <simgear/debug/logstream.hxx>
|
2002-04-04 01:32:00 +00:00
|
|
|
|
2002-04-04 20:47:23 +00:00
|
|
|
#include STL_IOSTREAM
|
|
|
|
#include STL_STRING
|
2002-04-03 23:54:44 +00:00
|
|
|
|
2003-02-18 10:44:01 +00:00
|
|
|
#include "ATCVoice.hxx"
|
|
|
|
|
2002-04-04 01:32:00 +00:00
|
|
|
SG_USING_STD(ostream);
|
|
|
|
SG_USING_STD(string);
|
2003-02-06 10:42:43 +00:00
|
|
|
SG_USING_STD(ios);
|
2002-04-04 01:32:00 +00:00
|
|
|
|
2002-03-01 17:39:52 +00:00
|
|
|
// Possible types of ATC type that the radios may be tuned to.
|
|
|
|
// INVALID implies not tuned in to anything.
|
2002-03-12 20:01:54 +00:00
|
|
|
enum atc_type {
|
2002-03-01 17:39:52 +00:00
|
|
|
INVALID,
|
|
|
|
ATIS,
|
|
|
|
GROUND,
|
|
|
|
TOWER,
|
|
|
|
APPROACH,
|
|
|
|
DEPARTURE,
|
|
|
|
ENROUTE
|
2002-04-03 23:54:44 +00:00
|
|
|
};
|
|
|
|
|
2003-02-06 10:42:43 +00:00
|
|
|
// DCL - new experimental ATC data store
|
|
|
|
struct ATCData {
|
|
|
|
atc_type type;
|
|
|
|
float lon, lat, elev;
|
|
|
|
float x, y, z;
|
|
|
|
//int freq;
|
|
|
|
unsigned short int freq;
|
|
|
|
//int range;
|
|
|
|
unsigned short int range;
|
|
|
|
string ident;
|
|
|
|
string name;
|
|
|
|
};
|
|
|
|
|
2002-04-03 23:54:44 +00:00
|
|
|
ostream& operator << (ostream& os, atc_type atc);
|
2002-03-01 17:39:52 +00:00
|
|
|
|
|
|
|
class FGATC {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual ~FGATC();
|
|
|
|
|
|
|
|
// Run the internal calculations
|
|
|
|
virtual void Update();
|
|
|
|
|
2002-04-03 23:54:44 +00:00
|
|
|
// Add plane to a stack
|
|
|
|
virtual void AddPlane(string pid);
|
|
|
|
|
|
|
|
// Remove plane from stack
|
|
|
|
virtual int RemovePlane();
|
|
|
|
|
2002-03-01 17:39:52 +00:00
|
|
|
// Indicate that this instance should output to the display if appropriate
|
|
|
|
virtual void SetDisplay();
|
|
|
|
|
|
|
|
// Indicate that this instance should not output to the display
|
|
|
|
virtual void SetNoDisplay();
|
|
|
|
|
|
|
|
// Return the type of ATC station that the class represents
|
|
|
|
virtual atc_type GetType();
|
2003-02-06 10:42:43 +00:00
|
|
|
|
|
|
|
// Set the core ATC data
|
|
|
|
void SetData(ATCData* d);
|
|
|
|
|
|
|
|
inline double get_lon() const { return lon; }
|
|
|
|
inline void set_lon(const double ln) {lon = ln;}
|
|
|
|
inline double get_lat() const { return lat; }
|
|
|
|
inline void set_lat(const double lt) {lat = lt;}
|
|
|
|
inline double get_elev() const { return elev; }
|
|
|
|
inline void set_elev(const double ev) {elev = ev;}
|
|
|
|
inline double get_x() const { return x; }
|
|
|
|
inline void set_x(const double ecs) {x = ecs;}
|
|
|
|
inline double get_y() const { return y; }
|
|
|
|
inline void set_y(const double why) {y = why;}
|
|
|
|
inline double get_z() const { return z; }
|
|
|
|
inline void set_z(const double zed) {z = zed;}
|
|
|
|
inline int get_freq() const { return freq; }
|
|
|
|
inline void set_freq(const int fq) {freq = fq;}
|
|
|
|
inline int get_range() const { return range; }
|
|
|
|
inline void set_range(const int rg) {range = rg;}
|
|
|
|
inline const char* get_ident() { return ident.c_str(); }
|
|
|
|
inline void set_ident(const string id) {ident = id;}
|
|
|
|
inline const char* get_name() {return name.c_str();}
|
|
|
|
inline void set_name(const string nm) {name = nm;}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2003-02-18 10:44:01 +00:00
|
|
|
// Render a transmission
|
|
|
|
// Outputs the transmission either on screen or as audio depending on user preference
|
|
|
|
// The refname is a string to identify this sample to the sound manager
|
|
|
|
// The repeating flag indicates whether the message should be repeated continuously or played once.
|
|
|
|
void Render(string msg, string refname, bool repeating);
|
|
|
|
|
|
|
|
// Cease rendering a transmission.
|
|
|
|
// Requires the sound manager refname if audio, else "".
|
|
|
|
void NoRender(string refname);
|
|
|
|
|
2003-02-06 10:42:43 +00:00
|
|
|
double lon, lat, elev;
|
|
|
|
double x, y, z;
|
|
|
|
int freq;
|
|
|
|
int range;
|
|
|
|
string ident; // Code of the airport its at.
|
|
|
|
string name; // Name transmitted in the broadcast.
|
2003-02-18 10:44:01 +00:00
|
|
|
|
|
|
|
// Rendering related stuff
|
|
|
|
bool voice; // Flag - true if we are using voice
|
|
|
|
bool playing; // Indicates a message in progress
|
|
|
|
bool voiceOK; // Flag - true if at least one voice has loaded OK
|
|
|
|
FGATCVoice* vPtr;
|
2002-03-01 17:39:52 +00:00
|
|
|
};
|
|
|
|
|
2003-02-06 10:42:43 +00:00
|
|
|
inline istream&
|
|
|
|
operator >> ( istream& fin, ATCData& a )
|
|
|
|
{
|
|
|
|
double f;
|
|
|
|
char ch;
|
|
|
|
char tp;
|
|
|
|
|
|
|
|
fin >> tp;
|
|
|
|
|
|
|
|
switch(tp) {
|
|
|
|
case 'I':
|
|
|
|
a.type = ATIS;
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
a.type = TOWER;
|
|
|
|
break;
|
|
|
|
case 'G':
|
|
|
|
a.type = GROUND;
|
|
|
|
break;
|
|
|
|
case 'A':
|
|
|
|
a.type = APPROACH;
|
|
|
|
break;
|
|
|
|
case '[':
|
|
|
|
a.type = INVALID;
|
|
|
|
return fin >> skipeol;
|
|
|
|
default:
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Warning - unknown type \'" << tp << "\' found whilst reading ATC frequency data!\n");
|
|
|
|
a.type = INVALID;
|
|
|
|
return fin >> skipeol;
|
|
|
|
}
|
|
|
|
|
|
|
|
fin >> a.lat >> a.lon >> a.elev >> f >> a.range
|
|
|
|
>> a.ident;
|
|
|
|
|
|
|
|
a.name = "";
|
|
|
|
fin >> ch;
|
|
|
|
a.name += ch;
|
|
|
|
while(1) {
|
|
|
|
//in >> noskipws
|
|
|
|
fin.unsetf(ios::skipws);
|
|
|
|
fin >> ch;
|
|
|
|
a.name += ch;
|
|
|
|
if((ch == '"') || (ch == 0x0A)) {
|
|
|
|
break;
|
|
|
|
} // we shouldn't need the 0x0A but it makes a nice safely in case someone leaves off the "
|
|
|
|
}
|
|
|
|
fin.setf(ios::skipws);
|
|
|
|
//cout << "Comm name = " << a.name << '\n';
|
|
|
|
|
|
|
|
a.freq = (int)(f*100.0 + 0.5);
|
|
|
|
|
|
|
|
// cout << a.ident << endl;
|
|
|
|
|
|
|
|
// generate cartesian coordinates
|
|
|
|
Point3D geod( a.lon * SGD_DEGREES_TO_RADIANS, a.lat * SGD_DEGREES_TO_RADIANS, a.elev );
|
|
|
|
Point3D cart = sgGeodToCart( geod );
|
|
|
|
a.x = cart.x();
|
|
|
|
a.y = cart.y();
|
|
|
|
a.z = cart.z();
|
|
|
|
|
|
|
|
return fin >> skipeol;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-03 22:47:06 +00:00
|
|
|
#endif // _FG_ATC_HXX
|