]> git.mxchange.org Git - flightgear.git/blob - src/Controls/controls.cxx
Rearranged includes a touch.
[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     throttle_idle( true )
37 {
38     for ( int engine = 0; engine < MAX_ENGINES; engine++ ) {
39         throttle[engine] = 0.0;
40     }
41
42     for ( int wheel = 0; wheel < MAX_WHEELS; wheel++ ) {
43         brake[wheel] = 0.0;
44     }
45 }
46
47
48 void FGControls::reset_all()
49 {
50     set_aileron(0.0);
51     set_elevator(0.0);
52     set_elevator_trim(0.0);
53     set_rudder(0.0);
54     set_throttle(FGControls::ALL_ENGINES, 0.0);
55     throttle_idle = true;
56 }
57
58
59 // Destructor
60 FGControls::~FGControls() {
61 }
62
63