1
0
Fork 0
flightgear/src/Network/net_ctrls.hxx

112 lines
3.1 KiB
C++
Raw Normal View History

// net_ctrls.hxx -- defines a common net I/O interface to the flight
2001-07-22 20:01:25 +00:00
// sim controls
//
// Written by Curtis Olson - curt@flightgear.com, started July 2001.
2001-07-22 20:01:25 +00:00
//
// This file is in the Public Domain, and comes with no warranty.
2001-07-22 20:01:25 +00:00
//
// $Id$
#ifndef _NET_CTRLS_HXX
#define _NET_CTRLS_HXX
2001-07-22 20:01:25 +00:00
#ifndef __cplusplus
# error This library requires C++
#endif
const int FG_NET_CTRLS_VERSION = 22;
2001-07-22 20:01:25 +00:00
// Define a structure containing the control parameters
class FGNetCtrls {
2001-07-22 20:01:25 +00:00
public:
int version; // increment when data values change
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
};
// Aero controls
2001-07-22 20:01:25 +00:00
double aileron; // -1 ... 1
double elevator; // -1 ... 1
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
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
2001-07-22 20:01:25 +00:00
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
2001-07-22 20:01:25 +00:00
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
// Brake controls
double brake_left;
double brake_right;
double brake_parking;
// Landing Gear
bool gear_handle; // true=gear handle down; false= gear handle up
2001-07-22 20:01:25 +00:00
// Switches
bool master_avionics;
// 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 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.
// simulation control
int speedup; // integer speedup multiplier
int freeze; // 0=normal
// 0x01=master
// 0x02=position
// 0x04=fuel
2001-07-22 20:01:25 +00:00
};
#endif // _NET_CTRLS_HXX
2001-07-22 20:01:25 +00:00