2001-07-22 20:01:25 +00:00
|
|
|
// raw_ctrls.hxx -- defines a common raw I/O interface to the flight
|
|
|
|
// sim controls
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, 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.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _RAW_CTRLS_HXX
|
|
|
|
#define _RAW_CTRLS_HXX
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
2002-03-03 20:27:56 +00:00
|
|
|
const int FG_RAW_CTRLS_VERSION = 3;
|
2001-07-22 20:01:25 +00:00
|
|
|
|
2002-03-03 20:27:56 +00:00
|
|
|
const int FG_MAX_ENGINES = 4;
|
2001-07-22 20:01:25 +00:00
|
|
|
const int FG_MAX_WHEELS = 3;
|
|
|
|
|
|
|
|
// Define a structure containing the control parameters
|
|
|
|
|
|
|
|
class FGRawCtrls {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2001-09-04 14:38:15 +00:00
|
|
|
int version; // increment when data values change
|
2001-10-26 05:42:08 +00:00
|
|
|
|
|
|
|
// 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
|
2002-03-03 20:27:56 +00:00
|
|
|
int magnetos[FG_MAX_ENGINES];
|
|
|
|
bool starter[FG_MAX_ENGINES]; // true = starter engauged
|
2001-07-22 20:01:25 +00:00
|
|
|
double throttle[FG_MAX_ENGINES]; // 0 ... 1
|
|
|
|
double mixture[FG_MAX_ENGINES]; // 0 ... 1
|
|
|
|
double prop_advance[FG_MAX_ENGINES]; // 0 ... 1
|
|
|
|
double brake[FG_MAX_WHEELS]; // 0 ... 1
|
|
|
|
|
2001-10-26 05:42:08 +00:00
|
|
|
// Other interesting/useful values
|
|
|
|
double hground; // ground elevation (meters)
|
2001-07-22 20:01:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _RAW_CTRLS_HXX
|
|
|
|
|
|
|
|
|