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