]> git.mxchange.org Git - flightgear.git/blob - src/ATC/atis.hxx
Bugfix. The engine thrust is recalculated based on the current N1 value
[flightgear.git] / src / ATC / atis.hxx
1 // atis.hxx -- ATIS class
2 //
3 // Written by David Luff, started October 2001.
4 // Based on nav.hxx by Curtis Olson, started April 2000.
5 //
6 // Copyright (C) 2001  David C. Luff - david.luff@nottingham.ac.uk
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23 #ifndef _FG_ATIS_HXX
24 #define _FG_ATIS_HXX
25
26 #include <stdio.h>
27
28 #include <simgear/compiler.h>
29 #include <simgear/math/sg_geodesy.hxx>
30 #include <simgear/misc/sgstream.hxx>
31 #include <simgear/magvar/magvar.hxx>
32 #include <simgear/timing/sg_time.hxx>
33
34 #ifdef SG_HAVE_STD_INCLUDES
35 #  include <istream>
36 #include <iomanip>
37 #elif defined( SG_HAVE_NATIVE_SGI_COMPILERS )
38 #  include <iostream.h>
39 #elif defined( __BORLANDC__ ) || (__APPLE__)
40 #  include <iostream>
41 #else
42 #  include <istream.h>
43 #include <iomanip.h>
44 #endif
45
46 #if ! defined( SG_HAVE_NATIVE_SGI_COMPILERS )
47 SG_USING_STD(istream);
48 #endif
49
50 #include <string>
51
52 SG_USING_STD(string);
53
54 #include "ATC.hxx"
55
56 //DCL - a complete guess for now.
57 #define FG_ATIS_DEFAULT_RANGE 30
58
59 class FGATIS : public FGATC {
60
61     char type;
62     double lon, lat;
63     double elev;
64     double x, y, z;
65     int freq;
66     int range;
67     bool display;               // Flag to indicate whether we should be outputting to the ATC display.
68     bool displaying;            // Flag to indicate whether we are outputting to the ATC display.
69     string ident;               // Code of the airport its at.
70     string name;                // Name transmitted in the broadcast.
71     string transmission;        // The actual ATIS transmission
72                                 // This is not stored in default.atis but is generated
73                                 // from the prevailing conditions when required.
74
75     // for failure modeling
76     string trans_ident;         // transmitted ident
77     bool atis_failed;           // atis failed?
78
79     // Aircraft position
80     // ATIS is actually a special case in that unlike other ATC eg.tower it doesn't actually know about
81     // or the whereabouts of the aircraft it is transmitting to.  However, to ensure consistancy of
82     // operation with the other ATC classes the ATIS class must calculate range to the aircraft in order
83     // to decide whether to render the transmission - hence the users plane details must be stored.
84     //SGPropertyNode *airplane_lon_node; 
85     //SGPropertyNode *airplane_lat_node;
86     //SGPropertyNode *airplane_elev_node; 
87
88 public:
89
90     FGATIS(void);
91     ~FGATIS(void);
92
93     //run the ATIS instance
94     void Update(void);
95
96     //Indicate that this instance should be outputting to the ATC display
97     inline void SetDisplay(void) {display = true;}
98
99     //Indicate that this instance should not be outputting to the ATC display
100     inline void SetNoDisplay(void) {display = false;}
101
102     inline char get_type() const { return type; }
103     inline double get_lon() const { return lon; }
104     inline double get_lat() const { return lat; }
105     inline double get_elev() const { return elev; }
106     inline double get_x() const { return x; }
107     inline double get_y() const { return y; }
108     inline double get_z() const { return z; }
109     inline int get_freq() const { return freq; }
110     inline int get_range() const { return range; }
111     inline const char* GetIdent() { return ident.c_str(); }
112     inline string get_trans_ident() { return trans_ident; }
113     inline atc_type GetType() { return ATIS; }
114
115 private:
116
117     //Update the transmission string
118     void UpdateTransmission(void);
119
120     /* inline void set_type( char t ) { type = t; }
121     inline void set_lon( double l ) { lon = l; }
122     inline void set_lat( double l ) { lat = l; }
123     inline void set_elev( double e ) { elev = e; }
124     inline void set_freq( int f ) { freq = f; }
125     inline void set_range( int r ) { range = r; }
126     inline void set_dme( bool b ) { dme = b; }
127     inline void set_ident( char *i ) { strncpy( ident, i, 5 ); } */
128
129     friend istream& operator>> ( istream&, FGATIS& );
130 };
131
132
133 inline istream&
134 operator >> ( istream& in, FGATIS& a )
135 {
136     double f;
137     char ch;
138
139     static bool first_time = true;
140     static double julian_date = 0;
141     static const double MJD0    = 2415020.0;
142     if ( first_time ) {
143         julian_date = sgTimeCurrentMJD(0, 0) + MJD0;
144         first_time = false;
145     }
146
147     in >> a.type;
148     
149     if ( a.type == '[' )
150       return in >> skipeol;
151
152     in >> a.lat >> a.lon >> a.elev >> f >> a.range 
153        >> a.ident;
154
155     a.name = "";
156     in >> ch;
157     a.name += ch;
158     while(1) {
159         //in >> noskipws
160         in.unsetf(ios::skipws);
161         in >> ch;
162         a.name += ch;
163         if((ch == '"') || (ch == 0x0A)) {
164             break;
165         }   // we shouldn't need the 0x0A but it makes a nice safely in case someone leaves off the "
166     }
167     in.setf(ios::skipws);
168     //cout << "atis.name = " << a.name << '\n';
169
170     a.freq = (int)(f*100.0 + 0.5);
171
172     // cout << a.ident << endl;
173
174     // generate cartesian coordinates
175     Point3D geod( a.lon * SGD_DEGREES_TO_RADIANS, a.lat * SGD_DEGREES_TO_RADIANS, a.elev );
176     Point3D cart = sgGeodToCart( geod );
177     a.x = cart.x();
178     a.y = cart.y();
179     a.z = cart.z();
180
181     a.trans_ident = a.ident;
182     a.atis_failed = false;
183
184     return in >> skipeol;
185 }
186
187 #endif // _FG_ATIS_HXX