]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runwaybase.cxx
Add support for helipads from apt.dat 850+
[flightgear.git] / src / Airports / runwaybase.cxx
1 // runwaybase.cxx -- a base class for runways and taxiways
2 //
3 // Written by James Turner, started December 2008.
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 <simgear/compiler.h>
29 #include <simgear/props/props.hxx>
30
31 #include "runwaybase.hxx"
32
33 using std::string;
34
35 /*
36  * surface codes
37  * 1 - asphalt
38  * 2 - concrete
39  * 3 - turf
40  * 4 - dirt
41  * 5 - gravel
42  * 6 - asphalt helipad
43  * 7 - concrete helipad
44  * 8 - turf helipad
45  * 9 - dirt helipad
46  * 12 -  lakebed
47  */
48
49 FGRunwayBase::FGRunwayBase(PositionedID aGuid, Type aTy, const string& aIdent,
50                         const SGGeod& aGeod,
51                         const double heading, const double length,
52                         const double width,
53                         const int surface_code) :
54   FGPositioned(aGuid, aTy, aIdent, aGeod)
55 {
56   _heading = heading;
57   _length = length;
58   _width = width;
59   _surface_code = surface_code;
60 }
61
62 SGGeod FGRunwayBase::pointOnCenterline(double aOffset) const
63 {
64   double halfLengthMetres = lengthM() * 0.5;
65   
66   SGGeod result = SGGeodesy::direct(mPosition, _heading,
67     aOffset - halfLengthMetres);
68   result.setElevationM(mPosition.getElevationM());
69     
70   return result;
71 }
72
73 SGGeod FGRunwayBase::pointOffCenterline(double aOffset, double lateralOffset) const
74 {
75   SGGeod result;
76   SGGeod temp;
77   double dummyAz2;
78   double halfLengthMetres = lengthM() * 0.5;
79
80   SGGeodesy::direct(mPosition, _heading, 
81     aOffset - halfLengthMetres,
82     temp, dummyAz2);
83
84   SGGeodesy::direct(temp, (_heading+90.0), 
85     lateralOffset,
86     result, dummyAz2);
87
88   return result;
89 }
90
91
92 bool FGRunwayBase::isHardSurface() const
93 {
94   return ((_surface_code == 1) || (_surface_code == 2));
95 }
96
97 FGTaxiway::FGTaxiway(PositionedID aGuid,
98                      const string& aIdent,
99                         const SGGeod& aGeod,
100                         const double heading, const double length,
101                         const double width,
102                         const int surface_code) :
103   FGRunwayBase(aGuid, TAXIWAY, aIdent, aGeod, heading, length, width, surface_code)
104 {
105 }