]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/radiostack.hxx
Attempt #1 to sort out confusion between left / right / parking brake
[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/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 <Navaids/ilslist.hxx>
36 #include <Navaids/navlist.hxx>
37 #include <Sound/beacon.hxx>
38 #include <Sound/morse.hxx>
39
40 #include "dme.hxx"
41 #include "kr_87.hxx"            // ADF
42 #include "kt_70.hxx"            // Transponder
43 #include "marker_beacon.hxx"
44 #include "navcom.hxx"
45
46
47 class FGRadioStack : public SGSubsystem
48 {
49     FGDME dme;
50     FGKR_87 adf;                // King KR 87 Digital ADF model
51     FGKT_70 xponder;            // Bendix/King KT 70 Panel-Mounted Transponder
52     FGMarkerBeacon beacon;
53     FGNavCom navcom1;
54     FGNavCom navcom2;
55
56 public:
57
58     FGRadioStack();
59     ~FGRadioStack();
60
61     void init ();
62     void bind ();
63     void unbind ();
64     void update (double dt);
65
66     // Update nav/adf radios based on current postition
67     void search ();
68
69     inline FGDME *get_dme() { return &dme; }
70     inline FGNavCom *get_navcom1() { return &navcom1; }
71     inline FGNavCom *get_navcom2() { return &navcom2; }
72 };
73
74
75 extern FGRadioStack *current_radiostack;
76
77 #endif // _FG_RADIOSTACK_HXX