push 8724397e7ede0f147b6e05994a72142d44d4fecc
[wine/hacks.git] / dlls / dinput / dinput_main.c
blobf89d5f060ef7c71e80655cebfb53ef6ab3b90bdd
1 /* DirectInput
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2002 TransGaming Technologies Inc.
6 * Copyright 2007 Vitaliy Margolen
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 /* Status:
25 * - Tomb Raider 2 Demo:
26 * Playable using keyboard only.
27 * - WingCommander Prophecy Demo:
28 * Doesn't get Input Focus.
30 * - Fallout : works great in X and DGA mode
33 #include "config.h"
34 #include <assert.h>
35 #include <stdarg.h>
36 #include <string.h>
38 #define COBJMACROS
39 #define NONAMELESSUNION
41 #include "wine/debug.h"
42 #include "wine/unicode.h"
43 #include "windef.h"
44 #include "winbase.h"
45 #include "winuser.h"
46 #include "winerror.h"
47 #include "dinput_private.h"
48 #include "device_private.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
52 static const IDirectInput7AVtbl ddi7avt;
53 static const IDirectInput7WVtbl ddi7wvt;
54 static const IDirectInput8AVtbl ddi8avt;
55 static const IDirectInput8WVtbl ddi8wvt;
57 static inline IDirectInputImpl *impl_from_IDirectInput7W( IDirectInput7W *iface )
59 return CONTAINING_RECORD( iface, IDirectInputImpl, lpVtbl7w );
62 static inline IDirectInputImpl *impl_from_IDirectInput8A( IDirectInput8A *iface )
64 return CONTAINING_RECORD( iface, IDirectInputImpl, lpVtbl8a );
67 static inline IDirectInputImpl *impl_from_IDirectInput8W( IDirectInput8W *iface )
69 return CONTAINING_RECORD( iface, IDirectInputImpl, lpVtbl8w );
72 static inline IDirectInput7W *IDirectInput7W_from_impl( IDirectInputImpl *iface )
74 return (IDirectInput7W *)(&iface->lpVtbl7w);
77 static const struct dinput_device *dinput_devices[] =
79 &mouse_device,
80 &keyboard_device,
81 &joystick_linuxinput_device,
82 &joystick_linux_device
84 #define NB_DINPUT_DEVICES (sizeof(dinput_devices)/sizeof(dinput_devices[0]))
86 static HINSTANCE DINPUT_instance = NULL;
88 BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserv)
90 switch(reason)
92 case DLL_PROCESS_ATTACH:
93 DisableThreadLibraryCalls(inst);
94 DINPUT_instance = inst;
95 break;
96 case DLL_PROCESS_DETACH:
97 break;
99 return TRUE;
102 static BOOL check_hook_thread(void);
103 static CRITICAL_SECTION dinput_hook_crit;
104 static struct list direct_input_list = LIST_INIT( direct_input_list );
106 /******************************************************************************
107 * DirectInputCreateEx (DINPUT.@)
109 HRESULT WINAPI DirectInputCreateEx(
110 HINSTANCE hinst, DWORD dwVersion, REFIID riid, LPVOID *ppDI,
111 LPUNKNOWN punkOuter)
113 IDirectInputImpl* This;
115 TRACE("(%p,%04x,%s,%p,%p)\n", hinst, dwVersion, debugstr_guid(riid), ppDI, punkOuter);
117 if (IsEqualGUID( &IID_IUnknown, riid ) ||
118 IsEqualGUID( &IID_IDirectInputA, riid ) ||
119 IsEqualGUID( &IID_IDirectInput2A, riid ) ||
120 IsEqualGUID( &IID_IDirectInput7A, riid ) ||
121 IsEqualGUID( &IID_IDirectInputW, riid ) ||
122 IsEqualGUID( &IID_IDirectInput2W, riid ) ||
123 IsEqualGUID( &IID_IDirectInput7W, riid ) ||
124 IsEqualGUID( &IID_IDirectInput8A, riid ) ||
125 IsEqualGUID( &IID_IDirectInput8W, riid ))
127 if (!(This = HeapAlloc( GetProcessHeap(), 0, sizeof(IDirectInputImpl) )))
128 return DIERR_OUTOFMEMORY;
130 else
131 return DIERR_OLDDIRECTINPUTVERSION;
133 This->lpVtbl = &ddi7avt;
134 This->lpVtbl7w = &ddi7wvt;
135 This->lpVtbl8a = &ddi8avt;
136 This->lpVtbl8w = &ddi8wvt;
137 This->ref = 0;
138 This->dwVersion = dwVersion;
139 This->evsequence = 1;
141 InitializeCriticalSection(&This->crit);
142 This->crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": IDirectInputImpl*->crit");
144 list_init( &This->devices_list );
146 /* Add self to the list of the IDirectInputs */
147 EnterCriticalSection( &dinput_hook_crit );
148 list_add_head( &direct_input_list, &This->entry );
149 LeaveCriticalSection( &dinput_hook_crit );
151 if (!check_hook_thread())
153 IUnknown_Release( (LPDIRECTINPUT7A)This );
154 return DIERR_GENERIC;
157 IDirectInput_QueryInterface( (IDirectInput7A *)This, riid, ppDI );
158 return DI_OK;
161 /******************************************************************************
162 * DirectInputCreateA (DINPUT.@)
164 HRESULT WINAPI DirectInputCreateA(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTA *ppDI, LPUNKNOWN punkOuter)
166 return DirectInputCreateEx(hinst, dwVersion, &IID_IDirectInput7A, (LPVOID *)ppDI, punkOuter);
169 /******************************************************************************
170 * DirectInputCreateW (DINPUT.@)
172 HRESULT WINAPI DirectInputCreateW(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTW *ppDI, LPUNKNOWN punkOuter)
174 return DirectInputCreateEx(hinst, dwVersion, &IID_IDirectInput7W, (LPVOID *)ppDI, punkOuter);
177 static const char *_dump_DIDEVTYPE_value(DWORD dwDevType) {
178 switch (dwDevType) {
179 case 0: return "All devices";
180 case DIDEVTYPE_MOUSE: return "DIDEVTYPE_MOUSE";
181 case DIDEVTYPE_KEYBOARD: return "DIDEVTYPE_KEYBOARD";
182 case DIDEVTYPE_JOYSTICK: return "DIDEVTYPE_JOYSTICK";
183 case DIDEVTYPE_DEVICE: return "DIDEVTYPE_DEVICE";
184 default: return "Unknown";
188 static void _dump_EnumDevices_dwFlags(DWORD dwFlags) {
189 if (TRACE_ON(dinput)) {
190 unsigned int i;
191 static const struct {
192 DWORD mask;
193 const char *name;
194 } flags[] = {
195 #define FE(x) { x, #x}
196 FE(DIEDFL_ALLDEVICES),
197 FE(DIEDFL_ATTACHEDONLY),
198 FE(DIEDFL_FORCEFEEDBACK),
199 FE(DIEDFL_INCLUDEALIASES),
200 FE(DIEDFL_INCLUDEPHANTOMS)
201 #undef FE
203 TRACE(" flags: ");
204 if (dwFlags == 0) {
205 TRACE("DIEDFL_ALLDEVICES");
206 return;
208 for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++)
209 if (flags[i].mask & dwFlags)
210 TRACE("%s ",flags[i].name);
212 TRACE("\n");
215 void _dump_diactionformatA(LPDIACTIONFORMATA lpdiActionFormat) {
216 unsigned int i;
218 FIXME("diaf.dwSize = %d\n", lpdiActionFormat->dwSize);
219 FIXME("diaf.dwActionSize = %d\n", lpdiActionFormat->dwActionSize);
220 FIXME("diaf.dwDataSize = %d\n", lpdiActionFormat->dwDataSize);
221 FIXME("diaf.dwNumActions = %d\n", lpdiActionFormat->dwNumActions);
222 FIXME("diaf.rgoAction = %p\n", lpdiActionFormat->rgoAction);
223 for (i=0;i<lpdiActionFormat->dwNumActions;i++) {
224 FIXME("diaf.rgoAction[%u]:\n", i);
225 FIXME("\tuAppData=%lx\n", lpdiActionFormat->rgoAction[i].uAppData);
226 FIXME("\tdwSemantics=%x\n", lpdiActionFormat->rgoAction[i].dwSemantics);
227 FIXME("\tdwFlags=%x\n", lpdiActionFormat->rgoAction[i].dwFlags);
228 FIXME("\tszActionName=%s\n", debugstr_a(lpdiActionFormat->rgoAction[i].u.lptszActionName));
229 FIXME("\tguidInstance=%s\n", debugstr_guid(&lpdiActionFormat->rgoAction[i].guidInstance));
230 FIXME("\tdwObjID=%x\n", lpdiActionFormat->rgoAction[i].dwObjID);
231 FIXME("\tdwHow=%x\n", lpdiActionFormat->rgoAction[i].dwHow);
233 FIXME("diaf.guidActionMap = %s\n", debugstr_guid(&lpdiActionFormat->guidActionMap));
234 FIXME("diaf.dwGenre = %d\n", lpdiActionFormat->dwGenre);
235 FIXME("diaf.dwBufferSize = %d\n", lpdiActionFormat->dwBufferSize);
236 FIXME("diaf.lAxisMin = %d\n", lpdiActionFormat->lAxisMin);
237 FIXME("diaf.lAxisMax = %d\n", lpdiActionFormat->lAxisMax);
238 FIXME("diaf.hInstString = %p\n", lpdiActionFormat->hInstString);
239 FIXME("diaf.ftTimeStamp ...\n");
240 FIXME("diaf.dwCRC = %x\n", lpdiActionFormat->dwCRC);
241 FIXME("diaf.tszActionMap = %s\n", debugstr_a(lpdiActionFormat->tszActionMap));
244 /******************************************************************************
245 * IDirectInputA_EnumDevices
247 static HRESULT WINAPI IDirectInputAImpl_EnumDevices(
248 LPDIRECTINPUT7A iface, DWORD dwDevType, LPDIENUMDEVICESCALLBACKA lpCallback,
249 LPVOID pvRef, DWORD dwFlags)
251 IDirectInputImpl *This = (IDirectInputImpl *)iface;
252 DIDEVICEINSTANCEA devInstance;
253 unsigned int i;
254 int j, r;
256 TRACE("(this=%p,0x%04x '%s',%p,%p,%04x)\n",
257 This, dwDevType, _dump_DIDEVTYPE_value(dwDevType),
258 lpCallback, pvRef, dwFlags);
259 _dump_EnumDevices_dwFlags(dwFlags);
261 for (i = 0; i < NB_DINPUT_DEVICES; i++) {
262 if (!dinput_devices[i]->enum_deviceA) continue;
263 for (j = 0, r = -1; r != 0; j++) {
264 devInstance.dwSize = sizeof(devInstance);
265 TRACE(" - checking device %u ('%s')\n", i, dinput_devices[i]->name);
266 if ((r = dinput_devices[i]->enum_deviceA(dwDevType, dwFlags, &devInstance, This->dwVersion, j))) {
267 if (lpCallback(&devInstance,pvRef) == DIENUM_STOP)
268 return 0;
273 return 0;
275 /******************************************************************************
276 * IDirectInputW_EnumDevices
278 static HRESULT WINAPI IDirectInputWImpl_EnumDevices(
279 LPDIRECTINPUT7W iface, DWORD dwDevType, LPDIENUMDEVICESCALLBACKW lpCallback,
280 LPVOID pvRef, DWORD dwFlags)
282 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
283 DIDEVICEINSTANCEW devInstance;
284 unsigned int i;
285 int j, r;
287 TRACE("(this=%p,0x%04x '%s',%p,%p,%04x)\n",
288 This, dwDevType, _dump_DIDEVTYPE_value(dwDevType),
289 lpCallback, pvRef, dwFlags);
290 _dump_EnumDevices_dwFlags(dwFlags);
292 for (i = 0; i < NB_DINPUT_DEVICES; i++) {
293 if (!dinput_devices[i]->enum_deviceW) continue;
294 for (j = 0, r = -1; r != 0; j++) {
295 devInstance.dwSize = sizeof(devInstance);
296 TRACE(" - checking device %u ('%s')\n", i, dinput_devices[i]->name);
297 if ((r = dinput_devices[i]->enum_deviceW(dwDevType, dwFlags, &devInstance, This->dwVersion, j))) {
298 if (lpCallback(&devInstance,pvRef) == DIENUM_STOP)
299 return 0;
304 return 0;
307 static ULONG WINAPI IDirectInputAImpl_AddRef(LPDIRECTINPUT7A iface)
309 IDirectInputImpl *This = (IDirectInputImpl *)iface;
310 ULONG ref = InterlockedIncrement(&This->ref);
312 TRACE( "(%p) incrementing from %d\n", This, ref - 1);
313 return ref;
316 static ULONG WINAPI IDirectInputWImpl_AddRef(LPDIRECTINPUT7W iface)
318 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
319 return IDirectInputAImpl_AddRef( (IDirectInput7A *)This );
322 static ULONG WINAPI IDirectInputAImpl_Release(LPDIRECTINPUT7A iface)
324 IDirectInputImpl *This = (IDirectInputImpl *)iface;
325 ULONG ref = InterlockedDecrement( &This->ref );
327 TRACE( "(%p) releasing from %d\n", This, ref + 1 );
329 if (ref) return ref;
331 /* Remove self from the list of the IDirectInputs */
332 EnterCriticalSection( &dinput_hook_crit );
333 list_remove( &This->entry );
334 LeaveCriticalSection( &dinput_hook_crit );
336 check_hook_thread();
338 This->crit.DebugInfo->Spare[0] = 0;
339 DeleteCriticalSection( &This->crit );
340 HeapFree( GetProcessHeap(), 0, This );
342 return 0;
345 static ULONG WINAPI IDirectInputWImpl_Release(LPDIRECTINPUT7W iface)
347 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
348 return IDirectInputAImpl_Release( (IDirectInput7A *)This );
351 static HRESULT WINAPI IDirectInputAImpl_QueryInterface(LPDIRECTINPUT7A iface, REFIID riid, LPVOID *ppobj)
353 IDirectInputImpl *This = (IDirectInputImpl *)iface;
355 TRACE( "(%p)->(%s,%p)\n", This, debugstr_guid(riid), ppobj );
357 if (IsEqualGUID( &IID_IUnknown, riid ) ||
358 IsEqualGUID( &IID_IDirectInputA, riid ) ||
359 IsEqualGUID( &IID_IDirectInput2A, riid ) ||
360 IsEqualGUID( &IID_IDirectInput7A, riid ))
362 *ppobj = &This->lpVtbl;
363 IUnknown_AddRef( (IUnknown*)*ppobj );
365 return DI_OK;
368 if (IsEqualGUID( &IID_IDirectInputW, riid ) ||
369 IsEqualGUID( &IID_IDirectInput2W, riid ) ||
370 IsEqualGUID( &IID_IDirectInput7W, riid ))
372 *ppobj = &This->lpVtbl7w;
373 IUnknown_AddRef( (IUnknown*)*ppobj );
375 return DI_OK;
378 if (IsEqualGUID( &IID_IDirectInput8A, riid ))
380 *ppobj = &This->lpVtbl8a;
381 IUnknown_AddRef( (IUnknown*)*ppobj );
383 return DI_OK;
386 if (IsEqualGUID( &IID_IDirectInput8W, riid ))
388 *ppobj = &This->lpVtbl8w;
389 IUnknown_AddRef( (IUnknown*)*ppobj );
391 return DI_OK;
394 FIXME( "Unsupported interface !\n" );
395 return E_FAIL;
398 static HRESULT WINAPI IDirectInputWImpl_QueryInterface(LPDIRECTINPUT7W iface, REFIID riid, LPVOID *ppobj)
400 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
401 return IDirectInputAImpl_QueryInterface( (IDirectInput7A *)This, riid, ppobj );
404 static HRESULT WINAPI IDirectInputAImpl_Initialize(LPDIRECTINPUT7A iface, HINSTANCE hinst, DWORD x) {
405 TRACE("(this=%p,%p,%x)\n",iface, hinst, x);
407 /* Initialize can return: DIERR_BETADIRECTINPUTVERSION, DIERR_OLDDIRECTINPUTVERSION and DI_OK.
408 * Since we already initialized the device, return DI_OK. In the past we returned DIERR_ALREADYINITIALIZED
409 * which broke applications like Tomb Raider Legend because it isn't a legal return value.
411 return DI_OK;
414 static HRESULT WINAPI IDirectInputWImpl_Initialize(LPDIRECTINPUT7W iface, HINSTANCE hinst, DWORD x)
416 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
417 return IDirectInputAImpl_Initialize( (IDirectInput7A *)This, hinst, x );
420 static HRESULT WINAPI IDirectInputAImpl_GetDeviceStatus(LPDIRECTINPUT7A iface, REFGUID rguid)
422 IDirectInputImpl *This = (IDirectInputImpl *)iface;
423 HRESULT hr;
424 LPDIRECTINPUTDEVICEA device;
426 TRACE( "(%p)->(%s)\n", This, debugstr_guid(rguid) );
428 hr = IDirectInput_CreateDevice( iface, rguid, &device, NULL );
429 if (hr != DI_OK) return DI_NOTATTACHED;
431 IUnknown_Release( device );
433 return DI_OK;
436 static HRESULT WINAPI IDirectInputWImpl_GetDeviceStatus(LPDIRECTINPUT7W iface, REFGUID rguid)
438 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
439 return IDirectInputAImpl_GetDeviceStatus( (IDirectInput7A *)This, rguid );
442 static HRESULT WINAPI IDirectInputAImpl_RunControlPanel(LPDIRECTINPUT7A iface,
443 HWND hwndOwner,
444 DWORD dwFlags)
446 IDirectInputImpl *This = (IDirectInputImpl *)iface;
448 FIXME( "(%p)->(%p,%08x): stub\n", This, hwndOwner, dwFlags );
450 return DI_OK;
453 static HRESULT WINAPI IDirectInputWImpl_RunControlPanel(LPDIRECTINPUT7W iface, HWND hwndOwner, DWORD dwFlags)
455 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
456 return IDirectInputAImpl_RunControlPanel( (IDirectInput7A *)This, hwndOwner, dwFlags );
459 static HRESULT WINAPI IDirectInput2AImpl_FindDevice(LPDIRECTINPUT7A iface, REFGUID rguid,
460 LPCSTR pszName, LPGUID pguidInstance)
462 IDirectInputImpl *This = (IDirectInputImpl *)iface;
464 FIXME( "(%p)->(%s, %s, %p): stub\n", This, debugstr_guid(rguid), pszName, pguidInstance );
466 return DI_OK;
469 static HRESULT WINAPI IDirectInput2WImpl_FindDevice(LPDIRECTINPUT7W iface, REFGUID rguid,
470 LPCWSTR pszName, LPGUID pguidInstance)
472 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
474 FIXME( "(%p)->(%s, %s, %p): stub\n", This, debugstr_guid(rguid), debugstr_w(pszName), pguidInstance );
476 return DI_OK;
479 static HRESULT WINAPI IDirectInput7AImpl_CreateDeviceEx(LPDIRECTINPUT7A iface, REFGUID rguid,
480 REFIID riid, LPVOID* pvOut, LPUNKNOWN lpUnknownOuter)
482 IDirectInputImpl *This = (IDirectInputImpl *)iface;
483 HRESULT ret_value = DIERR_DEVICENOTREG;
484 unsigned int i;
486 TRACE("(%p)->(%s, %s, %p, %p)\n", This, debugstr_guid(rguid), debugstr_guid(riid), pvOut, lpUnknownOuter);
488 if (!rguid || !pvOut) return E_POINTER;
490 /* Loop on all the devices to see if anyone matches the given GUID */
491 for (i = 0; i < NB_DINPUT_DEVICES; i++) {
492 HRESULT ret;
494 if (!dinput_devices[i]->create_deviceA) continue;
495 if ((ret = dinput_devices[i]->create_deviceA(This, rguid, riid, (LPDIRECTINPUTDEVICEA*) pvOut)) == DI_OK)
497 EnterCriticalSection( &This->crit );
498 list_add_tail( &This->devices_list, &(*(IDirectInputDevice2AImpl**)pvOut)->entry );
499 LeaveCriticalSection( &This->crit );
500 return DI_OK;
503 if (ret == DIERR_NOINTERFACE)
504 ret_value = DIERR_NOINTERFACE;
507 if (ret_value == DIERR_NOINTERFACE)
509 WARN("invalid device GUID %s\n", debugstr_guid(rguid));
512 return ret_value;
515 static HRESULT WINAPI IDirectInput7WImpl_CreateDeviceEx(LPDIRECTINPUT7W iface, REFGUID rguid,
516 REFIID riid, LPVOID* pvOut, LPUNKNOWN lpUnknownOuter)
518 IDirectInputImpl *This = impl_from_IDirectInput7W( iface );
519 HRESULT ret_value = DIERR_DEVICENOTREG;
520 unsigned int i;
522 TRACE("(%p)->(%s, %s, %p, %p)\n", This, debugstr_guid(rguid), debugstr_guid(riid), pvOut, lpUnknownOuter);
524 if (!rguid || !pvOut) return E_POINTER;
526 /* Loop on all the devices to see if anyone matches the given GUID */
527 for (i = 0; i < NB_DINPUT_DEVICES; i++) {
528 HRESULT ret;
530 if (!dinput_devices[i]->create_deviceW) continue;
531 if ((ret = dinput_devices[i]->create_deviceW(This, rguid, riid, (LPDIRECTINPUTDEVICEW*) pvOut)) == DI_OK)
533 EnterCriticalSection( &This->crit );
534 list_add_tail( &This->devices_list, &(*(IDirectInputDevice2AImpl**)pvOut)->entry );
535 LeaveCriticalSection( &This->crit );
536 return DI_OK;
539 if (ret == DIERR_NOINTERFACE)
540 ret_value = DIERR_NOINTERFACE;
543 return ret_value;
546 static HRESULT WINAPI IDirectInputAImpl_CreateDevice(LPDIRECTINPUT7A iface, REFGUID rguid,
547 LPDIRECTINPUTDEVICEA* pdev, LPUNKNOWN punk)
549 return IDirectInput7AImpl_CreateDeviceEx(iface, rguid, NULL, (LPVOID*)pdev, punk);
552 static HRESULT WINAPI IDirectInputWImpl_CreateDevice(LPDIRECTINPUT7W iface, REFGUID rguid,
553 LPDIRECTINPUTDEVICEW* pdev, LPUNKNOWN punk)
555 return IDirectInput7WImpl_CreateDeviceEx(iface, rguid, NULL, (LPVOID*)pdev, punk);
558 /*******************************************************************************
559 * DirectInput8
562 static ULONG WINAPI IDirectInput8AImpl_AddRef(LPDIRECTINPUT8A iface)
564 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
565 return IDirectInputAImpl_AddRef( (IDirectInput7A *)This );
568 static ULONG WINAPI IDirectInput8WImpl_AddRef(LPDIRECTINPUT8W iface)
570 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
571 return IDirectInputAImpl_AddRef( (IDirectInput7A *)This );
574 static HRESULT WINAPI IDirectInput8AImpl_QueryInterface(LPDIRECTINPUT8A iface, REFIID riid, LPVOID *ppobj)
576 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
577 return IDirectInputAImpl_QueryInterface( (IDirectInput7A *)This, riid, ppobj );
580 static HRESULT WINAPI IDirectInput8WImpl_QueryInterface(LPDIRECTINPUT8W iface, REFIID riid, LPVOID *ppobj)
582 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
583 return IDirectInputAImpl_QueryInterface( (IDirectInput7A *)This, riid, ppobj );
586 static ULONG WINAPI IDirectInput8AImpl_Release(LPDIRECTINPUT8A iface)
588 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
589 return IDirectInputAImpl_Release( (IDirectInput7A *)This );
592 static ULONG WINAPI IDirectInput8WImpl_Release(LPDIRECTINPUT8W iface)
594 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
595 return IDirectInputAImpl_Release( (IDirectInput7A *)This );
598 static HRESULT WINAPI IDirectInput8AImpl_CreateDevice(LPDIRECTINPUT8A iface, REFGUID rguid,
599 LPDIRECTINPUTDEVICE8A* pdev, LPUNKNOWN punk)
601 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
602 return IDirectInput7AImpl_CreateDeviceEx( (IDirectInput7A *)This, rguid, NULL, (LPVOID*)pdev, punk );
605 static HRESULT WINAPI IDirectInput8WImpl_CreateDevice(LPDIRECTINPUT8W iface, REFGUID rguid,
606 LPDIRECTINPUTDEVICE8W* pdev, LPUNKNOWN punk)
608 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
609 return IDirectInput7WImpl_CreateDeviceEx( IDirectInput7W_from_impl( This ), rguid, NULL, (LPVOID*)pdev, punk );
612 static HRESULT WINAPI IDirectInput8AImpl_EnumDevices(LPDIRECTINPUT8A iface, DWORD dwDevType, LPDIENUMDEVICESCALLBACKA lpCallback,
613 LPVOID pvRef, DWORD dwFlags)
615 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
616 return IDirectInputAImpl_EnumDevices( (IDirectInput7A *)This, dwDevType, lpCallback, pvRef, dwFlags );
619 static HRESULT WINAPI IDirectInput8WImpl_EnumDevices(LPDIRECTINPUT8W iface, DWORD dwDevType, LPDIENUMDEVICESCALLBACKW lpCallback,
620 LPVOID pvRef, DWORD dwFlags)
622 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
623 return IDirectInputWImpl_EnumDevices( IDirectInput7W_from_impl( This ), dwDevType, lpCallback, pvRef, dwFlags );
626 static HRESULT WINAPI IDirectInput8AImpl_GetDeviceStatus(LPDIRECTINPUT8A iface, REFGUID rguid)
628 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
629 return IDirectInputAImpl_GetDeviceStatus( (IDirectInput7A *)This, rguid );
632 static HRESULT WINAPI IDirectInput8WImpl_GetDeviceStatus(LPDIRECTINPUT8W iface, REFGUID rguid)
634 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
635 return IDirectInputAImpl_GetDeviceStatus( (IDirectInput7A *)This, rguid );
638 static HRESULT WINAPI IDirectInput8AImpl_RunControlPanel(LPDIRECTINPUT8A iface, HWND hwndOwner, DWORD dwFlags)
640 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
641 return IDirectInputAImpl_RunControlPanel( (IDirectInput7A *)This, hwndOwner, dwFlags );
644 static HRESULT WINAPI IDirectInput8WImpl_RunControlPanel(LPDIRECTINPUT8W iface, HWND hwndOwner, DWORD dwFlags)
646 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
647 return IDirectInputAImpl_RunControlPanel( (IDirectInput7A *)This, hwndOwner, dwFlags );
650 static HRESULT WINAPI IDirectInput8AImpl_Initialize(LPDIRECTINPUT8A iface, HINSTANCE hinst, DWORD x)
652 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
653 return IDirectInputAImpl_Initialize( (IDirectInput7A *)This, hinst, x );
656 static HRESULT WINAPI IDirectInput8WImpl_Initialize(LPDIRECTINPUT8W iface, HINSTANCE hinst, DWORD x)
658 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
659 return IDirectInputAImpl_Initialize( (IDirectInput7A *)This, hinst, x );
662 static HRESULT WINAPI IDirectInput8AImpl_FindDevice(LPDIRECTINPUT8A iface, REFGUID rguid, LPCSTR pszName, LPGUID pguidInstance)
664 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
665 return IDirectInput2AImpl_FindDevice( (IDirectInput7A *)This, rguid, pszName, pguidInstance );
668 static HRESULT WINAPI IDirectInput8WImpl_FindDevice(LPDIRECTINPUT8W iface, REFGUID rguid, LPCWSTR pszName, LPGUID pguidInstance)
670 IDirectInput7W *This = IDirectInput7W_from_impl( impl_from_IDirectInput8W( iface ) );
671 return IDirectInput2WImpl_FindDevice( This, rguid, pszName, pguidInstance );
674 static HRESULT WINAPI IDirectInput8AImpl_EnumDevicesBySemantics(
675 LPDIRECTINPUT8A iface, LPCSTR ptszUserName, LPDIACTIONFORMATA lpdiActionFormat,
676 LPDIENUMDEVICESBYSEMANTICSCBA lpCallback,
677 LPVOID pvRef, DWORD dwFlags
680 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
682 FIXME("(this=%p,%s,%p,%p,%p,%04x): stub\n", This, ptszUserName, lpdiActionFormat,
683 lpCallback, pvRef, dwFlags);
684 #define X(x) if (dwFlags & x) FIXME("\tdwFlags |= "#x"\n");
685 X(DIEDBSFL_ATTACHEDONLY)
686 X(DIEDBSFL_THISUSER)
687 X(DIEDBSFL_FORCEFEEDBACK)
688 X(DIEDBSFL_AVAILABLEDEVICES)
689 X(DIEDBSFL_MULTIMICEKEYBOARDS)
690 X(DIEDBSFL_NONGAMINGDEVICES)
691 #undef X
693 _dump_diactionformatA(lpdiActionFormat);
695 return DI_OK;
698 static HRESULT WINAPI IDirectInput8WImpl_EnumDevicesBySemantics(
699 LPDIRECTINPUT8W iface, LPCWSTR ptszUserName, LPDIACTIONFORMATW lpdiActionFormat,
700 LPDIENUMDEVICESBYSEMANTICSCBW lpCallback,
701 LPVOID pvRef, DWORD dwFlags
704 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
706 FIXME("(this=%p,%s,%p,%p,%p,%04x): stub\n", This, debugstr_w(ptszUserName), lpdiActionFormat,
707 lpCallback, pvRef, dwFlags);
708 return 0;
711 static HRESULT WINAPI IDirectInput8AImpl_ConfigureDevices(
712 LPDIRECTINPUT8A iface, LPDICONFIGUREDEVICESCALLBACK lpdiCallback,
713 LPDICONFIGUREDEVICESPARAMSA lpdiCDParams, DWORD dwFlags, LPVOID pvRefData
716 IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
718 FIXME("(this=%p,%p,%p,%04x,%p): stub\n", This, lpdiCallback, lpdiCDParams,
719 dwFlags, pvRefData);
720 return 0;
723 static HRESULT WINAPI IDirectInput8WImpl_ConfigureDevices(
724 LPDIRECTINPUT8W iface, LPDICONFIGUREDEVICESCALLBACK lpdiCallback,
725 LPDICONFIGUREDEVICESPARAMSW lpdiCDParams, DWORD dwFlags, LPVOID pvRefData
728 IDirectInputImpl *This = impl_from_IDirectInput8W( iface );
730 FIXME("(this=%p,%p,%p,%04x,%p): stub\n", This, lpdiCallback, lpdiCDParams,
731 dwFlags, pvRefData);
732 return 0;
735 static const IDirectInput7AVtbl ddi7avt = {
736 IDirectInputAImpl_QueryInterface,
737 IDirectInputAImpl_AddRef,
738 IDirectInputAImpl_Release,
739 IDirectInputAImpl_CreateDevice,
740 IDirectInputAImpl_EnumDevices,
741 IDirectInputAImpl_GetDeviceStatus,
742 IDirectInputAImpl_RunControlPanel,
743 IDirectInputAImpl_Initialize,
744 IDirectInput2AImpl_FindDevice,
745 IDirectInput7AImpl_CreateDeviceEx
748 static const IDirectInput7WVtbl ddi7wvt = {
749 IDirectInputWImpl_QueryInterface,
750 IDirectInputWImpl_AddRef,
751 IDirectInputWImpl_Release,
752 IDirectInputWImpl_CreateDevice,
753 IDirectInputWImpl_EnumDevices,
754 IDirectInputWImpl_GetDeviceStatus,
755 IDirectInputWImpl_RunControlPanel,
756 IDirectInputWImpl_Initialize,
757 IDirectInput2WImpl_FindDevice,
758 IDirectInput7WImpl_CreateDeviceEx
761 static const IDirectInput8AVtbl ddi8avt = {
762 IDirectInput8AImpl_QueryInterface,
763 IDirectInput8AImpl_AddRef,
764 IDirectInput8AImpl_Release,
765 IDirectInput8AImpl_CreateDevice,
766 IDirectInput8AImpl_EnumDevices,
767 IDirectInput8AImpl_GetDeviceStatus,
768 IDirectInput8AImpl_RunControlPanel,
769 IDirectInput8AImpl_Initialize,
770 IDirectInput8AImpl_FindDevice,
771 IDirectInput8AImpl_EnumDevicesBySemantics,
772 IDirectInput8AImpl_ConfigureDevices
775 static const IDirectInput8WVtbl ddi8wvt = {
776 IDirectInput8WImpl_QueryInterface,
777 IDirectInput8WImpl_AddRef,
778 IDirectInput8WImpl_Release,
779 IDirectInput8WImpl_CreateDevice,
780 IDirectInput8WImpl_EnumDevices,
781 IDirectInput8WImpl_GetDeviceStatus,
782 IDirectInput8WImpl_RunControlPanel,
783 IDirectInput8WImpl_Initialize,
784 IDirectInput8WImpl_FindDevice,
785 IDirectInput8WImpl_EnumDevicesBySemantics,
786 IDirectInput8WImpl_ConfigureDevices
789 /*******************************************************************************
790 * DirectInput ClassFactory
792 typedef struct
794 /* IUnknown fields */
795 const IClassFactoryVtbl *lpVtbl;
796 LONG ref;
797 } IClassFactoryImpl;
799 static HRESULT WINAPI DICF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
800 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
802 FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
803 return E_NOINTERFACE;
806 static ULONG WINAPI DICF_AddRef(LPCLASSFACTORY iface) {
807 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
808 return InterlockedIncrement(&(This->ref));
811 static ULONG WINAPI DICF_Release(LPCLASSFACTORY iface) {
812 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
813 /* static class, won't be freed */
814 return InterlockedDecrement(&(This->ref));
817 static HRESULT WINAPI DICF_CreateInstance(
818 LPCLASSFACTORY iface,LPUNKNOWN pOuter,REFIID riid,LPVOID *ppobj
820 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
822 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
823 if ( IsEqualGUID( &IID_IUnknown, riid ) ||
824 IsEqualGUID( &IID_IDirectInputA, riid ) ||
825 IsEqualGUID( &IID_IDirectInputW, riid ) ||
826 IsEqualGUID( &IID_IDirectInput2A, riid ) ||
827 IsEqualGUID( &IID_IDirectInput2W, riid ) ||
828 IsEqualGUID( &IID_IDirectInput7A, riid ) ||
829 IsEqualGUID( &IID_IDirectInput7W, riid ) ||
830 IsEqualGUID( &IID_IDirectInput8A, riid ) ||
831 IsEqualGUID( &IID_IDirectInput8W, riid ) ) {
832 /* FIXME: reuse already created dinput if present? */
833 return DirectInputCreateEx(0,0,riid,ppobj,pOuter);
836 FIXME("(%p,%p,%s,%p) Interface not found!\n",This,pOuter,debugstr_guid(riid),ppobj);
837 return E_NOINTERFACE;
840 static HRESULT WINAPI DICF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
841 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
842 FIXME("(%p)->(%d),stub!\n",This,dolock);
843 return S_OK;
846 static const IClassFactoryVtbl DICF_Vtbl = {
847 DICF_QueryInterface,
848 DICF_AddRef,
849 DICF_Release,
850 DICF_CreateInstance,
851 DICF_LockServer
853 static IClassFactoryImpl DINPUT_CF = {&DICF_Vtbl, 1 };
855 /***********************************************************************
856 * DllCanUnloadNow (DINPUT.@)
858 HRESULT WINAPI DllCanUnloadNow(void)
860 FIXME("(void): stub\n");
862 return S_FALSE;
865 /***********************************************************************
866 * DllGetClassObject (DINPUT.@)
868 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
870 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
871 if ( IsEqualCLSID( &IID_IClassFactory, riid ) ) {
872 *ppv = &DINPUT_CF;
873 IClassFactory_AddRef((IClassFactory*)*ppv);
874 return S_OK;
877 FIXME("(%s,%s,%p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
878 return CLASS_E_CLASSNOTAVAILABLE;
881 /******************************************************************************
882 * DInput hook thread
885 static LRESULT CALLBACK LL_hook_proc( int code, WPARAM wparam, LPARAM lparam )
887 IDirectInputImpl *dinput;
888 int skip = 0;
890 if (code != HC_ACTION) return CallNextHookEx( 0, code, wparam, lparam );
892 EnterCriticalSection( &dinput_hook_crit );
893 LIST_FOR_EACH_ENTRY( dinput, &direct_input_list, IDirectInputImpl, entry )
895 IDirectInputDevice2AImpl *dev;
897 EnterCriticalSection( &dinput->crit );
898 LIST_FOR_EACH_ENTRY( dev, &dinput->devices_list, IDirectInputDevice2AImpl, entry )
899 if (dev->acquired && dev->event_proc)
901 TRACE("calling %p->%p (%lx %lx)\n", dev, dev->event_proc, wparam, lparam);
902 skip |= dev->event_proc( (LPDIRECTINPUTDEVICE8A)dev, wparam, lparam );
904 LeaveCriticalSection( &dinput->crit );
906 LeaveCriticalSection( &dinput_hook_crit );
908 return skip ? 1 : CallNextHookEx( 0, code, wparam, lparam );
911 static LRESULT CALLBACK callwndproc_proc( int code, WPARAM wparam, LPARAM lparam )
913 CWPSTRUCT *msg = (CWPSTRUCT *)lparam;
914 IDirectInputImpl *dinput;
915 HWND foreground;
917 if (code != HC_ACTION || (msg->message != WM_KILLFOCUS &&
918 msg->message != WM_ACTIVATEAPP && msg->message != WM_ACTIVATE))
919 return CallNextHookEx( 0, code, wparam, lparam );
921 foreground = GetForegroundWindow();
923 EnterCriticalSection( &dinput_hook_crit );
925 LIST_FOR_EACH_ENTRY( dinput, &direct_input_list, IDirectInputImpl, entry )
927 IDirectInputDevice2AImpl *dev;
929 EnterCriticalSection( &dinput->crit );
930 LIST_FOR_EACH_ENTRY( dev, &dinput->devices_list, IDirectInputDevice2AImpl, entry )
932 if (!dev->acquired) continue;
934 if (msg->hwnd == dev->win && msg->hwnd != foreground)
936 TRACE( "%p window is not foreground - unacquiring %p\n", dev->win, dev );
937 IDirectInputDevice_Unacquire( (LPDIRECTINPUTDEVICE8A)dev );
940 LeaveCriticalSection( &dinput->crit );
942 LeaveCriticalSection( &dinput_hook_crit );
944 return CallNextHookEx( 0, code, wparam, lparam );
947 static DWORD WINAPI hook_thread_proc(void *param)
949 static HHOOK kbd_hook, mouse_hook;
950 MSG msg;
952 /* Force creation of the message queue */
953 PeekMessageW( &msg, 0, 0, 0, PM_NOREMOVE );
954 SetEvent(*(LPHANDLE)param);
956 while (GetMessageW( &msg, 0, 0, 0 ))
958 UINT kbd_cnt = 0, mice_cnt = 0;
960 if (msg.message == WM_USER+0x10)
962 IDirectInputImpl *dinput;
964 TRACE( "Processing hook change notification lp:%ld\n", msg.lParam );
966 if (!msg.wParam && !msg.lParam)
968 if (kbd_hook) UnhookWindowsHookEx( kbd_hook );
969 if (mouse_hook) UnhookWindowsHookEx( mouse_hook );
970 kbd_hook = mouse_hook = NULL;
971 break;
974 EnterCriticalSection( &dinput_hook_crit );
976 /* Count acquired keyboards and mice*/
977 LIST_FOR_EACH_ENTRY( dinput, &direct_input_list, IDirectInputImpl, entry )
979 IDirectInputDevice2AImpl *dev;
981 EnterCriticalSection( &dinput->crit );
982 LIST_FOR_EACH_ENTRY( dev, &dinput->devices_list, IDirectInputDevice2AImpl, entry )
984 if (!dev->acquired || !dev->event_proc) continue;
986 if (IsEqualGUID( &dev->guid, &GUID_SysKeyboard ) ||
987 IsEqualGUID( &dev->guid, &DInput_Wine_Keyboard_GUID ))
988 kbd_cnt++;
989 else
990 if (IsEqualGUID( &dev->guid, &GUID_SysMouse ) ||
991 IsEqualGUID( &dev->guid, &DInput_Wine_Mouse_GUID ))
992 mice_cnt++;
994 LeaveCriticalSection( &dinput->crit );
996 LeaveCriticalSection( &dinput_hook_crit );
998 if (kbd_cnt && !kbd_hook)
999 kbd_hook = SetWindowsHookExW( WH_KEYBOARD_LL, LL_hook_proc, DINPUT_instance, 0 );
1000 else if (!kbd_cnt && kbd_hook)
1002 UnhookWindowsHookEx( kbd_hook );
1003 kbd_hook = NULL;
1006 if (mice_cnt && !mouse_hook)
1007 mouse_hook = SetWindowsHookExW( WH_MOUSE_LL, LL_hook_proc, DINPUT_instance, 0 );
1008 else if (!mice_cnt && mouse_hook)
1010 UnhookWindowsHookEx( mouse_hook );
1011 mouse_hook = NULL;
1014 TranslateMessage(&msg);
1015 DispatchMessageW(&msg);
1018 return 0;
1021 static DWORD hook_thread_id;
1023 static CRITICAL_SECTION_DEBUG dinput_critsect_debug =
1025 0, 0, &dinput_hook_crit,
1026 { &dinput_critsect_debug.ProcessLocksList, &dinput_critsect_debug.ProcessLocksList },
1027 0, 0, { (DWORD_PTR)(__FILE__ ": dinput_hook_crit") }
1029 static CRITICAL_SECTION dinput_hook_crit = { &dinput_critsect_debug, -1, 0, 0, 0, 0 };
1031 static BOOL check_hook_thread(void)
1033 static HANDLE hook_thread;
1035 EnterCriticalSection(&dinput_hook_crit);
1037 TRACE("IDirectInputs left: %d\n", list_count(&direct_input_list));
1038 if (!list_empty(&direct_input_list) && !hook_thread)
1040 HANDLE event;
1042 event = CreateEventW(NULL, FALSE, FALSE, NULL);
1043 hook_thread = CreateThread(NULL, 0, hook_thread_proc, &event, 0, &hook_thread_id);
1044 if (event && hook_thread)
1046 HANDLE handles[2];
1047 handles[0] = event;
1048 handles[1] = hook_thread;
1049 WaitForMultipleObjects(2, handles, FALSE, INFINITE);
1051 LeaveCriticalSection(&dinput_hook_crit);
1052 CloseHandle(event);
1054 else if (list_empty(&direct_input_list) && hook_thread)
1056 DWORD tid = hook_thread_id;
1058 hook_thread_id = 0;
1059 PostThreadMessageW(tid, WM_USER+0x10, 0, 0);
1060 LeaveCriticalSection(&dinput_hook_crit);
1062 /* wait for hook thread to exit */
1063 WaitForSingleObject(hook_thread, INFINITE);
1064 CloseHandle(hook_thread);
1065 hook_thread = NULL;
1067 else
1068 LeaveCriticalSection(&dinput_hook_crit);
1070 return hook_thread_id != 0;
1073 void check_dinput_hooks(LPDIRECTINPUTDEVICE8A iface)
1075 static HHOOK callwndproc_hook;
1076 static ULONG foreground_cnt;
1077 IDirectInputDevice2AImpl *dev = (IDirectInputDevice2AImpl *)iface;
1079 EnterCriticalSection(&dinput_hook_crit);
1081 if (dev->dwCoopLevel & DISCL_FOREGROUND)
1083 if (dev->acquired)
1084 foreground_cnt++;
1085 else
1086 foreground_cnt--;
1089 if (foreground_cnt && !callwndproc_hook)
1090 callwndproc_hook = SetWindowsHookExW( WH_CALLWNDPROC, callwndproc_proc,
1091 DINPUT_instance, GetCurrentThreadId() );
1092 else if (!foreground_cnt && callwndproc_hook)
1094 UnhookWindowsHookEx( callwndproc_hook );
1095 callwndproc_hook = NULL;
1098 PostThreadMessageW( hook_thread_id, WM_USER+0x10, 1, 0 );
1100 LeaveCriticalSection(&dinput_hook_crit);