Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/console/src/core/InputBuffer.h @ 1312

Last change on this file since 1312 was 1312, checked in by landauf, 17 years ago

changed InputBuffer, added OutputBuffer and made a first sketch of Shell.

File size: 4.9 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 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _InputBuffer_H__
30#define _InputBuffer_H__
31
32#include "CorePrereqs.h"
33
34#include <string>
35#include <list>
36
37#ifdef WIN32
38#include <OIS/OISKeyboard.h>
39#else
40#include <OISKeyboard.h>
41#endif
42
43namespace orxonox
44{
45    class _CoreExport InputBufferListener
46    {};
47
48    class _CoreExport InputBuffer : public OIS::KeyListener
49    {
50        struct InputBufferListenerTuple
51        {
52            InputBufferListener* listener_;
53            void (InputBufferListener::*function_)();
54            bool bListenToAllChanges_;
55            bool bOnlySingleInput_;
56            bool trueKeyFalseChar_;
57            char char_;
58            OIS::KeyCode key_;
59        };
60
61        public:
62            InputBuffer();
63            InputBuffer(const std::string allowedChars);
64
65            template <class T>
66            void registerListener(T* listener, void (T::*function)(), bool bOnlySingleInput)
67            {
68                struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, true, bOnlySingleInput, false, '\0', OIS::KC_UNASSIGNED};
69                this->listeners_.insert(this->listeners_.end(), newListener);
70            }
71            template <class T>
72            void registerListener(T* listener, void (T::*function)() const, bool bOnlySingleInput)
73            {
74                struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, true, bOnlySingleInput, false, '\0', OIS::KC_UNASSIGNED};
75                this->listeners_.insert(this->listeners_.end(), newListener);
76            }
77
78            template <class T>
79            void registerListener(T* listener, void (T::*function)(), char _char, bool bOnlySingleInput)
80            {
81                struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, false, bOnlySingleInput, false, _char, OIS::KC_UNASSIGNED};
82                this->listeners_.insert(this->listeners_.end(), newListener);
83            }
84            template <class T>
85            void registerListener(T* listener, void (T::*function)() const, char _char, bool bOnlySingleInput)
86            {
87                struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, false, bOnlySingleInput, false, _char, OIS::KC_UNASSIGNED};
88                this->listeners_.insert(this->listeners_.end(), newListener);
89            }
90
91            template <class T>
92            void registerListener(T* listener, void (T::*function)(), OIS::KeyCode key)
93            {
94                struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, false, true, true, '\0', key};
95                this->listeners_.insert(this->listeners_.end(), newListener);
96            }
97            template <class T>
98            void registerListener(T* listener, void (T::*function)() const, OIS::KeyCode key)
99            {
100                struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, false, true, true, '\0', key};
101                this->listeners_.insert(this->listeners_.end(), newListener);
102            }
103
104            void set(const std::string& input);
105            void append(const std::string& input);
106            void append(const char& input);
107            void removeLast();
108            void clear();
109
110            void updated();
111            void updated(const char& update, bool bSingleInput);
112
113            inline std::string get() const
114                { return this->buffer_; }
115
116        private:
117            bool charIsAllowed(const char& input);
118
119            bool keyPressed(const OIS::KeyEvent &e);
120            bool keyReleased(const OIS::KeyEvent &e);
121
122            OIS::Keyboard* keyboard_;
123            std::string buffer_;
124            std::list<InputBufferListenerTuple> listeners_;
125            std::string allowedChars_;
126    };
127}
128
129#endif /* _InputBuffer_H__ */
Note: See TracBrowser for help on using the repository browser.