]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runways.hxx
NasalCanvas: Clean up and expose Element node ghost
[flightgear.git] / src / Airports / runways.hxx
1 // runways.hxx -- a simple class to manage airport runway info
2 //
3 // Written by Curtis Olson, started August 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson  - http://www.flightgear.org/~curt
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 Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifndef _FG_RUNWAYS_HXX
25 #define _FG_RUNWAYS_HXX
26
27 #include <simgear/compiler.h>
28
29 #include <Airports/runwaybase.hxx>
30
31 // forward decls
32 class FGAirport;
33 class FGNavRecord;
34 class SGPropertyNode;
35
36 namespace flightgear {
37   class SID;
38   class STAR;
39   class Approach;
40 }
41
42 class FGRunway : public FGRunwayBase
43 {
44   PositionedID _airport;
45   bool _isReciprocal;
46   PositionedID _reciprocal;
47   double _displ_thresh;
48   double _stopway;
49   PositionedID _ils;
50 public:
51   
52   FGRunway(PositionedID aGuid,
53            PositionedID aAirport, const std::string& rwy_no,
54             const SGGeod& aGeod,
55             const double heading, const double length,
56             const double width,
57             const double displ_thresh,
58             const double stopway,
59             const int surface_code,
60             const bool reciprocal);
61   
62   /**
63    * given a runway identifier (06, 18L, 31R) compute the identifier for the
64    * reciprocal heading runway (24, 36R, 13L) string.
65    */
66   static std::string reverseIdent(const std::string& aRunayIdent);
67     
68   /**
69    * score this runway according to the specified weights. Used by
70    * FGAirport::findBestRunwayForHeading
71    */
72   double score(double aLengthWt, double aWidthWt, double aSurfaceWt) const;
73
74   /**
75    * Test if this runway is the reciprocal. This allows users who iterate
76    * over runways to avoid counting runways twice, if desired.
77    */
78   bool isReciprocal() const
79   { return _isReciprocal; }
80
81   /**
82    * Get the runway beginning point - this is syntatic sugar, equivalent to
83    * calling pointOnCenterline(0.0);
84    */
85   SGGeod begin() const;
86   
87   /**
88    * Get the (possibly displaced) threshold point.
89    */
90   SGGeod threshold() const;
91   
92   /**
93    * Get the 'far' end - this is equivalent to calling
94    * pointOnCenterline(lengthFt());
95    */
96   SGGeod end() const;
97   
98   double displacedThresholdM() const
99   { return _displ_thresh * SG_FEET_TO_METER; }
100   
101   double stopwayM() const
102   { return _stopway * SG_FEET_TO_METER; }
103   
104   /**
105    * Airport this runway is located at
106    */
107   FGAirport* airport() const;
108   
109   FGNavRecord* ILS() const;
110   
111   /**
112    * retrieve the associated glideslope transmitter, if one is defined.
113    */
114   FGNavRecord* glideslope() const;
115   
116   void setILS(PositionedID nav) { _ils = nav; }
117   
118   FGRunway* reciprocalRunway() const;
119   
120   void setReciprocalRunway(PositionedID other);
121   
122   /**
123    * Get SIDs (DPs) associated with this runway
124    */
125   std::vector<flightgear::SID*> getSIDs() const;
126   
127   /**
128    * Get STARs associared with this runway
129    */ 
130   std::vector<flightgear::STAR*> getSTARs() const;
131   
132   
133   std::vector<flightgear::Approach*> getApproaches() const;
134   
135 };
136
137 #endif // _FG_RUNWAYS_HXX