]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runways.cxx
Merge branch 'maint' into next
[flightgear.git] / src / Airports / runways.cxx
1 // runways.cxx -- 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 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <cstdio>              // sprintf()
29 #include <cstdlib>             // atoi()
30
31 #include <simgear/compiler.h>
32
33 #include <string>
34
35 #include "runways.hxx"
36
37 using std::string;
38
39 static std::string cleanRunwayNo(const std::string& aRwyNo)
40 {
41   if (aRwyNo[0] == 'x') {
42     return std::string(); // no ident for taxiways
43   }
44   
45   string result(aRwyNo);
46   // canonicalise runway ident
47   if ((aRwyNo.size() == 1) || !isdigit(aRwyNo[1])) {
48           result = "0" + aRwyNo;
49   }
50
51   // trim off trailing garbage
52   if (result.size() > 2) {
53     char suffix = toupper(result[2]);
54     if (suffix == 'X') {
55        result = result.substr(0, 2);
56     }
57   }
58   
59   return result;
60 }
61
62 FGRunway::FGRunway(FGAirport* aAirport, const string& aIdent,
63                         const SGGeod& aGeod,
64                         const double heading, const double length,
65                         const double width,
66                         const double displ_thresh,
67                         const double stopway,
68                         const int surface_code,
69                         bool reciprocal) :
70   FGRunwayBase(RUNWAY, cleanRunwayNo(aIdent), aGeod, heading, length, width, surface_code, true),
71   _airport(aAirport),
72   _reciprocal(reciprocal),
73   _displ_thresh(displ_thresh),
74   _stopway(stopway)
75 {
76 }
77
78 string FGRunway::reverseIdent(const string& aRunwayIdent)
79 {
80   // Helipads don't have a seperate number per end
81   if (aRunwayIdent.size() && (aRunwayIdent[0] == 'H' || aRunwayIdent[0] == 'h' || aRunwayIdent[0] == 'x')) {
82     return aRunwayIdent;
83   }
84
85   std::string ident(aRunwayIdent);
86     
87   char buf[4];
88   int rn = atoi(ident.substr(0,2).c_str());
89   rn += 18;
90   while(rn > 36) {
91           rn -= 36;
92   }
93   
94   sprintf(buf, "%02i", rn);
95   if(ident.size() == 3) {
96     char suffix = toupper(ident[2]);
97     if(suffix == 'L') {
98       buf[2] = 'R';
99     } else if (suffix == 'R') {
100       buf[2] = 'L';
101     } else {
102       // something else, just copy
103       buf[2] = suffix;
104     }
105     
106     buf[3] = 0;
107   }
108   
109   return buf;
110 }
111
112 double FGRunway::score(double aLengthWt, double aWidthWt, double aSurfaceWt) const
113 {
114   int surface = 1;
115   if (_surface_code == 12 || _surface_code == 5) // dry lakebed & gravel
116     surface = 2;
117   else if (_surface_code == 1 || _surface_code == 2) // asphalt & concrete
118     surface = 3;
119     
120   return _length * aLengthWt + _width * aWidthWt + surface * aSurfaceWt + 1e-20;
121 }
122
123 SGGeod FGRunway::begin() const
124 {
125   return pointOnCenterline(0.0);
126 }
127
128 SGGeod FGRunway::end() const
129 {
130   return pointOnCenterline(lengthM());
131 }
132
133 SGGeod FGRunway::threshold() const
134 {
135   return pointOnCenterline(_displ_thresh * SG_FEET_TO_METER);
136 }
137