]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runwaybase.cxx
Fix a typo.
[flightgear.git] / src / Airports / runwaybase.cxx
1 // runwaybase.cxx -- a base class for runways and taxiways
2 //
3 // Written by James Turber, 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   SGGeod result;
65   double dummyAz2;
66   double halfLengthMetres = lengthM() * 0.5;
67   
68   SGGeodesy::direct(mPosition, _heading, 
69     aOffset - halfLengthMetres,
70     result, dummyAz2);
71   return result;
72 }
73
74
75
76 SGGeod FGRunwayBase::pointOffCenterline(double aOffset, double lateralOffset) const
77 {
78   SGGeod result;
79   SGGeod temp;
80   double dummyAz2;
81   double halfLengthMetres = lengthM() * 0.5;
82
83   SGGeodesy::direct(mPosition, _heading, 
84     aOffset - halfLengthMetres,
85     temp, dummyAz2);
86
87   SGGeodesy::direct(temp, (_heading+90.0), 
88     lateralOffset,
89     result, dummyAz2);
90
91   return result;
92 }
93
94
95 bool FGRunwayBase::isHardSurface() const
96 {
97   return ((_surface_code == 1) || (_surface_code == 2));
98 }
99
100 FGTaxiway::FGTaxiway(PositionedID aGuid,
101                      const string& aIdent,
102                         const SGGeod& aGeod,
103                         const double heading, const double length,
104                         const double width,
105                         const int surface_code) :
106   FGRunwayBase(aGuid, TAXIWAY, aIdent, aGeod, heading, length, width, surface_code)
107 {
108 }