Skip to content

Latest commit

 

History

History
737 lines (659 loc) · 19.4 KB

SDL_dibevents.c

File metadata and controls

737 lines (659 loc) · 19.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Feb 25, 2006
Feb 25, 2006
24
25
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
Apr 26, 2001
Apr 26, 2001
26
Feb 10, 2006
Feb 10, 2006
27
#include "SDL_main.h"
Apr 26, 2001
Apr 26, 2001
28
29
#include "SDL_events.h"
#include "SDL_syswm.h"
Feb 16, 2006
Feb 16, 2006
30
31
32
#include "../../events/SDL_sysevents.h"
#include "../../events/SDL_events_c.h"
#include "../wincommon/SDL_lowvideo.h"
Feb 16, 2009
Feb 16, 2009
33
#include "SDL_gapidibvideo.h"
Apr 26, 2001
Apr 26, 2001
34
35
#include "SDL_vkeys.h"
Feb 16, 2009
Feb 16, 2009
36
37
38
39
40
41
42
43
#ifdef SDL_VIDEO_DRIVER_GAPI
#include "../gapi/SDL_gapivideo.h"
#endif
#ifdef SDL_VIDEO_DRIVER_WINDIB
#include "SDL_dibvideo.h"
#endif
Apr 26, 2001
Apr 26, 2001
44
45
46
47
48
49
50
51
52
53
#ifndef WM_APP
#define WM_APP 0x8000
#endif
#ifdef _WIN32_WCE
#define NO_GETKEYBOARDSTATE
#endif
/* The translation table from a Microsoft VK keysym to a SDL keysym */
static SDLKey VK_keymap[SDLK_LAST];
Mar 6, 2006
Mar 6, 2006
54
static SDL_keysym *TranslateKey(WPARAM vkey, UINT scancode, SDL_keysym *keysym, int pressed);
Feb 16, 2009
Feb 16, 2009
55
static SDLKey Arrows_keymap[4];
Apr 26, 2001
Apr 26, 2001
56
57
58
59
60
/* Masks for processing the windows KEYDOWN and KEYUP messages */
#define REPEATED_KEYMASK (1<<30)
#define EXTENDED_KEYMASK (1<<24)
Aug 9, 2001
Aug 9, 2001
61
62
/* DJM: If the user setup the window for us, we want to save his window proc,
and give him a chance to handle some messages. */
Jan 31, 2006
Jan 31, 2006
63
64
65
66
67
68
#ifdef STRICT
#define WNDPROCTYPE WNDPROC
#else
#define WNDPROCTYPE FARPROC
#endif
static WNDPROCTYPE userWindowProc = NULL;
Aug 9, 2001
Aug 9, 2001
69
Jan 19, 2006
Jan 19, 2006
70
Feb 16, 2009
Feb 16, 2009
71
#ifdef SDL_VIDEO_DRIVER_GAPI
Jan 19, 2006
Jan 19, 2006
72
Feb 16, 2009
Feb 16, 2009
73
WPARAM rotateKey(WPARAM key,int direction)
Jan 19, 2006
Jan 19, 2006
74
{
Feb 16, 2009
Feb 16, 2009
75
76
if(direction ==0 ) return key;
Jan 19, 2006
Jan 19, 2006
77
78
switch (key) {
case 0x26: /* up */
Feb 16, 2009
Feb 16, 2009
79
return Arrows_keymap[(2 + direction) % 4];
Jan 19, 2006
Jan 19, 2006
80
case 0x27: /* right */
Feb 16, 2009
Feb 16, 2009
81
return Arrows_keymap[(1 + direction) % 4];
Jan 19, 2006
Jan 19, 2006
82
case 0x28: /* down */
Feb 16, 2009
Feb 16, 2009
83
return Arrows_keymap[direction % 4];
Jan 19, 2006
Jan 19, 2006
84
case 0x25: /* left */
Feb 16, 2009
Feb 16, 2009
85
return Arrows_keymap[(3 + direction) % 4];
Jan 19, 2006
Jan 19, 2006
86
87
88
89
90
}
return key;
}
Oct 10, 2009
Oct 10, 2009
91
92
static void GapiTransform(GapiInfo *gapiInfo, LONG *x, LONG *y)
{
Sep 23, 2009
Sep 23, 2009
93
94
95
96
97
98
if(gapiInfo->hiresFix)
{
*x *= 2;
*y *= 2;
}
Oct 10, 2009
Oct 10, 2009
99
100
101
102
103
104
// 0 3 0
if((!gapiInfo->userOrientation && gapiInfo->systemOrientation && !gapiInfo->gapiOrientation) ||
// 3 0 3
(gapiInfo->userOrientation && !gapiInfo->systemOrientation && gapiInfo->gapiOrientation) ||
// 3 0 0
(gapiInfo->userOrientation && !gapiInfo->systemOrientation && !gapiInfo->gapiOrientation))
Sep 21, 2009
Sep 21, 2009
105
{
Oct 10, 2009
Oct 10, 2009
106
107
108
109
Sint16 temp = *x;
*x = SDL_VideoSurface->w - *y;
*y = temp;
}
Sep 21, 2009
Sep 21, 2009
110
else
Oct 10, 2009
Oct 10, 2009
111
112
113
114
// 0 0 0
if((!gapiInfo->userOrientation && !gapiInfo->systemOrientation && !gapiInfo->gapiOrientation) ||
// 0 0 3
(!gapiInfo->userOrientation && !gapiInfo->systemOrientation && gapiInfo->gapiOrientation))
Sep 21, 2009
Sep 21, 2009
115
{
Oct 10, 2009
Oct 10, 2009
116
117
118
// without changes
// *x = *x;
// *y = *y;
May 7, 2009
May 7, 2009
119
}
Oct 10, 2009
Oct 10, 2009
120
// default
Sep 21, 2009
Sep 21, 2009
121
122
else
{
Oct 10, 2009
Oct 10, 2009
123
124
125
// without changes
// *x = *x;
// *y = *y;
May 7, 2009
May 7, 2009
126
127
}
}
Jan 19, 2006
Jan 19, 2006
128
129
130
#endif
Apr 26, 2001
Apr 26, 2001
131
/* The main Win32 event handler */
Mar 1, 2006
Mar 1, 2006
132
LRESULT DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
Apr 26, 2001
Apr 26, 2001
133
134
135
136
137
138
139
140
{
extern int posted;
switch (msg) {
case WM_SYSKEYDOWN:
case WM_KEYDOWN: {
SDL_keysym keysym;
Feb 16, 2009
Feb 16, 2009
141
142
143
144
145
146
#ifdef SDL_VIDEO_DRIVER_GAPI
if(this->hidden->gapiInfo)
{
// Drop GAPI artefacts
if (wParam == 0x84 || wParam == 0x5B)
return 0;
Jan 19, 2006
Jan 19, 2006
147
Feb 16, 2009
Feb 16, 2009
148
149
wParam = rotateKey(wParam, this->hidden->gapiInfo->coordinateTransform);
}
Jan 19, 2006
Jan 19, 2006
150
#endif
Apr 26, 2001
Apr 26, 2001
151
152
153
154
155
156
157
158
159
160
161
162
163
/* Ignore repeated keys */
if ( lParam&REPEATED_KEYMASK ) {
return(0);
}
switch (wParam) {
case VK_CONTROL:
if ( lParam&EXTENDED_KEYMASK )
wParam = VK_RCONTROL;
else
wParam = VK_LCONTROL;
break;
case VK_SHIFT:
/* EXTENDED trick doesn't work here */
Jan 29, 2006
Jan 29, 2006
164
165
166
{
Uint8 *state = SDL_GetKeyState(NULL);
if (state[SDLK_LSHIFT] == SDL_RELEASED && (GetKeyState(VK_LSHIFT) & 0x8000)) {
Dec 11, 2002
Dec 11, 2002
167
wParam = VK_LSHIFT;
Jan 29, 2006
Jan 29, 2006
168
} else if (state[SDLK_RSHIFT] == SDL_RELEASED && (GetKeyState(VK_RSHIFT) & 0x8000)) {
Dec 11, 2002
Dec 11, 2002
169
170
wParam = VK_RSHIFT;
} else {
May 18, 2006
May 18, 2006
171
172
173
174
175
176
177
178
179
180
/* Win9x */
int sc = HIWORD(lParam) & 0xFF;
if (sc == 0x2A)
wParam = VK_LSHIFT;
else
if (sc == 0x36)
wParam = VK_RSHIFT;
else
wParam = VK_LSHIFT;
Jan 29, 2006
Jan 29, 2006
181
}
Dec 11, 2002
Dec 11, 2002
182
}
Apr 26, 2001
Apr 26, 2001
183
184
185
186
187
188
189
190
break;
case VK_MENU:
if ( lParam&EXTENDED_KEYMASK )
wParam = VK_RMENU;
else
wParam = VK_LMENU;
break;
}
Jul 18, 2001
Jul 18, 2001
191
192
193
#ifdef NO_GETKEYBOARDSTATE
/* this is the workaround for the missing ToAscii() and ToUnicode() in CE (not necessary at KEYUP!) */
if ( SDL_TranslateUNICODE ) {
Aug 9, 2001
Aug 9, 2001
194
195
196
197
198
199
200
MSG m;
m.hwnd = hwnd;
m.message = msg;
m.wParam = wParam;
m.lParam = lParam;
m.time = 0;
Nov 17, 2009
Nov 17, 2009
201
if ( TranslateMessage(&m) && PeekMessage(&m, hwnd, 0, WM_USER, PM_NOREMOVE) && (m.message == WM_CHAR) ) {
Jul 18, 2001
Jul 18, 2001
202
203
204
205
206
GetMessage(&m, hwnd, 0, WM_USER);
wParam = m.wParam;
}
}
#endif /* NO_GETKEYBOARDSTATE */
Apr 26, 2001
Apr 26, 2001
207
208
209
210
211
212
213
214
215
posted = SDL_PrivateKeyboard(SDL_PRESSED,
TranslateKey(wParam,HIWORD(lParam),&keysym,1));
}
return(0);
case WM_SYSKEYUP:
case WM_KEYUP: {
SDL_keysym keysym;
Feb 16, 2009
Feb 16, 2009
216
217
218
219
220
221
222
223
224
#ifdef SDL_VIDEO_DRIVER_GAPI
if(this->hidden->gapiInfo)
{
// Drop GAPI artifacts
if (wParam == 0x84 || wParam == 0x5B)
return 0;
wParam = rotateKey(wParam, this->hidden->gapiInfo->coordinateTransform);
}
Jan 19, 2006
Jan 19, 2006
225
226
#endif
Apr 26, 2001
Apr 26, 2001
227
228
229
230
231
232
233
234
235
switch (wParam) {
case VK_CONTROL:
if ( lParam&EXTENDED_KEYMASK )
wParam = VK_RCONTROL;
else
wParam = VK_LCONTROL;
break;
case VK_SHIFT:
/* EXTENDED trick doesn't work here */
Jan 29, 2006
Jan 29, 2006
236
237
238
{
Uint8 *state = SDL_GetKeyState(NULL);
if (state[SDLK_LSHIFT] == SDL_PRESSED && !(GetKeyState(VK_LSHIFT) & 0x8000)) {
Jan 20, 2003
Jan 20, 2003
239
wParam = VK_LSHIFT;
Jan 29, 2006
Jan 29, 2006
240
} else if (state[SDLK_RSHIFT] == SDL_PRESSED && !(GetKeyState(VK_RSHIFT) & 0x8000)) {
Jan 20, 2003
Jan 20, 2003
241
242
wParam = VK_RSHIFT;
} else {
May 18, 2006
May 18, 2006
243
244
245
246
247
248
249
250
251
252
/* Win9x */
int sc = HIWORD(lParam) & 0xFF;
if (sc == 0x2A)
wParam = VK_LSHIFT;
else
if (sc == 0x36)
wParam = VK_RSHIFT;
else
wParam = VK_LSHIFT;
Jan 29, 2006
Jan 29, 2006
253
}
Jan 20, 2003
Jan 20, 2003
254
}
Apr 26, 2001
Apr 26, 2001
255
256
257
258
259
260
261
262
break;
case VK_MENU:
if ( lParam&EXTENDED_KEYMASK )
wParam = VK_RMENU;
else
wParam = VK_LMENU;
break;
}
Mar 14, 2006
Mar 14, 2006
263
264
265
266
267
/* Windows only reports keyup for print screen */
if ( wParam == VK_SNAPSHOT && SDL_GetKeyState(NULL)[SDLK_PRINT] == SDL_RELEASED ) {
posted = SDL_PrivateKeyboard(SDL_PRESSED,
TranslateKey(wParam,HIWORD(lParam),&keysym,1));
}
Apr 26, 2001
Apr 26, 2001
268
269
270
271
posted = SDL_PrivateKeyboard(SDL_RELEASED,
TranslateKey(wParam,HIWORD(lParam),&keysym,0));
}
return(0);
Sep 30, 2003
Sep 30, 2003
272
273
#if defined(SC_SCREENSAVE) && defined(SC_MONITORPOWER)
case WM_SYSCOMMAND: {
Jun 26, 2007
Jun 26, 2007
274
275
const DWORD val = (DWORD) (wParam & 0xFFF0);
if ((val == SC_SCREENSAVE) || (val == SC_MONITORPOWER)) {
Feb 16, 2009
Feb 16, 2009
276
if (this->hidden->dibInfo && !allow_screensaver) {
Jun 26, 2007
Jun 26, 2007
277
278
/* Note that this doesn't stop anything on Vista
if the screensaver has a password. */
Sep 30, 2003
Sep 30, 2003
279
return(0);
Jun 26, 2007
Jun 26, 2007
280
281
}
}
Sep 30, 2003
Sep 30, 2003
282
283
284
285
}
/* Fall through to default processing */
#endif /* SC_SCREENSAVE && SC_MONITORPOWER */
Apr 26, 2001
Apr 26, 2001
286
287
288
289
290
291
292
293
294
295
296
default: {
/* Only post the event if we're watching for it */
if ( SDL_ProcessEvents[SDL_SYSWMEVENT] == SDL_ENABLE ) {
SDL_SysWMmsg wmmsg;
SDL_VERSION(&wmmsg.version);
wmmsg.hwnd = hwnd;
wmmsg.msg = msg;
wmmsg.wParam = wParam;
wmmsg.lParam = lParam;
posted = SDL_PrivateSysWMEvent(&wmmsg);
Aug 9, 2001
Aug 9, 2001
297
298
299
300
301
302
/* DJM: If the user isn't watching for private
messages in her SDL event loop, then pass it
along to any win32 specific window proc.
*/
} else if (userWindowProc) {
Sep 21, 2003
Sep 21, 2003
303
return CallWindowProc(userWindowProc, hwnd, msg, wParam, lParam);
Apr 26, 2001
Apr 26, 2001
304
305
306
307
308
309
310
}
}
break;
}
return(DefWindowProc(hwnd, msg, wParam, lParam));
}
Sep 21, 2009
Sep 21, 2009
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
#ifdef _WIN32_WCE
static BOOL GetLastStylusPos(POINT* ptLast)
{
BOOL bResult = FALSE;
UINT nRet;
GetMouseMovePoints(ptLast, 1, &nRet);
if ( nRet == 1 ) {
ptLast->x /= 4;
ptLast->y /= 4;
bResult = TRUE;
}
return bResult;
}
#endif
May 7, 2009
May 7, 2009
326
static void DIB_GenerateMouseMotionEvent(_THIS)
Apr 2, 2009
Apr 2, 2009
327
328
329
330
331
{
extern int mouse_relative;
extern int posted;
POINT mouse;
Sep 22, 2009
Sep 22, 2009
332
333
334
335
336
#ifdef _WIN32_WCE
if ( !GetCursorPos(&mouse) && !GetLastStylusPos(&mouse) ) return;
#else
if ( !GetCursorPos(&mouse) ) return;
#endif
Apr 2, 2009
Apr 2, 2009
337
338
339
340
341
342
343
if ( mouse_relative ) {
POINT center;
center.x = (SDL_VideoSurface->w/2);
center.y = (SDL_VideoSurface->h/2);
ClientToScreen(SDL_Window, &center);
Sep 30, 2009
Sep 30, 2009
344
345
mouse.x -= center.x;
mouse.y -= center.y;
Apr 2, 2009
Apr 2, 2009
346
347
if ( mouse.x || mouse.y ) {
SetCursorPos(center.x, center.y);
Sep 30, 2009
Sep 30, 2009
348
posted = SDL_PrivateMouseMotion(0, 1, (Sint16)mouse.x, (Sint16)mouse.y);
Apr 2, 2009
Apr 2, 2009
349
}
Oct 17, 2009
Oct 17, 2009
350
} else {
Apr 2, 2009
Apr 2, 2009
351
ScreenToClient(SDL_Window, &mouse);
May 7, 2009
May 7, 2009
352
353
#ifdef SDL_VIDEO_DRIVER_GAPI
if (SDL_VideoSurface && this->hidden->gapiInfo)
Sep 21, 2009
Sep 21, 2009
354
GapiTransform(this->hidden->gapiInfo, &mouse.x, &mouse.y);
Apr 2, 2009
Apr 2, 2009
355
#endif
Sep 30, 2009
Sep 30, 2009
356
posted = SDL_PrivateMouseMotion(0, 0, (Sint16)mouse.x, (Sint16)mouse.y);
Apr 2, 2009
Apr 2, 2009
357
358
359
}
}
Apr 26, 2001
Apr 26, 2001
360
361
362
363
void DIB_PumpEvents(_THIS)
{
MSG msg;
Oct 8, 2002
Oct 8, 2002
364
365
while ( PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
Apr 26, 2001
Apr 26, 2001
366
367
368
DispatchMessage(&msg);
}
}
Apr 2, 2009
Apr 2, 2009
369
Oct 17, 2009
Oct 17, 2009
370
if ( SDL_GetAppState() & SDL_APPMOUSEFOCUS ) {
May 7, 2009
May 7, 2009
371
DIB_GenerateMouseMotionEvent( this );
Apr 2, 2009
Apr 2, 2009
372
}
Apr 26, 2001
Apr 26, 2001
373
374
}
May 18, 2006
May 18, 2006
375
376
static HKL hLayoutUS = NULL;
Apr 26, 2001
Apr 26, 2001
377
378
void DIB_InitOSKeymap(_THIS)
{
May 18, 2006
May 18, 2006
379
int i;
Sep 23, 2006
Sep 23, 2006
380
381
#ifndef _WIN32_WCE
char current_layout[KL_NAMELENGTH];
May 18, 2006
May 18, 2006
382
383
384
385
386
GetKeyboardLayoutName(current_layout);
//printf("Initial Keyboard Layout Name: '%s'\n", current_layout);
hLayoutUS = LoadKeyboardLayout("00000409", KLF_NOTELLSHELL);
Sep 23, 2006
Sep 23, 2006
387
May 18, 2006
May 18, 2006
388
389
390
391
392
if (!hLayoutUS) {
//printf("Failed to load US keyboard layout. Using current.\n");
hLayoutUS = GetKeyboardLayout(0);
}
LoadKeyboardLayout(current_layout, KLF_ACTIVATE);
Sep 23, 2006
Sep 23, 2006
393
394
395
#else
#if _WIN32_WCE >=420
TCHAR current_layout[KL_NAMELENGTH];
Apr 26, 2001
Apr 26, 2001
396
Sep 23, 2006
Sep 23, 2006
397
398
399
400
401
402
403
404
405
406
407
408
GetKeyboardLayoutName(current_layout);
//printf("Initial Keyboard Layout Name: '%s'\n", current_layout);
hLayoutUS = LoadKeyboardLayout(L"00000409", 0);
if (!hLayoutUS) {
//printf("Failed to load US keyboard layout. Using current.\n");
hLayoutUS = GetKeyboardLayout(0);
}
LoadKeyboardLayout(current_layout, 0);
#endif // _WIN32_WCE >=420
#endif
Apr 26, 2001
Apr 26, 2001
409
/* Map the VK keysyms */
Feb 19, 2006
Feb 19, 2006
410
for ( i=0; i<SDL_arraysize(VK_keymap); ++i )
Apr 26, 2001
Apr 26, 2001
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
VK_keymap[i] = SDLK_UNKNOWN;
VK_keymap[VK_BACK] = SDLK_BACKSPACE;
VK_keymap[VK_TAB] = SDLK_TAB;
VK_keymap[VK_CLEAR] = SDLK_CLEAR;
VK_keymap[VK_RETURN] = SDLK_RETURN;
VK_keymap[VK_PAUSE] = SDLK_PAUSE;
VK_keymap[VK_ESCAPE] = SDLK_ESCAPE;
VK_keymap[VK_SPACE] = SDLK_SPACE;
VK_keymap[VK_APOSTROPHE] = SDLK_QUOTE;
VK_keymap[VK_COMMA] = SDLK_COMMA;
VK_keymap[VK_MINUS] = SDLK_MINUS;
VK_keymap[VK_PERIOD] = SDLK_PERIOD;
VK_keymap[VK_SLASH] = SDLK_SLASH;
VK_keymap[VK_0] = SDLK_0;
VK_keymap[VK_1] = SDLK_1;
VK_keymap[VK_2] = SDLK_2;
VK_keymap[VK_3] = SDLK_3;
VK_keymap[VK_4] = SDLK_4;
VK_keymap[VK_5] = SDLK_5;
VK_keymap[VK_6] = SDLK_6;
VK_keymap[VK_7] = SDLK_7;
VK_keymap[VK_8] = SDLK_8;
VK_keymap[VK_9] = SDLK_9;
VK_keymap[VK_SEMICOLON] = SDLK_SEMICOLON;
VK_keymap[VK_EQUALS] = SDLK_EQUALS;
VK_keymap[VK_LBRACKET] = SDLK_LEFTBRACKET;
VK_keymap[VK_BACKSLASH] = SDLK_BACKSLASH;
Jan 19, 2006
Jan 19, 2006
439
VK_keymap[VK_OEM_102] = SDLK_LESS;
Apr 26, 2001
Apr 26, 2001
440
441
VK_keymap[VK_RBRACKET] = SDLK_RIGHTBRACKET;
VK_keymap[VK_GRAVE] = SDLK_BACKQUOTE;
Mar 31, 2002
Mar 31, 2002
442
VK_keymap[VK_BACKTICK] = SDLK_BACKQUOTE;
Apr 26, 2001
Apr 26, 2001
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
VK_keymap[VK_A] = SDLK_a;
VK_keymap[VK_B] = SDLK_b;
VK_keymap[VK_C] = SDLK_c;
VK_keymap[VK_D] = SDLK_d;
VK_keymap[VK_E] = SDLK_e;
VK_keymap[VK_F] = SDLK_f;
VK_keymap[VK_G] = SDLK_g;
VK_keymap[VK_H] = SDLK_h;
VK_keymap[VK_I] = SDLK_i;
VK_keymap[VK_J] = SDLK_j;
VK_keymap[VK_K] = SDLK_k;
VK_keymap[VK_L] = SDLK_l;
VK_keymap[VK_M] = SDLK_m;
VK_keymap[VK_N] = SDLK_n;
VK_keymap[VK_O] = SDLK_o;
VK_keymap[VK_P] = SDLK_p;
VK_keymap[VK_Q] = SDLK_q;
VK_keymap[VK_R] = SDLK_r;
VK_keymap[VK_S] = SDLK_s;
VK_keymap[VK_T] = SDLK_t;
VK_keymap[VK_U] = SDLK_u;
VK_keymap[VK_V] = SDLK_v;
VK_keymap[VK_W] = SDLK_w;
VK_keymap[VK_X] = SDLK_x;
VK_keymap[VK_Y] = SDLK_y;
VK_keymap[VK_Z] = SDLK_z;
VK_keymap[VK_DELETE] = SDLK_DELETE;
VK_keymap[VK_NUMPAD0] = SDLK_KP0;
VK_keymap[VK_NUMPAD1] = SDLK_KP1;
VK_keymap[VK_NUMPAD2] = SDLK_KP2;
VK_keymap[VK_NUMPAD3] = SDLK_KP3;
VK_keymap[VK_NUMPAD4] = SDLK_KP4;
VK_keymap[VK_NUMPAD5] = SDLK_KP5;
VK_keymap[VK_NUMPAD6] = SDLK_KP6;
VK_keymap[VK_NUMPAD7] = SDLK_KP7;
VK_keymap[VK_NUMPAD8] = SDLK_KP8;
VK_keymap[VK_NUMPAD9] = SDLK_KP9;
VK_keymap[VK_DECIMAL] = SDLK_KP_PERIOD;
VK_keymap[VK_DIVIDE] = SDLK_KP_DIVIDE;
VK_keymap[VK_MULTIPLY] = SDLK_KP_MULTIPLY;
VK_keymap[VK_SUBTRACT] = SDLK_KP_MINUS;
VK_keymap[VK_ADD] = SDLK_KP_PLUS;
VK_keymap[VK_UP] = SDLK_UP;
VK_keymap[VK_DOWN] = SDLK_DOWN;
VK_keymap[VK_RIGHT] = SDLK_RIGHT;
VK_keymap[VK_LEFT] = SDLK_LEFT;
VK_keymap[VK_INSERT] = SDLK_INSERT;
VK_keymap[VK_HOME] = SDLK_HOME;
VK_keymap[VK_END] = SDLK_END;
VK_keymap[VK_PRIOR] = SDLK_PAGEUP;
VK_keymap[VK_NEXT] = SDLK_PAGEDOWN;
VK_keymap[VK_F1] = SDLK_F1;
VK_keymap[VK_F2] = SDLK_F2;
VK_keymap[VK_F3] = SDLK_F3;
VK_keymap[VK_F4] = SDLK_F4;
VK_keymap[VK_F5] = SDLK_F5;
VK_keymap[VK_F6] = SDLK_F6;
VK_keymap[VK_F7] = SDLK_F7;
VK_keymap[VK_F8] = SDLK_F8;
VK_keymap[VK_F9] = SDLK_F9;
VK_keymap[VK_F10] = SDLK_F10;
VK_keymap[VK_F11] = SDLK_F11;
VK_keymap[VK_F12] = SDLK_F12;
VK_keymap[VK_F13] = SDLK_F13;
VK_keymap[VK_F14] = SDLK_F14;
VK_keymap[VK_F15] = SDLK_F15;
VK_keymap[VK_NUMLOCK] = SDLK_NUMLOCK;
VK_keymap[VK_CAPITAL] = SDLK_CAPSLOCK;
VK_keymap[VK_SCROLL] = SDLK_SCROLLOCK;
VK_keymap[VK_RSHIFT] = SDLK_RSHIFT;
VK_keymap[VK_LSHIFT] = SDLK_LSHIFT;
VK_keymap[VK_RCONTROL] = SDLK_RCTRL;
VK_keymap[VK_LCONTROL] = SDLK_LCTRL;
VK_keymap[VK_RMENU] = SDLK_RALT;
VK_keymap[VK_LMENU] = SDLK_LALT;
VK_keymap[VK_RWIN] = SDLK_RSUPER;
VK_keymap[VK_LWIN] = SDLK_LSUPER;
VK_keymap[VK_HELP] = SDLK_HELP;
#ifdef VK_PRINT
VK_keymap[VK_PRINT] = SDLK_PRINT;
#endif
VK_keymap[VK_SNAPSHOT] = SDLK_PRINT;
VK_keymap[VK_CANCEL] = SDLK_BREAK;
VK_keymap[VK_APPS] = SDLK_MENU;
Feb 16, 2009
Feb 16, 2009
532
533
534
535
536
Arrows_keymap[3] = 0x25;
Arrows_keymap[2] = 0x26;
Arrows_keymap[1] = 0x27;
Arrows_keymap[0] = 0x28;
Apr 26, 2001
Apr 26, 2001
537
538
}
May 18, 2006
May 18, 2006
539
540
541
542
#define EXTKEYPAD(keypad) ((scancode & 0x100)?(mvke):(keypad))
static int SDL_MapVirtualKey(int scancode, int vkey)
{
Sep 23, 2006
Sep 23, 2006
543
#ifndef _WIN32_WCE
May 18, 2006
May 18, 2006
544
int mvke = MapVirtualKeyEx(scancode & 0xFF, 1, hLayoutUS);
Sep 23, 2006
Sep 23, 2006
545
546
547
#else
int mvke = MapVirtualKey(scancode & 0xFF, 1);
#endif
May 18, 2006
May 18, 2006
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
switch(vkey) {
/* These are always correct */
case VK_DIVIDE:
case VK_MULTIPLY:
case VK_SUBTRACT:
case VK_ADD:
case VK_LWIN:
case VK_RWIN:
case VK_APPS:
/* These are already handled */
case VK_LCONTROL:
case VK_RCONTROL:
case VK_LSHIFT:
case VK_RSHIFT:
case VK_LMENU:
case VK_RMENU:
case VK_SNAPSHOT:
case VK_PAUSE:
return vkey;
}
switch(mvke) {
/* Distinguish between keypad and extended keys */
case VK_INSERT: return EXTKEYPAD(VK_NUMPAD0);
case VK_DELETE: return EXTKEYPAD(VK_DECIMAL);
case VK_END: return EXTKEYPAD(VK_NUMPAD1);
case VK_DOWN: return EXTKEYPAD(VK_NUMPAD2);
case VK_NEXT: return EXTKEYPAD(VK_NUMPAD3);
case VK_LEFT: return EXTKEYPAD(VK_NUMPAD4);
case VK_CLEAR: return EXTKEYPAD(VK_NUMPAD5);
case VK_RIGHT: return EXTKEYPAD(VK_NUMPAD6);
case VK_HOME: return EXTKEYPAD(VK_NUMPAD7);
case VK_UP: return EXTKEYPAD(VK_NUMPAD8);
case VK_PRIOR: return EXTKEYPAD(VK_NUMPAD9);
}
return mvke?mvke:vkey;
}
Mar 24, 2018
Mar 24, 2018
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
#ifndef MAPVK_VK_TO_VSC
#define MAPVK_VK_TO_VSC 0
#endif
void
WIN_ResetDeadKeys(void)
{
/*
if a deadkey has been typed, but not the next character (which the deadkey might modify),
this tries to undo the effect pressing the deadkey.
see: http://archives.miloush.net/michkap/archive/2006/09/10/748775.html
*/
BYTE keyboardState[256];
WCHAR buffer[16];
UINT keycode, scancode, i;
int result;
GetKeyboardState(keyboardState);
keycode = VK_SPACE;
scancode = MapVirtualKey(keycode, MAPVK_VK_TO_VSC);
if (scancode == 0) {
return; /* the keyboard doesn't have this key */
}
for (i = 0; i < 5; i++) {
result = SDL_ToUnicode(keycode, scancode, keyboardState, (LPWSTR)buffer, 16, 0);
if (result > 0) {
return; /* success */
}
}
}
Mar 6, 2006
Mar 6, 2006
617
static SDL_keysym *TranslateKey(WPARAM vkey, UINT scancode, SDL_keysym *keysym, int pressed)
Apr 26, 2001
Apr 26, 2001
618
619
620
621
622
{
/* Set the keysym information */
keysym->scancode = (unsigned char) scancode;
keysym->mod = KMOD_NONE;
keysym->unicode = 0;
Feb 16, 2009
Feb 16, 2009
623
624
625
626
627
628
629
630
631
if ((vkey == VK_RETURN) && (scancode & 0x100)) {
/* No VK_ code for the keypad enter key */
keysym->sym = SDLK_KP_ENTER;
}
else {
keysym->sym = VK_keymap[SDL_MapVirtualKey(scancode, vkey)];
}
Jan 19, 2006
Jan 19, 2006
632
if ( pressed && SDL_TranslateUNICODE ) {
Apr 26, 2001
Apr 26, 2001
633
634
#ifdef NO_GETKEYBOARDSTATE
/* Uh oh, better hope the vkey is close enough.. */
Feb 16, 2009
Feb 16, 2009
635
if((keysym->sym == vkey) || (vkey > 0x7f))
Apr 26, 2001
Apr 26, 2001
636
637
keysym->unicode = vkey;
#else
Jan 19, 2006
Jan 19, 2006
638
639
BYTE keystate[256];
Uint16 wchars[2];
Apr 26, 2001
Apr 26, 2001
640
641
GetKeyboardState(keystate);
Apr 13, 2009
Apr 13, 2009
642
643
644
645
646
647
648
/* Numlock isn't taken into account in ToUnicode,
* so we handle it as a special case here */
if ((keystate[VK_NUMLOCK] & 1) && vkey >= VK_NUMPAD0 && vkey <= VK_NUMPAD9)
{
keysym->unicode = vkey - VK_NUMPAD0 + '0';
}
else if (SDL_ToUnicode((UINT)vkey, scancode, keystate, wchars, sizeof(wchars)/sizeof(wchars[0]), 0) > 0)
Jan 19, 2006
Jan 19, 2006
649
650
{
keysym->unicode = wchars[0];
Apr 26, 2001
Apr 26, 2001
651
652
653
}
#endif /* NO_GETKEYBOARDSTATE */
}
May 18, 2006
May 18, 2006
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
#if 0
{
HKL hLayoutCurrent = GetKeyboardLayout(0);
int sc = scancode & 0xFF;
printf("SYM:%d, VK:0x%02X, SC:0x%04X, US:(1:0x%02X, 3:0x%02X), "
"Current:(1:0x%02X, 3:0x%02X)\n",
keysym->sym, vkey, scancode,
MapVirtualKeyEx(sc, 1, hLayoutUS),
MapVirtualKeyEx(sc, 3, hLayoutUS),
MapVirtualKeyEx(sc, 1, hLayoutCurrent),
MapVirtualKeyEx(sc, 3, hLayoutCurrent)
);
}
#endif
Apr 26, 2001
Apr 26, 2001
670
671
672
673
674
return(keysym);
}
int DIB_CreateWindow(_THIS)
{
Sep 21, 2009
Sep 21, 2009
675
char *windowid;
Sep 29, 2005
Sep 29, 2005
676
Jan 29, 2006
Jan 29, 2006
677
SDL_RegisterApp(NULL, 0, 0);
Sep 29, 2005
Sep 29, 2005
678
Sep 21, 2009
Sep 21, 2009
679
windowid = SDL_getenv("SDL_WINDOWID");
Jan 29, 2006
Jan 29, 2006
680
681
SDL_windowid = (windowid != NULL);
if ( SDL_windowid ) {
Sep 29, 2005
Sep 29, 2005
682
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
Jan 29, 2006
Jan 29, 2006
683
/* wince 2.1 does not have strtol */
Feb 7, 2006
Feb 7, 2006
684
685
wchar_t *windowid_t = SDL_malloc((SDL_strlen(windowid) + 1) * sizeof(wchar_t));
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, windowid, -1, windowid_t, SDL_strlen(windowid) + 1);
Jan 29, 2006
Jan 29, 2006
686
SDL_Window = (HWND)wcstol(windowid_t, NULL, 0);
Feb 7, 2006
Feb 7, 2006
687
SDL_free(windowid_t);
Mar 24, 2018
Mar 24, 2018
688
689
#elif defined(_WIN64)
SDL_Window = (HWND)SDL_strtoull(windowid, NULL, 0);
Sep 29, 2005
Sep 29, 2005
690
#else
Mar 24, 2018
Mar 24, 2018
691
SDL_Window = (HWND)SDL_strtoul(windowid, NULL, 0);
Sep 29, 2005
Sep 29, 2005
692
#endif
Nov 15, 2004
Nov 15, 2004
693
694
695
696
697
698
699
700
if ( SDL_Window == NULL ) {
SDL_SetError("Couldn't get user specified window");
return(-1);
}
/* DJM: we want all event's for the user specified
window to be handled by SDL.
*/
Mar 6, 2006
Mar 6, 2006
701
702
userWindowProc = (WNDPROCTYPE)GetWindowLongPtr(SDL_Window, GWLP_WNDPROC);
SetWindowLongPtr(SDL_Window, GWLP_WNDPROC, (LONG_PTR)WinMessage);
Apr 26, 2001
Apr 26, 2001
703
704
705
} else {
SDL_Window = CreateWindow(SDL_Appname, SDL_Appname,
(WS_OVERLAPPED|WS_CAPTION|WS_SYSMENU|WS_MINIMIZEBOX),
Feb 16, 2004
Feb 16, 2004
706
CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, NULL, NULL, SDL_Instance, NULL);
Apr 26, 2001
Apr 26, 2001
707
708
709
710
711
712
if ( SDL_Window == NULL ) {
SDL_SetError("Couldn't create window");
return(-1);
}
ShowWindow(SDL_Window, SW_HIDE);
}
Mar 14, 2006
Mar 14, 2006
713
714
715
716
717
718
719
/* JC 14 Mar 2006
Flush the message loop or this can cause big problems later
Especially if the user decides to use dialog boxes or assert()!
*/
WIN_FlushMessageQueue();
Apr 26, 2001
Apr 26, 2001
720
721
722
723
724
return(0);
}
void DIB_DestroyWindow(_THIS)
{
Nov 15, 2004
Nov 15, 2004
725
if ( SDL_windowid ) {
Mar 6, 2006
Mar 6, 2006
726
SetWindowLongPtr(SDL_Window, GWLP_WNDPROC, (LONG_PTR)userWindowProc);
Nov 15, 2004
Nov 15, 2004
727
} else {
Apr 26, 2001
Apr 26, 2001
728
729
DestroyWindow(SDL_Window);
}
Jan 29, 2006
Jan 29, 2006
730
SDL_UnregisterApp();
Mar 14, 2006
Mar 14, 2006
731
732
733
734
735
736
/* JC 14 Mar 2006
Flush the message loop or this can cause big problems later
Especially if the user decides to use dialog boxes or assert()!
*/
WIN_FlushMessageQueue();
Apr 26, 2001
Apr 26, 2001
737
}