]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/transponder.hxx
Rename Viewer/viewer.cxx to view
[flightgear.git] / src / Instrumentation / transponder.hxx
index f0a58efd22b08e4722e11deabed63699184818a8..ad4d183b9be326f83d33f08302c33c32eaa762a1 100644 (file)
@@ -3,6 +3,7 @@
 // Written by Roy Vegard Ovesen, started September 2004.
 //
 // Copyright (C) 2004  Roy Vegard Ovesen - rvovesen@tiscali.no
+// Copyright (C) 2013  Clement de l'Hamaide - clemaez@hotmail.fr
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
 #include <Main/fg_props.hxx>
 
 #include <simgear/structure/subsystem_mgr.hxx>
+#include <simgear/props/tiedpropertylist.hxx>
 
-
-class Transponder : public SGSubsystem
+class Transponder : public SGSubsystem, public SGPropertyChangeListener
 {
 public:
     Transponder(SGPropertyNode *node);
-    ~Transponder();
-
-    void init ();
-    void update (double dt);
+    virtual ~Transponder();
 
+    virtual void init ();
+    virtual void update (double dt);
+    virtual void bind();
+    virtual void unbind();
+    
 private:
+    enum Mode
+    {
+        MODE_A = 0,
+        MODE_C,
+        MODE_S
+    };
+    
+    enum KnobPosition
+    {
+        KNOB_OFF = 0,
+        KNOB_STANDBY,
+        KNOB_TEST,
+        KNOB_GROUND,
+        KNOB_ON,
+        KNOB_ALT
+    };
+    
+    // annunciators, for KT-70 compatibility only
+    // these should be replaced with conditionals in the instrument
+    bool getFLAnnunciator() const;
+    bool getAltAnnunciator() const;
+    bool getGroundAnnuciator() const;
+    bool getOnAnnunciator() const;
+    bool getStandbyAnnunciator() const;
+    bool getReplyAnnunciator() const;
+    
     // Inputs
-    SGPropertyNode_ptr pressureAltitudeNode;
-    SGPropertyNode_ptr busPowerNode;
-    SGPropertyNode_ptr serviceableNode;
+    SGPropertyNode_ptr _pressureAltitude_node;
+    SGPropertyNode_ptr _busPower_node;
+    SGPropertyNode_ptr _serviceable_node;
 
+    SGPropertyNode_ptr _mode_node;
+    SGPropertyNode_ptr _knob_node;
+    SGPropertyNode_ptr _idCode_node;
+    SGPropertyNode_ptr _digit_node[4];
+    
+    simgear::TiedPropertyList _tiedProperties;
+    
+    SGPropertyNode_ptr _identBtn_node;
+    bool _identMode;
+    bool _kt70Compat;
+    
     // Outputs
-    SGPropertyNode_ptr idCodeNode;
-    SGPropertyNode_ptr flightLevelNode;
+    SGPropertyNode_ptr _altitude_node;
+    SGPropertyNode_ptr _altitudeValid_node;
+    SGPropertyNode_ptr _transmittedId_node;
+    SGPropertyNode_ptr _ident_node;
 
     // Internal
-    string _name;
+    std::string _name;
     int _num;
-    string _mode_c_altitude;
+    Mode _mode;
+    KnobPosition _knob;
+    double _identTime;
+    int _listener_active;
+    double _requiredBusVolts;
+    std::string _altitudeSourcePath;
+    
+    void valueChanged (SGPropertyNode *);
+    int setMinMax(int val);
+    bool has_power() const;
 };
 
 #endif // TRANSPONDER_HXX