]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/nav.hxx
Overhaul of the navaid system to increase efficiency, reduce redundancy, and
[flightgear.git] / src / Navaids / nav.hxx
1 // nav.hxx -- vor/dme/ndb class
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  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_NAV_HXX
25 #define _FG_NAV_HXX
26
27
28 #include <simgear/compiler.h>
29 #include <simgear/math/fg_geodesy.hxx>
30 #include <simgear/misc/fgstream.hxx>
31
32 #ifdef FG_HAVE_STD_INCLUDES
33 #  include <istream>
34 #elif defined( FG_HAVE_NATIVE_SGI_COMPILERS )
35 #  include <iostream.h>
36 #elif defined( __BORLANDC__ )
37 #  include <iostream>
38 #else
39 #  include <istream.h>
40 #endif
41
42 #if ! defined( FG_HAVE_NATIVE_SGI_COMPILERS )
43 FG_USING_STD(istream);
44 #endif
45
46
47 class FGNav {
48
49     char type;
50     double lon, lat;
51     double elev;
52     double x, y, z;
53     int freq;
54     int range;
55     bool dme;
56     char ident[5];
57
58 public:
59
60     inline FGNav(void) {}
61     inline ~FGNav(void) {}
62
63     inline char get_type() const { return type; }
64     inline double get_lon() const { return lon; }
65     inline double get_lat() const { return lat; }
66     inline double get_elev() const { return elev; }
67     inline double get_x() const { return x; }
68     inline double get_y() const { return y; }
69     inline double get_z() const { return z; }
70     inline int get_freq() const { return freq; }
71     inline int get_range() const { return range; }
72     inline bool get_dme() const { return dme; }
73     inline char *get_ident() { return ident; }
74
75     /* inline void set_type( char t ) { type = t; }
76     inline void set_lon( double l ) { lon = l; }
77     inline void set_lat( double l ) { lat = l; }
78     inline void set_elev( double e ) { elev = e; }
79     inline void set_freq( int f ) { freq = f; }
80     inline void set_range( int r ) { range = r; }
81     inline void set_dme( bool b ) { dme = b; }
82     inline void set_ident( char *i ) { strncpy( ident, i, 5 ); } */
83
84     friend istream& operator>> ( istream&, FGNav& );
85 };
86
87
88 inline istream&
89 operator >> ( istream& in, FGNav& n )
90 {
91     double f;
92     char c;
93     in >> n.type >> n.lat >> n.lon >> n.elev >> f >> n.range 
94        >> c >> n.ident;
95
96     n.freq = (int)(f*100.0 + 0.5);
97     if ( c == 'Y' ) {
98         n.dme = true;
99     } else {
100         n.dme = false;
101     }
102
103     // generate cartesian coordinates
104     Point3D geod( n.lon * DEG_TO_RAD, n.lat * DEG_TO_RAD, n.elev );
105     Point3D cart = fgGeodToCart( geod );
106     n.x = cart.x();
107     n.y = cart.y();
108     n.z = cart.z();
109
110     return in >> skipeol;
111 }
112
113
114 #endif // _FG_NAV_HXX