]> git.mxchange.org Git - flightgear.git/blob - src/Controls/controls.cxx
Tweaks to go along with changes in SGSocket.
[flightgear.git] / src / Controls / controls.cxx
1 // controls.cxx -- defines a standard interface to all flight sim controls
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #include "controls.hxx"
25
26
27 FGControls controls;
28
29
30 // Constructor
31 FGControls::FGControls() :
32     aileron( 0.0 ),
33     elevator( 0.0 ),
34     elevator_trim( 1.969572E-03 ),
35     rudder( 0.0 )
36 {
37     for ( int engine = 0; engine < MAX_ENGINES; engine++ ) {
38         throttle[engine] = 0.0;
39     }
40
41     for ( int wheel = 0; wheel < MAX_WHEELS; wheel++ ) {
42         brake[wheel] = 0.0;
43     }
44 }
45
46
47 void FGControls::reset_all()
48 {
49     controls.set_aileron(0.0);
50     controls.set_elevator(0.0);
51     controls.set_elevator_trim(0.0);
52     controls.set_rudder(0.0);
53     controls.set_throttle(FGControls::ALL_ENGINES, 0.0);
54 }
55
56
57 // Destructor
58 FGControls::~FGControls() {
59 }
60
61