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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999  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.c,v 1.4 2002/04/22 21:38:05 wmay Exp $";
  21. #endif
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <windows.h>
  25. #include "SDL_getenv.h"
  26. #include "SDL_events.h"
  27. #include "SDL_video.h"
  28. #include "SDL_error.h"
  29. #include "SDL_syswm.h"
  30. #include "SDL_sysevents.h"
  31. #include "SDL_events_c.h"
  32. #include "SDL_sysvideo.h"
  33. #include "SDL_lowvideo.h"
  34. #include "SDL_syswm_c.h"
  35. #include "SDL_main.h"
  36. #ifdef WMMSG_DEBUG
  37. #include "wmmsg.h"
  38. #endif
  39. #ifdef _WIN32_WCE
  40. #define NO_GETKEYBOARDSTATE
  41. #endif
  42. /* The window we use for everything... */
  43. const char *SDL_Appname = NULL;
  44. HINSTANCE SDL_Instance = NULL;
  45. HWND SDL_Window = NULL;
  46. RECT SDL_bounds = {0, 0, 0, 0};
  47. int SDL_resizing = 0;
  48. int mouse_relative = 0;
  49. int posted = 0;
  50. #ifndef NO_CHANGEDISPLAYSETTINGS
  51. DEVMODE SDL_fullscreen_mode;
  52. #endif
  53. WORD *gamma_saved = NULL;
  54. /* Functions called by the message processing function */
  55. LONG
  56. (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)=NULL;
  57. void (*WIN_RealizePalette)(_THIS);
  58. void (*WIN_PaletteChanged)(_THIS, HWND window);
  59. void (*WIN_WinPAINT)(_THIS, HDC hdc);
  60. extern void DIB_SwapGamma(_THIS);
  61. static void SDL_RestoreGameMode(void)
  62. {
  63. #ifndef NO_CHANGEDISPLAYSETTINGS
  64. ShowWindow(SDL_Window, SW_RESTORE);
  65. ChangeDisplaySettings(&SDL_fullscreen_mode, CDS_FULLSCREEN);
  66. #endif
  67. }
  68. static void SDL_RestoreDesktopMode(void)
  69. {
  70. #ifndef NO_CHANGEDISPLAYSETTINGS
  71. ShowWindow(SDL_Window, SW_MINIMIZE);
  72. ChangeDisplaySettings(NULL, 0);
  73. #endif
  74. }
  75. #ifdef WM_MOUSELEAVE
  76. /* 
  77.    Special code to handle mouse leave events - this sucks...
  78.    http://support.microsoft.com/support/kb/articles/q183/1/07.asp
  79.    TrackMouseEvent() is only available on Win98 and WinNT.
  80.    _TrackMouseEvent() is available on Win95, but isn't yet in the mingw32
  81.    development environment, and only works on systems that have had IE 3.0
  82.    or newer installed on them (which is not the case with the base Win95).
  83.    Therefore, we implement our own version of _TrackMouseEvent() which
  84.    uses our own implementation if TrackMouseEvent() is not available.
  85. */
  86. static BOOL (WINAPI *_TrackMouseEvent)(TRACKMOUSEEVENT *ptme) = NULL;
  87. static VOID CALLBACK
  88. TrackMouseTimerProc(HWND hWnd, UINT uMsg, UINT idEvent, DWORD dwTime)
  89. {
  90. RECT rect;
  91. POINT pt;
  92. GetClientRect(hWnd, &rect);
  93. MapWindowPoints(hWnd, NULL, (LPPOINT)&rect, 2);
  94. GetCursorPos(&pt);
  95. if ( !PtInRect(&rect, pt) || (WindowFromPoint(pt) != hWnd) ) {
  96. if ( !KillTimer(hWnd, idEvent) ) {
  97. /* Error killing the timer! */
  98. }
  99. PostMessage(hWnd, WM_MOUSELEAVE, 0, 0);
  100. }
  101. }
  102. static BOOL WINAPI WIN_TrackMouseEvent(TRACKMOUSEEVENT *ptme)
  103. {
  104. if ( ptme->dwFlags == TME_LEAVE ) {
  105. return SetTimer(ptme->hwndTrack, ptme->dwFlags, 100,
  106.                 (TIMERPROC)TrackMouseTimerProc);
  107. }
  108. return FALSE;
  109. }
  110. #endif /* WM_MOUSELEAVE */
  111. /* Function to retrieve the current keyboard modifiers */
  112. static void WIN_GetKeyboardState(void)
  113. {
  114. #ifndef NO_GETKEYBOARDSTATE
  115. SDLMod state;
  116. BYTE keyboard[256];
  117. Uint8 *kstate = SDL_GetKeyState(NULL);
  118. state = KMOD_NONE;
  119. if ( GetKeyboardState(keyboard) ) {
  120. if ( keyboard[VK_LSHIFT] & 0x80) {
  121. state |= KMOD_LSHIFT;
  122. }
  123. if ( keyboard[VK_RSHIFT] & 0x80) {
  124. state |= KMOD_RSHIFT;
  125. }
  126. if ( keyboard[VK_LCONTROL] & 0x80) {
  127. state |= KMOD_LCTRL;
  128. }
  129. if ( keyboard[VK_RCONTROL] & 0x80) {
  130. state |= KMOD_RCTRL;
  131. }
  132. if ( keyboard[VK_LMENU] & 0x80) {
  133. state |= KMOD_LALT;
  134. }
  135. if ( keyboard[VK_RMENU] & 0x80) {
  136. state |= KMOD_RALT;
  137. }
  138. if ( keyboard[VK_NUMLOCK] & 0x01) {
  139. state |= KMOD_NUM;
  140. kstate[SDLK_NUMLOCK] = SDL_PRESSED;
  141. }
  142. if ( keyboard[VK_CAPITAL] & 0x01) {
  143. state |= KMOD_CAPS;
  144. kstate[SDLK_CAPSLOCK] = SDL_PRESSED;
  145. }
  146. }
  147. SDL_SetModState(state);
  148. #endif /* !NO_GETKEYBOARDSTATE */
  149. }
  150. /* The main Win32 event handler
  151. DJM: This is no longer static as (DX5/DIB)_CreateWindow needs it
  152. */
  153. LONG CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  154. {
  155. SDL_VideoDevice *this = current_video;
  156. static int mouse_pressed = 0;
  157. static int in_window = 0;
  158. #ifdef WMMSG_DEBUG
  159. fprintf(stderr, "Received windows message:  ");
  160. if ( msg > MAX_WMMSG ) {
  161. fprintf(stderr, "%d", msg);
  162. } else {
  163. fprintf(stderr, "%s", wmtab[msg]);
  164. }
  165. fprintf(stderr, " -- 0x%X, 0x%Xn", wParam, lParam);
  166. #endif
  167. switch (msg) {
  168. case WM_ACTIVATE: {
  169. SDL_VideoDevice *this = current_video;
  170. BOOL minimized;
  171. Uint8 appstate;
  172. minimized = HIWORD(wParam);
  173. if ( !minimized && (LOWORD(wParam) != WA_INACTIVE) ) {
  174. /* Gain the following states */
  175. appstate = SDL_APPACTIVE|SDL_APPINPUTFOCUS;
  176. if ( this->input_grab != SDL_GRAB_OFF ) {
  177. WIN_GrabInput(this, SDL_GRAB_ON);
  178. }
  179. if ( !(SDL_GetAppState()&SDL_APPINPUTFOCUS) ) {
  180. if ( ! DDRAW_FULLSCREEN() ) {
  181. DIB_SwapGamma(this);
  182. }
  183. if ( WINDIB_FULLSCREEN() ) {
  184. SDL_RestoreGameMode();
  185. }
  186. }
  187. posted = SDL_PrivateAppActive(1, appstate);
  188. WIN_GetKeyboardState();
  189. } else {
  190. /* Lose the following states */
  191. appstate = SDL_APPINPUTFOCUS;
  192. if ( minimized ) {
  193. appstate |= SDL_APPACTIVE;
  194. }
  195. if ( this->input_grab != SDL_GRAB_OFF ) {
  196. WIN_GrabInput(this, SDL_GRAB_OFF);
  197. }
  198. if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) {
  199. if ( ! DDRAW_FULLSCREEN() ) {
  200. DIB_SwapGamma(this);
  201. }
  202. if ( WINDIB_FULLSCREEN() ) {
  203. SDL_RestoreDesktopMode();
  204. }
  205. }
  206. posted = SDL_PrivateAppActive(0, appstate);
  207. }
  208. return(0);
  209. }
  210. break;
  211. case WM_MOUSEMOVE: {
  212. /* Mouse is handled by DirectInput when fullscreen */
  213. if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
  214. Sint16 x, y;
  215. /* mouse has entered the window */
  216. if ( ! in_window ) {
  217. #ifdef WM_MOUSELEAVE
  218. TRACKMOUSEEVENT tme;
  219. tme.cbSize = sizeof(tme);
  220. tme.dwFlags = TME_LEAVE;
  221. tme.hwndTrack = SDL_Window;
  222. _TrackMouseEvent(&tme);
  223. #endif /* WM_MOUSELEAVE */
  224. in_window = TRUE;
  225. posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
  226. }
  227. /* mouse has moved within the window */
  228. x = LOWORD(lParam);
  229. y = HIWORD(lParam);
  230. if ( mouse_relative ) {
  231. POINT center;
  232. center.x = (SDL_VideoSurface->w/2);
  233. center.y = (SDL_VideoSurface->h/2);
  234. x -= (Sint16)center.x;
  235. y -= (Sint16)center.y;
  236. if ( x || y ) {
  237. ClientToScreen(SDL_Window, &center);
  238. SetCursorPos(center.x, center.y);
  239. posted = SDL_PrivateMouseMotion(0, 1, x, y);
  240. }
  241. } else {
  242. posted = SDL_PrivateMouseMotion(0, 0, x, y);
  243. }
  244. }
  245. }
  246. return(0);
  247. #ifdef WM_MOUSELEAVE
  248. case WM_MOUSELEAVE: {
  249. /* Mouse is handled by DirectInput when fullscreen */
  250. if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
  251. /* mouse has left the window */
  252. /* or */
  253. /* Elvis has left the building! */
  254. in_window = FALSE;
  255. posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
  256. }
  257. }
  258. return(0);
  259. #endif /* WM_MOUSELEAVE */
  260. case WM_LBUTTONDOWN:
  261. case WM_LBUTTONUP:
  262. case WM_MBUTTONDOWN:
  263. case WM_MBUTTONUP:
  264. case WM_RBUTTONDOWN:
  265. case WM_RBUTTONUP: {
  266. /* Mouse is handled by DirectInput when fullscreen */
  267. if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
  268. Sint16 x, y;
  269. Uint8 button, state;
  270. /* DJM:
  271.    We want the SDL window to take focus so that
  272.    it acts like a normal windows "component"
  273.    (e.g. gains keyboard focus on a mouse click).
  274.  */
  275. SetFocus(SDL_Window);
  276. /* Figure out which button to use */
  277. switch (msg) {
  278. case WM_LBUTTONDOWN:
  279. button = 1;
  280. state = SDL_PRESSED;
  281. break;
  282. case WM_LBUTTONUP:
  283. button = 1;
  284. state = SDL_RELEASED;
  285. break;
  286. case WM_MBUTTONDOWN:
  287. button = 2;
  288. state = SDL_PRESSED;
  289. break;
  290. case WM_MBUTTONUP:
  291. button = 2;
  292. state = SDL_RELEASED;
  293. break;
  294. case WM_RBUTTONDOWN:
  295. button = 3;
  296. state = SDL_PRESSED;
  297. break;
  298. case WM_RBUTTONUP:
  299. button = 3;
  300. state = SDL_RELEASED;
  301. break;
  302. default:
  303. /* Eh? Unknown button? */
  304. return(0);
  305. }
  306. if ( state == SDL_PRESSED ) {
  307. /* Grab mouse so we get up events */
  308. if ( ++mouse_pressed > 0 ) {
  309. SetCapture(hwnd);
  310. }
  311. } else {
  312. /* Release mouse after all up events */
  313. if ( --mouse_pressed <= 0 ) {
  314. ReleaseCapture();
  315. mouse_pressed = 0;
  316. }
  317. }
  318. if ( mouse_relative ) {
  319. /* RJR: March 28, 2000
  320. report internal mouse position if in relative mode */
  321. x = 0; y = 0;
  322. } else {
  323. x = (Sint16)LOWORD(lParam);
  324. y = (Sint16)HIWORD(lParam);
  325. }
  326. posted = SDL_PrivateMouseButton(
  327. state, button, x, y);
  328. }
  329. }
  330. return(0);
  331. #if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
  332. case WM_MOUSEWHEEL: 
  333. if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
  334. int move = (short)HIWORD(wParam);
  335. if ( move ) {
  336. Uint8 button;
  337. if ( move > 0 )
  338. button = 4;
  339. else
  340. button = 5;
  341. posted = SDL_PrivateMouseButton(
  342. SDL_PRESSED, button, 0, 0);
  343. posted |= SDL_PrivateMouseButton(
  344. SDL_RELEASED, button, 0, 0);
  345. }
  346. }
  347. return(0);
  348. #endif
  349. #ifdef WM_GETMINMAXINFO
  350. /* This message is sent as a way for us to "check" the values
  351.  * of a position change.  If we don't like it, we can adjust
  352.  * the values before they are changed.
  353.  */
  354. case WM_GETMINMAXINFO: {
  355. MINMAXINFO *info;
  356. RECT        size;
  357. int x, y;
  358. int width;
  359. int height;
  360. /* We don't want to clobber an internal resize */
  361. if ( SDL_resizing )
  362. return(0);
  363. /* We allow resizing with the SDL_RESIZABLE flag */
  364. if ( SDL_PublicSurface &&
  365. (SDL_PublicSurface->flags & SDL_RESIZABLE) ) {
  366. return(0);
  367. }
  368. /* Get the current position of our window */
  369. GetWindowRect(SDL_Window, &size);
  370. x = size.left;
  371. y = size.top;
  372. /* Calculate current width and height of our window */
  373. size.top = 0;
  374. size.left = 0;
  375. if ( SDL_PublicSurface != NULL ) {
  376. size.bottom = SDL_PublicSurface->h;
  377. size.right = SDL_PublicSurface->w;
  378. } else {
  379. size.bottom = 0;
  380. size.right = 0;
  381. }
  382. AdjustWindowRect(&size, GetWindowLong(hwnd, GWL_STYLE),
  383. FALSE);
  384. width = size.right - size.left;
  385. height = size.bottom - size.top;
  386. /* Fix our size to the current size */
  387. info = (MINMAXINFO *)lParam;
  388. info->ptMaxSize.x = width;
  389. info->ptMaxSize.y = height;
  390. info->ptMaxPosition.x = x;
  391. info->ptMaxPosition.y = y;
  392. info->ptMinTrackSize.x = width;
  393. info->ptMinTrackSize.y = height;
  394. info->ptMaxTrackSize.x = width;
  395. info->ptMaxTrackSize.y = height;
  396. }
  397. return(0);
  398. #endif /* WM_GETMINMAXINFO */
  399. case WM_MOVE: {
  400. SDL_VideoDevice *this = current_video;
  401. GetClientRect(SDL_Window, &SDL_bounds);
  402. ClientToScreen(SDL_Window, (LPPOINT)&SDL_bounds);
  403. ClientToScreen(SDL_Window, (LPPOINT)&SDL_bounds+1);
  404. if ( this->input_grab != SDL_GRAB_OFF ) {
  405. ClipCursor(&SDL_bounds);
  406. }
  407. }
  408. break;
  409. case WM_SIZE: {
  410. if ( SDL_PublicSurface &&
  411. (SDL_PublicSurface->flags & SDL_RESIZABLE) ) {
  412. SDL_PrivateResize(LOWORD(lParam), HIWORD(lParam));
  413. }
  414. return(0);
  415. }
  416. break;
  417. /* We need to set the cursor */
  418. case WM_SETCURSOR: {
  419. Uint16 hittest;
  420. hittest = LOWORD(lParam);
  421. if ( hittest == HTCLIENT ) {
  422. SetCursor(SDL_hcursor);
  423. return(TRUE);
  424. }
  425. }
  426. break;
  427. /* We are about to get palette focus! */
  428. case WM_QUERYNEWPALETTE: {
  429. WIN_RealizePalette(current_video);
  430. return(TRUE);
  431. }
  432. break;
  433. /* Another application changed the palette */
  434. case WM_PALETTECHANGED: {
  435. WIN_PaletteChanged(current_video, (HWND)wParam);
  436. }
  437. break;
  438. /* We were occluded, refresh our display */
  439. case WM_PAINT: {
  440. HDC hdc;
  441. PAINTSTRUCT ps;
  442. hdc = BeginPaint(SDL_Window, &ps);
  443. if ( current_video->screen &&
  444.      !(current_video->screen->flags & SDL_OPENGL) ) {
  445. WIN_WinPAINT(current_video, hdc);
  446. }
  447. EndPaint(SDL_Window, &ps);
  448. }
  449. return(0);
  450. /* DJM: Send an expose event in this case */
  451. case WM_ERASEBKGND: {
  452. posted = SDL_PrivateExpose();
  453. }
  454. return(0);
  455. case WM_CLOSE: {
  456. if ( (posted = SDL_PrivateQuit()) )
  457. PostQuitMessage(0);
  458. }
  459. return(0);
  460. case WM_DESTROY: {
  461. PostQuitMessage(0);
  462. }
  463. return(0);
  464. default: {
  465. /* Special handling by the video driver */
  466. if (HandleMessage) {
  467. return(HandleMessage(current_video,
  468.                      hwnd, msg, wParam, lParam));
  469. }
  470. }
  471. break;
  472. }
  473. return(DefWindowProc(hwnd, msg, wParam, lParam));
  474. }
  475. /* Allow the application handle to be stored and retrieved later */
  476. static void *SDL_handle = NULL;
  477. void SDL_SetModuleHandle(void *handle)
  478. {
  479. SDL_handle = handle;
  480. }
  481. void *SDL_GetModuleHandle(void)
  482. {
  483. void *handle;
  484. if ( SDL_handle ) {
  485. handle = SDL_handle;
  486. } else {
  487. /* Warning:
  488.    If SDL is built as a DLL, this will return a handle to
  489.    the DLL, not the application, and DirectInput may fail
  490.    to initialize.
  491.  */
  492. handle = GetModuleHandle(NULL);
  493. }
  494. return(handle);
  495. }
  496. /* This allows the SDL_WINDOWID hack */
  497. const char *SDL_windowid = NULL;
  498. /* Register the class for this application -- exported for winmain.c */
  499. int SDL_RegisterApp(char *name, Uint32 style, void *hInst)
  500. {
  501. static int initialized = 0;
  502. WNDCLASS class;
  503. #ifdef WM_MOUSELEAVE
  504. HMODULE handle;
  505. #endif
  506. /* Only do this once... */
  507. if ( initialized ) {
  508. return(0);
  509. }
  510. /* This function needs to be passed the correct process handle
  511.    by the application.
  512.  */
  513. if ( ! hInst ) {
  514. hInst = SDL_GetModuleHandle();
  515. }
  516. /* Register the application class */
  517. class.hCursor = NULL;
  518. #ifdef _WIN32_WCE
  519.     {
  520. /* WinCE uses the UNICODE version */
  521. int nLen = strlen(name)+1;
  522. LPWSTR lpszW = alloca(nLen*2);
  523. MultiByteToWideChar(CP_ACP, 0, name, -1, lpszW, nLen);
  524. class.hIcon = LoadImage(hInst, lpszW, IMAGE_ICON,
  525.                                     0, 0, LR_DEFAULTCOLOR);
  526. class.lpszMenuName = NULL;
  527. class.lpszClassName = lpszW;
  528.     }
  529. #else
  530. class.hIcon = LoadImage(hInst, name, IMAGE_ICON,
  531.                                     0, 0, LR_DEFAULTCOLOR);
  532. class.lpszMenuName = "(none)";
  533. class.lpszClassName = name;
  534. #endif /* _WIN32_WCE */
  535. class.hbrBackground = NULL;
  536. class.hInstance = hInst;
  537. class.style = style;
  538. #ifdef HAVE_OPENGL
  539. class.style |= CS_OWNDC;
  540. #endif
  541. class.lpfnWndProc = WinMessage;
  542. class.cbWndExtra = 0;
  543. class.cbClsExtra = 0;
  544. if ( ! RegisterClass(&class) ) {
  545. SDL_SetError("Couldn't register application class");
  546. return(-1);
  547. }
  548. SDL_Appname = name;
  549. SDL_Instance = hInst;
  550. #ifdef WM_MOUSELEAVE
  551. /* Get the version of TrackMouseEvent() we use */
  552. _TrackMouseEvent = NULL;
  553. handle = GetModuleHandle("USER32.DLL");
  554. if ( handle ) {
  555. _TrackMouseEvent = (BOOL (WINAPI *)(TRACKMOUSEEVENT *))GetProcAddress(handle, "TrackMouseEvent");
  556. }
  557. if ( _TrackMouseEvent == NULL ) {
  558. _TrackMouseEvent = WIN_TrackMouseEvent;
  559. }
  560. #endif /* WM_MOUSELEAVE */
  561. /* Check for SDL_WINDOWID hack */
  562. SDL_windowid = getenv("SDL_WINDOWID");
  563. initialized = 1;
  564. return(0);
  565. }