1
0
Fork 0
flightgear/src/ATC/ATC.hxx

77 lines
2 KiB
C++

// 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
#include <simgear/compiler.h>
#include STL_IOSTREAM
#include STL_STRING
#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
SG_USING_STD(ostream);
#endif
SG_USING_STD(string);
// Possible types of ATC type that the radios may be tuned to.
// INVALID implies not tuned in to anything.
enum atc_type {
INVALID,
ATIS,
GROUND,
TOWER,
APPROACH,
DEPARTURE,
ENROUTE
};
ostream& operator << (ostream& os, atc_type atc);
class FGATC {
public:
virtual ~FGATC();
// Run the internal calculations
virtual void Update();
// Add plane to a stack
virtual void AddPlane(string pid);
// Remove plane from stack
virtual int RemovePlane();
// 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 ATC station ident (generally the ICAO code of the airport)
virtual const char* GetIdent();
// Return the type of ATC station that the class represents
virtual atc_type GetType();
};
#endif // _FG_ATC_HXX