]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/navrecord.hxx
This set of changes impliments the following:
[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 - curt@flightgear.org
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _FG_NAVRECORD_HXX
25 #define _FG_NAVRECORD_HXX
26
27 #include <stdio.h>
28
29 #include <simgear/compiler.h>
30 #include <simgear/math/sg_geodesy.hxx>
31 #include <simgear/misc/sgstream.hxx>
32 #include <simgear/magvar/magvar.hxx>
33 #include <simgear/timing/sg_time.hxx>
34
35 #ifdef SG_HAVE_STD_INCLUDES
36 #  include <istream>
37 #elif defined( __BORLANDC__ ) || (__APPLE__)
38 #  include <iostream>
39 #else
40 #  include <istream.h>
41 #endif
42
43 SG_USING_STD(istream);
44
45
46 #define FG_NAV_DEFAULT_RANGE 50
47 #define FG_LOC_DEFAULT_RANGE 18
48 #define FG_DME_DEFAULT_RANGE 50
49
50
51 class FGNavRecord {
52
53     int type;
54     double lon, lat;            // location in geodetic coords
55     double elev_ft;
56     double x, y, z;             // location in cartesian coords (earth centered)
57     int freq;
58     int range;
59     double multiuse;            // can be slaved variation of VOR
60                                 // (degrees) or localizer heading
61                                 // (degrees) or dme bias (nm)
62
63     string ident;               // navaid ident
64     string name;                // "given" name
65
66
67     bool serviceable;           // for failure modeling
68     string trans_ident;         // for failure modeling
69
70 public:
71
72     inline FGNavRecord(void);
73     inline ~FGNavRecord(void) {}
74
75     inline int get_type() const { return type; }
76     inline double get_lon() const { return lon; }
77     inline double get_lat() const { return lat; }
78     inline double get_elev_ft() const { return elev_ft; }
79     inline double get_x() const { return x; }
80     inline double get_y() const { return y; }
81     inline double get_z() const { return z; }
82     inline int get_freq() const { return freq; }
83     inline int get_range() const { return range; }
84     inline double get_multiuse() const { return multiuse; }
85     inline const char *get_ident() { return ident.c_str(); }
86     inline string get_name() { return name; }
87     inline bool get_serviceable() { return serviceable; }
88     inline const char *get_trans_ident() { return trans_ident.c_str(); }
89
90     friend istream& operator>> ( istream&, FGNavRecord& );
91 };
92
93
94 inline
95 FGNavRecord::FGNavRecord(void) :
96     type(0),
97     lon(0.0), lat(0.0),
98     elev_ft(0.0),
99     x(0.0), y(0.0), z(0.0),
100     freq(0),
101     range(0),
102     multiuse(0.0),
103     ident(""),
104     name(""),
105     serviceable(true),
106     trans_ident("")
107 {
108 }
109
110
111 inline istream&
112 operator >> ( istream& in, FGNavRecord& n )
113 {
114     in >> n.type;
115     
116     if ( n.type == 99 ) {
117         return in >> skipeol;
118     }
119
120     in >> n.lat >> n.lon >> n.elev_ft >> n.freq >> n.multiuse
121        >> n.ident;
122     getline( in, n.name );
123
124     // silently multiply adf frequencies by 100 so that adf
125     // vs. nav/loc frequency lookups can use the same code.
126     if ( n.type == 2 ) {
127         n.freq *= 100;
128     }
129
130     // Remove the space before the name
131     if ( n.name.substr(0,1) == " " ) {
132         n.name = n.name.erase(0,1);
133     }
134
135     // assign default ranges
136     if ( n.type == 2 || n.type == 3 ) {
137         n.range = FG_NAV_DEFAULT_RANGE;
138     } else if ( n.type == 4 || n.type == 5 || n.type == 6 ) {
139         n.range = FG_LOC_DEFAULT_RANGE;
140     } else if ( n.type == 12 ) {
141         n.range = FG_DME_DEFAULT_RANGE;
142     } else {
143         n.range = FG_LOC_DEFAULT_RANGE;
144     }
145
146     // transmitted ident (same as ident unless modeling a fault)
147     n.trans_ident = n.ident;
148
149     // generate cartesian coordinates
150     Point3D geod( n.lon * SGD_DEGREES_TO_RADIANS,
151                   n.lat * SGD_DEGREES_TO_RADIANS,
152                   n.elev_ft * SG_FEET_TO_METER );
153     Point3D cart = sgGeodToCart( geod );
154     n.x = cart.x();
155     n.y = cart.y();
156     n.z = cart.z();
157
158     return in;
159 }
160
161
162 #endif // _FG_NAVRECORD_HXX