]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/kr_87.hxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Cockpit / kr_87.hxx
1 // kr-87.hxx -- class to impliment the King KR 87 Digital ADF
2 //
3 // Written by Curtis Olson, started June 2002.
4 //
5 // Copyright (C) 2002  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_KR_87_HXX
25 #define _FG_KR_87_HXX
26
27
28 #include <Main/fgfs.hxx>
29 #include <Main/fg_props.hxx>
30
31 #include <simgear/compiler.h>
32
33 #include <simgear/timing/timestamp.hxx>
34
35 #include <Navaids/navlist.hxx>
36 #include <Sound/morse.hxx>
37
38
39 class FGKR_87 : public FGSubsystem
40 {
41     FGMorse morse;
42
43     SGPropertyNode *lon_node;
44     SGPropertyNode *lat_node;
45     SGPropertyNode *alt_node;
46     SGPropertyNode *bus_power;
47
48     bool need_update;
49
50     // internal values
51     string ident;
52     string trans_ident;
53     bool valid;
54     bool inrange;
55     double stn_lon;
56     double stn_lat;
57     double stn_elev;
58     double range;
59     double effective_range;
60     double dist;
61     double heading;
62     double x;
63     double y;
64     double z;
65     double goal_needle_deg;
66     double et_flash_time;
67
68     // modes
69     int ant_mode;               // 0 = ADF mode (needle active), 1 = ANT mode
70                                 // (needle turned to 90, improved audio rcpt)
71     int stby_mode;              // 0 = show stby freq, 1 = show timer
72     int timer_mode;             // 0 = flt, 1 = et
73     int count_mode;             // 0 = count up, 1 = count down, 2 = set et
74                                 // count down
75
76     // input and buttons
77     double rotation;            // compass faceplace rotation
78     bool power_btn;             // 0 = off, 1 = powered
79     double vol_btn;
80     bool adf_btn;               // 0 = normal, 1 = depressed
81     bool bfo_btn;               // 0 = normal, 1 = depressed
82     bool frq_btn;               // 0 = normal, 1 = depressed
83     bool last_frq_btn;
84     bool flt_et_btn;            // 0 = normal, 1 = depressed
85     bool last_flt_et_btn;
86     bool set_rst_btn;           // 0 = normal, 1 = depressed
87     bool last_set_rst_btn;      // 0 = normal, 1 = depressed
88     bool ident_btn;             // turn audio morse code on/off
89
90     // outputs
91     double freq;
92     double stby_freq;
93     double needle_deg;
94     double flight_timer;
95     double elapsed_timer;
96     double tmp_timer;
97
98     // annunciators
99     bool ant_ann;
100     bool adf_ann;
101     bool bfo_ann;
102     bool frq_ann;
103     bool flt_ann;
104     bool et_ann;
105
106 public:
107
108     FGKR_87();
109     ~FGKR_87();
110
111     void init ();
112     void bind ();
113     void unbind ();
114     void update (double dt);
115
116     // Update nav/adf radios based on current postition
117     void search ();
118
119     // internal values
120     inline string get_ident() const { return ident; }
121     inline bool get_valid() const { return valid; }
122     inline bool get_inrange() const { return inrange; }
123     inline double get_stn_lon() const { return stn_lon; }
124     inline double get_stn_lat() const { return stn_lat; }
125     inline double get_dist() const { return dist; }
126     inline double get_heading() const { return heading; }
127     inline bool has_power() const {
128         return power_btn && (bus_power->getDoubleValue() > 1.0);
129     }
130
131     // modes
132     inline int get_ant_mode() const { return ant_mode; }
133     inline int get_stby_mode() const { return stby_mode; }
134     inline int get_timer_mode() const { return timer_mode; }
135     inline int get_count_mode() const { return count_mode; }
136
137     // input and buttons
138     inline double get_rotation () const { return rotation; }
139     inline void set_rotation( double rot ) { rotation = rot; }
140     inline bool get_power_btn() const { return power_btn; }
141     inline void set_power_btn( bool val ) {
142         power_btn = val;
143     }
144     inline double get_vol_btn() const { return vol_btn; }
145     inline void set_vol_btn( double val ) {
146         if ( val < 0.0 ) val = 0.0;
147         if ( val > 1.0 ) val = 1.0;
148         vol_btn = val;
149     }
150     inline bool get_adf_btn() const { return adf_btn; }
151     inline void set_adf_btn( bool val ) { adf_btn = val; }
152     inline bool get_bfo_btn() const { return bfo_btn; }
153     inline void set_bfo_btn( bool val ) { bfo_btn = val; }
154     inline bool get_frq_btn() const { return frq_btn; }
155     inline void set_frq_btn( bool val ) { frq_btn = val; }
156     inline bool get_flt_et_btn() const { return flt_et_btn; }
157     inline void set_flt_et_btn( bool val ) { flt_et_btn = val; }
158     inline bool get_set_rst_btn() const { return set_rst_btn; }
159     inline void set_set_rst_btn( bool val ) { set_rst_btn = val; }
160     inline bool get_ident_btn() const { return ident_btn; }
161     inline void set_ident_btn( bool val ) { ident_btn = val; }
162
163     // outputs
164     inline double get_freq () const { return freq; }
165     inline void set_freq( double f ) {
166         freq = f;
167         need_update = true;
168     }
169     double get_stby_freq () const;
170     inline void set_stby_freq( double freq ) { stby_freq = freq; }
171     inline double get_needle_deg() const { return needle_deg; }
172     inline double get_flight_timer() const { return flight_timer; }
173     inline double get_elapsed_timer() const { return elapsed_timer; }
174     inline void set_elapsed_timer( double val ) { elapsed_timer = val; }
175
176     // annunciators
177     inline bool get_ant_ann() const { return ant_ann; }
178     inline bool get_adf_ann() const { return adf_ann; }
179     inline bool get_bfo_ann() const { return bfo_ann; }
180     inline bool get_frq_ann() const { return frq_ann; }
181     inline bool get_flt_ann() const { return flt_ann; }
182     inline bool get_et_ann() const { return et_ann; }
183 };
184
185
186 #endif // _FG_KR_87_HXX