Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1321 was 1313, checked in by landauf, 16 years ago
  • implemented Shell, but not yet linked with the graphical console
  • added new features (cursor, OIS::KeyCode listener) to InputBuffer
  • changed some includes to avoid circular header-dependencies in OrxonoxClass and Shell
File size: 5.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 unregisterListener(InputBufferListener* listener);
105
106            void set(const std::string& input, bool update = true);
107            void insert(const std::string& input, bool update = true);
108            void insert(const char& input, bool update = true);
109            void clear(bool update = true);
110            void removeAtCursor(bool update = true);
111            void removeBehindCursor(bool update = true);
112
113            void updated();
114            void updated(const char& update, bool bSingleInput);
115
116            inline std::string get() const
117                { return this->buffer_; }
118            inline unsigned int getSize() const
119                { return this->buffer_.size(); }
120
121            inline unsigned int getCursorPosition() const
122                { return this->cursor_; }
123            inline void setCursorPosition(unsigned int cursor)
124                { if (cursor <= this->buffer_.size()) { this->cursor_ = cursor; } }
125            inline void setCursorToEnd()
126                { this->cursor_ = this->buffer_.size(); }
127            inline void setCursorToBegin()
128                { this->cursor_ = 0; }
129            inline void increaseCursor()
130                { if (this->cursor_ < this->buffer_.size()) { ++this->cursor_; } }
131            inline void decreaseCursor()
132                { if (this->cursor_ > 0) { --this->cursor_; } }
133
134        private:
135            bool charIsAllowed(const char& input);
136
137            bool keyPressed(const OIS::KeyEvent &e);
138            bool keyReleased(const OIS::KeyEvent &e);
139
140            OIS::Keyboard* keyboard_;
141            std::string buffer_;
142            std::list<InputBufferListenerTuple> listeners_;
143            std::string allowedChars_;
144            unsigned int cursor_;
145    };
146}
147
148#endif /* _InputBuffer_H__ */
Note: See TracBrowser for help on using the repository browser.