]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/net_ctrls.hxx
Add David Culp's AI model manager code which is derived from David Luff's AI/ATC...
[flightgear.git] / src / Network / net_ctrls.hxx
index a1797b3f637296eab3f79665d331cb8792e8d114..c536de60cc3b2a433b77bb2afadb5aca225d2f18 100644 (file)
@@ -30,7 +30,7 @@
 # error This library requires C++
 #endif                                   
 
-const int FG_NET_CTRLS_VERSION = 11;
+const int FG_NET_CTRLS_VERSION = 18;
 
 
 // Define a structure containing the control parameters
@@ -43,8 +43,8 @@ public:
 
     enum {
         FG_MAX_ENGINES = 4,
-        FG_MAX_WHEELS = 3,
-        FG_MAX_TANKS = 4
+        FG_MAX_WHEELS = 16,
+        FG_MAX_TANKS = 6
     };
 
     // Aero controls
@@ -53,7 +53,10 @@ public:
     double elevator_trim;               // -1 ... 1
     double rudder;                      // -1 ... 1
     double flaps;                       //  0 ... 1
+
+    // Aero control faults
     bool flaps_power;                    //  true = power available
+    bool flap_motor_ok;
 
     // Engine controls
     int num_engines;                    // number of valid engines
@@ -64,6 +67,14 @@ public:
     bool fuel_pump_power[FG_MAX_ENGINES];// true = on
     double prop_advance[FG_MAX_ENGINES]; //  0 ... 1
 
+    // Engine faults
+    bool engine_ok[FG_MAX_ENGINES];
+    bool mag_left_ok[FG_MAX_ENGINES];
+    bool mag_right_ok[FG_MAX_ENGINES];
+    bool spark_plugs_ok[FG_MAX_ENGINES]; // false = fouled plugs
+    int oil_press_status[FG_MAX_ENGINES]; // 0 = normal, 1 = low, 2 = full fail
+    bool fuel_pump_ok[FG_MAX_ENGINES];
+
     // Fuel management
     int num_tanks;                       // number of valid tanks
     bool fuel_selector[FG_MAX_TANKS];    // false = off, true = on
@@ -80,10 +91,25 @@ public:
     bool master_alt;
     bool master_avionics;
 
-    // Other values of use to a remote FDM
+    // wind and turbulance
+    double wind_speed_kt;
+    double wind_dir_deg;
+    double turbulence_norm;
+
+    // temp and pressure
+    double temp_c;
+    double press_inhg;
+
+    // other information about environment
     double hground;                     // ground elevation (meters)
-    double magvar;                      // local magnetic variation in degrees.
+    double magvar;                      // local magnetic variation in degs.
+
+    // simulation control
     int speedup;                        // integer speedup multiplier
+    int freeze;                                 // 0=normal
+                                        // 0x01=master
+                                        // 0x02=position
+                                        // 0x04=fuel
 };