1998-10-18 01:51:04 +00:00
|
|
|
|
// controls.cxx -- defines a standard interface to all flight sim controls
|
|
|
|
|
//
|
|
|
|
|
// Written by Curtis Olson, started May 1997.
|
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
|
// Copyright (C) 1997 Curtis L. Olson - http://www.flightgear.org/~curt
|
1998-10-18 01:51:04 +00:00
|
|
|
|
//
|
|
|
|
|
// 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
|
2006-02-21 01:16:04 +00:00
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1998-10-18 01:51:04 +00:00
|
|
|
|
//
|
|
|
|
|
// $Id$
|
|
|
|
|
|
2008-07-29 08:27:48 +00:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include "config.h"
|
|
|
|
|
#endif
|
1998-10-18 01:51:04 +00:00
|
|
|
|
|
2001-01-05 17:38:58 +00:00
|
|
|
|
#include <Main/fg_props.hxx>
|
2011-02-14 19:44:20 +00:00
|
|
|
|
#include <simgear/sg_inlines.h>
|
2003-04-01 19:14:08 +00:00
|
|
|
|
#include "controls.hxx"
|
|
|
|
|
|
2002-04-11 17:10:46 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Implementation of FGControls.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
1998-10-25 14:08:37 +00:00
|
|
|
|
// Constructor
|
1998-12-05 16:13:10 +00:00
|
|
|
|
FGControls::FGControls() :
|
1998-10-25 14:08:37 +00:00
|
|
|
|
aileron( 0.0 ),
|
2001-12-17 01:42:11 +00:00
|
|
|
|
aileron_trim( 0.0 ),
|
1998-10-25 14:08:37 +00:00
|
|
|
|
elevator( 0.0 ),
|
2001-12-27 22:34:32 +00:00
|
|
|
|
elevator_trim( 0.0 ),
|
2000-07-20 04:16:59 +00:00
|
|
|
|
rudder( 0.0 ),
|
2001-12-17 01:42:11 +00:00
|
|
|
|
rudder_trim( 0.0 ),
|
2002-04-26 01:53:41 +00:00
|
|
|
|
flaps( 0.0 ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
slats( 0.0 ),
|
|
|
|
|
BLC( false ),
|
2003-03-24 10:04:19 +00:00
|
|
|
|
spoilers( 0.0 ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
speedbrake( 0.0 ),
|
|
|
|
|
wing_sweep( 0.0 ),
|
|
|
|
|
wing_fold( false ),
|
|
|
|
|
drag_chute( false ),
|
2002-04-26 01:53:41 +00:00
|
|
|
|
throttle_idle( true ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
dump_valve( false ),
|
2004-01-12 17:39:41 +00:00
|
|
|
|
brake_left( 0.0 ),
|
|
|
|
|
brake_right( 0.0 ),
|
2004-09-10 17:53:34 +00:00
|
|
|
|
copilot_brake_left( 0.0 ),
|
|
|
|
|
copilot_brake_right( 0.0 ),
|
2004-01-12 17:39:41 +00:00
|
|
|
|
brake_parking( 0.0 ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
steering( 0.0 ),
|
2007-01-07 11:50:39 +00:00
|
|
|
|
nose_wheel_steering( true ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
gear_down( true ),
|
|
|
|
|
antiskid( true ),
|
|
|
|
|
tailhook( false ),
|
2004-11-19 12:33:53 +00:00
|
|
|
|
launchbar( false ),
|
|
|
|
|
catapult_launch_cmd( false ),
|
2005-05-10 10:56:55 +00:00
|
|
|
|
tailwheel_lock( true ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
wing_heat( false ),
|
|
|
|
|
pitot_heat( true ),
|
|
|
|
|
wiper( 0 ),
|
|
|
|
|
window_heat( false ),
|
|
|
|
|
battery_switch( true ),
|
|
|
|
|
external_power( false ),
|
|
|
|
|
APU_generator( false ),
|
|
|
|
|
APU_bleed( false ),
|
|
|
|
|
mode( 0 ),
|
|
|
|
|
dump( false ),
|
2003-05-13 11:35:35 +00:00
|
|
|
|
outflow_valve( 0.0 ),
|
2003-04-01 12:43:18 +00:00
|
|
|
|
taxi_light( false ),
|
|
|
|
|
logo_lights( false ),
|
|
|
|
|
nav_lights( false ),
|
|
|
|
|
beacon( false ),
|
|
|
|
|
strobe( false ),
|
|
|
|
|
panel_norm( 0.0 ),
|
|
|
|
|
instruments_norm( 0.0 ),
|
|
|
|
|
dome_norm( 0.0 ),
|
|
|
|
|
master_arm( false ),
|
|
|
|
|
station_select( 1 ),
|
|
|
|
|
release_ALL( false ),
|
|
|
|
|
vertical_adjust( 0.0 ),
|
|
|
|
|
fore_aft_adjust( 0.0 ),
|
|
|
|
|
off_start_run( 0 ),
|
|
|
|
|
APU_fire_switch( false ),
|
|
|
|
|
autothrottle_arm( false ),
|
|
|
|
|
autothrottle_engage( false ),
|
|
|
|
|
heading_select( 0.0 ),
|
|
|
|
|
altitude_select( 50000.0 ),
|
|
|
|
|
bank_angle_select( 30.0 ),
|
|
|
|
|
vertical_speed_select( 0.0 ),
|
|
|
|
|
speed_select( 0.0 ),
|
|
|
|
|
mach_select( 0.0 ),
|
|
|
|
|
vertical_mode( 0 ),
|
|
|
|
|
lateral_mode( 0 )
|
1998-10-25 14:08:37 +00:00
|
|
|
|
{
|
1997-05-31 19:24:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-04-27 15:42:53 +00:00
|
|
|
|
void FGControls::reset_all()
|
|
|
|
|
{
|
2002-07-05 14:46:38 +00:00
|
|
|
|
set_aileron( 0.0 );
|
|
|
|
|
set_aileron_trim( 0.0 );
|
|
|
|
|
set_elevator( 0.0 );
|
|
|
|
|
set_elevator_trim( 0.0 );
|
|
|
|
|
set_rudder( 0.0 );
|
|
|
|
|
set_rudder_trim( 0.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
BLC = false;
|
|
|
|
|
set_spoilers( 0.0 );
|
|
|
|
|
set_speedbrake( 0.0 );
|
|
|
|
|
set_wing_sweep( 0.0 );
|
|
|
|
|
wing_fold = false;
|
|
|
|
|
drag_chute = false;
|
2002-07-05 14:46:38 +00:00
|
|
|
|
set_throttle( ALL_ENGINES, 0.0 );
|
|
|
|
|
set_starter( ALL_ENGINES, false );
|
|
|
|
|
set_magnetos( ALL_ENGINES, 0 );
|
2002-09-25 22:05:49 +00:00
|
|
|
|
set_fuel_pump( ALL_ENGINES, false );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
set_fire_switch( ALL_ENGINES, false );
|
|
|
|
|
set_fire_bottle_discharge( ALL_ENGINES, false );
|
|
|
|
|
set_cutoff( ALL_ENGINES, true );
|
|
|
|
|
set_nitrous_injection( ALL_ENGINES, false );
|
|
|
|
|
set_cowl_flaps_norm( ALL_ENGINES, 1.0 );
|
|
|
|
|
set_feather( ALL_ENGINES, false );
|
|
|
|
|
set_ignition( ALL_ENGINES, false );
|
|
|
|
|
set_augmentation( ALL_ENGINES, false );
|
|
|
|
|
set_reverser( ALL_ENGINES, false );
|
|
|
|
|
set_water_injection( ALL_ENGINES, false );
|
2004-07-27 20:39:01 +00:00
|
|
|
|
set_condition( ALL_ENGINES, 1.0 );
|
2000-07-20 04:16:59 +00:00
|
|
|
|
throttle_idle = true;
|
2002-07-05 19:04:04 +00:00
|
|
|
|
set_fuel_selector( ALL_TANKS, true );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
dump_valve = false;
|
|
|
|
|
steering = 0.0;
|
2007-01-07 11:50:39 +00:00
|
|
|
|
nose_wheel_steering = true;
|
2001-07-23 20:31:33 +00:00
|
|
|
|
gear_down = true;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
tailhook = false;
|
2004-11-19 12:33:53 +00:00
|
|
|
|
launchbar = false;
|
|
|
|
|
catapult_launch_cmd = false;
|
2005-05-10 10:56:55 +00:00
|
|
|
|
tailwheel_lock = true;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
set_carb_heat( ALL_ENGINES, false );
|
|
|
|
|
set_inlet_heat( ALL_ENGINES, false );
|
|
|
|
|
wing_heat = false;
|
|
|
|
|
pitot_heat = true;
|
|
|
|
|
wiper = 0;
|
|
|
|
|
window_heat = false;
|
|
|
|
|
set_engine_pump( ALL_HYD_SYSTEMS, true );
|
|
|
|
|
set_electric_pump( ALL_HYD_SYSTEMS, true );
|
|
|
|
|
landing_lights = false;
|
|
|
|
|
turn_off_lights = false;
|
|
|
|
|
master_arm = false;
|
2003-11-13 23:03:49 +00:00
|
|
|
|
set_ejection_seat( ALL_EJECTION_SEATS, false );
|
|
|
|
|
set_eseat_status( ALL_EJECTION_SEATS, SEAT_SAFED );
|
|
|
|
|
set_cmd_selector_valve( CMD_SEL_NORM );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
APU_fire_switch = false;
|
|
|
|
|
autothrottle_arm = false;
|
|
|
|
|
autothrottle_engage = false;
|
|
|
|
|
set_autopilot_engage( ALL_AUTOPILOTS, false );
|
1999-04-27 15:42:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-10-25 14:08:37 +00:00
|
|
|
|
// Destructor
|
1998-12-05 16:13:10 +00:00
|
|
|
|
FGControls::~FGControls() {
|
1998-09-29 02:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-01-05 17:38:58 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::init ()
|
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
throttle_idle = true;
|
2001-01-13 22:06:39 +00:00
|
|
|
|
for ( int engine = 0; engine < MAX_ENGINES; engine++ ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
throttle[engine] = 0.0;
|
|
|
|
|
mixture[engine] = 1.0;
|
|
|
|
|
fuel_pump[engine] = false;
|
|
|
|
|
prop_advance[engine] = 1.0;
|
|
|
|
|
magnetos[engine] = 0;
|
|
|
|
|
feed_tank[engine] = -1; // set to -1 to turn off all tanks 0 feeds all engines from center body tank
|
|
|
|
|
starter[engine] = false;
|
2009-01-17 10:05:05 +00:00
|
|
|
|
feather[engine] = false;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
ignition[engine] = false;
|
|
|
|
|
fire_switch[engine] = false;
|
2009-01-17 10:05:05 +00:00
|
|
|
|
fire_bottle_discharge[engine] = false;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
cutoff[engine] = true;
|
|
|
|
|
augmentation[engine] = false;
|
|
|
|
|
reverser[engine] = false;
|
|
|
|
|
water_injection[engine] = false;
|
|
|
|
|
nitrous_injection[engine] = false;
|
2003-05-13 11:35:35 +00:00
|
|
|
|
cowl_flaps_norm[engine] = 0.0;
|
2004-07-27 20:39:01 +00:00
|
|
|
|
condition[engine] = 1.0;
|
2009-01-17 10:05:05 +00:00
|
|
|
|
carb_heat[engine] = false;
|
|
|
|
|
inlet_heat[engine] = false;
|
|
|
|
|
generator_breaker[engine] = false;
|
|
|
|
|
bus_tie[engine] = false;
|
|
|
|
|
engine_bleed[engine] = false;
|
2001-01-13 22:06:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-17 10:05:05 +00:00
|
|
|
|
for ( int tank = 0; tank < MAX_TANKS; tank++ ) {
|
|
|
|
|
fuel_selector[tank] = false;
|
|
|
|
|
to_engine[tank] = 0;
|
|
|
|
|
to_tank[tank] = 0;
|
|
|
|
|
}
|
2009-01-17 15:44:13 +00:00
|
|
|
|
|
|
|
|
|
for( int pump = 0; pump < MAX_TANKS * MAX_BOOSTPUMPS; pump++ ) {
|
|
|
|
|
boost_pump[pump] = false;
|
|
|
|
|
}
|
2009-01-17 10:05:05 +00:00
|
|
|
|
|
2004-09-10 17:53:34 +00:00
|
|
|
|
brake_left = brake_right
|
|
|
|
|
= copilot_brake_left = copilot_brake_right
|
|
|
|
|
= brake_parking = 0.0;
|
2001-01-13 22:06:39 +00:00
|
|
|
|
for ( int wheel = 0; wheel < MAX_WHEELS; wheel++ ) {
|
2003-04-01 12:43:18 +00:00
|
|
|
|
alternate_extension[wheel] = false;
|
2001-01-13 22:06:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-13 20:00:22 +00:00
|
|
|
|
auto_coordination = fgGetNode("/controls/flight/auto-coordination", true);
|
|
|
|
|
auto_coordination_factor = fgGetNode("/controls/flight/auto-coordination-factor", false );
|
|
|
|
|
if( NULL == auto_coordination_factor ) {
|
|
|
|
|
auto_coordination_factor = fgGetNode("/controls/flight/auto-coordination-factor", true );
|
|
|
|
|
auto_coordination_factor->setDoubleValue( 0.5 );
|
|
|
|
|
}
|
2001-01-05 17:38:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-14 19:44:20 +00:00
|
|
|
|
static inline void _SetRoot( simgear::TiedPropertyList & tiedProperties, const char * root, int index = 0 )
|
|
|
|
|
{
|
|
|
|
|
tiedProperties.setRoot( fgGetNode( root, index, true ) );
|
|
|
|
|
}
|
2001-01-05 17:38:58 +00:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::bind ()
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
int index, i;
|
|
|
|
|
|
|
|
|
|
// flight controls
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/flight" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "aileron", this, &FGControls::get_aileron, &FGControls::set_aileron )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "aileron-trim", this, &FGControls::get_aileron_trim, &FGControls::set_aileron_trim )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "elevator", this, &FGControls::get_elevator, &FGControls::set_elevator )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "elevator-trim", this, &FGControls::get_elevator_trim, &FGControls::set_elevator_trim )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "rudder", this, &FGControls::get_rudder, &FGControls::set_rudder )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "rudder-trim", this, &FGControls::get_rudder_trim, &FGControls::set_rudder_trim )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "flaps", this, &FGControls::get_flaps, &FGControls::set_flaps )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "slats", this, &FGControls::get_slats, &FGControls::set_slats )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "BLC", this, &FGControls::get_BLC, &FGControls::set_BLC )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "spoilers", this, &FGControls::get_spoilers, &FGControls::set_spoilers )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "speedbrake", this, &FGControls::get_speedbrake, &FGControls::set_speedbrake )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "wing-sweep", this, &FGControls::get_wing_sweep, &FGControls::set_wing_sweep )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "wing-fold", this, &FGControls::get_wing_fold, &FGControls::set_wing_fold )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "drag-chute", this, &FGControls::get_drag_chute, &FGControls::set_drag_chute )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
// engines
|
|
|
|
|
_tiedProperties.setRoot( fgGetNode("/controls/engines", true ) );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "throttle_idle", this, &FGControls::get_throttle_idle, &FGControls::set_throttle_idle )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_ENGINES; index++) {
|
|
|
|
|
_SetRoot(_tiedProperties, "/controls/engines/engine", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "throttle", this, index, &FGControls::get_throttle, &FGControls::set_throttle )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "starter", this, index, &FGControls::get_starter, &FGControls::set_starter )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "fuel-pump", this, index, &FGControls::get_fuel_pump, &FGControls::set_fuel_pump )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "fire-switch", this, index, &FGControls::get_fire_switch, &FGControls::set_fire_switch )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "fire-bottle-discharge", this, index, &FGControls::get_fire_bottle_discharge, &FGControls::set_fire_bottle_discharge )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "cutoff", this, index, &FGControls::get_cutoff, &FGControls::set_cutoff )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "mixture", this, index, &FGControls::get_mixture, &FGControls::set_mixture )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "propeller-pitch", this, index, &FGControls::get_prop_advance, &FGControls::set_prop_advance )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "magnetos", this, index, &FGControls::get_magnetos, &FGControls::set_magnetos )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "feed_tank", this, index, &FGControls::get_feed_tank, &FGControls::set_feed_tank )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "WEP", this, index, &FGControls::get_nitrous_injection, &FGControls::set_nitrous_injection )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "cowl-flaps-norm", this, index, &FGControls::get_cowl_flaps_norm, &FGControls::set_cowl_flaps_norm )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "propeller-feather", this, index, &FGControls::get_feather, &FGControls::set_feather )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "ignition", this, index, &FGControls::get_ignition, &FGControls::set_ignition )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "augmentation", this, index, &FGControls::get_augmentation, &FGControls::set_augmentation )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "reverser", this, index, &FGControls::get_reverser, &FGControls::set_reverser )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "water-injection", this, index, &FGControls::get_water_injection, &FGControls::set_water_injection )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "condition", this, index, &FGControls::get_condition, &FGControls::set_condition )
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-14 19:44:20 +00:00
|
|
|
|
// fuel
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/fuel" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "dump-valve", this, &FGControls::get_dump_valve, &FGControls::set_dump_valve)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_TANKS; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/fuel/tank", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "fuel_selector", this, index, &FGControls::get_fuel_selector, &FGControls::set_fuel_selector)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "to_engine", this, index, &FGControls::get_to_engine, &FGControls::set_to_engine)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "to_tank", this, index, &FGControls::get_to_tank, &FGControls::set_to_tank)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_BOOSTPUMPS; i++) {
|
|
|
|
|
_tiedProperties.Tie( "boost-pump", i,
|
|
|
|
|
this, index * 2 + i, &FGControls::get_boost_pump, &FGControls::set_boost_pump)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// gear
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/gear" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "brake-left", this, &FGControls::get_brake_left, &FGControls::set_brake_left)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "brake-right", this, &FGControls::get_brake_right, &FGControls::set_brake_right)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "copilot-brake-left", this, &FGControls::get_copilot_brake_left, &FGControls::set_copilot_brake_left)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "copilot-brake-right", this, &FGControls::get_copilot_brake_right, &FGControls::set_copilot_brake_right)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "brake-parking", this, &FGControls::get_brake_parking, &FGControls::set_brake_parking)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "steering", this, &FGControls::get_steering, &FGControls::set_steering)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "nose-wheel-steering", this, &FGControls::get_nose_wheel_steering, &FGControls::set_nose_wheel_steering)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "gear-down", this, &FGControls::get_gear_down, &FGControls::set_gear_down)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "antiskid", this, &FGControls::get_antiskid, &FGControls::set_antiskid)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "tailhook", this, &FGControls::get_tailhook, &FGControls::set_tailhook)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "launchbar", this, &FGControls::get_launchbar, &FGControls::set_launchbar)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "catapult-launch-cmd", this, &FGControls::get_catapult_launch_cmd, &FGControls::set_catapult_launch_cmd)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "tailwheel-lock", this, &FGControls::get_tailwheel_lock, &FGControls::set_tailwheel_lock)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_WHEELS; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/gear/wheel", index );
|
|
|
|
|
_tiedProperties.Tie( "alternate-extension", this, index, &FGControls::get_alternate_extension, &FGControls::set_alternate_extension)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// anti-ice
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/anti-ice" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "wing-heat", this, &FGControls::get_wing_heat, &FGControls::set_wing_heat)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "pitot-heat", this, &FGControls::get_pitot_heat, &FGControls::set_pitot_heat)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "wiper", this, &FGControls::get_wiper, &FGControls::set_wiper)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "window-heat", this, &FGControls::get_window_heat, &FGControls::set_window_heat)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_ENGINES; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/anti-ice/engine", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "carb-heat", this, index, &FGControls::get_carb_heat, &FGControls::set_carb_heat)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "inlet-heat", this, index, &FGControls::get_inlet_heat, &FGControls::set_inlet_heat)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// hydraulics
|
|
|
|
|
for (index = 0; index < MAX_HYD_SYSTEMS; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/hydraulic/system", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "engine-pump", this, index, &FGControls::get_engine_pump, &FGControls::set_engine_pump)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "electric-pump", this, index, &FGControls::get_electric_pump, &FGControls::set_electric_pump)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// electric
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/electric" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "battery-switch", this, &FGControls::get_battery_switch, &FGControls::set_battery_switch)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "external-power", this, &FGControls::get_external_power, &FGControls::set_external_power)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "APU-generator", this, &FGControls::get_APU_generator, &FGControls::set_APU_generator)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_ENGINES; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/electric/engine", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "generator", this, index, &FGControls::get_generator_breaker, &FGControls::set_generator_breaker)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "bus-tie", this, index, &FGControls::get_bus_tie, &FGControls::set_bus_tie)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// pneumatic
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/pneumatic" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "APU-bleed", this, &FGControls::get_APU_bleed, &FGControls::set_APU_bleed)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_ENGINES; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/pneumatic/engine", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "bleed", this, index, &FGControls::get_engine_bleed, &FGControls::set_engine_bleed)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// pressurization
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/pressurization" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "mode", this, &FGControls::get_mode, &FGControls::set_mode)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "dump", this, &FGControls::get_dump, &FGControls::set_dump)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "outflow-valve", this, &FGControls::get_outflow_valve, &FGControls::set_outflow_valve)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_PACKS; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/pressurization/pack", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "pack-on", this, index, &FGControls::get_pack_on, &FGControls::set_pack_on)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// lights
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/lighting" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "landing-lights", this, &FGControls::get_landing_lights, &FGControls::set_landing_lights)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "turn-off-lights", this, &FGControls::get_turn_off_lights, &FGControls::set_turn_off_lights)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "taxi-light", this, &FGControls::get_taxi_light, &FGControls::set_taxi_light)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "logo-lights", this, &FGControls::get_logo_lights, &FGControls::set_logo_lights)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "nav-lights", this, &FGControls::get_nav_lights, &FGControls::set_nav_lights)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "beacon", this, &FGControls::get_beacon, &FGControls::set_beacon)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "strobe", this, &FGControls::get_strobe, &FGControls::set_strobe)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "panel-norm", this, &FGControls::get_panel_norm, &FGControls::set_panel_norm)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "instruments-norm", this, &FGControls::get_instruments_norm, &FGControls::set_instruments_norm)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "dome-norm", this, &FGControls::get_dome_norm, &FGControls::set_dome_norm)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
// armament
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/armament" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "master-arm", this, &FGControls::get_master_arm, &FGControls::set_master_arm)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "station-select", this, &FGControls::get_station_select, &FGControls::set_station_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "release-all", this, &FGControls::get_release_ALL, &FGControls::set_release_ALL)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_STATIONS; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/armament/station", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "stick-size", this, index, &FGControls::get_stick_size, &FGControls::set_stick_size)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "release-stick", this, index, &FGControls::get_release_stick, &FGControls::set_release_stick)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "release-all", this, index, &FGControls::get_release_all, &FGControls::set_release_all)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "jettison-all", this, index, &FGControls::get_jettison_all, &FGControls::set_jettison_all)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// seat
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/seat" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "vertical-adjust", this, &FGControls::get_vertical_adjust, &FGControls::set_vertical_adjust)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "fore-aft-adjust", this, &FGControls::get_fore_aft_adjust, &FGControls::set_fore_aft_adjust)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "cmd_selector_valve", this, &FGControls::get_cmd_selector_valve, &FGControls::set_cmd_selector_valve)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < MAX_EJECTION_SEATS; index++) {
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/seat/eject", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "initiate", this, index, &FGControls::get_ejection_seat, &FGControls::set_ejection_seat)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "status", this, index, &FGControls::get_eseat_status, &FGControls::set_eseat_status)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// APU
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/APU" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "off-start-run", this, &FGControls::get_off_start_run, &FGControls::set_off_start_run)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "fire-switch", this, &FGControls::get_APU_fire_switch, &FGControls::set_APU_fire_switch)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
// autoflight
|
|
|
|
|
for (index = 0; index < MAX_AUTOPILOTS; index++) {
|
|
|
|
|
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/autoflight/autopilot", index );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "engage", this, index, &FGControls::get_autopilot_engage, &FGControls::set_autopilot_engage)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_SetRoot( _tiedProperties, "/controls/autoflight/" );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "autothrottle-arm", this, &FGControls::get_autothrottle_arm, &FGControls::set_autothrottle_arm)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "autothrottle-engage", this, &FGControls::get_autothrottle_engage, &FGControls::set_autothrottle_engage)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "heading-select", this, &FGControls::get_heading_select, &FGControls::set_heading_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "altitude-select", this, &FGControls::get_altitude_select, &FGControls::set_altitude_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "bank-angle-select", this, &FGControls::get_bank_angle_select, &FGControls::set_bank_angle_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "vertical-speed-select", this, &FGControls::get_vertical_speed_select, &FGControls::set_vertical_speed_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "speed-select", this, &FGControls::get_speed_select, &FGControls::set_speed_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "mach-select", this, &FGControls::get_mach_select, &FGControls::set_mach_select)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "vertical-mode", this, &FGControls::get_vertical_mode, &FGControls::set_vertical_mode)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
|
|
|
|
|
|
|
|
|
_tiedProperties.Tie( "lateral-mode", this, &FGControls::get_lateral_mode, &FGControls::set_lateral_mode)
|
|
|
|
|
->setAttribute( SGPropertyNode::ARCHIVE, true );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FGControls::unbind ()
|
2001-01-05 17:38:58 +00:00
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
_tiedProperties.Untie();
|
|
|
|
|
}
|
2001-01-05 17:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-05-11 16:28:50 +00:00
|
|
|
|
FGControls::update (double dt)
|
2001-01-05 17:38:58 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-11 17:10:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Setters and adjusters.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_aileron (double pos)
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
aileron = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( aileron, -1.0, 1.0 );
|
2012-03-13 20:00:22 +00:00
|
|
|
|
do_autocoordination();
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_aileron (double amt)
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
aileron += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( aileron, -1.0, 1.0 );
|
2012-03-13 20:00:22 +00:00
|
|
|
|
do_autocoordination();
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_aileron_trim( double pos )
|
|
|
|
|
{
|
|
|
|
|
aileron_trim = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( aileron_trim, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_aileron_trim( double amt )
|
|
|
|
|
{
|
|
|
|
|
aileron_trim += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( aileron_trim, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_elevator( double pos )
|
|
|
|
|
{
|
|
|
|
|
elevator = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( elevator, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_elevator( double amt )
|
|
|
|
|
{
|
|
|
|
|
elevator += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( elevator, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_elevator_trim( double pos )
|
|
|
|
|
{
|
|
|
|
|
elevator_trim = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( elevator_trim, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_elevator_trim( double amt )
|
|
|
|
|
{
|
|
|
|
|
elevator_trim += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( elevator_trim, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_rudder( double pos )
|
|
|
|
|
{
|
|
|
|
|
rudder = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( rudder, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_rudder( double amt )
|
|
|
|
|
{
|
|
|
|
|
rudder += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( rudder, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_rudder_trim( double pos )
|
|
|
|
|
{
|
|
|
|
|
rudder_trim = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( rudder_trim, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_rudder_trim( double amt )
|
|
|
|
|
{
|
|
|
|
|
rudder_trim += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( rudder_trim, -1.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_flaps( double pos )
|
|
|
|
|
{
|
|
|
|
|
flaps = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( flaps, 0.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_flaps( double amt )
|
|
|
|
|
{
|
|
|
|
|
flaps += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( flaps, 0.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_slats( double pos )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
slats = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( slats, 0.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::move_slats( double amt )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
slats += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( slats, 0.0, 1.0 );
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_BLC( bool val )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
BLC = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_spoilers( double pos )
|
|
|
|
|
{
|
|
|
|
|
spoilers = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( spoilers, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_spoilers( double amt )
|
|
|
|
|
{
|
|
|
|
|
spoilers += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( spoilers, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_speedbrake( double pos )
|
|
|
|
|
{
|
|
|
|
|
speedbrake = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( speedbrake, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_speedbrake( double amt )
|
|
|
|
|
{
|
|
|
|
|
speedbrake += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( speedbrake, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_wing_sweep( double pos )
|
|
|
|
|
{
|
|
|
|
|
wing_sweep = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( wing_sweep, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_wing_sweep( double amt )
|
|
|
|
|
{
|
|
|
|
|
wing_sweep += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( wing_sweep, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_wing_fold( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
wing_fold = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_drag_chute( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
drag_chute = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_throttle_idle( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
throttle_idle = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_throttle( int engine, double pos )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
throttle[i] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( throttle[i], 0.0, 1.0 );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
throttle[engine] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( throttle[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::move_throttle( int engine, double amt )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
throttle[i] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( throttle[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
throttle[engine] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( throttle[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_starter( int engine, bool flag )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
starter[i] = flag;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
starter[engine] = flag;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-25 22:05:49 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_fuel_pump( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
fuel_pump[i] = val;
|
|
|
|
|
}
|
2002-09-25 22:05:49 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
fuel_pump[engine] = val;
|
|
|
|
|
}
|
2002-09-25 22:05:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_fire_switch( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
fire_switch[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
fire_switch[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_fire_bottle_discharge( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
fire_bottle_discharge[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
fire_bottle_discharge[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_cutoff( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
cutoff[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
cutoff[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-20 17:19:01 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_feed_tank( int engine, int tank )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
feed_tank[i] = tank;
|
|
|
|
|
SG_CLAMP_RANGE<int>( feed_tank[i], -1, 4 );
|
|
|
|
|
}
|
2006-01-20 17:19:01 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
feed_tank[engine] = tank;
|
|
|
|
|
SG_CLAMP_RANGE<int>( feed_tank[engine], -1, 4 );
|
|
|
|
|
}
|
2006-01-20 17:19:01 +00:00
|
|
|
|
}
|
2011-02-14 19:44:20 +00:00
|
|
|
|
// feed_tank[engine] = engine;
|
2006-01-20 17:19:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_mixture( int engine, double pos )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
mixture[i] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( mixture[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
mixture[engine] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( mixture[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_mixture( int engine, double amt )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
mixture[i] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( mixture[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
mixture[engine] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( mixture[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-11 17:10:46 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_prop_advance( int engine, double pos )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
prop_advance[i] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( prop_advance[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
prop_advance[engine] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( prop_advance[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_prop_advance( int engine, double amt )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
prop_advance[i] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( prop_advance[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
prop_advance[engine] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( prop_advance[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_magnetos( int engine, int pos )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
magnetos[i] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<int>( magnetos[i], 0, 3 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
magnetos[engine] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<int>( magnetos[engine], 0, 3 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_magnetos( int engine, int amt )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
magnetos[i] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<int>( magnetos[i], 0, 3 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
magnetos[engine] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<int>( magnetos[engine], 0, 3 );
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_nitrous_injection( int engine, bool val )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
nitrous_injection[i] = val;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
nitrous_injection[engine] = val;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
|
2002-07-05 19:04:04 +00:00
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_cowl_flaps_norm( int engine, double pos )
|
2002-07-05 19:04:04 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
cowl_flaps_norm[i] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( cowl_flaps_norm[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-07-05 19:04:04 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
cowl_flaps_norm[engine] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( cowl_flaps_norm[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2002-07-05 19:04:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::move_cowl_flaps_norm( int engine, double amt )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
cowl_flaps_norm[i] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( cowl_flaps_norm[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
cowl_flaps_norm[engine] += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( cowl_flaps_norm[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-07-05 19:04:04 +00:00
|
|
|
|
|
2002-04-11 17:10:46 +00:00
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_feather( int engine, bool val )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
feather[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
feather[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-24 10:04:19 +00:00
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_ignition( int engine, int pos )
|
2003-03-24 10:04:19 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
ignition[i] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<int>( ignition[i], 0, 3 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
ignition[engine] = pos;
|
|
|
|
|
SG_CLAMP_RANGE<int>( ignition[engine], 0, 3 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
2003-03-24 10:04:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_augmentation( int engine, bool val )
|
2003-03-24 10:04:19 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
augmentation[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
augmentation[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
2003-03-24 10:04:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-04-11 17:10:46 +00:00
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_reverser( int engine, bool val )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
reverser[i] = val;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
reverser[engine] = val;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-01 12:43:18 +00:00
|
|
|
|
FGControls::set_water_injection( int engine, bool val )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
water_injection[i] = val;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
water_injection[engine] = val;
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2004-07-27 20:39:01 +00:00
|
|
|
|
FGControls::set_condition( int engine, double val )
|
2002-04-11 17:10:46 +00:00
|
|
|
|
{
|
2003-04-01 12:43:18 +00:00
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
condition[i] = val;
|
|
|
|
|
SG_CLAMP_RANGE<double>( condition[i], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
condition[engine] = val;
|
|
|
|
|
SG_CLAMP_RANGE<double>( condition[engine], 0.0, 1.0 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_dump_valve( bool val )
|
|
|
|
|
{
|
|
|
|
|
dump_valve = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_fuel_selector( int tank, bool pos )
|
|
|
|
|
{
|
|
|
|
|
if ( tank == ALL_TANKS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_TANKS; i++ ) {
|
|
|
|
|
fuel_selector[i] = pos;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (tank >= 0) && (tank < MAX_TANKS) ) {
|
|
|
|
|
fuel_selector[tank] = pos;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_to_engine( int tank, int engine )
|
|
|
|
|
{
|
|
|
|
|
if ( tank == ALL_TANKS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_TANKS; i++ ) {
|
|
|
|
|
to_engine[i] = engine;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (tank >= 0) && (tank < MAX_TANKS) ) {
|
|
|
|
|
to_engine[tank] = engine;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-04-11 17:10:46 +00:00
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_to_tank( int tank, int dest_tank )
|
|
|
|
|
{
|
|
|
|
|
if ( tank == ALL_TANKS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_TANKS; i++ ) {
|
|
|
|
|
to_tank[i] = dest_tank;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (tank >= 0) && (tank < MAX_TANKS) ) {
|
|
|
|
|
to_tank[tank] = dest_tank;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_boost_pump( int index, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( index == -1 ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < (MAX_TANKS * MAX_BOOSTPUMPS); i++ ) {
|
|
|
|
|
boost_pump[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (index >= 0) && (index < (MAX_TANKS * MAX_BOOSTPUMPS)) ) {
|
|
|
|
|
boost_pump[index] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-01-12 17:39:41 +00:00
|
|
|
|
FGControls::set_brake_left( double pos )
|
|
|
|
|
{
|
|
|
|
|
brake_left = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(brake_left, 0.0, 1.0);
|
2004-01-12 17:39:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_brake_left( double amt )
|
|
|
|
|
{
|
|
|
|
|
brake_left += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( brake_left, 0.0, 1.0 );
|
2004-01-12 17:39:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_brake_right( double pos )
|
|
|
|
|
{
|
|
|
|
|
brake_right = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(brake_right, 0.0, 1.0);
|
2004-01-12 17:39:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_brake_right( double amt )
|
|
|
|
|
{
|
|
|
|
|
brake_right += amt;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>( brake_right, 0.0, 1.0 );
|
2004-01-12 17:39:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-09-10 17:53:34 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_copilot_brake_left( double pos )
|
|
|
|
|
{
|
|
|
|
|
copilot_brake_left = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(brake_left, 0.0, 1.0);
|
2004-09-10 17:53:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_copilot_brake_right( double pos )
|
|
|
|
|
{
|
|
|
|
|
copilot_brake_right = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(brake_right, 0.0, 1.0);
|
2004-09-10 17:53:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 17:39:41 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_brake_parking( double pos )
|
2003-04-01 12:43:18 +00:00
|
|
|
|
{
|
2004-01-12 17:39:41 +00:00
|
|
|
|
brake_parking = pos;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(brake_parking, 0.0, 1.0);
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_steering( double angle )
|
|
|
|
|
{
|
|
|
|
|
steering = angle;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(steering, -80.0, 80.0);
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-01-07 11:50:39 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_nose_wheel_steering( bool nws )
|
|
|
|
|
{
|
|
|
|
|
nose_wheel_steering = nws;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::move_steering( double angle )
|
|
|
|
|
{
|
|
|
|
|
steering += angle;
|
2011-02-14 19:44:20 +00:00
|
|
|
|
SG_CLAMP_RANGE<double>(steering, -80.0, 80.0);
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_gear_down( bool gear )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
gear_down = gear;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_antiskid( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
antiskid = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_tailhook( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
tailhook = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-11-19 12:33:53 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_launchbar( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
launchbar = state;
|
2004-11-19 12:33:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_catapult_launch_cmd( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
catapult_launch_cmd = state;
|
2004-11-19 12:33:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_tailwheel_lock( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
tailwheel_lock = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_alternate_extension( int wheel, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( wheel == ALL_WHEELS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_WHEELS; i++ ) {
|
|
|
|
|
alternate_extension[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (wheel >= 0) && (wheel < MAX_WHEELS) ) {
|
|
|
|
|
alternate_extension[wheel] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_wing_heat( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
wing_heat = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_pitot_heat( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
pitot_heat = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_wiper( int state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
wiper = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_window_heat( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
window_heat = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_carb_heat( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
carb_heat[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
carb_heat[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_inlet_heat( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
inlet_heat[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
inlet_heat[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_engine_pump( int system, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( system == ALL_HYD_SYSTEMS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_HYD_SYSTEMS; i++ ) {
|
|
|
|
|
engine_pump[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (system >= 0) && (system < MAX_HYD_SYSTEMS) ) {
|
|
|
|
|
engine_pump[system] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_electric_pump( int system, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( system == ALL_HYD_SYSTEMS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_HYD_SYSTEMS; i++ ) {
|
|
|
|
|
electric_pump[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (system >= 0) && (system < MAX_HYD_SYSTEMS) ) {
|
|
|
|
|
electric_pump[system] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_battery_switch( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
battery_switch = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_external_power( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
external_power = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_APU_generator( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
APU_generator = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_generator_breaker( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
generator_breaker[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
generator_breaker[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_bus_tie( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
bus_tie[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
bus_tie[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_APU_bleed( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
APU_bleed = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_engine_bleed( int engine, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( engine == ALL_ENGINES ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_ENGINES; i++ ) {
|
|
|
|
|
engine_bleed[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (engine >= 0) && (engine < MAX_ENGINES) ) {
|
|
|
|
|
engine_bleed[engine] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_mode( int new_mode )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
mode = new_mode;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_outflow_valve( double pos )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
outflow_valve = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( outflow_valve, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_outflow_valve( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
outflow_valve += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( outflow_valve, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_dump( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
dump = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_pack_on( int pack, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( pack == ALL_PACKS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_PACKS; i++ ) {
|
|
|
|
|
pack_on[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (pack >= 0) && (pack < MAX_PACKS) ) {
|
|
|
|
|
pack_on[pack] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_landing_lights( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
landing_lights = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_turn_off_lights( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
turn_off_lights = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_taxi_light( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
taxi_light = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_logo_lights( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
logo_lights = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_nav_lights( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
nav_lights = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_beacon( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
beacon = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_strobe( bool state )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
strobe = state;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_panel_norm( double intensity )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
panel_norm = intensity;
|
|
|
|
|
SG_CLAMP_RANGE<double>( panel_norm, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_panel_norm( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
panel_norm += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( panel_norm, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_instruments_norm( double intensity )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
instruments_norm = intensity;
|
|
|
|
|
SG_CLAMP_RANGE<double>( instruments_norm, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_instruments_norm( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
instruments_norm += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( instruments_norm, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_dome_norm( double intensity )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
dome_norm = intensity;
|
|
|
|
|
SG_CLAMP_RANGE<double>( dome_norm, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_dome_norm( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
dome_norm += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( dome_norm, 0.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_master_arm( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
master_arm = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_station_select( int station )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
station_select = station;
|
|
|
|
|
SG_CLAMP_RANGE<int>( station_select, 0, MAX_STATIONS );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_release_ALL( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
release_ALL = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_stick_size( int station, int size )
|
|
|
|
|
{
|
|
|
|
|
if ( station == ALL_STATIONS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_STATIONS; i++ ) {
|
|
|
|
|
stick_size[i] = size;
|
|
|
|
|
SG_CLAMP_RANGE<int>( stick_size[i], 1, 20 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (station >= 0) && (station < MAX_STATIONS) ) {
|
|
|
|
|
stick_size[station] = size;
|
|
|
|
|
SG_CLAMP_RANGE<int>( stick_size[station], 1, 20 );
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_release_stick( int station, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( station == ALL_STATIONS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_STATIONS; i++ ) {
|
|
|
|
|
release_stick[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (station >= 0) && (station < MAX_STATIONS) ) {
|
|
|
|
|
release_stick[station] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_release_all( int station, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( station == ALL_STATIONS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_STATIONS; i++ ) {
|
|
|
|
|
release_all[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (station >= 0) && (station < MAX_STATIONS) ) {
|
|
|
|
|
release_all[station] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_jettison_all( int station, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( station == ALL_STATIONS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_STATIONS; i++ ) {
|
|
|
|
|
jettison_all[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (station >= 0) && (station < MAX_STATIONS) ) {
|
|
|
|
|
jettison_all[station] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_vertical_adjust( double pos )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
vertical_adjust = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( vertical_adjust, -1.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_vertical_adjust( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
vertical_adjust += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( vertical_adjust, -1.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_fore_aft_adjust( double pos )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
fore_aft_adjust = pos;
|
|
|
|
|
SG_CLAMP_RANGE<double>( fore_aft_adjust, -1.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_fore_aft_adjust( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
fore_aft_adjust += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( fore_aft_adjust, -1.0, 1.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-11-13 23:03:49 +00:00
|
|
|
|
FGControls::set_ejection_seat( int which_seat, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( which_seat == ALL_EJECTION_SEATS ) {
|
|
|
|
|
for ( int i = 0; i < MAX_EJECTION_SEATS; i++ ) {
|
|
|
|
|
eject[i] = val;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if ( (which_seat >= 0) && (which_seat <= MAX_EJECTION_SEATS) ) {
|
|
|
|
|
if ( eseat_status[which_seat] == SEAT_SAFED ||
|
2011-02-14 19:44:20 +00:00
|
|
|
|
eseat_status[which_seat] == SEAT_FAIL )
|
2003-11-13 23:03:49 +00:00
|
|
|
|
{
|
|
|
|
|
// we can never eject if SEAT_SAFED or SEAT_FAIL
|
|
|
|
|
val = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eject[which_seat] = val;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_eseat_status( int which_seat, int val )
|
|
|
|
|
{
|
|
|
|
|
if ( which_seat == ALL_EJECTION_SEATS ) {
|
|
|
|
|
for ( int i = 0; i < MAX_EJECTION_SEATS; i++ ) {
|
|
|
|
|
eseat_status[i] = val;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if ( (which_seat >=0) && (which_seat <= MAX_EJECTION_SEATS) ) {
|
|
|
|
|
eseat_status[which_seat] = val;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_cmd_selector_valve( int val )
|
2003-04-01 12:43:18 +00:00
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
cmd_selector_valve = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-11-13 23:03:49 +00:00
|
|
|
|
|
2003-04-01 12:43:18 +00:00
|
|
|
|
void
|
|
|
|
|
FGControls::set_off_start_run( int pos )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
off_start_run = pos;
|
|
|
|
|
SG_CLAMP_RANGE<int>( off_start_run, 0, 3 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_APU_fire_switch( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
APU_fire_switch = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_autothrottle_arm( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
autothrottle_arm = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_autothrottle_engage( bool val )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
autothrottle_engage = val;
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_heading_select( double heading )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
heading_select = heading;
|
|
|
|
|
SG_CLAMP_RANGE<double>( heading_select, 0.0, 360.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_heading_select( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
heading_select += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( heading_select, 0.0, 360.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_altitude_select( double altitude )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
altitude_select = altitude;
|
|
|
|
|
SG_CLAMP_RANGE<double>( altitude_select, -1000.0, 100000.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_altitude_select( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
altitude_select += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( altitude_select, -1000.0, 100000.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_bank_angle_select( double angle )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
bank_angle_select = angle;
|
|
|
|
|
SG_CLAMP_RANGE<double>( bank_angle_select, 10.0, 30.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_bank_angle_select( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
bank_angle_select += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( bank_angle_select, 10.0, 30.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_vertical_speed_select( double speed )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
vertical_speed_select = speed;
|
|
|
|
|
SG_CLAMP_RANGE<double>( vertical_speed_select, -3000.0, 4000.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_vertical_speed_select( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
vertical_speed_select += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( vertical_speed_select, -3000.0, 4000.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_speed_select( double speed )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
speed_select = speed;
|
|
|
|
|
SG_CLAMP_RANGE<double>( speed_select, 60.0, 400.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_speed_select( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
speed_select += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( speed_select, 60.0, 400.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_mach_select( double mach )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
mach_select = mach;
|
|
|
|
|
SG_CLAMP_RANGE<double>( mach_select, 0.4, 4.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::move_mach_select( double amt )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
mach_select += amt;
|
|
|
|
|
SG_CLAMP_RANGE<double>( mach_select, 0.4, 4.0 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_vertical_mode( int mode )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
vertical_mode = mode;
|
|
|
|
|
SG_CLAMP_RANGE<int>( vertical_mode, 0, 4 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_lateral_mode( int mode )
|
|
|
|
|
{
|
2011-02-14 19:44:20 +00:00
|
|
|
|
lateral_mode = mode;
|
|
|
|
|
SG_CLAMP_RANGE<int>( lateral_mode, 0, 4 );
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FGControls::set_autopilot_engage( int ap, bool val )
|
|
|
|
|
{
|
|
|
|
|
if ( ap == ALL_AUTOPILOTS ) {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
for ( int i = 0; i < MAX_AUTOPILOTS; i++ ) {
|
|
|
|
|
autopilot_engage[i] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
} else {
|
2011-02-14 19:44:20 +00:00
|
|
|
|
if ( (ap >= 0) && (ap < MAX_AUTOPILOTS) ) {
|
|
|
|
|
autopilot_engage[ap] = val;
|
|
|
|
|
}
|
2003-04-01 12:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|