]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runways.hxx
Fix to LaRCsim interpolation code
[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
35 class FGRunway : public FGRunwayBase
36 {
37   FGAirport* _airport;
38   bool _reciprocal;
39   double _displ_thresh;
40   double _stopway;
41   FGNavRecord* _ils;
42 public:
43   
44   FGRunway(FGAirport* aAirport, const std::string& rwy_no,
45             const SGGeod& aGeod,
46             const double heading, const double length,
47             const double width,
48             const double displ_thresh,
49             const double stopway,
50             const int surface_code,
51             const bool reciprocal);
52   
53   /**
54    * given a runway identifier (06, 18L, 31R) compute the identifier for the
55    * reciprocal heading runway (24, 36R, 13L) string.
56    */
57   static std::string reverseIdent(const std::string& aRunayIdent);
58     
59   /**
60    * score this runway according to the specified weights. Used by
61    * FGAirport::findBestRunwayForHeading
62    */
63   double score(double aLengthWt, double aWidthWt, double aSurfaceWt) const;
64
65   /**
66    * Test if this runway is the reciprocal. This allows users who iterate
67    * over runways to avoid counting runways twice, if desired.
68    */
69   bool isReciprocal() const
70   { return _reciprocal; }
71
72   /**
73    * Get the runway begining point - this is syntatic sugar, equivalent to
74    * calling pointOnCenterline(0.0);
75    */
76   SGGeod begin() const;
77   
78   /**
79    * Get the (possibly displaced) threshold point.
80    */
81   SGGeod threshold() const;
82   
83   /**
84    * Get the 'far' end - this is equivalent to calling
85    * pointOnCenterline(lengthFt());
86    */
87   SGGeod end() const;
88   
89   double displacedThresholdM() const
90   { return _displ_thresh * SG_FEET_TO_METER; }
91   
92   double stopwayM() const
93   { return _stopway * SG_FEET_TO_METER; }
94   
95   /**
96    * Airport this runway is located at
97    */
98   FGAirport* airport() const
99   { return _airport; }
100   
101   // FIXME - should die once airport / runway creation is cleaned up
102   void setAirport(FGAirport* aAirport)
103   { _airport = aAirport; }
104   
105   FGNavRecord* ILS() const { return _ils; }
106   void setILS(FGNavRecord* nav) { _ils = nav; }
107 };
108
109 #endif // _FG_RUNWAYS_HXX