]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/navrecord.hxx
Merge branch 'next' of http://git.gitorious.org/fg/flightgear into next
[flightgear.git] / src / Navaids / navrecord.hxx
1 // navrecord.hxx -- generic vor/dme/ndb class
2 //
3 // Written by Curtis Olson, started May 2004.
4 //
5 // Copyright (C) 2004  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_NAVRECORD_HXX
25 #define _FG_NAVRECORD_HXX
26
27 #include <iosfwd>
28
29 #include "positioned.hxx"
30
31 #define FG_NAV_DEFAULT_RANGE 50 // nm
32 #define FG_LOC_DEFAULT_RANGE 18 // nm
33 #define FG_DME_DEFAULT_RANGE 50 // nm
34 #define FG_NAV_MAX_RANGE 300    // nm
35
36 // forward decls
37 class FGRunway;
38 class SGPropertyNode;
39
40 class FGNavRecord : public FGPositioned 
41 {
42
43     int freq;
44     int range;
45     double multiuse;            // can be slaved variation of VOR
46                                 // (degrees) or localizer heading
47                                 // (degrees) or dme bias (nm)
48
49     std::string _name;                // verbose name in nav database
50     FGRunway* mRunway;        // associated runway, if there is one
51
52     bool serviceable;           // for failure modeling
53     std::string trans_ident;         // for failure modeling
54
55   /**
56    * Helper to init data when a navrecord is associated with an airport
57    */
58   void initAirportRelation();
59   
60   void alignLocaliserWithRunway(double aThreshold);
61   
62   void readAirportSceneryData();
63   void processSceneryILS(SGPropertyNode* aILSNode);
64 public:
65   inline ~FGNavRecord(void) {}
66
67     FGNavRecord(Type type, const std::string& ident, const std::string& name,
68       const SGGeod& aPos,
69       int freq, int range, double multiuse);
70     
71     inline double get_lon() const { return longitude(); } // degrees
72     inline double get_lat() const { return latitude(); } // degrees
73     inline double get_elev_ft() const { return elevation(); }
74         
75     inline int get_freq() const { return freq; }
76     inline int get_range() const { return range; }
77     inline double get_multiuse() const { return multiuse; }
78     inline void set_multiuse( double m ) { multiuse = m; }
79     inline const char *get_ident() const { return ident().c_str(); }
80
81     inline bool get_serviceable() const { return serviceable; }
82     inline const char *get_trans_ident() const { return trans_ident.c_str(); }
83
84   virtual const std::string& name() const
85   { return _name; }
86   
87   /**
88    * Retrieve the runway this navaid is associated with (for ILS/LOC/GS)
89    */
90   FGRunway* runway() const { return mRunway; }
91   
92   /**
93    * return the localizer width, in degrees
94    * computation is based up ICAO stdandard width at the runway threshold
95    * see implementation for further details.
96    */
97   double localizerWidth() const;
98 };
99
100 class FGTACANRecord : public SGReferenced {
101
102     std::string channel;                
103     int freq;
104      
105 public:
106     
107      FGTACANRecord(void);
108     inline ~FGTACANRecord(void) {}
109
110     inline const std::string& get_channel() const { return channel; }
111     inline int get_freq() const { return freq; }
112     friend std::istream& operator>> ( std::istream&, FGTACANRecord& );
113     };
114
115 #endif // _FG_NAVRECORD_HXX