]> git.mxchange.org Git - flightgear.git/blob - src/ATCDCL/atis.hxx
Merge branch 'timoore/optimization' into next
[flightgear.git] / src / ATCDCL / 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21
22
23 #ifndef _FG_ATIS_HXX
24 #define _FG_ATIS_HXX
25
26 #include <string>
27 #include <iosfwd>
28
29 #include <simgear/compiler.h>
30 #include <simgear/timing/sg_time.hxx>
31 #include <simgear/props/props.hxx>
32
33 #include "ATC.hxx"
34
35 typedef std::map<std::string,std::string> MSS;
36
37 class FGATIS : public FGATC {
38
39     std::string        _name;
40     int                _num;
41
42     SGPropertyNode_ptr _root;
43     SGPropertyNode_ptr _volume;
44     SGPropertyNode_ptr _serviceable;
45     SGPropertyNode_ptr _operable;
46     SGPropertyNode_ptr _electrical;
47     SGPropertyNode_ptr _freq;
48     SGPropertyNode_ptr _atis;
49
50     // Pointers to current users position
51     SGPropertyNode_ptr _lon_node;
52     SGPropertyNode_ptr _lat_node;
53     SGPropertyNode_ptr _elev_node;
54
55     // The actual ATIS transmission
56     // This is generated from the prevailing conditions when required.
57     // This is the version with markup, suitable for voice synthesis:
58     std::string transmission;
59
60     // Same as above, but in a form more readable as text.
61     std::string transmission_readable;
62
63     // for failure modeling
64     std::string trans_ident; // transmitted ident
65     double old_volume;
66     bool atis_failed;        // atis failed?
67     time_t msg_time;         // for moderating error messages
68     time_t cur_time;
69     int msg_OK;
70     int attention;
71
72     bool _prev_display;      // Previous value of _display flag
73     MSS _remap;              // abbreviations to be expanded
74
75     // internal periodic station search timer
76     double _time_before_search_sec;
77     int _last_frequency;
78
79 public:
80
81     FGATIS(const std::string& name, int num);
82     ~FGATIS(void);
83     virtual void init();
84     void attend (int);
85
86     //run the ATIS instance
87     void update(double dt);
88
89     //inline void set_type(const atc_type tp) {type = tp;}
90     inline const std::string& get_trans_ident() { return trans_ident; }
91
92 protected:
93     virtual FGATCVoice* GetVoicePointer();
94
95 private:
96
97     // Generate the ATIS transmission text:
98     int GenTransmission(const int regen, const int special);
99
100     // Put the text into the property tree
101     // (and in debug mode, print it on the console):
102     void TreeOut(int msgOK);
103
104     // Search the specified radio for stations on the same frequency and in range.
105     void search(void);
106
107     friend std::istream& operator>> ( std::istream&, FGATIS& );
108
109 };
110
111 typedef int (FGATIS::*int_getter)() const;
112
113 #endif // _FG_ATIS_HXX