]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/marker_beacon.hxx
Initial commit of the new sound system, expect more updates to follow
[flightgear.git] / src / Instrumentation / marker_beacon.hxx
1 // marker_beacon.hxx -- class to manage the marker beacons
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifndef _FG_MARKER_BEACON_HXX
25 #define _FG_MARKER_BEACON_HXX
26
27
28 #include <Main/fg_props.hxx>
29
30 #include <simgear/compiler.h>
31 #include <simgear/structure/subsystem_mgr.hxx>
32 #include <simgear/math/interpolater.hxx>
33 #include <simgear/timing/timestamp.hxx>
34
35 #include <Sound/beacon.hxx>
36 #include <Sound/morse.hxx>
37
38 class SGSampleGroup;
39
40 class FGMarkerBeacon : public SGSubsystem
41 {
42     FGBeacon beacon;
43     FGMorse morse;
44
45     SGInterpTable *term_tbl;
46     SGInterpTable *low_tbl;
47     SGInterpTable *high_tbl;
48
49     // Inputs
50     SGPropertyNode_ptr lon_node;
51     SGPropertyNode_ptr lat_node;
52     SGPropertyNode_ptr alt_node;
53     SGPropertyNode_ptr bus_power;
54     SGPropertyNode_ptr power_btn;
55     SGPropertyNode_ptr audio_btn;
56     SGPropertyNode_ptr audio_vol;
57     SGPropertyNode_ptr serviceable;
58     SGPropertyNode_ptr sound_pause;
59
60     bool need_update;
61
62     bool outer_marker;
63     bool middle_marker;
64     bool inner_marker;
65
66     SGTimeStamp blink;
67     bool outer_blink;
68     bool middle_blink;
69     bool inner_blink;
70
71     string name;
72     int num;
73
74     // internal periodic station search timer
75     double _time_before_search_sec;
76
77     SGSampleGroup *_sgr;
78
79 public:
80
81     enum fgMkrBeacType {
82         NOBEACON = 0,
83         INNER,
84         MIDDLE,
85         OUTER
86     };
87
88     FGMarkerBeacon(SGPropertyNode *node);
89     ~FGMarkerBeacon();
90
91     void init ();
92     void bind ();
93     void unbind ();
94     void update (double dt);
95
96     void search ();
97
98     // Marker Beacon Accessors
99     inline bool get_inner_blink () const { return inner_blink; }
100     inline bool get_middle_blink () const { return middle_blink; }
101     inline bool get_outer_blink () const { return outer_blink; }
102     inline bool has_power() const {
103         return power_btn->getBoolValue() && (bus_power->getDoubleValue() > 1.0);
104     }
105 };
106
107
108 #endif // _FG_MARKER_BEACON_HXX