wined3d: Replace wined3d_surface_update_desc() with wined3d_texture_update_desc().
[wine.git] / dlls / dinput / keyboard.c
bloba5967d78c47deb69d719f648ee1b37cdd9e7a521
1 /* DirectInput Keyboard device
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
6 * Copyright 2005 Raphael Junqueira
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include <stdarg.h>
27 #include <string.h>
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winuser.h"
31 #include "winerror.h"
32 #include "dinput.h"
34 #include "dinput_private.h"
35 #include "device_private.h"
36 #include "wine/debug.h"
37 #include "wine/unicode.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
41 #define WINE_DINPUT_KEYBOARD_MAX_KEYS 256
43 static const IDirectInputDevice8AVtbl SysKeyboardAvt;
44 static const IDirectInputDevice8WVtbl SysKeyboardWvt;
46 typedef struct SysKeyboardImpl SysKeyboardImpl;
47 struct SysKeyboardImpl
49 struct IDirectInputDeviceImpl base;
50 BYTE DInputKeyState[WINE_DINPUT_KEYBOARD_MAX_KEYS];
53 static inline SysKeyboardImpl *impl_from_IDirectInputDevice8A(IDirectInputDevice8A *iface)
55 return CONTAINING_RECORD(CONTAINING_RECORD(iface, IDirectInputDeviceImpl, IDirectInputDevice8A_iface), SysKeyboardImpl, base);
57 static inline SysKeyboardImpl *impl_from_IDirectInputDevice8W(IDirectInputDevice8W *iface)
59 return CONTAINING_RECORD(CONTAINING_RECORD(iface, IDirectInputDeviceImpl, IDirectInputDevice8W_iface), SysKeyboardImpl, base);
61 static inline IDirectInputDevice8A *IDirectInputDevice8A_from_impl(SysKeyboardImpl *This)
63 return &This->base.IDirectInputDevice8A_iface;
65 static inline IDirectInputDevice8W *IDirectInputDevice8W_from_impl(SysKeyboardImpl *This)
67 return &This->base.IDirectInputDevice8W_iface;
70 static BYTE map_dik_code(DWORD scanCode, DWORD vkCode)
72 static const BYTE asciiCodes[] =
73 {/*32*/ DIK_SPACE,0,0,0,0,0,0,DIK_APOSTROPHE,
74 /*40*/ 0,0,0,0,DIK_COMMA,DIK_MINUS,DIK_PERIOD,DIK_SLASH,
75 /*48*/ DIK_0,DIK_1,DIK_2,DIK_3,DIK_4,DIK_5,DIK_6,DIK_7,
76 /*56*/ DIK_8,DIK_9,DIK_COLON,DIK_SEMICOLON,0,DIK_EQUALS,0,0,
77 /*64*/ DIK_AT,DIK_A,DIK_B,DIK_C,DIK_D,DIK_E,DIK_F,DIK_G,
78 /*72*/ DIK_H,DIK_I,DIK_J,DIK_K,DIK_L,DIK_M,DIK_N,DIK_O,
79 /*80*/ DIK_P,DIK_Q,DIK_R,DIK_S,DIK_T,DIK_U,DIK_V,DIK_W,
80 /*88*/ DIK_X,DIK_Y,DIK_Z,DIK_LBRACKET,0,DIK_RBRACKET,DIK_CIRCUMFLEX,DIK_UNDERLINE} /*95*/ ;
82 BYTE out_code = 0;
83 WCHAR c = MapVirtualKeyW(vkCode,MAPVK_VK_TO_CHAR);
85 if (c > 31 && c < 96)
86 out_code = asciiCodes[c - 32];
88 if (out_code == 0)
89 out_code = scanCode;
91 return out_code;
94 static int KeyboardCallback( LPDIRECTINPUTDEVICE8A iface, WPARAM wparam, LPARAM lparam )
96 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
97 int dik_code, ret = This->base.dwCoopLevel & DISCL_EXCLUSIVE;
98 KBDLLHOOKSTRUCT *hook = (KBDLLHOOKSTRUCT *)lparam;
99 BYTE new_diks;
101 if (wparam != WM_KEYDOWN && wparam != WM_KEYUP &&
102 wparam != WM_SYSKEYDOWN && wparam != WM_SYSKEYUP)
103 return 0;
105 TRACE("(%p) %ld,%ld\n", iface, wparam, lparam);
107 switch (hook->vkCode)
109 /* R-Shift is special - it is an extended key with separate scan code */
110 case VK_RSHIFT : dik_code = DIK_RSHIFT; break;
111 case VK_PAUSE : dik_code = DIK_PAUSE; break;
112 case VK_NUMLOCK : dik_code = DIK_NUMLOCK; break;
113 case VK_SUBTRACT: dik_code = DIK_SUBTRACT; break;
114 default:
115 dik_code = map_dik_code(hook->scanCode & 0xff, hook->vkCode);
116 if (hook->flags & LLKHF_EXTENDED) dik_code |= 0x80;
118 new_diks = hook->flags & LLKHF_UP ? 0 : 0x80;
120 /* returns now if key event already known */
121 if (new_diks == This->DInputKeyState[dik_code])
122 return ret;
124 This->DInputKeyState[dik_code] = new_diks;
125 TRACE(" setting %02X to %02X\n", dik_code, This->DInputKeyState[dik_code]);
127 EnterCriticalSection(&This->base.crit);
128 queue_event(iface, DIDFT_MAKEINSTANCE(dik_code) | DIDFT_PSHBUTTON,
129 new_diks, GetCurrentTime(), This->base.dinput->evsequence++);
130 LeaveCriticalSection(&This->base.crit);
132 return ret;
135 const GUID DInput_Wine_Keyboard_GUID = { /* 0ab8648a-7735-11d2-8c73-71df54a96441 */
136 0x0ab8648a, 0x7735, 0x11d2, {0x8c, 0x73, 0x71, 0xdf, 0x54, 0xa9, 0x64, 0x41}
139 static void fill_keyboard_dideviceinstanceA(LPDIDEVICEINSTANCEA lpddi, DWORD version) {
140 DWORD dwSize;
141 DIDEVICEINSTANCEA ddi;
143 dwSize = lpddi->dwSize;
145 TRACE("%d %p\n", dwSize, lpddi);
147 memset(lpddi, 0, dwSize);
148 memset(&ddi, 0, sizeof(ddi));
150 ddi.dwSize = dwSize;
151 ddi.guidInstance = GUID_SysKeyboard;/* DInput's GUID */
152 ddi.guidProduct = DInput_Wine_Keyboard_GUID; /* Vendor's GUID */
153 if (version >= 0x0800)
154 ddi.dwDevType = DI8DEVTYPE_KEYBOARD | (DI8DEVTYPEKEYBOARD_UNKNOWN << 8);
155 else
156 ddi.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
157 strcpy(ddi.tszInstanceName, "Keyboard");
158 strcpy(ddi.tszProductName, "Wine Keyboard");
160 memcpy(lpddi, &ddi, (dwSize < sizeof(ddi) ? dwSize : sizeof(ddi)));
163 static void fill_keyboard_dideviceinstanceW(LPDIDEVICEINSTANCEW lpddi, DWORD version) {
164 DWORD dwSize;
165 DIDEVICEINSTANCEW ddi;
167 dwSize = lpddi->dwSize;
169 TRACE("%d %p\n", dwSize, lpddi);
171 memset(lpddi, 0, dwSize);
172 memset(&ddi, 0, sizeof(ddi));
174 ddi.dwSize = dwSize;
175 ddi.guidInstance = GUID_SysKeyboard;/* DInput's GUID */
176 ddi.guidProduct = DInput_Wine_Keyboard_GUID; /* Vendor's GUID */
177 if (version >= 0x0800)
178 ddi.dwDevType = DI8DEVTYPE_KEYBOARD | (DI8DEVTYPEKEYBOARD_UNKNOWN << 8);
179 else
180 ddi.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
181 MultiByteToWideChar(CP_ACP, 0, "Keyboard", -1, ddi.tszInstanceName, MAX_PATH);
182 MultiByteToWideChar(CP_ACP, 0, "Wine Keyboard", -1, ddi.tszProductName, MAX_PATH);
184 memcpy(lpddi, &ddi, (dwSize < sizeof(ddi) ? dwSize : sizeof(ddi)));
187 static HRESULT keyboarddev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, DWORD version, int id)
189 if (id != 0)
190 return E_FAIL;
192 if ((dwDevType == 0) ||
193 ((dwDevType == DIDEVTYPE_KEYBOARD) && (version < 0x0800)) ||
194 (((dwDevType == DI8DEVCLASS_KEYBOARD) || (dwDevType == DI8DEVTYPE_KEYBOARD)) && (version >= 0x0800))) {
195 TRACE("Enumerating the Keyboard device\n");
197 fill_keyboard_dideviceinstanceA(lpddi, version);
199 return S_OK;
202 return S_FALSE;
205 static HRESULT keyboarddev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, DWORD version, int id)
207 if (id != 0)
208 return E_FAIL;
210 if ((dwDevType == 0) ||
211 ((dwDevType == DIDEVTYPE_KEYBOARD) && (version < 0x0800)) ||
212 (((dwDevType == DI8DEVCLASS_KEYBOARD) || (dwDevType == DI8DEVTYPE_KEYBOARD)) && (version >= 0x0800))) {
213 TRACE("Enumerating the Keyboard device\n");
215 fill_keyboard_dideviceinstanceW(lpddi, version);
217 return S_OK;
220 return S_FALSE;
223 static SysKeyboardImpl *alloc_device(REFGUID rguid, IDirectInputImpl *dinput)
225 SysKeyboardImpl* newDevice;
226 LPDIDATAFORMAT df = NULL;
227 int i, idx = 0;
229 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysKeyboardImpl));
230 newDevice->base.IDirectInputDevice8A_iface.lpVtbl = &SysKeyboardAvt;
231 newDevice->base.IDirectInputDevice8W_iface.lpVtbl = &SysKeyboardWvt;
232 newDevice->base.ref = 1;
233 memcpy(&newDevice->base.guid, rguid, sizeof(*rguid));
234 newDevice->base.dinput = dinput;
235 newDevice->base.event_proc = KeyboardCallback;
236 InitializeCriticalSection(&newDevice->base.crit);
237 newDevice->base.crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": SysKeyboardImpl*->base.crit");
239 /* Create copy of default data format */
240 if (!(df = HeapAlloc(GetProcessHeap(), 0, c_dfDIKeyboard.dwSize))) goto failed;
241 memcpy(df, &c_dfDIKeyboard, c_dfDIKeyboard.dwSize);
242 if (!(df->rgodf = HeapAlloc(GetProcessHeap(), 0, df->dwNumObjs * df->dwObjSize))) goto failed;
244 for (i = 0; i < df->dwNumObjs; i++)
246 char buf[MAX_PATH];
248 if (!GetKeyNameTextA(((i & 0x7f) << 16) | ((i & 0x80) << 17), buf, sizeof(buf)))
249 continue;
251 memcpy(&df->rgodf[idx], &c_dfDIKeyboard.rgodf[i], df->dwObjSize);
252 df->rgodf[idx++].dwType = DIDFT_MAKEINSTANCE(i) | DIDFT_PSHBUTTON;
254 df->dwNumObjs = idx;
256 newDevice->base.data_format.wine_df = df;
257 IDirectInput_AddRef(&newDevice->base.dinput->IDirectInput7A_iface);
259 EnterCriticalSection(&dinput->crit);
260 list_add_tail(&dinput->devices_list, &newDevice->base.entry);
261 LeaveCriticalSection(&dinput->crit);
263 return newDevice;
265 failed:
266 if (df) HeapFree(GetProcessHeap(), 0, df->rgodf);
267 HeapFree(GetProcessHeap(), 0, df);
268 HeapFree(GetProcessHeap(), 0, newDevice);
269 return NULL;
273 static HRESULT keyboarddev_create_device(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPVOID *pdev, int unicode)
275 TRACE("%p %s %s %p %i\n", dinput, debugstr_guid(rguid), debugstr_guid(riid), pdev, unicode);
276 *pdev = NULL;
278 if (IsEqualGUID(&GUID_SysKeyboard, rguid) || /* Generic Keyboard */
279 IsEqualGUID(&DInput_Wine_Keyboard_GUID, rguid)) /* Wine Keyboard */
281 SysKeyboardImpl *This;
283 if (riid == NULL)
284 ;/* nothing */
285 else if (IsEqualGUID(&IID_IDirectInputDeviceA, riid) ||
286 IsEqualGUID(&IID_IDirectInputDevice2A, riid) ||
287 IsEqualGUID(&IID_IDirectInputDevice7A, riid) ||
288 IsEqualGUID(&IID_IDirectInputDevice8A, riid))
290 unicode = 0;
292 else if (IsEqualGUID(&IID_IDirectInputDeviceW, riid) ||
293 IsEqualGUID(&IID_IDirectInputDevice2W, riid) ||
294 IsEqualGUID(&IID_IDirectInputDevice7W, riid) ||
295 IsEqualGUID(&IID_IDirectInputDevice8W, riid))
297 unicode = 1;
299 else
301 WARN("no interface\n");
302 return DIERR_NOINTERFACE;
305 This = alloc_device(rguid, dinput);
306 TRACE("Created a Keyboard device (%p)\n", This);
308 if (!This) return DIERR_OUTOFMEMORY;
310 if (unicode)
311 *pdev = &This->base.IDirectInputDevice8W_iface;
312 else
313 *pdev = &This->base.IDirectInputDevice8A_iface;
315 return DI_OK;
318 return DIERR_DEVICENOTREG;
321 const struct dinput_device keyboard_device = {
322 "Wine keyboard driver",
323 keyboarddev_enum_deviceA,
324 keyboarddev_enum_deviceW,
325 keyboarddev_create_device
328 static HRESULT WINAPI SysKeyboardWImpl_GetDeviceState(LPDIRECTINPUTDEVICE8W iface, DWORD len, LPVOID ptr)
330 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
331 TRACE("(%p)->(%d,%p)\n", This, len, ptr);
333 if (!This->base.acquired) return DIERR_NOTACQUIRED;
335 if (len != This->base.data_format.user_df->dwDataSize )
336 return DIERR_INVALIDPARAM;
338 EnterCriticalSection(&This->base.crit);
340 if (TRACE_ON(dinput)) {
341 int i;
342 for (i = 0; i < WINE_DINPUT_KEYBOARD_MAX_KEYS; i++) {
343 if (This->DInputKeyState[i] != 0x00)
344 TRACE(" - %02X: %02x\n", i, This->DInputKeyState[i]);
348 fill_DataFormat(ptr, len, This->DInputKeyState, &This->base.data_format);
349 LeaveCriticalSection(&This->base.crit);
351 return DI_OK;
354 static HRESULT WINAPI SysKeyboardAImpl_GetDeviceState(LPDIRECTINPUTDEVICE8A iface, DWORD len, LPVOID ptr)
356 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
357 return SysKeyboardWImpl_GetDeviceState(IDirectInputDevice8W_from_impl(This), len, ptr);
360 /******************************************************************************
361 * GetCapabilities : get the device capabilities
363 static HRESULT WINAPI SysKeyboardWImpl_GetCapabilities(LPDIRECTINPUTDEVICE8W iface, LPDIDEVCAPS lpDIDevCaps)
365 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
366 DIDEVCAPS devcaps;
368 TRACE("(this=%p,%p)\n",This,lpDIDevCaps);
370 if ((lpDIDevCaps->dwSize != sizeof(DIDEVCAPS)) && (lpDIDevCaps->dwSize != sizeof(DIDEVCAPS_DX3))) {
371 WARN("invalid parameter\n");
372 return DIERR_INVALIDPARAM;
375 devcaps.dwSize = lpDIDevCaps->dwSize;
376 devcaps.dwFlags = DIDC_ATTACHED | DIDC_EMULATED;
377 if (This->base.dinput->dwVersion >= 0x0800)
378 devcaps.dwDevType = DI8DEVTYPE_KEYBOARD | (DI8DEVTYPEKEYBOARD_PCENH << 8);
379 else
380 devcaps.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_PCENH << 8);
381 devcaps.dwAxes = 0;
382 devcaps.dwButtons = This->base.data_format.wine_df->dwNumObjs;
383 devcaps.dwPOVs = 0;
384 devcaps.dwFFSamplePeriod = 0;
385 devcaps.dwFFMinTimeResolution = 0;
386 devcaps.dwFirmwareRevision = 100;
387 devcaps.dwHardwareRevision = 100;
388 devcaps.dwFFDriverVersion = 0;
390 memcpy(lpDIDevCaps, &devcaps, lpDIDevCaps->dwSize);
392 return DI_OK;
395 static HRESULT WINAPI SysKeyboardAImpl_GetCapabilities(LPDIRECTINPUTDEVICE8A iface, LPDIDEVCAPS lpDIDevCaps)
397 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
398 return SysKeyboardWImpl_GetCapabilities(IDirectInputDevice8W_from_impl(This), lpDIDevCaps);
401 /******************************************************************************
402 * GetObjectInfo : get information about a device object such as a button
403 * or axis
405 static HRESULT WINAPI
406 SysKeyboardAImpl_GetObjectInfo(
407 LPDIRECTINPUTDEVICE8A iface,
408 LPDIDEVICEOBJECTINSTANCEA pdidoi,
409 DWORD dwObj,
410 DWORD dwHow)
412 HRESULT res;
413 LONG scan;
415 res = IDirectInputDevice2AImpl_GetObjectInfo(iface, pdidoi, dwObj, dwHow);
416 if (res != DI_OK) return res;
418 scan = DIDFT_GETINSTANCE(pdidoi->dwType);
419 if (scan == DIK_PAUSE || scan == DIK_NUMLOCK) scan ^= 0x80;
420 if (!GetKeyNameTextA((scan & 0x80) << 17 | (scan & 0x7f) << 16,
421 pdidoi->tszName, sizeof(pdidoi->tszName)))
422 return DIERR_OBJECTNOTFOUND;
424 _dump_OBJECTINSTANCEA(pdidoi);
425 return res;
428 static HRESULT WINAPI SysKeyboardWImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8W iface,
429 LPDIDEVICEOBJECTINSTANCEW pdidoi,
430 DWORD dwObj,
431 DWORD dwHow)
433 HRESULT res;
434 LONG scan;
436 res = IDirectInputDevice2WImpl_GetObjectInfo(iface, pdidoi, dwObj, dwHow);
437 if (res != DI_OK) return res;
439 scan = DIDFT_GETINSTANCE(pdidoi->dwType);
440 if (scan == DIK_PAUSE || scan == DIK_NUMLOCK) scan ^= 0x80;
441 if (!GetKeyNameTextW((scan & 0x80) << 17 | (scan & 0x7f) << 16,
442 pdidoi->tszName, sizeof(pdidoi->tszName)/sizeof(pdidoi->tszName[0])))
443 return DIERR_OBJECTNOTFOUND;
445 _dump_OBJECTINSTANCEW(pdidoi);
446 return res;
449 /******************************************************************************
450 * GetDeviceInfo : get information about a device's identity
452 static HRESULT WINAPI SysKeyboardAImpl_GetDeviceInfo(
453 LPDIRECTINPUTDEVICE8A iface,
454 LPDIDEVICEINSTANCEA pdidi)
456 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
457 TRACE("(this=%p,%p)\n", This, pdidi);
459 if (pdidi->dwSize != sizeof(DIDEVICEINSTANCEA)) {
460 WARN(" dinput3 not supported yet...\n");
461 return DI_OK;
464 fill_keyboard_dideviceinstanceA(pdidi, This->base.dinput->dwVersion);
466 return DI_OK;
469 static HRESULT WINAPI SysKeyboardWImpl_GetDeviceInfo(LPDIRECTINPUTDEVICE8W iface, LPDIDEVICEINSTANCEW pdidi)
471 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
472 TRACE("(this=%p,%p)\n", This, pdidi);
474 if (pdidi->dwSize != sizeof(DIDEVICEINSTANCEW)) {
475 WARN(" dinput3 not supported yet...\n");
476 return DI_OK;
479 fill_keyboard_dideviceinstanceW(pdidi, This->base.dinput->dwVersion);
481 return DI_OK;
484 /******************************************************************************
485 * GetProperty : Retrieves information about the input device.
487 static HRESULT WINAPI SysKeyboardWImpl_GetProperty(LPDIRECTINPUTDEVICE8W iface,
488 REFGUID rguid, LPDIPROPHEADER pdiph)
490 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
492 TRACE("(%p) %s,%p\n", iface, debugstr_guid(rguid), pdiph);
493 _dump_DIPROPHEADER(pdiph);
495 if (!IS_DIPROP(rguid)) return DI_OK;
497 switch (LOWORD(rguid))
499 case (DWORD_PTR)DIPROP_KEYNAME:
501 HRESULT hr;
502 LPDIPROPSTRING ps = (LPDIPROPSTRING)pdiph;
503 DIDEVICEOBJECTINSTANCEW didoi;
505 if (pdiph->dwSize != sizeof(DIPROPSTRING))
506 return DIERR_INVALIDPARAM;
508 didoi.dwSize = sizeof(DIDEVICEOBJECTINSTANCEW);
510 hr = SysKeyboardWImpl_GetObjectInfo(iface, &didoi, ps->diph.dwObj, ps->diph.dwHow);
511 if (hr == DI_OK)
512 memcpy(ps->wsz, didoi.tszName, sizeof(ps->wsz));
513 return hr;
515 case (DWORD_PTR) DIPROP_RANGE:
516 return DIERR_UNSUPPORTED;
517 default:
518 return IDirectInputDevice2AImpl_GetProperty( IDirectInputDevice8A_from_impl(This), rguid, pdiph );
520 return DI_OK;
523 static HRESULT WINAPI SysKeyboardAImpl_GetProperty(LPDIRECTINPUTDEVICE8A iface,
524 REFGUID rguid, LPDIPROPHEADER pdiph)
526 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
527 return SysKeyboardWImpl_GetProperty(IDirectInputDevice8W_from_impl(This), rguid, pdiph);
530 static HRESULT WINAPI SysKeyboardWImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface,
531 LPDIACTIONFORMATW lpdiaf,
532 LPCWSTR lpszUserName,
533 DWORD dwFlags)
535 FIXME("(%p)->(%p,%s,%08x): semi-stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
537 return _build_action_map(iface, lpdiaf, lpszUserName, dwFlags, DIKEYBOARD_MASK, &c_dfDIKeyboard);
540 static HRESULT WINAPI SysKeyboardAImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface,
541 LPDIACTIONFORMATA lpdiaf,
542 LPCSTR lpszUserName,
543 DWORD dwFlags)
545 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
546 DIACTIONFORMATW diafW;
547 HRESULT hr;
548 WCHAR *lpszUserNameW = NULL;
549 int username_size;
551 diafW.rgoAction = HeapAlloc(GetProcessHeap(), 0, sizeof(DIACTIONW)*lpdiaf->dwNumActions);
552 _copy_diactionformatAtoW(&diafW, lpdiaf);
554 if (lpszUserName != NULL)
556 username_size = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
557 lpszUserNameW = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR)*username_size);
558 MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, lpszUserNameW, username_size);
561 hr = SysKeyboardWImpl_BuildActionMap(&This->base.IDirectInputDevice8W_iface, &diafW, lpszUserNameW, dwFlags);
563 _copy_diactionformatWtoA(lpdiaf, &diafW);
564 HeapFree(GetProcessHeap(), 0, diafW.rgoAction);
565 HeapFree(GetProcessHeap(), 0, lpszUserNameW);
567 return hr;
570 static HRESULT WINAPI SysKeyboardWImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface,
571 LPDIACTIONFORMATW lpdiaf,
572 LPCWSTR lpszUserName,
573 DWORD dwFlags)
575 FIXME("(%p)->(%p,%s,%08x): semi-stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
577 return _set_action_map(iface, lpdiaf, lpszUserName, dwFlags, &c_dfDIKeyboard);
580 static HRESULT WINAPI SysKeyboardAImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface,
581 LPDIACTIONFORMATA lpdiaf,
582 LPCSTR lpszUserName,
583 DWORD dwFlags)
585 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
586 DIACTIONFORMATW diafW;
587 HRESULT hr;
588 WCHAR *lpszUserNameW = NULL;
589 int username_size;
591 diafW.rgoAction = HeapAlloc(GetProcessHeap(), 0, sizeof(DIACTIONW)*lpdiaf->dwNumActions);
592 _copy_diactionformatAtoW(&diafW, lpdiaf);
594 if (lpszUserName != NULL)
596 username_size = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
597 lpszUserNameW = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR)*username_size);
598 MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, lpszUserNameW, username_size);
601 hr = SysKeyboardWImpl_SetActionMap(&This->base.IDirectInputDevice8W_iface, &diafW, lpszUserNameW, dwFlags);
603 HeapFree(GetProcessHeap(), 0, diafW.rgoAction);
604 HeapFree(GetProcessHeap(), 0, lpszUserNameW);
606 return hr;
609 static const IDirectInputDevice8AVtbl SysKeyboardAvt =
611 IDirectInputDevice2AImpl_QueryInterface,
612 IDirectInputDevice2AImpl_AddRef,
613 IDirectInputDevice2AImpl_Release,
614 SysKeyboardAImpl_GetCapabilities,
615 IDirectInputDevice2AImpl_EnumObjects,
616 SysKeyboardAImpl_GetProperty,
617 IDirectInputDevice2AImpl_SetProperty,
618 IDirectInputDevice2AImpl_Acquire,
619 IDirectInputDevice2AImpl_Unacquire,
620 SysKeyboardAImpl_GetDeviceState,
621 IDirectInputDevice2AImpl_GetDeviceData,
622 IDirectInputDevice2AImpl_SetDataFormat,
623 IDirectInputDevice2AImpl_SetEventNotification,
624 IDirectInputDevice2AImpl_SetCooperativeLevel,
625 SysKeyboardAImpl_GetObjectInfo,
626 SysKeyboardAImpl_GetDeviceInfo,
627 IDirectInputDevice2AImpl_RunControlPanel,
628 IDirectInputDevice2AImpl_Initialize,
629 IDirectInputDevice2AImpl_CreateEffect,
630 IDirectInputDevice2AImpl_EnumEffects,
631 IDirectInputDevice2AImpl_GetEffectInfo,
632 IDirectInputDevice2AImpl_GetForceFeedbackState,
633 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
634 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
635 IDirectInputDevice2AImpl_Escape,
636 IDirectInputDevice2AImpl_Poll,
637 IDirectInputDevice2AImpl_SendDeviceData,
638 IDirectInputDevice7AImpl_EnumEffectsInFile,
639 IDirectInputDevice7AImpl_WriteEffectToFile,
640 SysKeyboardAImpl_BuildActionMap,
641 SysKeyboardAImpl_SetActionMap,
642 IDirectInputDevice8AImpl_GetImageInfo
645 static const IDirectInputDevice8WVtbl SysKeyboardWvt =
647 IDirectInputDevice2WImpl_QueryInterface,
648 IDirectInputDevice2WImpl_AddRef,
649 IDirectInputDevice2WImpl_Release,
650 SysKeyboardWImpl_GetCapabilities,
651 IDirectInputDevice2WImpl_EnumObjects,
652 SysKeyboardWImpl_GetProperty,
653 IDirectInputDevice2WImpl_SetProperty,
654 IDirectInputDevice2WImpl_Acquire,
655 IDirectInputDevice2WImpl_Unacquire,
656 SysKeyboardWImpl_GetDeviceState,
657 IDirectInputDevice2WImpl_GetDeviceData,
658 IDirectInputDevice2WImpl_SetDataFormat,
659 IDirectInputDevice2WImpl_SetEventNotification,
660 IDirectInputDevice2WImpl_SetCooperativeLevel,
661 SysKeyboardWImpl_GetObjectInfo,
662 SysKeyboardWImpl_GetDeviceInfo,
663 IDirectInputDevice2WImpl_RunControlPanel,
664 IDirectInputDevice2WImpl_Initialize,
665 IDirectInputDevice2WImpl_CreateEffect,
666 IDirectInputDevice2WImpl_EnumEffects,
667 IDirectInputDevice2WImpl_GetEffectInfo,
668 IDirectInputDevice2WImpl_GetForceFeedbackState,
669 IDirectInputDevice2WImpl_SendForceFeedbackCommand,
670 IDirectInputDevice2WImpl_EnumCreatedEffectObjects,
671 IDirectInputDevice2WImpl_Escape,
672 IDirectInputDevice2WImpl_Poll,
673 IDirectInputDevice2WImpl_SendDeviceData,
674 IDirectInputDevice7WImpl_EnumEffectsInFile,
675 IDirectInputDevice7WImpl_WriteEffectToFile,
676 SysKeyboardWImpl_BuildActionMap,
677 SysKeyboardWImpl_SetActionMap,
678 IDirectInputDevice8WImpl_GetImageInfo