TDME2 1.9.121
GUIInputInternalController.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
19#include <tdme/gui/GUI.h>
20#include <tdme/math/Math.h>
26#include <tdme/utilities/Time.h>
27
29
36using tdme::gui::nodes::GUIInputInternalController_CursorMode;
46using tdme::gui::GUI;
53
54constexpr int64_t GUIInputInternalController::CURSOR_MODE_DURATION;
55constexpr int64_t GUIInputInternalController::DRAGGING_CALMDOWN;
56
57GUIInputInternalController::GUIInputInternalController(GUINode* node)
58 : GUINodeController(node)
59{
60 this->cursorModeStarted = -1LL;
62 this->index = 0;
63 this->offset = 0;
65 this->mouseDraggingInit = false;
66 this->mouseDragPosition = {{ -1, -1 }};
67 this->mouseOriginalPosition = {{ -1, -1 }};
68}
69
71{
72 return false;
73}
74
76{
77}
78
80{
81 inputNode = required_dynamic_cast<GUIElementNode*>(node->getParentControllerNode());
82
83 auto typeAsString = StringTools::toLowerCase(inputNode->getOptionValue("type"));
84 if (typeAsString == "float") type = TYPE_FLOAT; else
85 if (typeAsString == "int") type = TYPE_INT; else
87
88 auto minAsString = inputNode->getOptionValue("min");
89 auto maxAsString = inputNode->getOptionValue("max");
90 auto stepAsString = inputNode->getOptionValue("step");
91 auto decimalsAsString = inputNode->getOptionValue("decimals");
92
93 min = Float::parse(minAsString);
94 max = Float::parse(maxAsString);
95 step = Float::parse(stepAsString);
96
97 if (decimalsAsString.empty() == false)
98 decimals = Integer::parse(decimalsAsString);
99
100 haveMin = minAsString.empty() == false;
101 haveMax = maxAsString.empty() == false;
102 haveStep = stepAsString.empty() == false;
103
104 formatText();
105}
106
108{
109}
110
112{
113}
114
116{
117 cursorModeStarted = Time::getCurrentMillis();
119}
120
122{
123 if (cursorModeStarted == -1) {
125 return cursorMode;
126 }
127 if (mouseDraggingSelectionActive == true) {
128 return CURSORMODE_SHOW;
129 }
130 if (Time::getCurrentMillis() - cursorModeStarted > CURSOR_MODE_DURATION) {
132 cursorModeStarted = Time::getCurrentMillis();
133 }
134 return cursorMode;
135}
136
138{
139 auto disabled = required_dynamic_cast<GUIInputController*>(inputNode->getController())->isDisabled();
140 if (disabled == true) {
141 return;
142 }
143 if (node == this->node &&
144 event->getType() == GUIMouseEvent::MOUSEEVENT_RELEASED == true) {
145 if (mouseDraggingSlideValueActive == false) {
146 if (node->isEventBelongingToNode(event) == true &&
147 event->getButton() == MOUSE_BUTTON_LEFT) {
148 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
149 index = textInputNode->getFont()->getTextIndexByX(
150 textInputNode->getText(),
151 offset,
152 0,
153 event->getX() -
154 (
155 textInputNode->computedConstraints.left + textInputNode->computedConstraints.alignmentLeft +
156 textInputNode->border.left+ textInputNode->padding.left
157 )
158 );
160 event->setProcessed(true);
161 if (editMode == false) {
162 index = 0;
163 selectionIndex = textInputNode->getText().size();
164 }
165 editMode = true;
166 }
167 }
168 if (mouseDraggingSlideValueActive == true) {
169 // Application::setMouseCursor(MOUSE_CURSOR_NORMAL);
170 Application::setMousePosition(mouseOriginalPosition[0], mouseOriginalPosition[1]);
171 }
172 Application::setMouseCursor(MOUSE_CURSOR_NORMAL); // TODO: fix me
173 mouseDraggingInit = false;
176 mouseDragPosition[0] = -1;
177 mouseDragPosition[1] = -1;
178 mouseOriginalPosition[0] = -1;
179 mouseOriginalPosition[1] = -1;
180 event->setProcessed(true);
181 } else
183 if (mouseDraggingInit == true &&
184 Math::abs(mouseDragPosition[0] - event->getXUnscaled()) >= 10) {
185 mouseDraggingInit = false;
186 if (editMode == false) {
188 auto application = Application::getApplication();
189 Application::setMouseCursor(MOUSE_CURSOR_DISABLED);
190 Application::setMousePosition(
191 application->getWindowXPosition() + application->getWindowWidth() / 2,
192 application->getWindowYPosition() + application->getWindowHeight() / 2
193 );
194 } else {
197 }
198 mouseDragPosition[0] = Application::getMousePositionX();
199 mouseDragPosition[1] = Application::getMousePositionY();
200 }
201 if (mouseDraggingSlideValueActive == true) {
202 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
203 switch (type) {
204 case TYPE_STRING:
205 break;
206 case TYPE_FLOAT:
207 {
208 auto mouseDraggedX = Application::getMousePositionX() - mouseDragPosition[0];
209 auto value = Float::parse(textInputNode->getText().getString());
210 if (haveStep == true) {
211 value+= static_cast<float>(mouseDraggedX) * step;
212 }
213 if (haveMin == true) {
214 if (value < min) value = min;
215 }
216 if (haveMax == true) {
217 if (value > max) value = max;
218 }
219 textInputNode->getText().set(value, decimals);
220 node->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(node->getParentControllerNode()));
221 }
222 break;
223 case TYPE_INT:
224 {
225 auto mouseDraggedX = Application::getMousePositionX() - mouseDragPosition[0];
226 auto value = Integer::parse(textInputNode->getText().getString());
227 if (haveStep == true) {
228 value+= mouseDraggedX * static_cast<int>(step);
229 }
230 if (haveMin == true) {
231 if (value < static_cast<int>(min)) value = static_cast<int>(min);
232 }
233 if (haveMax == true) {
234 if (value > static_cast<int>(max)) value = static_cast<int>(max);
235 }
236 textInputNode->getText().set(value);
237 node->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(node->getParentControllerNode()));
238 }
239 break;
240 }
241 auto application = Application::getApplication();
242 Application::setMousePosition(
243 application->getWindowXPosition() + application->getWindowWidth() / 2,
244 application->getWindowYPosition() + application->getWindowHeight() / 2
245 );
246 mouseDragPosition[0] = Application::getMousePositionX();
247 mouseDragPosition[1] = Application::getMousePositionY();
248 } else
249 if (mouseDraggingSelectionActive == true) {
250 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
251 index = textInputNode->getFont()->getTextIndexByX(
252 textInputNode->getText(),
253 offset,
254 0,
255 event->getX() -
256 (
257 textInputNode->computedConstraints.left + textInputNode->computedConstraints.alignmentLeft +
258 textInputNode->border.left+ textInputNode->padding.left
259 )
260 );
261 }
262 event->setProcessed(true);
263 } else
264 if (node == this->node && node->isEventBelongingToNode(event) == true &&
265 event->getType() == GUIMouseEvent::MOUSEEVENT_PRESSED == true &&
266 event->getButton() == MOUSE_BUTTON_LEFT) {
267 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
268 index = textInputNode->getFont()->getTextIndexByX(
269 textInputNode->getText(),
270 offset,
271 0,
272 event->getX() -
273 (
274 textInputNode->computedConstraints.left + textInputNode->computedConstraints.alignmentLeft +
275 textInputNode->border.left+ textInputNode->padding.left
276 )
277 );
279 event->setProcessed(true);
280 mouseDraggingInit = true;
281 mouseOriginalPosition[0] = Application::getMousePositionX();
282 mouseOriginalPosition[1] = Application::getMousePositionY();
283 selectionIndex = -1;
284 }
285}
286
288{
289 if (index < offset) {
290 offset = index;
291 return;
292 }
293 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
294 auto textInputNodeConstraints = textInputNode->computedConstraints;
295 auto textInputNodeBorder = textInputNode->border;
296 auto textInputNodePadding = textInputNode->padding;
297 auto textInputNodeWidth = textInputNodeConstraints.width - textInputNodeBorder.left - textInputNodeBorder.right - textInputNodePadding.left - textInputNodePadding.right;
298 auto charsMax = textInputNode->getFont()->getTextIndexByX(textInputNode->getText(), offset, 0, textInputNodeWidth) - offset;
299 if (index - offset >= charsMax) {
300 offset = index - charsMax;
301 }
302}
303
305{
306 auto disabled = required_dynamic_cast<GUIInputController*>(inputNode->getController())->isDisabled();
307 if (disabled == true) {
308 return;
309 }
310
311 //
312 editMode = true;
313
314 //
315 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
316 auto keyControl = event->isControlDown();
317 auto keyChar = event->getKeyChar();
318 if (disabled == false &&
319 keyControl == false &&
320 (
321 (type == TYPE_STRING && keyChar >= 32 && keyChar < 127) ||
322 (type == TYPE_FLOAT && ((keyChar >= '0' && keyChar < '9') || (keyChar == '.') || keyChar == '-')) ||
323 (type == TYPE_INT && ((keyChar >= '0' && keyChar < '9') || keyChar == '-'))
324 )) {
325 event->setProcessed(true);
326 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_TYPED) {
327 if (index != -1 && selectionIndex != -1 && index != selectionIndex) {
328 textInputNode->getText().remove(Math::min(index, selectionIndex), Math::abs(index - selectionIndex));
329 index = Math::min(index, selectionIndex);
330 selectionIndex = -1;
331 }
332 if (textInputNode->getMaxLength() == 0 || textInputNode->getText().size() < textInputNode->getMaxLength()) {
333 if (type == TYPE_FLOAT && keyChar == '.' && textInputNode->getText().getString().find('.') != string::npos) {
334 // no op
335 } else
336 if (type == TYPE_FLOAT && keyChar == '-' && (textInputNode->getText().getString().find('-') != string::npos || index != 0)) {
337 // no op
338 } else
339 if (type == TYPE_INT && keyChar == '-' && (textInputNode->getText().getString().find('-') != string::npos || index != 0)) {
340 // no op
341 } else {
342 textInputNode->getText().insert(index, event->getKeyChar());
343 index++;
345 checkOffset();
346 required_dynamic_cast<GUIInputController*>(inputNode->getController())->onValueChange();
347 node->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(node->getParentControllerNode()));
348 }
349 }
350 }
351 } else {
352 auto keyControlX = false;
353 auto keyControlC = false;
354 auto keyControlV = false;
355 auto isKeyDown = event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
356 // copy, paste, cut
357 {
358 if (event->getKeyChar() == 24) {
359 keyControlX = isKeyDown;
360 event->setProcessed(true);
361 }
362 if (event->getKeyChar() == 3) {
363 keyControlC = isKeyDown;
364 event->setProcessed(true);
365 }
366 if (event->getKeyChar() == 22) {
367 keyControlV = isKeyDown;
368 event->setProcessed(true);
369 }
370 if (Character::toLowerCase(event->getKeyChar()) == 'x' && keyControl == true) {
371 keyControlX = isKeyDown;
372 event->setProcessed(true);
373 }
374 if (Character::toLowerCase(event->getKeyChar()) == 'c' && keyControl == true) {
375 keyControlC = isKeyDown;
376 event->setProcessed(true);
377 }
378 if (Character::toLowerCase(event->getKeyChar()) == 'v' && keyControl == true) {
379 keyControlV = isKeyDown;
380 event->setProcessed(true);
381 }
382 }
383 if (keyControlX == true) {
384 Application::getApplication()->setClipboardContent(StringTools::substring(textInputNode->getText().getString(), Math::min(index, selectionIndex), Math::max(index, selectionIndex)));
385 if (index != -1 && selectionIndex != -1 && index != selectionIndex) {
386 textInputNode->getText().remove(Math::min(index, selectionIndex), Math::abs(index - selectionIndex));
387 index = Math::min(index, selectionIndex);
388 selectionIndex = -1;
389 checkOffset();
390 }
391 } else
392 if (keyControlC == true) {
393 if (index != -1 && selectionIndex != -1 && index != selectionIndex) {
394 Application::getApplication()->setClipboardContent(StringTools::substring(textInputNode->getText().getString(), Math::min(index, selectionIndex), Math::max(index, selectionIndex)));
395 }
396 } else
397 if (keyControlV == true) {
398 auto clipboardContent = Application::getApplication()->getClipboardContent();
399 if (index != -1 && selectionIndex != -1 && index != selectionIndex) {
400 if (textInputNode->getMaxLength() == 0 || textInputNode->getText().size() - Math::abs(index - selectionIndex) + clipboardContent.size() < textInputNode->getMaxLength()) {
401 textInputNode->getText().remove(Math::min(index, selectionIndex), Math::abs(index - selectionIndex));
402 index = Math::min(index, selectionIndex);
403 selectionIndex = -1;
404 }
405 }
406 if (textInputNode->getMaxLength() == 0 || textInputNode->getText().size() + clipboardContent.size() < textInputNode->getMaxLength()) {
407 textInputNode->getText().insert(index, clipboardContent);
408 index+= clipboardContent.size();
409 checkOffset();
410 }
411 } else {
412 // navigation, delete, return
413 switch (event->getKeyCode()) {
414 case GUIKeyboardEvent::KEYCODE_LEFT: {
415 event->setProcessed(true);
416 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
417 if (event->isShiftDown() == false) {
418 selectionIndex = -1;
419 } else {
421 }
422 if (index > 0) {
423 index--;
424 checkOffset();
426 }
427 }
428 }
429 break;
430 case GUIKeyboardEvent::KEYCODE_RIGHT: {
431 event->setProcessed(true);
432 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
433 if (event->isShiftDown() == false) {
434 selectionIndex = -1;
435 } else {
437 }
438 if (index < textInputNode->getText().size()) {
439 index++;
440 checkOffset();
442 }
443 }
444 }
445 break;
446 case GUIKeyboardEvent::KEYCODE_BACKSPACE: {
447 if (disabled == false) {
448 event->setProcessed(true);
449 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
450 if (index != -1 && selectionIndex != -1 && index != selectionIndex) {
451 textInputNode->getText().remove(Math::min(index, selectionIndex), Math::abs(index - selectionIndex));
452 index = Math::min(index, selectionIndex);
453 selectionIndex = -1;
454 } else
455 if (index > 0) {
456 textInputNode->getText().remove(index - 1, 1);
457 index--;
458 checkOffset();
460 required_dynamic_cast<GUIInputController*>(inputNode->getController())->onValueChange();
461 node->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(node->getParentControllerNode()));
462 }
463 }
464 }
465 }
466 break;
467 case GUIKeyboardEvent::KEYCODE_DELETE: {
468 if (disabled == false) {
469 event->setProcessed(true);
470 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
471 if (index != -1 && selectionIndex != -1 && index != selectionIndex) {
472 textInputNode->getText().remove(Math::min(index, selectionIndex), Math::abs(index - selectionIndex));
473 index = Math::min(index, selectionIndex);
474 selectionIndex = -1;
475 } else
476 if (index < textInputNode->getText().size()) {
477 textInputNode->getText().remove(index, 1);
479 required_dynamic_cast<GUIInputController*>(inputNode->getController())->onValueChange();
480 node->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(node->getParentControllerNode()));
481 }
482 }
483 }
484 }
485 break;
486 case GUIKeyboardEvent::KEYCODE_RETURN: {
487 if (disabled == false) {
488 event->setProcessed(true);
489 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
491 }
492 }
493 }
494 break;
495 case GUIKeyboardEvent::KEYCODE_POS1: {
496 if (disabled == false) {
497 event->setProcessed(true);
499 if (event->isShiftDown() == false) {
500 selectionIndex = -1;
501 } else {
503 }
504 index = 0;
505 checkOffset();
506 }
507 }
508 break;
509 case GUIKeyboardEvent::KEYCODE_END: {
510 if (disabled == false) {
512 if (event->isShiftDown() == false) {
513 selectionIndex = -1;
514 } else {
516 }
517 index = textInputNode->getText().size();
518 checkOffset();
519 }
520 }
521 break;
522 }
523 }
524 }
525}
526
528{
529}
530
532{
533}
534
536{
537 formatText();
538 editMode = false;
539 index = 0;
540 selectionIndex = -1;
541}
542
544{
545 return false;
546}
547
549{
550 return value;
551}
552
554{
555}
556
558{
559 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
560 if (index < 0) index = 0;
561 if (index >= textInputNode->getText().size()) index = textInputNode->getText().size();
562 if (selectionIndex != -1) {
563 if (selectionIndex < 0) selectionIndex = 0;
564 if (selectionIndex >= textInputNode->getText().size()) selectionIndex = textInputNode->getText().size();
565 }
566 checkOffset();
568}
569
571{
572 return editMode;
573}
574
576{
577 auto textInputNode = required_dynamic_cast<GUIInputInternalNode*>(node);
578 auto originalText = textInputNode->getText().getString();
579 switch (type) {
580 case TYPE_STRING:
581 break;
582 case TYPE_FLOAT:
583 {
584 auto stringValue = StringTools::trim(textInputNode->getText().getString());
585 auto value = stringValue == "-"?0.0f:Float::parse(stringValue);
586 if (haveMin == true) {
587 if (value < min) value = min;
588 }
589 if (haveMax == true) {
590 if (value > max) value = max;
591 }
592 if (value == 0.0f && StringTools::startsWith(stringValue, "-") == true && (haveMin == false || min < 0.0f)) {
593 textInputNode->getText().set("-");
594 textInputNode->getText().append(value, decimals);
595 } else {
596 textInputNode->getText().set(value, decimals);
597 }
598 }
599 break;
600 case TYPE_INT:
601 {
602 auto stringValue = StringTools::trim(textInputNode->getText().getString());
603 auto value = stringValue == "-"?0:Integer::parse(stringValue);
604 if (haveMin == true) {
605 if (value < static_cast<int>(min)) value = static_cast<int>(min);
606 }
607 if (haveMax == true) {
608 if (value > static_cast<int>(max)) value = static_cast<int>(max);
609 }
610 if (value == 0 && StringTools::startsWith(stringValue, "-") == true && (haveMin == false || min < 0.0f)) {
611 textInputNode->getText().set("-");
612 textInputNode->getText().append(value);
613 } else {
614 textInputNode->getText().set(value);
615 }
616 }
617 break;
618 }
619 if (originalText != textInputNode->getText().getString()) {
621 }
622}
623
625{
626}
#define MOUSE_CURSOR_NORMAL
Definition: Application.h:13
#define MOUSE_CURSOR_DISABLED
Definition: Application.h:11
#define MOUSE_BUTTON_LEFT
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
GUI module class.
Definition: GUI.h:66
const string getOptionValue(const string &option)
void formatText()
Format text according to options.
void initialize() override
Initialize controller after element has been created.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
void setValue(const MutableString &value) override
Set value.
void handleMouseEvent(GUINode *node, GUIMouseEvent *event) override
Handle mouse event.
void tick() override
Tick method will be executed once per frame.
void setDisabled(bool disabled) override
Set disabled.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
GUIParentNode * getParentControllerNode()
Definition: GUINode.cpp:1053
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
Definition: GUINode.cpp:973
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUINodeController * getController()
Definition: GUINode.h:586
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
void delegateActionPerformed(GUIActionListenerType type, GUIElementNode *node)
Delegate action performed.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
Character class.
Definition: Character.h:15
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
MutableString & append(char c)
Append character.
MutableString & set(char c)
Set character.
String tools class.
Definition: StringTools.h:20
Time utility class.
Definition: Time.h:21
GUI node border entity.
GUI node padding entity.