SDL_sysevents.cc
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:13k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_sysevents.cc,v 1.4 2002/04/22 21:38:04 wmay Exp $";
  21. #endif
  22. #include <support/UTF8.h>
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include "SDL_error.h"
  26. #include "SDL_events.h"
  27. #include "SDL_BWin.h"
  28. #include "SDL_lowvideo.h"
  29. extern "C" {
  30. #include "SDL_events_c.h"
  31. #include "SDL_sysevents.h"
  32. #include "SDL_sysevents_c.h"
  33. /* A note on why the polling loops are necessary.
  34.    The BeOS Preview 2 implementation of BView->MouseMoved() only notifies
  35.    the view when the mouse enters or leaves the view.  The documentation 
  36.    says that you should loop and use GetMouse() to detect mouse motion.
  37.    The BeOS Preview 2 implementation of BView->KeyDown() and BView->KeyUp()
  38.    are only called for keys that generate ASCII characters.  Since we want
  39.    to act like a low level raw keyboard, we need to poll the state of the
  40.    keys instead of catching the keys in callbacks.
  41.    These are documented portions of the BeBook for Preview Release 2
  42. */
  43.  
  44. /* Table to convert scancodes to SDL virtual keys */
  45. static SDLKey keymap[128];
  46. /* Function to convert from a key scancode to a UNICODE character */
  47. static key_map *be_keymap;
  48. static int32 *option_caps_map[2], *option_map[2], *caps_map[2], *normal_map[2];
  49. static char *unicode_map;
  50. static Uint16 TranslateScancode(int scancode)
  51. {
  52. SDLMod modstate;
  53. int shifted;
  54. int32 index; /* Index into system unicode map */
  55. Uint16 unicode;
  56. /* Set the default character -- no character */
  57. unicode = 0;
  58. /* See whether or not the shift state is set */
  59. modstate = SDL_GetModState();
  60. if ( modstate & KMOD_SHIFT ) {
  61. shifted = 1;
  62. } else {
  63. shifted = 0;
  64. }
  65. if ( modstate & KMOD_NUM ) {
  66. /* If numlock is on, numeric keypad keys have shift state inverted */
  67. switch (keymap[scancode]) {
  68.     case SDLK_KP0:
  69.     case SDLK_KP1:
  70.     case SDLK_KP2:
  71.     case SDLK_KP3:
  72.     case SDLK_KP4:
  73.     case SDLK_KP5:
  74.     case SDLK_KP6:
  75.     case SDLK_KP7:
  76.     case SDLK_KP8:
  77.     case SDLK_KP9:
  78.     case SDLK_KP_PERIOD:
  79.     case SDLK_KP_DIVIDE:
  80.     case SDLK_KP_MULTIPLY:
  81.     case SDLK_KP_MINUS:
  82.     case SDLK_KP_PLUS:
  83.     case SDLK_KP_ENTER:
  84.     case SDLK_KP_EQUALS:
  85. shifted = !shifted;
  86. break;
  87.     default:
  88. break;
  89. }
  90. }
  91. /* Get the index based on modifier state */
  92. if ( modstate & KMOD_CTRL )
  93. index = be_keymap->control_map[scancode];
  94. else
  95. if ( (modstate & KMOD_META) && (modstate & KMOD_CAPS) )
  96. index = option_caps_map[shifted][scancode];
  97. else
  98. if ( modstate & KMOD_META )
  99. index = option_map[shifted][scancode];
  100. else
  101. if ( modstate & KMOD_CAPS )
  102. index = caps_map[shifted][scancode];
  103. else
  104. index = normal_map[shifted][scancode];
  105. /* If there is a mapping, convert character from UTF-8 to UNICODE */
  106. if ( unicode_map[index] ) {
  107. int32 state, srclen, dstlen;
  108. unsigned char destbuf[2];
  109. state = 0;
  110. srclen = unicode_map[index++];
  111. dstlen = sizeof(destbuf);
  112. convert_from_utf8(B_UNICODE_CONVERSION,
  113. &unicode_map[index], &srclen, (char *)destbuf, &dstlen,
  114. &state);
  115. unicode = destbuf[0];
  116. unicode <<= 8;
  117. unicode |= destbuf[1];
  118. /* Keyboard input maps newline to carriage return */
  119. if ( unicode == 'n' ) {
  120. unicode = 'r';
  121. }
  122. /* For some reason function keys map to control characters */
  123. # define CTRL(X) ((X)-'@')
  124. switch (unicode) {
  125.     case CTRL('A'):
  126.     case CTRL('B'):
  127.     case CTRL('C'):
  128.     case CTRL('D'):
  129.     case CTRL('E'):
  130.     case CTRL('K'):
  131.     case CTRL('L'):
  132.     case CTRL('P'):
  133. if ( ! (modstate & KMOD_CTRL) )
  134. unicode = 0;
  135. break;
  136.     default:
  137. break;
  138. }
  139. }
  140. return(unicode);
  141. }
  142. /* Function to translate a keyboard transition and queue the key event */
  143. static void QueueKey(int scancode, int pressed)
  144. {
  145. SDL_keysym keysym;
  146. /* Set the keysym information */
  147. keysym.scancode = scancode;
  148. keysym.sym = keymap[scancode];
  149. keysym.mod = KMOD_NONE;
  150. if ( SDL_TranslateUNICODE ) {
  151. keysym.unicode = TranslateScancode(scancode);
  152. } else {
  153. keysym.unicode = 0;
  154. }
  155. /* NUMLOCK and CAPSLOCK are implemented as double-presses in reality */
  156. if ( (keysym.sym == SDLK_NUMLOCK) || (keysym.sym == SDLK_CAPSLOCK) ) {
  157. pressed = 1;
  158. }
  159. /* Queue the key event */
  160. if ( pressed ) {
  161. SDL_PrivateKeyboard(SDL_PRESSED, &keysym);
  162. } else {
  163. SDL_PrivateKeyboard(SDL_RELEASED, &keysym);
  164. }
  165. }
  166. /* This is special because we know it will be run in a loop in a separate
  167.    thread.  Normally this function should loop as long as there are input
  168.    states changing, i.e. new events arriving.
  169. */
  170. void BE_PumpEvents(_THIS)
  171. {
  172. BView *view;
  173. BRect bounds;
  174. BPoint point;
  175. uint32 buttons;
  176. const uint32 button_masks[3] = {
  177. B_PRIMARY_MOUSE_BUTTON,
  178. B_TERTIARY_MOUSE_BUTTON, 
  179. B_SECONDARY_MOUSE_BUTTON,
  180. };
  181. unsigned int    i, j;
  182. /* Check out the mouse buttons and position (slight race condition) */
  183. if ( SDL_Win->Lock() ) {
  184. /* Don't do anything if we have no view */
  185. view = SDL_Win->View();
  186. if ( ! view ) {
  187. SDL_Win->Unlock();
  188. return;
  189. }
  190. bounds = view->Bounds();
  191. /* Get new input state, if still active */
  192. if ( SDL_Win->IsActive() ) {
  193. key_flip = !key_flip;
  194. get_key_info(&keyinfo[key_flip]);
  195. view->GetMouse(&point, &buttons, true);
  196. } else {
  197. key_flip = key_flip;
  198. point = last_point;
  199. buttons = last_buttons;
  200. }
  201. SDL_Win->Unlock();
  202. } else {
  203. return;
  204. }
  205. /* If our view is active, we'll find key changes here */
  206. if ( memcmp(keyinfo[0].key_states, keyinfo[1].key_states, 16) != 0 ) {
  207. for ( i=0; i<16; ++i ) {
  208. Uint8 new_state, transition;
  209. new_state = keyinfo[key_flip].key_states[i];
  210. transition = keyinfo[!key_flip].key_states[i] ^
  211. keyinfo[ key_flip].key_states[i];
  212. for ( j=0; j<8; ++j ) {
  213. if ( transition&0x80 )
  214. QueueKey(i*8+j, new_state&0x80);
  215. transition <<= 1;
  216. new_state <<= 1;
  217. }
  218. }
  219. }
  220. /* We check keyboard, but not mouse if mouse isn't in window */
  221. if ( ! bounds.Contains(point) ) {
  222. /* Mouse moved outside our view? */
  223. if ( SDL_GetAppState() & SDL_APPMOUSEFOCUS ) {
  224. SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
  225. be_app->SetCursor(B_HAND_CURSOR);
  226. }
  227. return;
  228. }
  229. /* Has the mouse moved back into our view? */
  230. if ( ! (SDL_GetAppState() & SDL_APPMOUSEFOCUS) ) {
  231. /* Reset the B_HAND_CURSOR to our own */
  232. SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
  233. SDL_SetCursor(NULL);
  234. }
  235. /* Check for mouse motion */
  236. if ( point != last_point ) {
  237. int x, y;
  238. SDL_Win->GetXYOffset(x, y);
  239. x = (int)point.x - x;
  240. y = (int)point.y - y;
  241. SDL_PrivateMouseMotion(0, 0, x, y);
  242. }
  243. last_point = point;
  244. /* Add any mouse button events */
  245. for ( i=0; i<SDL_TABLESIZE(button_masks); ++i ) {
  246. if ( (buttons ^ last_buttons) & button_masks[i] ) {
  247. if ( buttons & button_masks[i] ) {
  248. SDL_PrivateMouseButton(SDL_PRESSED, 1+i, 0, 0);
  249. } else {
  250. SDL_PrivateMouseButton(SDL_RELEASED, 1+i, 0, 0);
  251. }
  252. }
  253. }
  254. last_buttons = buttons;
  255. }
  256. void BE_InitOSKeymap(_THIS)
  257. {
  258. unsigned int i;
  259. /* Initialize the keyboard state */
  260. key_flip = 0;
  261. get_key_info(&keyinfo[key_flip]);
  262. memcpy(keyinfo[!key_flip].key_states,
  263.        keyinfo[key_flip].key_states,
  264.        SDL_TABLESIZE(keyinfo[key_flip].key_states));
  265. /* Initialize the BeOS key translation table */
  266. /* Source: <be/interface/InterfaceDefs.h> and BeOS keyboard info */
  267. for ( i=0; i<SDL_TABLESIZE(keymap); ++i )
  268. keymap[i] = SDLK_UNKNOWN;
  269. keymap[0x01] = SDLK_ESCAPE;
  270. keymap[B_F1_KEY] = SDLK_F1;
  271. keymap[B_F2_KEY] = SDLK_F2;
  272. keymap[B_F3_KEY] = SDLK_F3;
  273. keymap[B_F4_KEY] = SDLK_F4;
  274. keymap[B_F5_KEY] = SDLK_F5;
  275. keymap[B_F6_KEY] = SDLK_F6;
  276. keymap[B_F7_KEY] = SDLK_F7;
  277. keymap[B_F8_KEY] = SDLK_F8;
  278. keymap[B_F9_KEY] = SDLK_F9;
  279. keymap[B_F10_KEY] = SDLK_F10;
  280. keymap[B_F11_KEY] = SDLK_F11;
  281. keymap[B_F12_KEY] = SDLK_F12;
  282. keymap[B_PRINT_KEY] = SDLK_PRINT;
  283. //keymap[B_SCROLL_KEY] = SDLK_SCROLLOCK;
  284. keymap[B_PAUSE_KEY] = SDLK_PAUSE;
  285. keymap[0x11] = SDLK_BACKQUOTE;
  286. keymap[0x12] = SDLK_1;
  287. keymap[0x13] = SDLK_2;
  288. keymap[0x14] = SDLK_3;
  289. keymap[0x15] = SDLK_4;
  290. keymap[0x16] = SDLK_5;
  291. keymap[0x17] = SDLK_6;
  292. keymap[0x18] = SDLK_7;
  293. keymap[0x19] = SDLK_8;
  294. keymap[0x1a] = SDLK_9;
  295. keymap[0x1b] = SDLK_0;
  296. keymap[0x1c] = SDLK_MINUS;
  297. keymap[0x1d] = SDLK_EQUALS;
  298. keymap[0x1e] = SDLK_BACKSPACE;
  299. keymap[0x1f] = SDLK_INSERT;
  300. keymap[0x20] = SDLK_HOME;
  301. keymap[0x21] = SDLK_PAGEUP;
  302. //keymap[0x22] = SDLK_NUMLOCK;
  303. keymap[0x23] = SDLK_KP_DIVIDE;
  304. keymap[0x24] = SDLK_KP_MULTIPLY;
  305. keymap[0x25] = SDLK_KP_MINUS;
  306. keymap[0x26] = SDLK_TAB;
  307. keymap[0x27] = SDLK_q;
  308. keymap[0x28] = SDLK_w;
  309. keymap[0x29] = SDLK_e;
  310. keymap[0x2a] = SDLK_r;
  311. keymap[0x2b] = SDLK_t;
  312. keymap[0x2c] = SDLK_y;
  313. keymap[0x2d] = SDLK_u;
  314. keymap[0x2e] = SDLK_i;
  315. keymap[0x2f] = SDLK_o;
  316. keymap[0x30] = SDLK_p;
  317. keymap[0x31] = SDLK_LEFTBRACKET;
  318. keymap[0x32] = SDLK_RIGHTBRACKET;
  319. keymap[0x33] = SDLK_BACKSLASH;
  320. keymap[0x34] = SDLK_DELETE;
  321. keymap[0x35] = SDLK_END;
  322. keymap[0x36] = SDLK_PAGEDOWN;
  323. keymap[0x37] = SDLK_KP7;
  324. keymap[0x38] = SDLK_KP8;
  325. keymap[0x39] = SDLK_KP9;
  326. keymap[0x3a] = SDLK_KP_PLUS;
  327. //keymap[0x3b] = SDLK_CAPSLOCK;
  328. keymap[0x3c] = SDLK_a;
  329. keymap[0x3d] = SDLK_s;
  330. keymap[0x3e] = SDLK_d;
  331. keymap[0x3f] = SDLK_f;
  332. keymap[0x40] = SDLK_g;
  333. keymap[0x41] = SDLK_h;
  334. keymap[0x42] = SDLK_j;
  335. keymap[0x43] = SDLK_k;
  336. keymap[0x44] = SDLK_l;
  337. keymap[0x45] = SDLK_SEMICOLON;
  338. keymap[0x46] = SDLK_QUOTE;
  339. keymap[0x47] = SDLK_RETURN;
  340. keymap[0x48] = SDLK_KP4;
  341. keymap[0x49] = SDLK_KP5;
  342. keymap[0x4a] = SDLK_KP6;
  343. keymap[0x4b] = SDLK_LSHIFT;
  344. keymap[0x4c] = SDLK_z;
  345. keymap[0x4d] = SDLK_x;
  346. keymap[0x4e] = SDLK_c;
  347. keymap[0x4f] = SDLK_v;
  348. keymap[0x50] = SDLK_b;
  349. keymap[0x51] = SDLK_n;
  350. keymap[0x52] = SDLK_m;
  351. keymap[0x53] = SDLK_COMMA;
  352. keymap[0x54] = SDLK_PERIOD;
  353. keymap[0x55] = SDLK_SLASH;
  354. keymap[0x56] = SDLK_RSHIFT;
  355. keymap[0x57] = SDLK_UP;
  356. keymap[0x58] = SDLK_KP1;
  357. keymap[0x59] = SDLK_KP2;
  358. keymap[0x5a] = SDLK_KP3;
  359. keymap[0x5b] = SDLK_KP_ENTER;
  360. //keymap[0x5c] = SDLK_LCTRL;
  361. //keymap[0x5d] = SDLK_LALT;
  362. keymap[0x5e] = SDLK_SPACE;
  363. //keymap[0x5f] = SDLK_RALT;
  364. //keymap[0x60] = SDLK_RCTRL;
  365. keymap[0x61] = SDLK_LEFT;
  366. keymap[0x62] = SDLK_DOWN;
  367. keymap[0x63] = SDLK_RIGHT;
  368. keymap[0x64] = SDLK_KP0;
  369. keymap[0x65] = SDLK_KP_PERIOD;
  370. //keymap[0x66] = SDLK_LMETA;
  371. //keymap[0x67] = SDLK_RMETA;
  372. //keymap[0x68] = SDLK_MENU;
  373. keymap[0x69] = SDLK_EURO;
  374. keymap[0x6a] = SDLK_KP_EQUALS;
  375. keymap[0x6b] = SDLK_POWER;
  376. /* Get the system keymap and UNICODE table.
  377.    Note that this leaks memory since the maps are never freed.
  378.  */
  379. get_key_map(&be_keymap, &unicode_map);
  380. /* Set the modifier keys from the system keymap */
  381. keymap[be_keymap->caps_key] = SDLK_CAPSLOCK;
  382. keymap[be_keymap->scroll_key] = SDLK_SCROLLOCK;
  383. keymap[be_keymap->num_key] = SDLK_NUMLOCK;
  384. keymap[be_keymap->left_shift_key] = SDLK_LSHIFT;
  385. keymap[be_keymap->right_shift_key] = SDLK_RSHIFT;
  386. keymap[be_keymap->left_command_key] = SDLK_LALT;
  387. keymap[be_keymap->right_command_key] = SDLK_RALT;
  388. keymap[be_keymap->left_control_key] = SDLK_LCTRL;
  389. keymap[be_keymap->right_control_key] = SDLK_RCTRL;
  390. keymap[be_keymap->left_option_key] = SDLK_LMETA;
  391. keymap[be_keymap->right_option_key] = SDLK_RMETA;
  392. keymap[be_keymap->menu_key] = SDLK_MENU;
  393. /* Set the modifier map pointers */
  394. option_caps_map[0] = be_keymap->option_caps_map;
  395. option_caps_map[1] = be_keymap->option_caps_shift_map;
  396. option_map[0] = be_keymap->option_map;
  397. option_map[1] = be_keymap->option_shift_map;
  398. caps_map[0] = be_keymap->caps_map;
  399. caps_map[1] = be_keymap->caps_shift_map;
  400. normal_map[0] = be_keymap->normal_map;
  401. normal_map[1] = be_keymap->shift_map;
  402. }
  403. }; /* Extern C */