]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/radiostack.hxx
Shuffling/reorganizing code.
[flightgear.git] / src / Cockpit / radiostack.hxx
1 // radiostack.hxx -- class to manage an instance of the radio stack
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_RADIOSTACK_HXX
25 #define _FG_RADIOSTACK_HXX
26
27
28 #include <Main/fgfs.hxx>
29 #include <Main/fg_props.hxx>
30
31 #include <simgear/compiler.h>
32
33 #include <simgear/math/interpolater.hxx>
34 #include <simgear/timing/timestamp.hxx>
35
36 #include <Navaids/ilslist.hxx>
37 #include <Navaids/navlist.hxx>
38 #include <Sound/beacon.hxx>
39 #include <Sound/morse.hxx>
40
41 #include "dme.hxx"
42 #include "kr_87.hxx"            // ADF
43 #include "kt_70.hxx"            // Transponder
44 #include "navcom.hxx"
45
46
47 class FGRadioStack : public FGSubsystem
48 {
49     FGBeacon beacon;
50     FGMorse morse;
51
52     SGInterpTable *term_tbl;
53     SGInterpTable *low_tbl;
54     SGInterpTable *high_tbl;
55
56     SGPropertyNode *lon_node;
57     SGPropertyNode *lat_node;
58     SGPropertyNode *alt_node;
59     SGPropertyNode *dme_bus_power;
60
61     bool need_update;
62
63     bool outer_marker;
64     bool middle_marker;
65     bool inner_marker;
66
67     SGTimeStamp blink;
68     bool outer_blink;
69     bool middle_blink;
70     bool inner_blink;
71
72     FGDME dme;
73     FGKR_87 adf;                // King KR 87 Digital ADF model
74     FGKT_70 xponder;            // Bendix/King KT 70 Panel-Mounted Transponder
75     FGNavCom navcom1;
76     FGNavCom navcom2;
77
78 public:
79
80     FGRadioStack();
81     ~FGRadioStack();
82
83     void init ();
84     void bind ();
85     void unbind ();
86     void update (double dt);
87
88     // Update nav/adf radios based on current postition
89     void search ();
90
91     inline FGNavCom *get_navcom1() { return &navcom1; }
92     inline FGNavCom *get_navcom2() { return &navcom2; }
93
94     // Marker Beacon Accessors
95     inline bool get_inner_blink () const { return inner_blink; }
96     inline bool get_middle_blink () const { return middle_blink; }
97     inline bool get_outer_blink () const { return outer_blink; }
98 };
99
100
101 extern FGRadioStack *current_radiostack;
102
103 #endif // _FG_RADIOSTACK_HXX