Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Undo keyboard layout based alphabetic key mapping. Grr.... HACK HACK …
Browse files Browse the repository at this point in the history
…HACK...
  • Loading branch information
slouken committed Feb 9, 2008
1 parent 7630ca4 commit e797fef
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/video/win32/SDL_win32events.c
Expand Up @@ -47,6 +47,33 @@
#define GET_XBUTTON_WPARAM(w) (HIWORD(w))
#endif

static WPARAM
RemapVKEY(WPARAM wParam, LPARAM lParam)
{
/* Windows remaps alphabetic keys based on current layout.
We try to provide USB scancodes, so undo this mapping.
*/
if (wParam >= 'A' && wParam <= 'Z') {
/* Alphabetic scancodes for PC keyboards */
static BYTE scancodes[26] = {
30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38, 50, 49, 24,
25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44
};
BYTE scancode = (lParam >> 16) & 0xFF;
int i;

if (scancode != scancodes[wParam - 'A']) {
for (i = 0; i < SDL_arraysize(scancodes); ++i) {
if (scancode == scancodes[i]) {
wParam = 'A' + i;
break;
}
}
}
}
return wParam;
}

LRESULT CALLBACK
WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
Expand Down Expand Up @@ -310,6 +337,7 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
}

index = data->videodata->keyboard;
wParam = RemapVKEY(wParam, lParam);
switch (wParam) {
case VK_CONTROL:
if (lParam & EXTENDED_KEYMASK)
Expand Down Expand Up @@ -353,6 +381,7 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
int index;

index = data->videodata->keyboard;
wParam = RemapVKEY(wParam, lParam);
switch (wParam) {
case VK_CONTROL:
if (lParam & EXTENDED_KEYMASK)
Expand Down

0 comments on commit e797fef

Please sign in to comment.