]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/transponder.hxx
Improve gyro heading indicator failure simulation
[flightgear.git] / src / Instrumentation / transponder.hxx
1 // transponder.hxx -- class to impliment a transponder
2 //
3 // Written by Roy Vegard Ovesen, started September 2004.
4 //
5 // Copyright (C) 2004  Roy Vegard Ovesen - rvovesen@tiscali.no
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 #ifndef TRANSPONDER_HXX
22 #define TRANSPONDER_HXX 1
23
24 #ifndef __cplusplus
25 # error This library requires C++
26 #endif
27
28 #include <Main/fg_props.hxx>
29
30 #include <simgear/structure/subsystem_mgr.hxx>
31
32
33 class Transponder : public SGSubsystem
34 {
35 public:
36     Transponder(SGPropertyNode *node);
37     ~Transponder();
38
39     void init ();
40     void update (double dt);
41
42 private:
43     // Inputs
44     SGPropertyNode_ptr pressureAltitudeNode;
45     SGPropertyNode_ptr busPowerNode;
46     SGPropertyNode_ptr serviceableNode;
47
48     // Outputs
49     SGPropertyNode_ptr idCodeNode;
50     SGPropertyNode_ptr flightLevelNode;
51
52     // Internal
53     std::string _name;
54     int _num;
55     std::string _mode_c_altitude;
56 };
57
58 #endif // TRANSPONDER_HXX