InputEvents.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. //
  2. // Urho3D Engine
  3. // Copyright (c) 2008-2012 Lasse Öörni
  4. //
  5. // Permission is hereby granted, free of charge, to any person obtaining a copy
  6. // of this software and associated documentation files (the "Software"), to deal
  7. // in the Software without restriction, including without limitation the rights
  8. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. // copies of the Software, and to permit persons to whom the Software is
  10. // furnished to do so, subject to the following conditions:
  11. //
  12. // The above copyright notice and this permission notice shall be included in
  13. // all copies or substantial portions of the Software.
  14. //
  15. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. // THE SOFTWARE.
  22. //
  23. #pragma once
  24. #include "Object.h"
  25. #ifdef USE_OPENGL
  26. #include <SDL_keycode.h>
  27. #endif
  28. /// Mouse button pressed.
  29. EVENT(E_MOUSEBUTTONDOWN, MouseButtonDown)
  30. {
  31. PARAM(P_BUTTON, Button); // int
  32. PARAM(P_BUTTONS, Buttons); // int
  33. PARAM(P_QUALIFIERS, Qualifiers); // int
  34. }
  35. /// Mouse button released.
  36. EVENT(E_MOUSEBUTTONUP, MouseButtonUp)
  37. {
  38. PARAM(P_BUTTON, Button); // int
  39. PARAM(P_BUTTONS, Buttons); // int
  40. PARAM(P_QUALIFIERS, Qualifiers); // int
  41. }
  42. /// Mouse moved.
  43. EVENT(E_MOUSEMOVE, MouseMove)
  44. {
  45. PARAM(P_DX, DX); // int
  46. PARAM(P_DY, DY); // int
  47. PARAM(P_BUTTONS, Buttons); // int
  48. PARAM(P_QUALIFIERS, Qualifiers); // int
  49. }
  50. /// Mouse wheel moved.
  51. EVENT(E_MOUSEWHEEL, MouseWheel)
  52. {
  53. PARAM(P_WHEEL, Wheel); // int
  54. PARAM(P_BUTTONS, Buttons); // int
  55. PARAM(P_QUALIFIERS, Qualifiers); // int
  56. }
  57. /// Key pressed.
  58. EVENT(E_KEYDOWN, KeyDown)
  59. {
  60. PARAM(P_KEY, Key); // int
  61. PARAM(P_BUTTONS, Buttons); // int
  62. PARAM(P_QUALIFIERS, Qualifiers); // int
  63. PARAM(P_REPEAT, Repeat); // bool
  64. }
  65. /// Key released.
  66. EVENT(E_KEYUP, KeyUp)
  67. {
  68. PARAM(P_KEY, Key); // int
  69. PARAM(P_BUTTONS, Buttons); // int
  70. PARAM(P_QUALIFIERS, Qualifiers); // int
  71. }
  72. /// Character typed on the keyboard.
  73. EVENT(E_CHAR, Char)
  74. {
  75. PARAM(P_CHAR, Char); // int
  76. PARAM(P_BUTTONS, Buttons); // int
  77. PARAM(P_QUALIFIERS, Qualifiers); // int
  78. }
  79. /// Finger pressed on the screen.
  80. EVENT(E_TOUCHBEGIN, TouchBegin)
  81. {
  82. PARAM(P_TOUCHID, TouchID); // int
  83. PARAM(P_X, X); // int
  84. PARAM(P_Y, Y); // int
  85. PARAM(P_PRESSURE, Pressure); // int
  86. }
  87. /// Finger released from the screen.
  88. EVENT(E_TOUCHEND, TouchEnd)
  89. {
  90. PARAM(P_TOUCHID, TouchID); // int
  91. PARAM(P_X, X); // int
  92. PARAM(P_Y, Y); // int
  93. }
  94. /// Finger moved on the screen.
  95. EVENT(E_TOUCHMOVE, TouchMove)
  96. {
  97. PARAM(P_TOUCHID, TouchID); // int
  98. PARAM(P_X, X); // int
  99. PARAM(P_Y, Y); // int
  100. PARAM(P_DX, DX); // int
  101. PARAM(P_DY, DY); // int
  102. PARAM(P_PRESSURE, Pressure); // int
  103. }
  104. /// Application activation state changed.
  105. EVENT(E_ACTIVATION, Activation)
  106. {
  107. PARAM(P_ACTIVE, Active); // bool
  108. PARAM(P_MINIMIZED, Minimized); // bool
  109. }
  110. static const int MOUSEB_LEFT = 1;
  111. static const int MOUSEB_MIDDLE = 2;
  112. static const int MOUSEB_RIGHT = 4;
  113. static const int QUAL_SHIFT = 1;
  114. static const int QUAL_CTRL = 2;
  115. static const int QUAL_ALT = 4;
  116. static const int QUAL_ANY = 8;
  117. #ifndef USE_OPENGL
  118. static const int KEY_BACKSPACE = 0x08;
  119. static const int KEY_TAB = 0x09;
  120. static const int KEY_RETURN = 0x0d;
  121. static const int KEY_PAUSE = 0x13;
  122. static const int KEY_CAPSLOCK = 0x14;
  123. static const int KEY_ESC = 0x1b;
  124. static const int KEY_SPACE = 0x20;
  125. static const int KEY_PAGEUP = 0x21;
  126. static const int KEY_PAGEDOWN = 0x22;
  127. static const int KEY_END = 0x23;
  128. static const int KEY_HOME = 0x24;
  129. static const int KEY_LEFT = 0x25;
  130. static const int KEY_UP = 0x26;
  131. static const int KEY_RIGHT = 0x27;
  132. static const int KEY_DOWN = 0x28;
  133. static const int KEY_INSERT = 0x2d;
  134. static const int KEY_DELETE = 0x2e;
  135. static const int KEY_LWIN = 0x5b;
  136. static const int KEY_RWIN = 0x5c;
  137. static const int KEY_APPS = 0x5d;
  138. static const int KEY_NUMPAD0 = 0x60;
  139. static const int KEY_NUMPAD1 = 0x61;
  140. static const int KEY_NUMPAD2 = 0x62;
  141. static const int KEY_NUMPAD3 = 0x63;
  142. static const int KEY_NUMPAD4 = 0x64;
  143. static const int KEY_NUMPAD5 = 0x65;
  144. static const int KEY_NUMPAD6 = 0x66;
  145. static const int KEY_NUMPAD7 = 0x67;
  146. static const int KEY_NUMPAD8 = 0x68;
  147. static const int KEY_NUMPAD9 = 0x69;
  148. static const int KEY_MULTIPLY = 0x6a;
  149. static const int KEY_ADD = 0x6b;
  150. static const int KEY_SUBTRACT = 0x6d;
  151. static const int KEY_DECIMAL = 0x6e;
  152. static const int KEY_DIVIDE = 0x6f;
  153. static const int KEY_F1 = 0x70;
  154. static const int KEY_F2 = 0x71;
  155. static const int KEY_F3 = 0x72;
  156. static const int KEY_F4 = 0x73;
  157. static const int KEY_F5 = 0x74;
  158. static const int KEY_F6 = 0x75;
  159. static const int KEY_F7 = 0x76;
  160. static const int KEY_F8 = 0x77;
  161. static const int KEY_F9 = 0x78;
  162. static const int KEY_F10 = 0x79;
  163. static const int KEY_F11 = 0x7a;
  164. static const int KEY_F12 = 0x7b;
  165. static const int KEY_F13 = 0x7c;
  166. static const int KEY_F14 = 0x7d;
  167. static const int KEY_F15 = 0x7e;
  168. static const int KEY_F16 = 0x7f;
  169. static const int KEY_F17 = 0x80;
  170. static const int KEY_F18 = 0x81;
  171. static const int KEY_F19 = 0x82;
  172. static const int KEY_F20 = 0x83;
  173. static const int KEY_F21 = 0x84;
  174. static const int KEY_F22 = 0x85;
  175. static const int KEY_F23 = 0x86;
  176. static const int KEY_F24 = 0x87;
  177. static const int KEY_NUMLOCK = 0x90;
  178. static const int KEY_SCROLLLOCK = 0x91;
  179. static const int KEY_LSHIFT = 0xa0;
  180. static const int KEY_RSHIFT = 0xa1;
  181. static const int KEY_LCTRL = 0xa2;
  182. static const int KEY_RCTRL = 0xa3;
  183. static const int KEY_LALT = 0xa4;
  184. static const int KEY_RALT = 0xa5;
  185. #else
  186. static const int KEY_BACKSPACE = SDLK_BACKSPACE;
  187. static const int KEY_TAB = SDLK_TAB;
  188. static const int KEY_RETURN = SDLK_RETURN;
  189. static const int KEY_SHIFT = SDLK_LSHIFT;
  190. static const int KEY_CTRL = SDLK_LCTRL;
  191. static const int KEY_ALT = SDLK_LALT;
  192. static const int KEY_PAUSE = SDLK_PAUSE;
  193. static const int KEY_CAPSLOCK = SDLK_CAPSLOCK;
  194. static const int KEY_ESC = SDLK_ESCAPE;
  195. static const int KEY_SPACE = SDLK_SPACE;
  196. static const int KEY_PAGEUP = SDLK_PAGEUP;
  197. static const int KEY_PAGEDOWN = SDLK_PAGEDOWN;
  198. static const int KEY_END = SDLK_END;
  199. static const int KEY_HOME = SDLK_HOME;
  200. static const int KEY_LEFT = SDLK_LEFT;
  201. static const int KEY_UP = SDLK_UP;
  202. static const int KEY_RIGHT = SDLK_RIGHT;
  203. static const int KEY_DOWN = SDLK_DOWN;
  204. static const int KEY_SELECT = SDLK_SELECT;
  205. static const int KEY_PRINTSCREEN = SDLK_PRINTSCREEN;
  206. static const int KEY_INSERT = SDLK_INSERT;
  207. static const int KEY_DELETE = SDLK_DELETE;
  208. static const int KEY_LWIN = SDLK_LGUI;
  209. static const int KEY_RWIN = SDLK_RGUI;
  210. static const int KEY_APPS = SDLK_APPLICATION;
  211. static const int KEY_NUMPAD0 = SDLK_KP_0;
  212. static const int KEY_NUMPAD1 = SDLK_KP_1;
  213. static const int KEY_NUMPAD2 = SDLK_KP_2;
  214. static const int KEY_NUMPAD3 = SDLK_KP_3;
  215. static const int KEY_NUMPAD4 = SDLK_KP_4;
  216. static const int KEY_NUMPAD5 = SDLK_KP_5;
  217. static const int KEY_NUMPAD6 = SDLK_KP_6;
  218. static const int KEY_NUMPAD7 = SDLK_KP_7;
  219. static const int KEY_NUMPAD8 = SDLK_KP_8;
  220. static const int KEY_NUMPAD9 = SDLK_KP_9;
  221. static const int KEY_MULTIPLY = SDLK_KP_MULTIPLY;
  222. static const int KEY_ADD = SDLK_KP_PLUS;
  223. static const int KEY_SUBTRACT = SDLK_KP_MINUS;
  224. static const int KEY_DECIMAL = SDLK_KP_PERIOD;
  225. static const int KEY_DIVIDE = SDLK_KP_DIVIDE;
  226. static const int KEY_F1 = SDLK_F1;
  227. static const int KEY_F2 = SDLK_F2;
  228. static const int KEY_F3 = SDLK_F3;
  229. static const int KEY_F4 = SDLK_F4;
  230. static const int KEY_F5 = SDLK_F5;
  231. static const int KEY_F6 = SDLK_F6;
  232. static const int KEY_F7 = SDLK_F7;
  233. static const int KEY_F8 = SDLK_F8;
  234. static const int KEY_F9 = SDLK_F9;
  235. static const int KEY_F10 = SDLK_F10;
  236. static const int KEY_F11 = SDLK_F11;
  237. static const int KEY_F12 = SDLK_F12;
  238. static const int KEY_F13 = SDLK_F13;
  239. static const int KEY_F14 = SDLK_F14;
  240. static const int KEY_F15 = SDLK_F15;
  241. static const int KEY_F16 = SDLK_F16;
  242. static const int KEY_F17 = SDLK_F17;
  243. static const int KEY_F18 = SDLK_F18;
  244. static const int KEY_F19 = SDLK_F19;
  245. static const int KEY_F20 = SDLK_F20;
  246. static const int KEY_F21 = SDLK_F21;
  247. static const int KEY_F22 = SDLK_F22;
  248. static const int KEY_F23 = SDLK_F23;
  249. static const int KEY_F24 = SDLK_F24;
  250. static const int KEY_NUMLOCK = SDLK_NUMLOCKCLEAR;
  251. static const int KEY_SCROLLLOCK = SDLK_SCROLLLOCK;
  252. static const int KEY_LSHIFT = SDLK_LSHIFT;
  253. static const int KEY_RSHIFT = SDLK_RSHIFT;
  254. static const int KEY_LCTRL = SDLK_LCTRL;
  255. static const int KEY_RCTRL = SDLK_RCTRL;
  256. static const int KEY_LALT = SDLK_LALT;
  257. static const int KEY_RALT = SDLK_RALT;
  258. #endif