]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/net_ctrls.hxx
Switch from bool to int for more deterministic structure packing.
[flightgear.git] / src / Network / net_ctrls.hxx
index d44b9362f05fc33d794bcd3b0635cf68065c3fdd..1508b7ac56500d30781ddba989f165f2ca793e41 100644 (file)
@@ -1,23 +1,9 @@
 // net_ctrls.hxx -- defines a common net I/O interface to the flight
 //                  sim controls
 //
-// Written by Curtis Olson, started July 2001.
+// Written by Curtis Olson - curt@flightgear.com, started July 2001.
 //
-// Copyright (C) 2001  Curtis L. Olson  - curt@flightgear.com
-//
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License as
-// published by the Free Software Foundation; either version 2 of the
-// License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful, but
-// WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-// General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// This file is in the Public Domain, and comes with no warranty.
 //
 // $Id$
 
@@ -30,7 +16,7 @@
 # error This library requires C++
 #endif                                   
 
-const int FG_NET_CTRLS_VERSION = 17;
+const int FG_NET_CTRLS_VERSION = 23;
 
 
 // Define a structure containing the control parameters
@@ -60,10 +46,13 @@ public:
 
     // Engine controls
     int num_engines;                    // number of valid engines
+    bool master_bat[FG_MAX_ENGINES];
+    bool master_alt[FG_MAX_ENGINES];
     int magnetos[FG_MAX_ENGINES];
     bool starter_power[FG_MAX_ENGINES];  // true = starter power
     double throttle[FG_MAX_ENGINES];     //  0 ... 1
     double mixture[FG_MAX_ENGINES];      //  0 ... 1
+    double condition[FG_MAX_ENGINES];    //  0 ... 1
     bool fuel_pump_power[FG_MAX_ENGINES];// true = on
     double prop_advance[FG_MAX_ENGINES]; //  0 ... 1
 
@@ -71,7 +60,7 @@ public:
     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
+    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];
 
@@ -80,15 +69,16 @@ public:
     bool fuel_selector[FG_MAX_TANKS];    // false = off, true = on
 
     // Brake controls
-    int num_wheels;                     // number of valid wheels
-    double brake[FG_MAX_WHEELS];         //  0 ... 1
+    double brake_left;
+    double brake_right;
+    double copilot_brake_left;
+    double copilot_brake_right;
+    double brake_parking;
     
     // Landing Gear
     bool gear_handle; // true=gear handle down; false= gear handle up
 
     // Switches
-    bool master_bat;
-    bool master_alt;
     bool master_avionics;
 
     // wind and turbulance
@@ -96,10 +86,19 @@ public:
     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 degs.
 
+    // hazards
+    bool icing;                          // icing status could me much
+                                         // more complex but I'm
+                                         // starting simple here.
+
     // simulation control
     int speedup;                        // integer speedup multiplier
     int freeze;                                 // 0=normal