]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/nav.hxx
Added ils loader.
[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/misc/fgstream.hxx>
30
31 #ifdef FG_HAVE_STD_INCLUDES
32 #  include <istream>
33 #elif defined( FG_HAVE_NATIVE_SGI_COMPILERS )
34 #  include <iostream.h>
35 #elif defined( __BORLANDC__ )
36 #  include <iostream>
37 #else
38 #  include <istream.h>
39 #endif
40
41 #if ! defined( FG_HAVE_NATIVE_SGI_COMPILERS )
42 FG_USING_STD(istream);
43 #endif
44
45
46 class FGNav {
47
48     char type;
49     double lon, lat;
50     double elev;
51     int freq;
52     int range;
53     bool dme;
54     char ident[5];
55
56 public:
57
58     inline FGNav(void) {}
59     inline ~FGNav(void) {}
60
61     inline char get_type() const { return type; }
62     inline double get_lon() const { return lon; }
63     inline double get_lat() const { return lat; }
64     inline double get_elev() const { return elev; }
65     inline int get_freq() const { return freq; }
66     inline int get_range() const { return range; }
67     inline bool get_dme() const { return dme; }
68     inline char *get_ident() { return ident; }
69
70     /* inline void set_type( char t ) { type = t; }
71     inline void set_lon( double l ) { lon = l; }
72     inline void set_lat( double l ) { lat = l; }
73     inline void set_elev( double e ) { elev = e; }
74     inline void set_freq( int f ) { freq = f; }
75     inline void set_range( int r ) { range = r; }
76     inline void set_dme( bool b ) { dme = b; }
77     inline void set_ident( char *i ) { strncpy( ident, i, 5 ); } */
78
79     friend istream& operator>> ( istream&, FGNav& );
80 };
81
82
83 inline istream&
84 operator >> ( istream& in, FGNav& n )
85 {
86     double f;
87     char c;
88     in >> n.type >> n.lat >> n.lon >> n.elev >> f >> n.range 
89        >> c >> n.ident;
90
91     n.freq = (int)(f * 100.0);
92     if ( c == 'Y' ) {
93         n.dme = true;
94     } else {
95         n.dme = false;
96     }
97
98     return in >> skipeol;
99 }
100
101
102 #endif // _FG_NAV_HXX