]> git.mxchange.org Git - flightgear.git/blob - src/Input/input.cxx
GUI ‘restore defaults’ support.
[flightgear.git] / src / Input / input.cxx
1 // input.cxx -- handle user input from various sources.
2 //
3 // Written by David Megginson, started May 2001.
4 // Major redesign by Torsten Dreyer, started August 2009
5 //
6 // Copyright (C) 2001 David Megginson, david@megginson.com
7 // Copyright (C) 2009 Torsten Dreyer, Torsten (at) t3r _dot_ de
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include "input.hxx"
30
31 #include <simgear/compiler.h>
32
33 #include <Main/fg_props.hxx>
34 #include "FGMouseInput.hxx"
35 #include "FGKeyboardInput.hxx"
36 #include "FGJoystickInput.hxx"
37
38 #ifdef WITH_EVENTINPUT
39 #if defined( SG_WINDOWS )
40 //to be developed
41 //#include "FGDirectXEventInput.hxx"
42 //#define INPUTEVENT_CLASS FGDirectXEventInput
43 #elif defined ( SG_MAC )
44 #include "FGMacOSXEventInput.hxx"
45 #define INPUTEVENT_CLASS FGMacOSXEventInput
46 #else
47 #include "FGLinuxEventInput.hxx"
48 #define INPUTEVENT_CLASS FGLinuxEventInput
49 #endif
50
51 #endif
52
53 ////////////////////////////////////////////////////////////////////////
54 // Implementation of FGInput.
55 ////////////////////////////////////////////////////////////////////////
56
57
58 FGInput::FGInput ()
59 {
60   if( fgGetBool("/sim/input/no-mouse-input",false) ) {
61     SG_LOG(SG_INPUT,SG_ALERT,"Mouse input disabled!");
62   } else {
63     set_subsystem( "input-mouse", new FGMouseInput() );
64   }
65
66   if( fgGetBool("/sim/input/no-keyboard-input",false) ) {
67     SG_LOG(SG_INPUT,SG_ALERT,"Keyboard input disabled!");
68   } else {
69     set_subsystem( "input-keyboard", new FGKeyboardInput() );
70   }
71
72   if( fgGetBool("/sim/input/no-joystick-input",false) ) {
73     SG_LOG(SG_INPUT,SG_ALERT,"Joystick input disabled!");
74   } else {
75     set_subsystem( "input-joystick", new FGJoystickInput() );
76   }
77 #ifdef INPUTEVENT_CLASS
78   if( fgGetBool("/sim/input/no-event-input",false) ) {
79     SG_LOG(SG_INPUT,SG_ALERT,"Event input disabled!");
80   } else {
81     set_subsystem( "input-event", new INPUTEVENT_CLASS() );
82   }
83 #endif
84 }
85
86 FGInput::~FGInput ()
87 {
88   // SGSubsystemGroup deletes all subsystem in it's destructor
89 }
90