TextInput.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #include <utility>
  2. #include <GLFW/glfw3.h>
  3. #include "input/TextInput.h"
  4. TextInput::TextInput() : limit(256), active(false) {
  5. }
  6. void TextInput::setLimit(int limit) {
  7. TextInput::limit = limit;
  8. while(input.getLength() > limit) {
  9. input.removeBySwap(limit);
  10. }
  11. }
  12. void TextInput::reset() {
  13. input.clear();
  14. cursor = 0;
  15. }
  16. void TextInput::setActive(bool b) {
  17. active = b;
  18. }
  19. void TextInput::onKeyEvent(int key, int scancode, int action, int mods) {
  20. if(!active || action == GLFW_RELEASE) {
  21. return;
  22. }
  23. (void)scancode;
  24. (void)mods;
  25. switch(key) {
  26. case GLFW_KEY_BACKSPACE:
  27. if(input.getLength() > cursor - 1 && cursor > 0) {
  28. input.remove(cursor - 1);
  29. cursor--;
  30. }
  31. break;
  32. case GLFW_KEY_LEFT:
  33. if(cursor > 0) {
  34. cursor--;
  35. }
  36. break;
  37. case GLFW_KEY_RIGHT:
  38. if(cursor < input.getLength()) {
  39. cursor++;
  40. }
  41. break;
  42. }
  43. }
  44. void TextInput::onCharEvent(unsigned int codepoint) {
  45. if(!active || input.getLength() >= limit) {
  46. return;
  47. }
  48. input.add(codepoint);
  49. for(int i = input.getLength() - 1; i > cursor; i--) {
  50. std::swap(input[i], input[i - 1]);
  51. }
  52. cursor++;
  53. }
  54. int TextInput::getCursor() const {
  55. return cursor;
  56. }