]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/tcas.hxx
ADF: code clean-up/documentation
[flightgear.git] / src / Instrumentation / tcas.hxx
1 // tcas.hxx -- Traffic Alert and Collision Avoidance System (TCAS)
2 //
3 // Written by Thorsten Brehm, started December 2010.
4 //
5 // Copyright (C) 2010 Thorsten Brehm - brehmt (at) gmail com
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifndef __INSTRUMENTS_TCAS_HXX
22 #define __INSTRUMENTS_TCAS_HXX
23
24 #include <assert.h>
25
26 #include <vector>
27 #include <deque>
28 #include <map>
29
30 #include <simgear/props/props.hxx>
31 #include <simgear/structure/subsystem_mgr.hxx>
32 #include <Sound/voiceplayer.hxx>
33
34 using std::vector;
35 using std::deque;
36 using std::map;
37
38 class SGSampleGroup;
39
40 #include <Main/globals.hxx>
41
42 #ifdef _MSC_VER
43 #  pragma warning( push )
44 #  pragma warning( disable: 4355 )
45 #endif
46
47 ///////////////////////////////////////////////////////////////////////////////
48 // TCAS  //////////////////////////////////////////////////////////////////////
49 ///////////////////////////////////////////////////////////////////////////////
50
51 class TCAS : public SGSubsystem
52 {
53
54     typedef enum
55     {
56         AdvisoryClear         = 0,                          /*< Clear of traffic */
57         AdvisoryIntrusion     = 1,                          /*< Intrusion flag */
58         AdvisoryClimb         = AdvisoryIntrusion|(1 << 1), /*< RA climb */
59         AdvisoryDescend       = AdvisoryIntrusion|(1 << 2), /*< RA descend */
60         AdvisoryAdjustVSpeed  = AdvisoryIntrusion|(1 << 3), /*< RA adjust vertical speed (TCAS II 7.0 only) */
61         AdvisoryMaintVSpeed   = AdvisoryIntrusion|(1 << 4), /*< RA maintain vertical speed */
62         AdvisoryMonitorVSpeed = AdvisoryIntrusion|(1 << 5), /*< RA monitor vertical speed */
63         AdvisoryLevelOff      = AdvisoryIntrusion|(1 << 6)  /*< RA level off (TCAS II 7.1 only) */
64     } EnumAdvisory;
65
66     typedef enum
67     {
68         OptionNone            = 0,        /*< no option modifier */
69         OptionIncreaseClimb   = (1 << 0), /*< increase climb */
70         OptionIncreaseDescend = (1 << 1), /*< increase descend */
71         OptionCrossingClimb   = (1 << 2), /*< crossing climb */
72         OptionCrossingDescent = (1 << 3)  /*< crossing descent */
73     } EnumAdvisoryOption;
74
75     typedef enum
76     {
77         SwitchOff        = 0, /*< TCAS switched off */
78         SwitchStandby    = 1, /*< TCAS standby (no TA/RA) */
79         SwitchTaOnly     = 2, /*< TCAS in TA-only mode (no RA) */
80         SwitchAuto       = 3  /*< TCAS in TA/RA mode */
81     } EnumModeSwitch;
82
83     typedef enum
84     {
85         ThreatInvisible    = -1,/*< Traffic is invisible to TCAS (i.e. no transponder) */
86         ThreatNone         = 0, /*< Traffic is visible but no threat. */
87         ThreatProximity    = 1, /*< Proximity intruder traffic (no threat). */
88         ThreatTA           = 2, /*< TA-level threat traffic. */
89         ThreatRA           = 3  /*< RA-level threat traffic. */
90     } EnumThreatLevel;
91
92     typedef struct
93     {
94       int  threatLevel;  /*< intruder threat level: 0=clear, 1=proximity,
95                              2=intruder, 3=proximity intruder */
96       int  RA;           /*< resolution advisory */
97       int  RAOption;     /*< option flags for advisory */
98     } ResolutionAdvisory;
99
100     typedef struct
101     {
102         float Tau;       /*< vertical/horizontal protection range in seconds */ 
103         float DMOD;      /*< horizontal protection range in nm */
104         float ALIM;      /*< vertical protection range in ft */
105     } Thresholds;
106
107     typedef struct
108     {
109         double    maxAltitude; /*< max altitude for this sensitivity level */
110         int        sl;         /*< sensitivity level */
111         Thresholds TA;         /*< thresholds for TA-level threats */
112         Thresholds RA;         /*< thresholds for RA-level threats */
113     } SensitivityLevel;
114
115     typedef struct
116     {
117         string callsign;
118         bool   verticalTA;
119         bool   verticalRA;
120         bool   horizontalTA;
121         bool   horizontalRA;
122         bool   isTracked;
123         float  horizontalTau;
124         float  verticalTau;
125         float  relativeAltitudeFt;
126         float  verticalFps;
127         int    RASense;
128     } ThreatInfo;
129
130     typedef struct
131     {
132         int    threatLevel;
133         double TAtimestamp;
134         double RAtimestamp;
135     } TrackerTarget;
136
137     typedef map<string,TrackerTarget*> TrackerTargets;
138
139     typedef struct
140     {
141         double lat;
142         double lon;
143         float  pressureAltFt;
144         float  radarAltFt;
145         float  heading;
146         float  velocityKt;
147         float  verticalFps;
148     } LocalInfo; /*< info structure for local aircraft */
149
150     /////////////////////////////////////////////////////////////////////////////
151     // TCAS::PropertiesHandler ///////////////////////////////////////////////
152     /////////////////////////////////////////////////////////////////////////////
153
154     class PropertiesHandler : public FGVoicePlayer::PropertiesHandler
155     {
156       TCAS *tcas;
157
158     public:
159       PropertiesHandler (TCAS *device) :
160         FGVoicePlayer::PropertiesHandler(), tcas(device) {}
161
162       PropertiesHandler (void) : FGVoicePlayer::PropertiesHandler() {}
163     };
164
165     /////////////////////////////////////////////////////////////////////////////
166     // TCAS::VoicePlayer ////////////////////////////////////////////////////////
167     /////////////////////////////////////////////////////////////////////////////
168
169     class VoicePlayer :
170         public FGVoicePlayer
171     {
172     public:
173         VoicePlayer (TCAS* tcas) :
174           FGVoicePlayer(&tcas->properties_handler, "tcas") {}
175
176         ~VoicePlayer (void) {}
177
178         void init    (void);
179
180         struct
181         {
182           Voice* pTrafficTraffic;
183           Voice* pClimb;
184           Voice* pClimbNow;
185           Voice* pClimbCrossing;
186           Voice* pClimbIncrease;
187           Voice* pDescend;
188           Voice* pDescendNow;
189           Voice* pDescendCrossing;
190           Voice* pDescendIncrease;
191           Voice* pClear;
192           Voice* pAdjustVSpeed;
193           Voice* pMaintVSpeed;
194           Voice* pMonitorVSpeed;
195           Voice* pLevelOff;
196           Voice* pTestOk;
197           Voice* pTestFail;
198         } Voices;
199     private:
200         SGPropertyNode_ptr nodeSoundFilePrefix;
201     };
202
203     /////////////////////////////////////////////////////////////////////////////
204     // TCAS::Annunciator ////////////////////////////////////////////////////////
205     /////////////////////////////////////////////////////////////////////////////
206
207     class Annunciator
208     {
209     public:
210         Annunciator    (TCAS* tcas);
211         ~Annunciator   (void) {}
212         void bind      (SGPropertyNode* node);
213         void init      (void);
214         void update    (void);
215
216         void trigger   (const ResolutionAdvisory& newAdvisory, bool revertedRA);
217         void test      (bool testOk);
218         void clear     (void);
219         bool isPlaying (void) { return voicePlayer.is_playing();}
220
221     private:
222         TCAS* tcas;
223         ResolutionAdvisory previous;
224         FGVoicePlayer::Voice* pLastVoice;
225         VoicePlayer voicePlayer;
226         SGPropertyNode_ptr nodeGpwsAlertOn;
227     };
228
229     /////////////////////////////////////////////////////////////////////////////
230     // TCAS::AdvisoryCoordinator ////////////////////////////////////////////////
231     /////////////////////////////////////////////////////////////////////////////
232
233     class AdvisoryCoordinator
234     {
235     public:
236         AdvisoryCoordinator  (TCAS* _tcas);
237         ~AdvisoryCoordinator (void) {}
238
239         void bind            (SGPropertyNode* node);
240         void init            (void);
241         void update          (int mode);
242
243         void clear           (void);
244         void add             (const ResolutionAdvisory& newAdvisory);
245
246     private:
247         TCAS* tcas;
248         double lastTATime;
249         ResolutionAdvisory current;
250         ResolutionAdvisory previous;
251         SGPropertyNode_ptr nodeTAWarning;
252     };
253
254     /////////////////////////////////////////////////////////////////////////////
255     // TCAS::Tracker ////////////////////////////////////////////////////////////
256     /////////////////////////////////////////////////////////////////////////////
257
258     class Tracker
259     {
260     public:
261         Tracker  (TCAS* _tcas);
262         ~Tracker (void) {}
263
264         void update          (void);
265
266         void add             (const string callsign, int detectedLevel);
267         bool active          (void) { return haveTargets;}
268         bool newTraffic      (void) { return newTargets;}
269         bool isTracked       (string callsign) { if (!haveTargets) return false;else return _isTracked(callsign);}
270         bool _isTracked      (string callsign);
271         int  getThreatLevel  (string callsign);
272
273     private:
274         TCAS*  tcas;
275         double currentTime;
276         bool   haveTargets;
277         bool   newTargets;
278         TrackerTargets targets;
279     };
280     
281     /////////////////////////////////////////////////////////////////////////////
282     // TCAS::AdvisoryGenerator //////////////////////////////////////////////////
283     /////////////////////////////////////////////////////////////////////////////
284
285     class AdvisoryGenerator
286     {
287     public:
288         AdvisoryGenerator        (TCAS* _tcas);
289         ~AdvisoryGenerator       (void) {}
290
291         void init                (const LocalInfo* _pSelf, ThreatInfo* _pCurrentThreat);
292
293         void setAlarmThresholds  (const SensitivityLevel* _pAlarmThresholds);
294
295         int   resolution         (int mode, int threatLevel, float distanceNm,
296                                   float altFt, float heading, float velocityKt);
297
298     private:
299         float verticalSeparation (float newVerticalFps);
300         void  determineRAsense   (int& RASense, bool& isCrossing);
301
302     private:
303         TCAS*             tcas;
304         const LocalInfo*  pSelf;          /*< info structure for local aircraft */
305         ThreatInfo* pCurrentThreat; /*< info structure on current intruder/threat */
306         const SensitivityLevel* pAlarmThresholds;
307     };
308
309     /////////////////////////////////////////////////////////////////////////////
310     // TCAS::ThreatDetector /////////////////////////////////////////////////////
311     /////////////////////////////////////////////////////////////////////////////
312
313     class ThreatDetector
314     {
315     public:
316         ThreatDetector            (TCAS* _tcas);
317         ~ThreatDetector           (void) {}
318
319         void  init                (void);
320         void  update              (void);
321
322         bool  checkTransponder    (const SGPropertyNode* pModel, float velocityKt);
323         int   checkThreat         (int mode, const SGPropertyNode* pModel);
324         void  checkVerticalThreat (void);
325         void  horizontalThreat    (float bearing, float distanceNm, float heading,
326                                    float velocityKt);
327
328         void  setPressureAlt      (float altFt) { self.pressureAltFt = altFt;}
329         float getPressureAlt      (void)        { return self.pressureAltFt;}
330
331         void  setRadarAlt         (float altFt) { self.radarAltFt = altFt;}
332         float getRadarAlt         (void)        { return self.radarAltFt;}
333
334         float getVelocityKt       (void)        { return self.velocityKt;}
335         int   getRASense          (void)        { return currentThreat.RASense;}
336
337     private:
338         void  unitTest            (void);
339
340     private:
341         static const SensitivityLevel sensitivityLevels[];
342
343         TCAS*              tcas;
344         int                checkCount;
345
346         SGPropertyNode_ptr nodeLat;
347         SGPropertyNode_ptr nodeLon;
348         SGPropertyNode_ptr nodePressureAlt;
349         SGPropertyNode_ptr nodeRadarAlt;
350         SGPropertyNode_ptr nodeHeading;
351         SGPropertyNode_ptr nodeVelocity;
352         SGPropertyNode_ptr nodeVerticalFps;
353
354         LocalInfo          self;          /*< info structure for local aircraft */
355         ThreatInfo         currentThreat; /*< info structure on current intruder/threat */
356         const SensitivityLevel* pAlarmThresholds;
357     };
358
359 private:
360     string              name;
361     int                 num;
362     double              nextUpdateTime;
363     int                 selfTestStep;
364
365     SGPropertyNode_ptr  nodeModeSwitch;
366     SGPropertyNode_ptr  nodeServiceable;
367     SGPropertyNode_ptr  nodeSelfTest;
368     SGPropertyNode_ptr  nodeDebugTrigger;
369     SGPropertyNode_ptr  nodeDebugRA;
370     SGPropertyNode_ptr  nodeDebugThreat;
371
372     PropertiesHandler   properties_handler;
373     ThreatDetector      threatDetector;
374     Tracker             tracker;
375     AdvisoryCoordinator advisoryCoordinator;
376     AdvisoryGenerator   advisoryGenerator;
377     Annunciator         annunciator;
378
379 private:
380     void selfTest       (void);
381
382 public:
383     TCAS (SGPropertyNode* node);
384
385     virtual void bind   (void);
386     virtual void unbind (void);
387     virtual void init   (void);
388     virtual void update (double dt);
389 };
390
391 #ifdef _MSC_VER
392 #  pragma warning( pop )
393 #endif
394
395 #endif // __INSTRUMENTS_TCAS_HXX