[1505] | 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 | * Reto Grieder |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #ifndef _InputBuffer_H__ |
---|
| 30 | #define _InputBuffer_H__ |
---|
| 31 | |
---|
[3327] | 32 | #include "InputPrereqs.h" |
---|
[1505] | 33 | |
---|
[3196] | 34 | #include <list> |
---|
[1505] | 35 | #include <string> |
---|
[9667] | 36 | #include "core/config/Configurable.h" |
---|
[3327] | 37 | #include "InputHandler.h" |
---|
[1505] | 38 | |
---|
| 39 | namespace orxonox |
---|
| 40 | { |
---|
| 41 | class BaseInputBufferListenerTuple |
---|
| 42 | { |
---|
| 43 | public: |
---|
| 44 | BaseInputBufferListenerTuple(bool bListenToAllChanges, bool bOnlySingleInput, |
---|
[1887] | 45 | bool trueKeyFalseChar, char _char, KeyCode::ByEnum key) |
---|
[1505] | 46 | : bListenToAllChanges_(bListenToAllChanges), bOnlySingleInput_(bOnlySingleInput), |
---|
| 47 | trueKeyFalseChar_(trueKeyFalseChar), char_(_char), key_(key) |
---|
[1502] | 48 | { } |
---|
[11071] | 49 | virtual ~BaseInputBufferListenerTuple() = default; |
---|
[1505] | 50 | virtual void callFunction() = 0; |
---|
| 51 | bool bListenToAllChanges_; |
---|
| 52 | bool bOnlySingleInput_; |
---|
| 53 | bool trueKeyFalseChar_; |
---|
| 54 | char char_; |
---|
[1887] | 55 | KeyCode::ByEnum key_; |
---|
[1505] | 56 | }; |
---|
| 57 | |
---|
| 58 | template <class T> |
---|
| 59 | class InputBufferListenerTuple : public BaseInputBufferListenerTuple |
---|
| 60 | { |
---|
| 61 | public: |
---|
| 62 | InputBufferListenerTuple(T* listener, void (T::*function)(), bool bListenToAllChanges, |
---|
[1887] | 63 | bool bOnlySingleInput, bool trueKeyFalseChar, char _char, KeyCode::ByEnum key) |
---|
[1505] | 64 | : BaseInputBufferListenerTuple(bListenToAllChanges, bOnlySingleInput, trueKeyFalseChar, _char, key), |
---|
| 65 | listener_(listener), function_(function) |
---|
| 66 | { } |
---|
[11071] | 67 | virtual ~InputBufferListenerTuple() = default; |
---|
| 68 | virtual void callFunction() override |
---|
[1505] | 69 | { |
---|
| 70 | (listener_->*function_)(); |
---|
| 71 | } |
---|
| 72 | T* listener_; |
---|
| 73 | void (T::*function_)(); |
---|
| 74 | }; |
---|
| 75 | |
---|
[9667] | 76 | class _CoreExport InputBuffer : public InputHandler, public Configurable |
---|
[1505] | 77 | { |
---|
| 78 | public: |
---|
| 79 | InputBuffer(); |
---|
[2662] | 80 | ~InputBuffer(); |
---|
[3196] | 81 | InputBuffer(const std::string& allowedChars); |
---|
[1505] | 82 | |
---|
| 83 | void setConfigValues(); |
---|
| 84 | |
---|
[6417] | 85 | unsigned int getMaxLength() const { return this->maxLength_; } |
---|
| 86 | void setMaxLength(unsigned int length); |
---|
| 87 | |
---|
[1505] | 88 | template <class T> |
---|
| 89 | void registerListener(T* listener, void (T::*function)(), bool bOnlySingleInput) |
---|
| 90 | { |
---|
| 91 | InputBufferListenerTuple<T>* newTuple = new InputBufferListenerTuple<T>(listener, (void (T::*)())function, true, bOnlySingleInput, false, '\0', KeyCode::Unassigned); |
---|
| 92 | this->listeners_.insert(this->listeners_.end(), newTuple); |
---|
| 93 | } |
---|
| 94 | template <class T> |
---|
| 95 | void registerListener(T* listener, void (T::*function)() const, bool bOnlySingleInput) |
---|
| 96 | { |
---|
| 97 | InputBufferListenerTuple<T>* newTuple = new InputBufferListenerTuple<T>(listener, (void (T::*)())function, true, bOnlySingleInput, false, '\0', KeyCode::Unassigned); |
---|
| 98 | this->listeners_.insert(this->listeners_.end(), newTuple); |
---|
| 99 | } |
---|
| 100 | template <class T> |
---|
| 101 | void registerListener(T* listener, void (T::*function)(), char _char, bool bOnlySingleInput) |
---|
| 102 | { |
---|
| 103 | InputBufferListenerTuple<T>* newTuple = new InputBufferListenerTuple<T>(listener, (void (T::*)())function, false, bOnlySingleInput, false, _char, KeyCode::Unassigned); |
---|
| 104 | this->listeners_.insert(this->listeners_.end(), newTuple); |
---|
| 105 | } |
---|
| 106 | template <class T> |
---|
| 107 | void registerListener(T* listener, void (T::*function)() const, char _char, bool bOnlySingleInput) |
---|
| 108 | { |
---|
| 109 | InputBufferListenerTuple<T>* newTuple = new InputBufferListenerTuple<T>(listener, (void (T::*)())function, false, bOnlySingleInput, false, _char, KeyCode::Unassigned); |
---|
| 110 | this->listeners_.insert(this->listeners_.end(), newTuple); |
---|
| 111 | } |
---|
| 112 | |
---|
| 113 | template <class T> |
---|
[1887] | 114 | void registerListener(T* listener, void (T::*function)(), KeyCode::ByEnum key) |
---|
[1505] | 115 | { |
---|
| 116 | InputBufferListenerTuple<T>* newTuple = new InputBufferListenerTuple<T>(listener, (void (T::*)())function, false, true, true, '\0', key); |
---|
| 117 | this->listeners_.insert(this->listeners_.end(), newTuple); |
---|
| 118 | } |
---|
| 119 | template <class T> |
---|
[1887] | 120 | void registerListener(T* listener, void (T::*function)() const, KeyCode::ByEnum key) |
---|
[1505] | 121 | { |
---|
| 122 | InputBufferListenerTuple<T>* newTuple = new InputBufferListenerTuple<T>(listener, (void (T::*)())function, false, true, true, '\0', key); |
---|
| 123 | this->listeners_.insert(this->listeners_.end(), newTuple); |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | template <class T> |
---|
| 127 | void unregisterListener(T* listener) |
---|
| 128 | { |
---|
| 129 | for (std::list<BaseInputBufferListenerTuple*>::iterator it = this->listeners_.begin(); it != this->listeners_.end(); ) |
---|
| 130 | { |
---|
[2896] | 131 | InputBufferListenerTuple<T>* refListener = static_cast<InputBufferListenerTuple<T>*>(*it); |
---|
[1505] | 132 | if (refListener && refListener->listener_ == listener) |
---|
| 133 | this->listeners_.erase(it++); |
---|
| 134 | else |
---|
| 135 | it++; |
---|
| 136 | } |
---|
| 137 | } |
---|
| 138 | |
---|
| 139 | void set(const std::string& input, bool update = true); |
---|
| 140 | void insert(const std::string& input, bool update = true); |
---|
| 141 | void insert(const char& input, bool update = true); |
---|
| 142 | void clear(bool update = true); |
---|
| 143 | void removeAtCursor(bool update = true); |
---|
| 144 | void removeBehindCursor(bool update = true); |
---|
| 145 | |
---|
| 146 | void updated(); |
---|
| 147 | void updated(const char& update, bool bSingleInput); |
---|
| 148 | |
---|
[3196] | 149 | inline const std::string& get() const |
---|
[1505] | 150 | { return this->buffer_; } |
---|
| 151 | inline unsigned int getSize() const |
---|
| 152 | { return this->buffer_.size(); } |
---|
| 153 | |
---|
| 154 | inline unsigned int getCursorPosition() const |
---|
| 155 | { return this->cursor_; } |
---|
| 156 | inline void setCursorPosition(unsigned int cursor) |
---|
| 157 | { if (cursor <= this->buffer_.size()) { this->cursor_ = cursor; } } |
---|
| 158 | inline void setCursorToEnd() |
---|
| 159 | { this->cursor_ = this->buffer_.size(); } |
---|
| 160 | inline void setCursorToBegin() |
---|
| 161 | { this->cursor_ = 0; } |
---|
| 162 | inline void increaseCursor() |
---|
| 163 | { if (this->cursor_ < this->buffer_.size()) { ++this->cursor_; } } |
---|
| 164 | inline void decreaseCursor() |
---|
| 165 | { if (this->cursor_ > 0) { --this->cursor_; } } |
---|
| 166 | |
---|
[11071] | 167 | virtual void buttonPressed(const KeyEvent& evt) override; |
---|
[6105] | 168 | |
---|
[1505] | 169 | private: |
---|
| 170 | bool charIsAllowed(const char& input); |
---|
| 171 | |
---|
[11071] | 172 | virtual void buttonHeld (const KeyEvent& evt) override; |
---|
| 173 | void processKey (const KeyEvent& evt); |
---|
[1505] | 174 | |
---|
[11071] | 175 | virtual void keyboardUpdated(float dt) override; |
---|
[1505] | 176 | |
---|
| 177 | std::string buffer_; |
---|
| 178 | std::list<BaseInputBufferListenerTuple*> listeners_; |
---|
| 179 | std::string allowedChars_; |
---|
[6417] | 180 | unsigned int maxLength_; |
---|
[1505] | 181 | unsigned int cursor_; |
---|
| 182 | |
---|
[1887] | 183 | KeyCode::ByEnum lastKey_; |
---|
[1505] | 184 | float timeSinceKeyPressed_; |
---|
| 185 | float timeSinceKeyRepeated_; |
---|
| 186 | int keysToRepeat_; |
---|
| 187 | |
---|
| 188 | float keyRepeatDeleay_; |
---|
| 189 | float keyRepeatTime_; |
---|
| 190 | }; |
---|
| 191 | } |
---|
| 192 | |
---|
| 193 | #endif /* _InputBuffer_H__ */ |
---|