]> git.mxchange.org Git - flightgear.git/blob - src/Input/input.cxx
PLIB net removed from FlightGear
[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 #include "FGMouseInput.hxx"
31 #include "FGKeyboardInput.hxx"
32 #include "FGJoystickInput.hxx"
33
34 #ifdef WITH_EVENTINPUT
35 #if defined( UL_WIN32 )
36 //to be developed
37 //#include "FGDirectXEventInput.hxx"
38 //#define INPUTEVENT_CLASS FGDirectXEventInput
39 #elif defined ( UL_MAC_OSX )
40 #include "FGMacOSXEventInput.hxx"
41 #define INPUTEVENT_CLASS FGMacOSXEventInput
42 #else
43 #include "FGLinuxEventInput.hxx"
44 #define INPUTEVENT_CLASS FGLinuxEventInput
45 #endif
46
47 #endif
48
49 ////////////////////////////////////////////////////////////////////////
50 // Implementation of FGInput.
51 ////////////////////////////////////////////////////////////////////////
52
53
54 FGInput::FGInput ()
55 {
56   set_subsystem( "input-mouse", new FGMouseInput() );
57   set_subsystem( "input-keyboard", new FGKeyboardInput() );
58   set_subsystem( "input-joystick", new FGJoystickInput() );
59 #ifdef INPUTEVENT_CLASS
60   set_subsystem( "input-event", new INPUTEVENT_CLASS() );
61 #endif
62 }
63
64 FGInput::~FGInput ()
65 {
66   // SGSubsystemGroup deletes all subsystem in it's destructor
67 }
68