Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core4/src/core/input/Keyboard.h @ 3285

Last change on this file since 3285 was 3285, checked in by rgrieder, 15 years ago

Shoved some code around to reduce contents of 'global' InputPrereqs.h

  • Property svn:eol-style set to native
File size: 2.4 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _Core_Keyboard_H__
30#define _Core_Keyboard_H__
31
32#include "InputPrereqs.h"
33#include "InputHandler.h"
34#include "InputDevice.h"
35
36namespace orxonox
37{
38    struct KeyboardTraits
39    {
40        typedef Keyboard DeviceClass;
41        typedef OIS::Keyboard OISDeviceClass;
42        typedef KeyEvent ButtonType;
43        typedef KeyEvent& ButtonTypeParam;
44        static const OIS::Type OISDeviceValue = OIS::OISKeyboard;
45    };
46
47    /**
48    @brief
49        Wraps around an OIS::Mouse and forwards the input events to
50        a list of input states.
51
52        It also saves the state of the keyboard modifiers (like shift, etc.)
53    */
54    class _CoreExport Keyboard
55        : public InputDeviceTemplated<KeyboardTraits>
56        , public OIS::KeyListener
57    {
58        friend class InputDeviceTemplated<KeyboardTraits>;
59        //! Super class alias
60        typedef InputDeviceTemplated<KeyboardTraits> super;
61
62    public:
63        Keyboard(unsigned int id) : super(id), modifiers_(0) { }
64        ~Keyboard() { }
65
66    private:
67        // TODO: Do we need to reset the modifiers?
68        void clearBuffersImpl() { }
69        //! Translates the KeyHandle to a KeyEvent
70        KeyEvent& getButtonEventArg(KeyEvent& button) { button.setModifiers(modifiers_); return button; }
71
72        bool keyPressed(const OIS::KeyEvent& arg);
73        bool keyReleased(const OIS::KeyEvent& arg);
74
75        static std::string getClassNameImpl() { return "Keyboard"; }
76
77        //! Bit mask representing keyboard modifiers
78        int modifiers_;
79    };
80}
81
82#endif /* _Core_Keyboard_H__ */
Note: See TracBrowser for help on using the repository browser.