]> git.mxchange.org Git - flightgear.git/blobdiff - src/Aircraft/controls.hxx
Added two missing files from JSBSim.org that were missing in the last sync.
[flightgear.git] / src / Aircraft / controls.hxx
index e53155be27c629f7c15aeda92ebe7bbed474d4d6..d9ea286f7ebf6946917643aaa91ff1f172ec10f4 100644 (file)
 #ifndef _CONTROLS_HXX
 #define _CONTROLS_HXX
 
-#include <simgear/props/props.hxx>
 #include <simgear/structure/subsystem_mgr.hxx>
 
-#include <Main/globals.hxx>
-
-#ifndef __cplusplus                                                          
-# error This library requires C++
-#endif                                   
-
-
 // Define a structure containing the control parameters
 
 class FGControls : public SGSubsystem
@@ -43,7 +35,7 @@ public:
 
     enum {
        ALL_ENGINES = -1,
-       MAX_ENGINES = 10
+       MAX_ENGINES = 12
     };
 
     enum {
@@ -161,6 +153,7 @@ private:
     double copilot_brake_right;
     double brake_parking;
     double steering;
+    bool nose_wheel_steering;
     bool gear_down;
     bool antiskid;
     bool tailhook;
@@ -346,6 +339,7 @@ public:
     inline double get_copilot_brake_right() const { return copilot_brake_right; }
     inline double get_brake_parking() const { return brake_parking; }
     inline double get_steering() const { return steering; }
+    inline bool get_nose_wheel_steering() const { return nose_wheel_steering; }
     inline bool get_gear_down() const { return gear_down; }
     inline bool get_antiskid() const { return antiskid; }
     inline bool get_tailhook() const { return tailhook; }
@@ -533,6 +527,7 @@ public:
     void set_brake_parking( double pos );
     void set_steering( double pos );
     void move_steering( double amt );
+    void set_nose_wheel_steering( bool nws );
     void set_gear_down( bool gear );
     void set_antiskid( bool val );
     void set_tailhook( bool val );