mouse_emu.ino 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. mouse_emu.ino
  3. Author: tobychui
  4. This code file handle keyboard emulation related functionality
  5. When opr_type is set to 0x02, the sub-handler will process the
  6. request here.
  7. -- Mouse Opcode --
  8. 0x00 = Reserved
  9. 0x01 = Mouse Click
  10. 0x02 = Mouse Press
  11. 0x03 = Mouse Release
  12. 0x00 = Left Button
  13. 0x01 = Right Button
  14. 0x02 = Middle button
  15. 0x04 = Mouse Position Presets
  16. 0x00 = [0,0] (top left)
  17. 0x01 = [0, max] (bottom left)
  18. 0x02 = [max, 0] (top right)
  19. 0x03 = [max, max] (bottom right)
  20. 0x05 = Release All Mouse Buttons
  21. */
  22. #include "usbkvm_fw.h"
  23. //#define ENABLE_MOUSE_DEBUG
  24. //Move cursor back to [0,0] position
  25. void reset_cursor_to_home() {
  26. for (int i = 0; i < 16; i++) {
  27. //16 loops should be able to home a mouse to [0,0] from a 4k display
  28. Mouse_move(-1 * (int8_t)127, -1 * (int8_t)127);
  29. }
  30. }
  31. //Move the cursor to target position, with multiplier of 10x
  32. void move_cursor_to_pos(uint8_t x, uint8_t y) {
  33. for (int i = 0; i < 10; i++) {
  34. Mouse_move((int8_t)x, (int8_t)y);
  35. }
  36. }
  37. //Handle mouse move, x, y, and direction of x, y (positive: 0x00, negative 0x01)
  38. uint8_t mouse_move(uint8_t ux, uint8_t uy, uint8_t dx, uint8_t dy) {
  39. if (ux > 0x7F) ux = 0x7F;
  40. if (uy > 0x7F) uy = 0x7F;
  41. int8_t x = ux;
  42. int8_t y = uy;
  43. if (dx == 0x01)
  44. x = -x;
  45. if (dy == 0x01)
  46. y = -y;
  47. #ifdef ENABLE_MOUSE_DEBUG
  48. Serial0_write(resp_start_of_info_msg);
  49. Serial0_write(ux);
  50. Serial0_write(uy);
  51. Serial0_write(resp_end_of_msg);
  52. #endif
  53. Mouse_move(x, y);
  54. return resp_ok;
  55. }
  56. //Handle mouse move, direction accept 0x00 (down / right) or 0x01 (up / left)
  57. uint8_t mouse_wheel(uint8_t direction, uint8_t utilt) {
  58. int8_t tilt;
  59. if (utilt >= 0x7E) {
  60. tilt = 126;
  61. }else{
  62. tilt = (int8_t)utilt;
  63. }
  64. if (direction == 0x01) {
  65. //Down
  66. tilt = tilt * -1;
  67. }
  68. #ifdef ENABLE_MOUSE_DEBUG
  69. Serial0_write(resp_start_of_info_msg);
  70. Serial0_write(tilt);
  71. Serial0_write(resp_end_of_msg);
  72. #endif
  73. Mouse_scroll(tilt);
  74. return resp_ok;
  75. }
  76. uint8_t mouse_emulation(uint8_t subtype, uint8_t value) {
  77. switch (subtype) {
  78. case SUBTYPE_MOUSE_CLICK:
  79. if (value == PAYLOAD_MOUSE_BTN_LEFT) {
  80. Mouse_click(MOUSE_LEFT);
  81. } else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
  82. Mouse_click(MOUSE_RIGHT);
  83. } else if (value == PAYLOAD_MOUSE_BTN_MID) {
  84. Mouse_click(MOUSE_MIDDLE);
  85. } else {
  86. return resp_invalid_key_value;
  87. }
  88. return resp_ok;
  89. case SUBTYPE_MOUSE_PRESS:
  90. if (value == PAYLOAD_MOUSE_BTN_LEFT) {
  91. Mouse_press(MOUSE_LEFT);
  92. } else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
  93. Mouse_press(MOUSE_RIGHT);
  94. } else if (value == PAYLOAD_MOUSE_BTN_MID) {
  95. Mouse_press(MOUSE_MIDDLE);
  96. } else {
  97. return resp_invalid_key_value;
  98. }
  99. return resp_ok;
  100. case SUBTYPE_MOUSE_RELEASE:
  101. if (value == PAYLOAD_MOUSE_BTN_LEFT) {
  102. Mouse_release(MOUSE_LEFT);
  103. } else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
  104. Mouse_release(MOUSE_RIGHT);
  105. } else if (value == PAYLOAD_MOUSE_BTN_MID) {
  106. Mouse_release(MOUSE_MIDDLE);
  107. } else {
  108. return resp_invalid_key_value;
  109. }
  110. return resp_ok;
  111. case SUBTYPE_MOUSE_SETPOS:
  112. if (value == 0x00) {
  113. reset_cursor_to_home();
  114. } else if (value == 0x01) {
  115. reset_cursor_to_home();
  116. move_cursor_to_pos(0, 127);
  117. } else if (value == 0x02) {
  118. reset_cursor_to_home();
  119. move_cursor_to_pos(127, 0);
  120. } else if (value == 0x03) {
  121. reset_cursor_to_home();
  122. move_cursor_to_pos(127, 127);
  123. } else {
  124. return resp_invalid_key_value;
  125. }
  126. return resp_ok;
  127. case SUBTYPE_MOUSE_RESET:
  128. Mouse_release(MOUSE_LEFT);
  129. Mouse_release(MOUSE_RIGHT);
  130. Mouse_release(MOUSE_MIDDLE);
  131. delay(MIN_KEY_EVENTS_DELAY);
  132. return resp_ok;
  133. default:
  134. return resp_invalid_opr_type;
  135. }
  136. return resp_invalid_opr_type;
  137. }