]> git.mxchange.org Git - flightgear.git/blob - src/ATC/tower.hxx
Use the property /sim/sound/voice to disable voice support even if
[flightgear.git] / src / ATC / tower.hxx
1 // FGTower - a class to provide tower control at towered airports.
2 //
3 // Written by David Luff, started March 2002.
4 //
5 // Copyright (C) 2002  David C. Luff - david.luff@nottingham.ac.uk
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 #ifndef _FG_TOWER_HXX
22 #define _FG_TOWER_HXX
23
24 #include <simgear/compiler.h>
25 #include <simgear/math/point3d.hxx>
26 #include <simgear/misc/sgstream.hxx>
27 #include <simgear/math/sg_geodesy.hxx>
28 #include <plib/sg.h>
29
30 #include STL_IOSTREAM
31 #include STL_STRING
32
33 SG_USING_STD(string);
34 SG_USING_STD(ios);
35
36 #include "ATC.hxx"
37 //#include "ATCmgr.hxx"
38 #include "ground.hxx"
39
40 //DCL - a complete guess for now.
41 #define FG_TOWER_DEFAULT_RANGE 30
42
43 // Structure for holding details of a plane under tower control.
44 // Not fixed yet - may include more stuff later.
45 class TowerPlaneRec {
46         
47         public:
48         
49         TowerPlaneRec();
50         TowerPlaneRec(string ID);
51         TowerPlaneRec(Point3D pt);
52         TowerPlaneRec(string ID, Point3D pt);
53         
54         string id;
55         Point3D pos;
56         double eta;             // minutes
57         double dist_out;        // miles from theshold
58         bool clearedToLand;
59         bool clearedToDepart;
60         // ought to add time cleared to depart so we can nag if necessary
61         bool longFinalReported;
62         bool longFinalAcknowledged;
63         bool finalReported;
64         bool finalAcknowledged;
65         bool onRwy;
66         // enum type - light, medium, heavy etc - we need someway of approximating the aircraft type and performance.
67 };
68
69 typedef list < TowerPlaneRec* > tower_plane_rec_list_type;
70 typedef tower_plane_rec_list_type::iterator tower_plane_rec_list_iterator;
71 typedef tower_plane_rec_list_type::const_iterator tower_plane_rec_list_const_iterator;
72
73
74 class FGTower : public FGATC {
75
76         public:
77         
78         FGTower();
79         ~FGTower();
80         
81         void Init();
82         
83         void Update();
84
85         void RequestLandingClearance(string ID);
86         void RequestDepartureClearance(string ID);      
87         void ReportFinal(string ID);
88         void ReportLongFinal(string ID);
89         void ReportOuterMarker(string ID);
90         void ReportMiddleMarker(string ID);
91         void ReportInnerMarker(string ID);
92         void ReportGoingAround(string ID);
93         void ReportRunwayVacated(string ID);
94         
95         // Parse a literal message to decide which of above it represents. 
96         // (a long term project that eventually will hopefully receive the output from voice recognition software.)
97         void LiteralTransmission(string trns, string ID);
98         
99         inline void SetDisplay() {display = true;}
100         inline void SetNoDisplay() {display = false;}
101         
102         inline string get_trans_ident() { return trans_ident; }
103         inline atc_type GetType() { return TOWER; }
104         
105         // Make a request of tower control
106         //void Request(tower_request request);
107         
108         private:
109         
110         void IssueLandingClearance(TowerPlaneRec* tpr);
111         void IssueGoAround(TowerPlaneRec* tpr);
112         void IssueDepartureClearance(TowerPlaneRec* tpr);
113         
114         bool display;           // Flag to indicate whether we should be outputting to the ATC display.
115         bool displaying;                // Flag to indicate whether we are outputting to the ATC display.
116         
117         // Need a data structure to hold details of the various active planes
118         // or possibly another data structure with the positions of the inactive planes.
119         // Need a data structure to hold outstanding communications from aircraft.
120         
121         // Linked-list of planes on approach ordered with nearest first (timewise).
122         // Includes planes that have landed but not yet vacated runway.
123         // Somewhat analagous to the paper strips used (used to be used?) in real life.
124         tower_plane_rec_list_type appList;
125         
126         // List of departed planes
127         tower_plane_rec_list_type depList;
128         
129         // List of planes waiting to depart
130         tower_plane_rec_list_type holdList;
131         
132         // List of planes on rwy
133         tower_plane_rec_list_type rwyList;
134
135         // Ground can be separate or handled by tower in real life.
136         // In the program we will always use a separate FGGround class, but we need to know
137         // whether it is supposed to be separate or not to give the correct instructions.
138         bool separateGround;    // true if ground control is separate
139         FGGround* groundPtr;    // The ground control associated with this airport.
140         
141         
142         // for failure modeling
143         string trans_ident;             // transmitted ident
144         bool tower_failed;              // tower failed?
145         
146         friend istream& operator>> ( istream&, FGTower& );
147 };
148
149 #endif  //_FG_TOWER_HXX