[955] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
[1056] | 3 | * > www.orxonox.net < |
---|
[955] | 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 | |
---|
[1062] | 32 | #include "CorePrereqs.h" |
---|
| 33 | |
---|
[955] | 34 | #include <string> |
---|
| 35 | #include <list> |
---|
| 36 | |
---|
| 37 | #ifdef WIN32 |
---|
| 38 | #include <OIS/OISKeyboard.h> |
---|
| 39 | #else |
---|
| 40 | #include <OISKeyboard.h> |
---|
| 41 | #endif |
---|
| 42 | |
---|
| 43 | namespace orxonox |
---|
| 44 | { |
---|
| 45 | class _CoreExport InputBufferListener |
---|
[1066] | 46 | {}; |
---|
[955] | 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_; |
---|
[1312] | 56 | bool trueKeyFalseChar_; |
---|
[955] | 57 | char char_; |
---|
[1312] | 58 | OIS::KeyCode key_; |
---|
[955] | 59 | }; |
---|
| 60 | |
---|
| 61 | public: |
---|
[1052] | 62 | InputBuffer(); |
---|
[1151] | 63 | InputBuffer(const std::string allowedChars); |
---|
[955] | 64 | |
---|
| 65 | template <class T> |
---|
| 66 | void registerListener(T* listener, void (T::*function)(), bool bOnlySingleInput) |
---|
| 67 | { |
---|
[1312] | 68 | struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, true, bOnlySingleInput, false, '\0', OIS::KC_UNASSIGNED}; |
---|
[955] | 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 | { |
---|
[1312] | 74 | struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, true, bOnlySingleInput, false, '\0', OIS::KC_UNASSIGNED}; |
---|
[955] | 75 | this->listeners_.insert(this->listeners_.end(), newListener); |
---|
| 76 | } |
---|
| 77 | |
---|
| 78 | template <class T> |
---|
[1312] | 79 | void registerListener(T* listener, void (T::*function)(), char _char, bool bOnlySingleInput) |
---|
[955] | 80 | { |
---|
[1312] | 81 | struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, false, bOnlySingleInput, false, _char, OIS::KC_UNASSIGNED}; |
---|
[955] | 82 | this->listeners_.insert(this->listeners_.end(), newListener); |
---|
| 83 | } |
---|
| 84 | template <class T> |
---|
[1312] | 85 | void registerListener(T* listener, void (T::*function)() const, char _char, bool bOnlySingleInput) |
---|
[955] | 86 | { |
---|
[1312] | 87 | struct InputBufferListenerTuple newListener = {listener, (void (InputBufferListener::*)())function, false, bOnlySingleInput, false, _char, OIS::KC_UNASSIGNED}; |
---|
[955] | 88 | this->listeners_.insert(this->listeners_.end(), newListener); |
---|
| 89 | } |
---|
| 90 | |
---|
[1312] | 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 | |
---|
[1313] | 104 | void unregisterListener(InputBufferListener* listener); |
---|
[955] | 105 | |
---|
[1313] | 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 | |
---|
[955] | 113 | void updated(); |
---|
| 114 | void updated(const char& update, bool bSingleInput); |
---|
| 115 | |
---|
| 116 | inline std::string get() const |
---|
| 117 | { return this->buffer_; } |
---|
[1313] | 118 | inline unsigned int getSize() const |
---|
| 119 | { return this->buffer_.size(); } |
---|
[955] | 120 | |
---|
[1313] | 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 | |
---|
[955] | 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_; |
---|
[1313] | 144 | unsigned int cursor_; |
---|
[955] | 145 | }; |
---|
| 146 | } |
---|
| 147 | |
---|
| 148 | #endif /* _InputBuffer_H__ */ |
---|