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
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
39 #define NONAMELESSUNION
41 #include "wine/debug.h"
42 #include "wine/unicode.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
[] =
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
)
92 case DLL_PROCESS_ATTACH
:
93 DisableThreadLibraryCalls(inst
);
94 DINPUT_instance
= inst
;
96 case DLL_PROCESS_DETACH
:
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
,
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
;
131 return DIERR_OLDDIRECTINPUTVERSION
;
133 This
->lpVtbl
= &ddi7avt
;
134 This
->lpVtbl7w
= &ddi7wvt
;
135 This
->lpVtbl8a
= &ddi8avt
;
136 This
->lpVtbl8w
= &ddi8wvt
;
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
);
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
) {
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
)) {
191 static const struct {
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
)
205 TRACE("DIEDFL_ALLDEVICES");
208 for (i
= 0; i
< (sizeof(flags
) / sizeof(flags
[0])); i
++)
209 if (flags
[i
].mask
& dwFlags
)
210 TRACE("%s ",flags
[i
].name
);
215 void _dump_diactionformatA(LPDIACTIONFORMATA lpdiActionFormat
) {
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
;
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
)
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
;
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
)
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);
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 );
331 /* Remove self from the list of the IDirectInputs */
332 EnterCriticalSection( &dinput_hook_crit
);
333 list_remove( &This
->entry
);
334 LeaveCriticalSection( &dinput_hook_crit
);
338 This
->crit
.DebugInfo
->Spare
[0] = 0;
339 DeleteCriticalSection( &This
->crit
);
340 HeapFree( GetProcessHeap(), 0, This
);
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
);
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
);
378 if (IsEqualGUID( &IID_IDirectInput8A
, riid
))
380 *ppobj
= &This
->lpVtbl8a
;
381 IUnknown_AddRef( (IUnknown
*)*ppobj
);
386 if (IsEqualGUID( &IID_IDirectInput8W
, riid
))
388 *ppobj
= &This
->lpVtbl8w
;
389 IUnknown_AddRef( (IUnknown
*)*ppobj
);
394 FIXME( "Unsupported interface !\n" );
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.
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
;
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
);
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
,
446 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
448 FIXME( "(%p)->(%p,%08x): stub\n", This
, hwndOwner
, dwFlags
);
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
);
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
);
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
;
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
++) {
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
);
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
));
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
;
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
++) {
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
);
539 if (ret
== DIERR_NOINTERFACE
)
540 ret_value
= DIERR_NOINTERFACE
;
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 /*******************************************************************************
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
)
687 X(DIEDBSFL_FORCEFEEDBACK
)
688 X(DIEDBSFL_AVAILABLEDEVICES
)
689 X(DIEDBSFL_MULTIMICEKEYBOARDS
)
690 X(DIEDBSFL_NONGAMINGDEVICES
)
693 _dump_diactionformatA(lpdiActionFormat
);
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
);
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
,
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
,
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
794 /* IUnknown fields */
795 const IClassFactoryVtbl
*lpVtbl
;
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
);
846 static const IClassFactoryVtbl DICF_Vtbl
= {
853 static IClassFactoryImpl DINPUT_CF
= {&DICF_Vtbl
, 1 };
855 /***********************************************************************
856 * DllCanUnloadNow (DINPUT.@)
858 HRESULT WINAPI
DllCanUnloadNow(void)
860 FIXME("(void): stub\n");
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
= (LPVOID
)&DINPUT_CF
;
873 IClassFactory_AddRef((IClassFactory
*)*ppv
);
877 FIXME("(%s,%s,%p): no interface found.\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
878 return CLASS_E_CLASSNOTAVAILABLE
;
881 /******************************************************************************
885 static LRESULT CALLBACK
LL_hook_proc( int code
, WPARAM wparam
, LPARAM lparam
)
887 IDirectInputImpl
*dinput
;
889 if (code
!= HC_ACTION
) return CallNextHookEx( 0, code
, wparam
, lparam
);
891 EnterCriticalSection( &dinput_hook_crit
);
892 LIST_FOR_EACH_ENTRY( dinput
, &direct_input_list
, IDirectInputImpl
, entry
)
894 IDirectInputDevice2AImpl
*dev
;
896 EnterCriticalSection( &dinput
->crit
);
897 LIST_FOR_EACH_ENTRY( dev
, &dinput
->devices_list
, IDirectInputDevice2AImpl
, entry
)
898 if (dev
->acquired
&& dev
->event_proc
)
900 TRACE("calling %p->%p (%lx %lx)\n", dev
, dev
->event_proc
, wparam
, lparam
);
901 dev
->event_proc( (LPDIRECTINPUTDEVICE8A
)dev
, wparam
, lparam
);
903 LeaveCriticalSection( &dinput
->crit
);
905 LeaveCriticalSection( &dinput_hook_crit
);
907 return CallNextHookEx( 0, code
, wparam
, lparam
);
910 static LRESULT CALLBACK
callwndproc_proc( int code
, WPARAM wparam
, LPARAM lparam
)
912 CWPSTRUCT
*msg
= (CWPSTRUCT
*)lparam
;
913 IDirectInputImpl
*dinput
;
916 if (code
!= HC_ACTION
|| (msg
->message
!= WM_KILLFOCUS
&&
917 msg
->message
!= WM_ACTIVATEAPP
&& msg
->message
!= WM_ACTIVATE
))
918 return CallNextHookEx( 0, code
, wparam
, lparam
);
920 foreground
= GetForegroundWindow();
922 EnterCriticalSection( &dinput_hook_crit
);
924 LIST_FOR_EACH_ENTRY( dinput
, &direct_input_list
, IDirectInputImpl
, entry
)
926 IDirectInputDevice2AImpl
*dev
;
928 EnterCriticalSection( &dinput
->crit
);
929 LIST_FOR_EACH_ENTRY( dev
, &dinput
->devices_list
, IDirectInputDevice2AImpl
, entry
)
931 if (!dev
->acquired
) continue;
933 if (msg
->hwnd
== dev
->win
&& msg
->hwnd
!= foreground
)
935 TRACE( "%p window is not foreground - unacquiring %p\n", dev
->win
, dev
);
936 IDirectInputDevice_Unacquire( (LPDIRECTINPUTDEVICE8A
)dev
);
939 LeaveCriticalSection( &dinput
->crit
);
941 LeaveCriticalSection( &dinput_hook_crit
);
943 return CallNextHookEx( 0, code
, wparam
, lparam
);
946 static DWORD WINAPI
hook_thread_proc(void *param
)
948 static HHOOK kbd_hook
, mouse_hook
;
951 /* Force creation of the message queue */
952 PeekMessageW( &msg
, 0, 0, 0, PM_NOREMOVE
);
953 SetEvent(*(LPHANDLE
)param
);
955 while (GetMessageW( &msg
, 0, 0, 0 ))
957 UINT kbd_cnt
= 0, mice_cnt
= 0;
959 if (msg
.message
== WM_USER
+0x10)
961 IDirectInputImpl
*dinput
;
963 TRACE( "Processing hook change notification lp:%ld\n", msg
.lParam
);
965 if (!msg
.wParam
&& !msg
.lParam
)
967 if (kbd_hook
) UnhookWindowsHookEx( kbd_hook
);
968 if (mouse_hook
) UnhookWindowsHookEx( mouse_hook
);
969 kbd_hook
= mouse_hook
= NULL
;
973 EnterCriticalSection( &dinput_hook_crit
);
975 /* Count acquired keyboards and mice*/
976 LIST_FOR_EACH_ENTRY( dinput
, &direct_input_list
, IDirectInputImpl
, entry
)
978 IDirectInputDevice2AImpl
*dev
;
980 EnterCriticalSection( &dinput
->crit
);
981 LIST_FOR_EACH_ENTRY( dev
, &dinput
->devices_list
, IDirectInputDevice2AImpl
, entry
)
983 if (!dev
->acquired
|| !dev
->event_proc
) continue;
985 if (IsEqualGUID( &dev
->guid
, &GUID_SysKeyboard
) ||
986 IsEqualGUID( &dev
->guid
, &DInput_Wine_Keyboard_GUID
))
989 if (IsEqualGUID( &dev
->guid
, &GUID_SysMouse
) ||
990 IsEqualGUID( &dev
->guid
, &DInput_Wine_Mouse_GUID
))
993 LeaveCriticalSection( &dinput
->crit
);
995 LeaveCriticalSection( &dinput_hook_crit
);
997 if (kbd_cnt
&& !kbd_hook
)
998 kbd_hook
= SetWindowsHookExW( WH_KEYBOARD_LL
, LL_hook_proc
, DINPUT_instance
, 0 );
999 else if (!kbd_cnt
&& kbd_hook
)
1001 UnhookWindowsHookEx( kbd_hook
);
1005 if (mice_cnt
&& !mouse_hook
)
1006 mouse_hook
= SetWindowsHookExW( WH_MOUSE_LL
, LL_hook_proc
, DINPUT_instance
, 0 );
1007 else if (!mice_cnt
&& mouse_hook
)
1009 UnhookWindowsHookEx( mouse_hook
);
1013 TranslateMessage(&msg
);
1014 DispatchMessageW(&msg
);
1020 static DWORD hook_thread_id
;
1022 static CRITICAL_SECTION_DEBUG dinput_critsect_debug
=
1024 0, 0, &dinput_hook_crit
,
1025 { &dinput_critsect_debug
.ProcessLocksList
, &dinput_critsect_debug
.ProcessLocksList
},
1026 0, 0, { (DWORD_PTR
)(__FILE__
": dinput_hook_crit") }
1028 static CRITICAL_SECTION dinput_hook_crit
= { &dinput_critsect_debug
, -1, 0, 0, 0, 0 };
1030 static BOOL
check_hook_thread(void)
1032 static HANDLE hook_thread
;
1034 EnterCriticalSection(&dinput_hook_crit
);
1036 TRACE("IDirectInputs left: %d\n", list_count(&direct_input_list
));
1037 if (!list_empty(&direct_input_list
) && !hook_thread
)
1041 event
= CreateEventW(NULL
, FALSE
, FALSE
, NULL
);
1042 hook_thread
= CreateThread(NULL
, 0, hook_thread_proc
, &event
, 0, &hook_thread_id
);
1043 if (event
&& hook_thread
)
1047 handles
[1] = hook_thread
;
1048 WaitForMultipleObjects(2, handles
, FALSE
, INFINITE
);
1050 LeaveCriticalSection(&dinput_hook_crit
);
1053 else if (list_empty(&direct_input_list
) && hook_thread
)
1055 DWORD tid
= hook_thread_id
;
1058 PostThreadMessageW(tid
, WM_USER
+0x10, 0, 0);
1059 LeaveCriticalSection(&dinput_hook_crit
);
1061 /* wait for hook thread to exit */
1062 WaitForSingleObject(hook_thread
, INFINITE
);
1063 CloseHandle(hook_thread
);
1067 LeaveCriticalSection(&dinput_hook_crit
);
1069 return hook_thread_id
!= 0;
1072 void check_dinput_hooks(LPDIRECTINPUTDEVICE8A iface
)
1074 static HHOOK callwndproc_hook
;
1075 static ULONG foreground_cnt
;
1076 IDirectInputDevice2AImpl
*dev
= (IDirectInputDevice2AImpl
*)iface
;
1078 EnterCriticalSection(&dinput_hook_crit
);
1080 if (dev
->dwCoopLevel
& DISCL_FOREGROUND
)
1088 if (foreground_cnt
&& !callwndproc_hook
)
1089 callwndproc_hook
= SetWindowsHookExW( WH_CALLWNDPROC
, callwndproc_proc
,
1090 DINPUT_instance
, GetCurrentThreadId() );
1091 else if (!foreground_cnt
&& callwndproc_hook
)
1093 UnhookWindowsHookEx( callwndproc_hook
);
1094 callwndproc_hook
= NULL
;
1097 PostThreadMessageW( hook_thread_id
, WM_USER
+0x10, 1, 0 );
1099 LeaveCriticalSection(&dinput_hook_crit
);