]> git.mxchange.org Git - flightgear.git/blob - src/ATC/tower.hxx
Roll out last change for now. It kills the mag compass on the default
[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 //#include <Airports/runways.hxx>
30
31 #include STL_IOSTREAM
32 #include STL_STRING
33
34 SG_USING_STD(string);
35 SG_USING_STD(ios);
36
37 #include "ATC.hxx"
38 //#include "ATCmgr.hxx"
39 #include "ground.hxx"
40 #include "ATCProjection.hxx"
41 #include "AIPlane.hxx"
42
43 //DCL - a complete guess for now.
44 #define FG_TOWER_DEFAULT_RANGE 30
45
46 enum tower_traffic_type {
47         CIRCUIT,
48         INBOUND,
49         OUTBOUND,
50         TTT_UNKNOWN,    // departure, but we don't know if for circuits or leaving properly
51         STRAIGHT_IN
52         // Umm - what's the difference between INBOUND and STRAIGHT_IN ?
53 };
54
55 // Structure for holding details of a plane under tower control.
56 // Not fixed yet - may include more stuff later.
57 class TowerPlaneRec {
58         
59 public:
60         
61         TowerPlaneRec();
62         TowerPlaneRec(PlaneRec p);
63         TowerPlaneRec(Point3D pt);
64         TowerPlaneRec(PlaneRec p, Point3D pt);
65         
66         FGAIPlane* planePtr;    // This might move to the planeRec eventually
67         PlaneRec plane;
68         
69         Point3D pos;
70         double eta;             // seconds
71         double dist_out;        // meters from theshold
72         bool clearedToLand;
73         bool clearedToLineUp;
74         bool clearedToTakeOff;
75         // ought to add time cleared to depart so we can nag if necessary
76         bool holdShortReported;
77         bool longFinalReported;
78         bool longFinalAcknowledged;
79         bool finalReported;
80         bool finalAcknowledged;
81         bool onRwy;             // is physically on the runway
82         bool nextOnRwy;         // currently projected by tower to be the next on the runway
83
84         double clearanceCounter;                // Hack for communication timing - counter since clearance requested in seconds 
85         
86         // Type of operation the plane is doing
87         tower_traffic_type opType;
88         
89         // Whereabouts in circuit if doing circuits
90         PatternLeg leg;
91         
92         bool isUser;    // true if this plane is the user
93 };
94
95
96 typedef list < TowerPlaneRec* > tower_plane_rec_list_type;
97 typedef tower_plane_rec_list_type::iterator tower_plane_rec_list_iterator;
98 typedef tower_plane_rec_list_type::const_iterator tower_plane_rec_list_const_iterator;
99
100
101 class FGTower : public FGATC {
102
103 public:
104         
105         FGTower();
106         ~FGTower();
107         
108         void Init();
109         
110         void Update(double dt);
111
112         void RequestLandingClearance(string ID);
113         void RequestDepartureClearance(string ID);      
114         void ReportFinal(string ID);
115         void ReportLongFinal(string ID);
116         void ReportOuterMarker(string ID);
117         void ReportMiddleMarker(string ID);
118         void ReportInnerMarker(string ID);
119         void ReportGoingAround(string ID);
120         void ReportRunwayVacated(string ID);
121         void ReportReadyForDeparture(string ID);
122         
123         // Contact tower when at a hold short for departure - for now we'll assume plane - maybe vehicles might want to cross runway eventually?
124         void ContactAtHoldShort(PlaneRec plane, FGAIPlane* requestee, tower_traffic_type operation);
125         
126         // Public interface to the active runway - this will get more complex 
127         // in the future and consider multi-runway use, airplane weight etc.
128         inline string GetActiveRunway() { return activeRwy; }
129         inline RunwayDetails GetActiveRunwayDetails() { return rwy; }
130         
131         inline void SetDisplay() { display = true; }
132         inline void SetNoDisplay() { display = false; }
133         
134         inline string get_trans_ident() { return trans_ident; }
135         inline atc_type GetType() { return TOWER; }
136         
137         inline FGGround* GetGroundPtr() { return ground; }
138         
139         // Returns true if positions of crosswind/downwind/base leg turns should be constrained by previous traffic
140         // plus the constraint position as a rwy orientated orthopos (meters)
141         bool GetCrosswindConstraint(double& cpos);
142         bool GetDownwindConstraint(double& dpos);
143         bool GetBaseConstraint(double& bpos);
144
145 private:
146         FGATCMgr* ATCmgr;       
147         // This is purely for synactic convienience to avoid writing globals->get_ATC_mgr()-> all through the code!
148
149         // Figure out if a given position lies on the active runway
150         // Might have to change when we consider more than one active rwy.
151         bool OnActiveRunway(Point3D pt);
152         
153         // Figure out if a given position lies on a runway or not
154         bool OnAnyRunway(Point3D pt);
155         
156         // Calculate the eta of each plane to the threshold.
157         // For ground traffic this is the fastest they can get there.
158         // For air traffic this is the middle approximation.
159         void doThresholdETACalc();
160         
161         // Order the list of traffic as per expected threshold use and flag any conflicts
162         bool doThresholdUseOrder();
163         
164         void doCommunication();
165         
166         void IssueLandingClearance(TowerPlaneRec* tpr);
167         void IssueGoAround(TowerPlaneRec* tpr);
168         void IssueDepartureClearance(TowerPlaneRec* tpr);
169         
170         bool display;           // Flag to indicate whether we should be outputting to the ATC display.
171         bool displaying;                // Flag to indicate whether we are outputting to the ATC display.
172         
173         // environment - need to make sure we're getting the surface winds and not winds aloft.
174         SGPropertyNode* wind_from_hdg;  //degrees
175         SGPropertyNode* wind_speed_knots;               //knots
176         
177         double aptElev;         // Airport elevation
178         string activeRwy;       // Active runway number - For now we'll disregard multiple / alternate runway operation.
179         RunwayDetails rwy;      // Assumed to be the active one for now.
180         bool rwyOccupied;       // Active runway occupied flag.  For now we'll disregard land-and-hold-short operations.
181         FGATCAlignedProjection ortho;   // Orthogonal mapping of the local area with the active runway threshold at the origin
182         
183         // Figure out which runways are active.
184         // For now we'll just be simple and do one active runway - eventually this will get much more complex
185         // This is a private function - public interface to the results of this is through GetActiveRunway
186         void DoRwyDetails();
187         
188         // Need a data structure to hold details of the various active planes
189         // or possibly another data structure with the positions of the inactive planes.
190         // Need a data structure to hold outstanding communications from aircraft.
191         
192         // Linked-list of planes on approach ordered with nearest first (timewise).
193         // Includes planes that have landed but not yet vacated runway.
194         // Somewhat analagous to the paper strips used (used to be used?) in real life.
195         // Doesn't include planes in circuit until they turn onto base/final?
196         tower_plane_rec_list_type appList;
197         tower_plane_rec_list_iterator appListItr;
198         
199         // List of departed planes (planes doing circuits go into circuitList not depList after departure)
200         tower_plane_rec_list_type depList;
201         tower_plane_rec_list_iterator depListItr;
202         
203         // List of planes in the circuit (ordered by nearest to landing first)
204         tower_plane_rec_list_type circuitList;
205         tower_plane_rec_list_iterator circuitListItr;
206         
207         // List of planes waiting to depart
208         tower_plane_rec_list_type holdList;
209         tower_plane_rec_list_iterator holdListItr;
210                 
211         // List of planes on rwy
212         tower_plane_rec_list_type rwyList;
213         tower_plane_rec_list_iterator rwyListItr;
214
215         // List of all planes due to use a given rwy arranged in projected order of rwy use
216         tower_plane_rec_list_type trafficList;  // TODO - needs to be expandable to more than one rwy
217         tower_plane_rec_list_iterator trafficListItr;
218
219         // Ground can be separate or handled by tower in real life.
220         // In the program we will always use a separate FGGround class, but we need to know
221         // whether it is supposed to be separate or not to give the correct instructions.
222         bool separateGround;    // true if ground control is separate
223         FGGround* ground;       // The ground control associated with this airport.
224         
225         // for failure modeling
226         string trans_ident;             // transmitted ident
227         bool tower_failed;              // tower failed?
228         
229     // Pointers to current users position and orientation
230     SGPropertyNode* user_lon_node;
231     SGPropertyNode* user_lat_node;
232     SGPropertyNode* user_elev_node;
233     SGPropertyNode* user_hdg_node;
234         
235         // Details of the general traffic flow etc in the circuit
236         double crosswind_leg_pos;       // Distance from threshold crosswind leg is being turned to in meters (actual operation - *not* ideal circuit)
237         double downwind_leg_pos;        // Actual offset distance in meters from the runway that planes are flying the downwind leg
238         // Currently not sure whether the above should be always +ve or just take the natural orthopos sign (+ve for RH circuit, -ve for LH).
239         double base_leg_pos;            // Actual offset distance from the threshold (-ve) that planes are turning to base leg.
240         
241         friend istream& operator>> ( istream&, FGTower& );
242 };
243
244 #endif  //_FG_TOWER_HXX