2002-09-28 22:10:49 +00:00
|
|
|
// net_ctrls.hxx -- defines a common net I/O interface to the flight
|
2001-07-22 20:01:25 +00:00
|
|
|
// sim controls
|
|
|
|
//
|
2005-01-21 01:59:30 +00:00
|
|
|
// Written by Curtis Olson - http://www.flightgear.org/~curt
|
|
|
|
// Started July 2001.
|
2001-07-22 20:01:25 +00:00
|
|
|
//
|
2003-12-30 20:46:50 +00:00
|
|
|
// This file is in the Public Domain, and comes with no warranty.
|
2001-07-22 20:01:25 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
2002-09-28 22:10:49 +00:00
|
|
|
#ifndef _NET_CTRLS_HXX
|
|
|
|
#define _NET_CTRLS_HXX
|
2001-07-22 20:01:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
2005-03-03 23:33:29 +00:00
|
|
|
const int FG_NET_CTRLS_VERSION = 24;
|
2001-07-22 20:01:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Define a structure containing the control parameters
|
|
|
|
|
2002-09-28 22:10:49 +00:00
|
|
|
class FGNetCtrls {
|
2001-07-22 20:01:25 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2001-09-04 14:38:15 +00:00
|
|
|
int version; // increment when data values change
|
2001-10-26 05:42:08 +00:00
|
|
|
|
2002-04-11 16:35:37 +00:00
|
|
|
enum {
|
|
|
|
FG_MAX_ENGINES = 4,
|
2003-10-24 17:06:39 +00:00
|
|
|
FG_MAX_WHEELS = 16,
|
|
|
|
FG_MAX_TANKS = 6
|
2002-04-11 16:35:37 +00:00
|
|
|
};
|
2002-04-08 19:57:45 +00:00
|
|
|
|
|
|
|
// Aero controls
|
2001-07-22 20:01:25 +00:00
|
|
|
double aileron; // -1 ... 1
|
|
|
|
double elevator; // -1 ... 1
|
|
|
|
double rudder; // -1 ... 1
|
2005-02-15 18:11:03 +00:00
|
|
|
double aileron_trim; // -1 ... 1
|
|
|
|
double elevator_trim; // -1 ... 1
|
|
|
|
double rudder_trim; // -1 ... 1
|
2001-07-22 20:01:25 +00:00
|
|
|
double flaps; // 0 ... 1
|
2003-08-01 00:22:57 +00:00
|
|
|
|
|
|
|
// Aero control faults
|
2002-09-26 04:45:45 +00:00
|
|
|
bool flaps_power; // true = power available
|
2003-08-01 19:37:20 +00:00
|
|
|
bool flap_motor_ok;
|
2002-04-08 19:57:45 +00:00
|
|
|
|
|
|
|
// Engine controls
|
|
|
|
int num_engines; // number of valid engines
|
2004-04-02 16:19:59 +00:00
|
|
|
bool master_bat[FG_MAX_ENGINES];
|
|
|
|
bool master_alt[FG_MAX_ENGINES];
|
2002-03-03 20:27:56 +00:00
|
|
|
int magnetos[FG_MAX_ENGINES];
|
2002-09-26 04:45:45 +00:00
|
|
|
bool starter_power[FG_MAX_ENGINES]; // true = starter power
|
2001-07-22 20:01:25 +00:00
|
|
|
double throttle[FG_MAX_ENGINES]; // 0 ... 1
|
|
|
|
double mixture[FG_MAX_ENGINES]; // 0 ... 1
|
2004-08-06 18:09:23 +00:00
|
|
|
double condition[FG_MAX_ENGINES]; // 0 ... 1
|
2002-09-26 04:45:45 +00:00
|
|
|
bool fuel_pump_power[FG_MAX_ENGINES];// true = on
|
2001-07-22 20:01:25 +00:00
|
|
|
double prop_advance[FG_MAX_ENGINES]; // 0 ... 1
|
2002-04-08 19:57:45 +00:00
|
|
|
|
2003-08-01 00:22:57 +00:00
|
|
|
// Engine faults
|
|
|
|
bool engine_ok[FG_MAX_ENGINES];
|
|
|
|
bool mag_left_ok[FG_MAX_ENGINES];
|
|
|
|
bool mag_right_ok[FG_MAX_ENGINES];
|
2004-04-02 16:19:59 +00:00
|
|
|
bool spark_plugs_ok[FG_MAX_ENGINES]; // false = fouled plugs
|
2003-08-01 00:22:57 +00:00
|
|
|
int oil_press_status[FG_MAX_ENGINES]; // 0 = normal, 1 = low, 2 = full fail
|
|
|
|
bool fuel_pump_ok[FG_MAX_ENGINES];
|
|
|
|
|
2002-07-05 19:04:04 +00:00
|
|
|
// Fuel management
|
|
|
|
int num_tanks; // number of valid tanks
|
2005-03-03 23:33:29 +00:00
|
|
|
bool fuel_selector[FG_MAX_TANKS]; // false = off, true = on
|
2002-07-05 19:04:04 +00:00
|
|
|
|
2002-04-08 19:57:45 +00:00
|
|
|
// Brake controls
|
2004-01-12 17:39:41 +00:00
|
|
|
double brake_left;
|
|
|
|
double brake_right;
|
2004-09-10 17:53:34 +00:00
|
|
|
double copilot_brake_left;
|
|
|
|
double copilot_brake_right;
|
2004-01-12 17:39:41 +00:00
|
|
|
double brake_parking;
|
2002-04-25 22:41:13 +00:00
|
|
|
|
|
|
|
// Landing Gear
|
|
|
|
bool gear_handle; // true=gear handle down; false= gear handle up
|
2001-07-22 20:01:25 +00:00
|
|
|
|
2002-09-25 22:06:38 +00:00
|
|
|
// Switches
|
|
|
|
bool master_avionics;
|
|
|
|
|
2002-10-16 03:46:24 +00:00
|
|
|
// wind and turbulance
|
|
|
|
double wind_speed_kt;
|
|
|
|
double wind_dir_deg;
|
2003-06-27 18:21:04 +00:00
|
|
|
double turbulence_norm;
|
2002-10-16 03:46:24 +00:00
|
|
|
|
2003-11-10 22:01:20 +00:00
|
|
|
// temp and pressure
|
|
|
|
double temp_c;
|
|
|
|
double press_inhg;
|
|
|
|
|
2002-10-16 03:46:24 +00:00
|
|
|
// other information about environment
|
2001-10-26 05:42:08 +00:00
|
|
|
double hground; // ground elevation (meters)
|
2002-10-16 03:46:24 +00:00
|
|
|
double magvar; // local magnetic variation in degs.
|
|
|
|
|
2004-05-26 18:13:34 +00:00
|
|
|
// hazards
|
|
|
|
bool icing; // icing status could me much
|
|
|
|
// more complex but I'm
|
|
|
|
// starting simple here.
|
|
|
|
|
2002-10-16 03:46:24 +00:00
|
|
|
// simulation control
|
2002-03-27 05:20:45 +00:00
|
|
|
int speedup; // integer speedup multiplier
|
2002-10-16 03:46:24 +00:00
|
|
|
int freeze; // 0=normal
|
|
|
|
// 0x01=master
|
|
|
|
// 0x02=position
|
|
|
|
// 0x04=fuel
|
2001-07-22 20:01:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-09-28 22:10:49 +00:00
|
|
|
#endif // _NET_CTRLS_HXX
|
2001-07-22 20:01:25 +00:00
|
|
|
|
|
|
|
|