mouse_emu.ino 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 > 0x7E) ux = 0x7E;
  40. if (uy > 0x7E) uy = 0x7E;
  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. delay(MIN_KEY_EVENTS_DELAY);
  75. Mouse_scroll(0);
  76. return resp_ok;
  77. }
  78. uint8_t mouse_emulation(uint8_t subtype, uint8_t value) {
  79. switch (subtype) {
  80. case SUBTYPE_MOUSE_CLICK:
  81. if (value == PAYLOAD_MOUSE_BTN_LEFT) {
  82. Mouse_click(MOUSE_LEFT);
  83. } else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
  84. Mouse_click(MOUSE_RIGHT);
  85. } else if (value == PAYLOAD_MOUSE_BTN_MID) {
  86. Mouse_click(MOUSE_MIDDLE);
  87. } else {
  88. return resp_invalid_key_value;
  89. }
  90. return resp_ok;
  91. case SUBTYPE_MOUSE_PRESS:
  92. if (value == PAYLOAD_MOUSE_BTN_LEFT) {
  93. Mouse_press(MOUSE_LEFT);
  94. } else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
  95. Mouse_press(MOUSE_RIGHT);
  96. } else if (value == PAYLOAD_MOUSE_BTN_MID) {
  97. Mouse_press(MOUSE_MIDDLE);
  98. } else {
  99. return resp_invalid_key_value;
  100. }
  101. return resp_ok;
  102. case SUBTYPE_MOUSE_RELEASE:
  103. if (value == PAYLOAD_MOUSE_BTN_LEFT) {
  104. Mouse_release(MOUSE_LEFT);
  105. } else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
  106. Mouse_release(MOUSE_RIGHT);
  107. } else if (value == PAYLOAD_MOUSE_BTN_MID) {
  108. Mouse_release(MOUSE_MIDDLE);
  109. } else {
  110. return resp_invalid_key_value;
  111. }
  112. return resp_ok;
  113. case SUBTYPE_MOUSE_SETPOS:
  114. if (value == 0x00) {
  115. reset_cursor_to_home();
  116. } else if (value == 0x01) {
  117. reset_cursor_to_home();
  118. move_cursor_to_pos(0, 127);
  119. } else if (value == 0x02) {
  120. reset_cursor_to_home();
  121. move_cursor_to_pos(127, 0);
  122. } else if (value == 0x03) {
  123. reset_cursor_to_home();
  124. move_cursor_to_pos(127, 127);
  125. } else {
  126. return resp_invalid_key_value;
  127. }
  128. return resp_ok;
  129. case SUBTYPE_MOUSE_RESET:
  130. Mouse_release(MOUSE_LEFT);
  131. Mouse_release(MOUSE_RIGHT);
  132. Mouse_release(MOUSE_MIDDLE);
  133. delay(MIN_KEY_EVENTS_DELAY);
  134. return resp_ok;
  135. default:
  136. return resp_invalid_opr_type;
  137. }
  138. return resp_invalid_opr_type;
  139. }