1 /* DirectInput Mouse device
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
36 #include "dinput_private.h"
37 #include "device_private.h"
38 #include "wine/debug.h"
39 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(dinput
);
43 /* Wine mouse driver object instances */
44 #define WINE_MOUSE_X_AXIS_INSTANCE 0
45 #define WINE_MOUSE_Y_AXIS_INSTANCE 1
46 #define WINE_MOUSE_Z_AXIS_INSTANCE 2
47 #define WINE_MOUSE_BUTTONS_INSTANCE 3
49 static const IDirectInputDevice8AVtbl SysMouseAvt
;
50 static const IDirectInputDevice8WVtbl SysMouseWvt
;
52 typedef struct SysMouseImpl SysMouseImpl
;
63 struct IDirectInputDeviceImpl base
;
66 /* These are used in case of relative -> absolute transitions */
70 /* warping: whether we need to move mouse back to middle once we
71 * reach window borders (for e.g. shooters, "surface movement" games) */
75 /* This is for mouse reporting. */
76 DIMOUSESTATE2 m_state
;
78 WARP_MOUSE warp_override
;
81 static inline SysMouseImpl
*impl_from_IDirectInputDevice8A(IDirectInputDevice8A
*iface
)
83 return CONTAINING_RECORD(CONTAINING_RECORD(iface
, IDirectInputDeviceImpl
, IDirectInputDevice8A_iface
), SysMouseImpl
, base
);
85 static inline SysMouseImpl
*impl_from_IDirectInputDevice8W(IDirectInputDevice8W
*iface
)
87 return CONTAINING_RECORD(CONTAINING_RECORD(iface
, IDirectInputDeviceImpl
, IDirectInputDevice8W_iface
), SysMouseImpl
, base
);
89 static inline IDirectInputDevice8A
*IDirectInputDevice8A_from_impl(SysMouseImpl
*This
)
91 return &This
->base
.IDirectInputDevice8A_iface
;
93 static inline IDirectInputDevice8W
*IDirectInputDevice8W_from_impl(SysMouseImpl
*This
)
95 return &This
->base
.IDirectInputDevice8W_iface
;
98 static int dinput_mouse_hook( LPDIRECTINPUTDEVICE8A iface
, WPARAM wparam
, LPARAM lparam
);
100 const GUID DInput_Wine_Mouse_GUID
= { /* 9e573ed8-7734-11d2-8d4a-23903fb6bdf7 */
101 0x9e573ed8, 0x7734, 0x11d2, {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}
104 static void _dump_mouse_state(const DIMOUSESTATE2
*m_state
)
108 if (!TRACE_ON(dinput
)) return;
110 TRACE("(X: %d Y: %d Z: %d", m_state
->lX
, m_state
->lY
, m_state
->lZ
);
111 for (i
= 0; i
< 5; i
++) TRACE(" B%d: %02x", i
, m_state
->rgbButtons
[i
]);
115 static void fill_mouse_dideviceinstanceA(LPDIDEVICEINSTANCEA lpddi
, DWORD version
) {
117 DIDEVICEINSTANCEA ddi
;
119 dwSize
= lpddi
->dwSize
;
121 TRACE("%d %p\n", dwSize
, lpddi
);
123 memset(lpddi
, 0, dwSize
);
124 memset(&ddi
, 0, sizeof(ddi
));
127 ddi
.guidInstance
= GUID_SysMouse
;/* DInput's GUID */
128 ddi
.guidProduct
= DInput_Wine_Mouse_GUID
; /* Vendor's GUID */
129 if (version
>= 0x0800)
130 ddi
.dwDevType
= DI8DEVTYPE_MOUSE
| (DI8DEVTYPEMOUSE_TRADITIONAL
<< 8);
132 ddi
.dwDevType
= DIDEVTYPE_MOUSE
| (DIDEVTYPEMOUSE_TRADITIONAL
<< 8);
133 strcpy(ddi
.tszInstanceName
, "Mouse");
134 strcpy(ddi
.tszProductName
, "Wine Mouse");
136 memcpy(lpddi
, &ddi
, (dwSize
< sizeof(ddi
) ? dwSize
: sizeof(ddi
)));
139 static void fill_mouse_dideviceinstanceW(LPDIDEVICEINSTANCEW lpddi
, DWORD version
) {
141 DIDEVICEINSTANCEW ddi
;
143 dwSize
= lpddi
->dwSize
;
145 TRACE("%d %p\n", dwSize
, lpddi
);
147 memset(lpddi
, 0, dwSize
);
148 memset(&ddi
, 0, sizeof(ddi
));
151 ddi
.guidInstance
= GUID_SysMouse
;/* DInput's GUID */
152 ddi
.guidProduct
= DInput_Wine_Mouse_GUID
; /* Vendor's GUID */
153 if (version
>= 0x0800)
154 ddi
.dwDevType
= DI8DEVTYPE_MOUSE
| (DI8DEVTYPEMOUSE_TRADITIONAL
<< 8);
156 ddi
.dwDevType
= DIDEVTYPE_MOUSE
| (DIDEVTYPEMOUSE_TRADITIONAL
<< 8);
157 MultiByteToWideChar(CP_ACP
, 0, "Mouse", -1, ddi
.tszInstanceName
, MAX_PATH
);
158 MultiByteToWideChar(CP_ACP
, 0, "Wine Mouse", -1, ddi
.tszProductName
, MAX_PATH
);
160 memcpy(lpddi
, &ddi
, (dwSize
< sizeof(ddi
) ? dwSize
: sizeof(ddi
)));
163 static BOOL
mousedev_enum_deviceA(DWORD dwDevType
, DWORD dwFlags
, LPDIDEVICEINSTANCEA lpddi
, DWORD version
, int id
)
168 if ((dwDevType
== 0) ||
169 ((dwDevType
== DIDEVTYPE_MOUSE
) && (version
< 0x0800)) ||
170 (((dwDevType
== DI8DEVCLASS_POINTER
) || (dwDevType
== DI8DEVTYPE_MOUSE
)) && (version
>= 0x0800))) {
171 TRACE("Enumerating the mouse device\n");
173 fill_mouse_dideviceinstanceA(lpddi
, version
);
181 static BOOL
mousedev_enum_deviceW(DWORD dwDevType
, DWORD dwFlags
, LPDIDEVICEINSTANCEW lpddi
, DWORD version
, int id
)
186 if ((dwDevType
== 0) ||
187 ((dwDevType
== DIDEVTYPE_MOUSE
) && (version
< 0x0800)) ||
188 (((dwDevType
== DI8DEVCLASS_POINTER
) || (dwDevType
== DI8DEVTYPE_MOUSE
)) && (version
>= 0x0800))) {
189 TRACE("Enumerating the mouse device\n");
191 fill_mouse_dideviceinstanceW(lpddi
, version
);
199 static SysMouseImpl
*alloc_device(REFGUID rguid
, IDirectInputImpl
*dinput
)
201 SysMouseImpl
* newDevice
;
202 LPDIDATAFORMAT df
= NULL
;
207 newDevice
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(SysMouseImpl
));
208 if (!newDevice
) return NULL
;
209 newDevice
->base
.IDirectInputDevice8A_iface
.lpVtbl
= &SysMouseAvt
;
210 newDevice
->base
.IDirectInputDevice8W_iface
.lpVtbl
= &SysMouseWvt
;
211 newDevice
->base
.ref
= 1;
212 newDevice
->base
.dwCoopLevel
= DISCL_NONEXCLUSIVE
| DISCL_BACKGROUND
;
213 newDevice
->base
.guid
= *rguid
;
214 InitializeCriticalSection(&newDevice
->base
.crit
);
215 newDevice
->base
.crit
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": SysMouseImpl*->base.crit");
216 newDevice
->base
.dinput
= dinput
;
217 newDevice
->base
.event_proc
= dinput_mouse_hook
;
219 get_app_key(&hkey
, &appkey
);
220 if (!get_config_key(hkey
, appkey
, "MouseWarpOverride", buffer
, sizeof(buffer
)))
222 if (!strcasecmp(buffer
, "disable"))
223 newDevice
->warp_override
= WARP_DISABLE
;
224 else if (!strcasecmp(buffer
, "force"))
225 newDevice
->warp_override
= WARP_FORCE_ON
;
227 if (appkey
) RegCloseKey(appkey
);
228 if (hkey
) RegCloseKey(hkey
);
230 /* Create copy of default data format */
231 if (!(df
= HeapAlloc(GetProcessHeap(), 0, c_dfDIMouse2
.dwSize
))) goto failed
;
232 memcpy(df
, &c_dfDIMouse2
, c_dfDIMouse2
.dwSize
);
233 if (!(df
->rgodf
= HeapAlloc(GetProcessHeap(), 0, df
->dwNumObjs
* df
->dwObjSize
))) goto failed
;
234 memcpy(df
->rgodf
, c_dfDIMouse2
.rgodf
, df
->dwNumObjs
* df
->dwObjSize
);
236 /* Because we don't do any detection yet just modify instance and type */
237 for (i
= 0; i
< df
->dwNumObjs
; i
++)
238 if (DIDFT_GETTYPE(df
->rgodf
[i
].dwType
) & DIDFT_AXIS
)
239 df
->rgodf
[i
].dwType
= DIDFT_MAKEINSTANCE(i
) | DIDFT_RELAXIS
;
241 df
->rgodf
[i
].dwType
= DIDFT_MAKEINSTANCE(i
) | DIDFT_PSHBUTTON
;
243 newDevice
->base
.data_format
.wine_df
= df
;
244 IDirectInput_AddRef(&newDevice
->base
.dinput
->IDirectInput7A_iface
);
246 EnterCriticalSection(&dinput
->crit
);
247 list_add_tail(&dinput
->devices_list
, &newDevice
->base
.entry
);
248 LeaveCriticalSection(&dinput
->crit
);
253 if (df
) HeapFree(GetProcessHeap(), 0, df
->rgodf
);
254 HeapFree(GetProcessHeap(), 0, df
);
255 HeapFree(GetProcessHeap(), 0, newDevice
);
259 static HRESULT
mousedev_create_device(IDirectInputImpl
*dinput
, REFGUID rguid
, REFIID riid
, LPVOID
*pdev
, int unicode
)
261 TRACE("%p %s %s %p %i\n", dinput
, debugstr_guid(rguid
), debugstr_guid(riid
), pdev
, unicode
);
264 if (IsEqualGUID(&GUID_SysMouse
, rguid
) || /* Generic Mouse */
265 IsEqualGUID(&DInput_Wine_Mouse_GUID
, rguid
)) /* Wine Mouse */
271 else if (IsEqualGUID(&IID_IDirectInputDeviceA
, riid
) ||
272 IsEqualGUID(&IID_IDirectInputDevice2A
, riid
) ||
273 IsEqualGUID(&IID_IDirectInputDevice7A
, riid
) ||
274 IsEqualGUID(&IID_IDirectInputDevice8A
, riid
))
278 else if (IsEqualGUID(&IID_IDirectInputDeviceW
, riid
) ||
279 IsEqualGUID(&IID_IDirectInputDevice2W
, riid
) ||
280 IsEqualGUID(&IID_IDirectInputDevice7W
, riid
) ||
281 IsEqualGUID(&IID_IDirectInputDevice8W
, riid
))
287 WARN("no interface\n");
288 return DIERR_NOINTERFACE
;
291 This
= alloc_device(rguid
, dinput
);
292 TRACE("Created a Mouse device (%p)\n", This
);
294 if (!This
) return DIERR_OUTOFMEMORY
;
297 *pdev
= &This
->base
.IDirectInputDevice8W_iface
;
299 *pdev
= &This
->base
.IDirectInputDevice8A_iface
;
304 return DIERR_DEVICENOTREG
;
307 const struct dinput_device mouse_device
= {
309 mousedev_enum_deviceA
,
310 mousedev_enum_deviceW
,
311 mousedev_create_device
314 /******************************************************************************
315 * SysMouseA (DInput Mouse support)
318 /* low-level mouse hook */
319 static int dinput_mouse_hook( LPDIRECTINPUTDEVICE8A iface
, WPARAM wparam
, LPARAM lparam
)
321 MSLLHOOKSTRUCT
*hook
= (MSLLHOOKSTRUCT
*)lparam
;
322 SysMouseImpl
* This
= impl_from_IDirectInputDevice8A(iface
);
323 int wdata
= 0, inst_id
= -1, ret
;
325 TRACE("msg %lx @ (%d %d)\n", wparam
, hook
->pt
.x
, hook
->pt
.y
);
327 EnterCriticalSection(&This
->base
.crit
);
335 if (This
->clipped
) pt
= This
->mapped_center
;
336 else GetCursorPos(&pt
);
337 This
->m_state
.lX
+= pt
.x
= hook
->pt
.x
- pt
.x
;
338 This
->m_state
.lY
+= pt
.y
= hook
->pt
.y
- pt
.y
;
340 if (This
->base
.data_format
.user_df
->dwFlags
& DIDF_ABSAXIS
)
342 pt1
.x
= This
->m_state
.lX
;
343 pt1
.y
= This
->m_state
.lY
;
349 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE
) | DIDFT_RELAXIS
;
354 /* Already have X, need to queue it */
356 queue_event(iface
, inst_id
,
357 wdata
, GetCurrentTime(), This
->base
.dinput
->evsequence
);
358 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE
) | DIDFT_RELAXIS
;
364 if ((This
->warp_override
== WARP_FORCE_ON
) ||
365 (This
->warp_override
!= WARP_DISABLE
&& (This
->base
.dwCoopLevel
& DISCL_EXCLUSIVE
)))
366 This
->need_warp
= TRUE
;
371 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_Z_AXIS_INSTANCE
) | DIDFT_RELAXIS
;
372 This
->m_state
.lZ
+= wdata
= (short)HIWORD(hook
->mouseData
);
375 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 0) | DIDFT_PSHBUTTON
;
376 This
->m_state
.rgbButtons
[0] = wdata
= 0x80;
379 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 0) | DIDFT_PSHBUTTON
;
380 This
->m_state
.rgbButtons
[0] = wdata
= 0x00;
383 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 1) | DIDFT_PSHBUTTON
;
384 This
->m_state
.rgbButtons
[1] = wdata
= 0x80;
387 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 1) | DIDFT_PSHBUTTON
;
388 This
->m_state
.rgbButtons
[1] = wdata
= 0x00;
391 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 2) | DIDFT_PSHBUTTON
;
392 This
->m_state
.rgbButtons
[2] = wdata
= 0x80;
395 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 2) | DIDFT_PSHBUTTON
;
396 This
->m_state
.rgbButtons
[2] = wdata
= 0x00;
399 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 2 + HIWORD(hook
->mouseData
)) | DIDFT_PSHBUTTON
;
400 This
->m_state
.rgbButtons
[2 + HIWORD(hook
->mouseData
)] = wdata
= 0x80;
403 inst_id
= DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE
+ 2 + HIWORD(hook
->mouseData
)) | DIDFT_PSHBUTTON
;
404 This
->m_state
.rgbButtons
[2 + HIWORD(hook
->mouseData
)] = wdata
= 0x00;
413 _dump_mouse_state(&This
->m_state
);
414 queue_event(iface
, inst_id
,
415 wdata
, GetCurrentTime(), This
->base
.dinput
->evsequence
++);
418 LeaveCriticalSection(&This
->base
.crit
);
422 static HRESULT
warp_check( SysMouseImpl
* This
, BOOL force
)
424 DWORD now
= GetCurrentTime();
425 const DWORD interval
= This
->clipped
? 500 : 10;
427 if (force
|| (This
->need_warp
&& (now
- This
->last_warped
> interval
)))
431 This
->last_warped
= now
;
432 This
->need_warp
= FALSE
;
433 if (!GetWindowRect(This
->base
.win
, &rect
)) return DIERR_GENERIC
;
434 This
->mapped_center
.x
= (rect
.left
+ rect
.right
) / 2;
435 This
->mapped_center
.y
= (rect
.top
+ rect
.bottom
) / 2;
438 TRACE("Warping mouse to %d - %d\n", This
->mapped_center
.x
, This
->mapped_center
.y
);
439 SetCursorPos( This
->mapped_center
.x
, This
->mapped_center
.y
);
441 if (This
->base
.dwCoopLevel
& DISCL_EXCLUSIVE
)
443 SetRect( &rect
, This
->mapped_center
.x
, This
->mapped_center
.y
,
444 This
->mapped_center
.x
+ 1, This
->mapped_center
.y
+ 1 );
445 TRACE("Clipping mouse to %s\n", wine_dbgstr_rect( &rect
));
447 This
->clipped
= GetClipCursor( &new_rect
) && EqualRect( &rect
, &new_rect
);
454 /******************************************************************************
455 * Acquire : gets exclusive control of the mouse
457 static HRESULT WINAPI
SysMouseWImpl_Acquire(LPDIRECTINPUTDEVICE8W iface
)
459 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
463 TRACE("(this=%p)\n",This
);
465 if ((res
= IDirectInputDevice2WImpl_Acquire(iface
)) != DI_OK
) return res
;
467 /* Init the mouse state */
468 GetCursorPos( &point
);
469 if (This
->base
.data_format
.user_df
->dwFlags
& DIDF_ABSAXIS
)
471 This
->m_state
.lX
= point
.x
;
472 This
->m_state
.lY
= point
.y
;
474 This
->m_state
.lX
= 0;
475 This
->m_state
.lY
= 0;
476 This
->org_coords
= point
;
478 This
->m_state
.lZ
= 0;
479 This
->m_state
.rgbButtons
[0] = GetKeyState(VK_LBUTTON
) & 0x80;
480 This
->m_state
.rgbButtons
[1] = GetKeyState(VK_RBUTTON
) & 0x80;
481 This
->m_state
.rgbButtons
[2] = GetKeyState(VK_MBUTTON
) & 0x80;
483 if (This
->base
.dwCoopLevel
& DISCL_EXCLUSIVE
)
485 ShowCursor(FALSE
); /* hide cursor */
486 warp_check( This
, TRUE
);
488 else if (This
->warp_override
== WARP_FORCE_ON
)
490 /* Need a window to warp mouse in. */
491 if (!This
->base
.win
) This
->base
.win
= GetDesktopWindow();
492 warp_check( This
, TRUE
);
494 else if (This
->clipped
)
497 This
->clipped
= FALSE
;
503 static HRESULT WINAPI
SysMouseAImpl_Acquire(LPDIRECTINPUTDEVICE8A iface
)
505 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
506 return SysMouseWImpl_Acquire(IDirectInputDevice8W_from_impl(This
));
509 /******************************************************************************
510 * Unacquire : frees the mouse
512 static HRESULT WINAPI
SysMouseWImpl_Unacquire(LPDIRECTINPUTDEVICE8W iface
)
514 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
517 TRACE("(this=%p)\n",This
);
519 if ((res
= IDirectInputDevice2WImpl_Unacquire(iface
)) != DI_OK
) return res
;
521 if (This
->base
.dwCoopLevel
& DISCL_EXCLUSIVE
)
524 ShowCursor(TRUE
); /* show cursor */
525 This
->clipped
= FALSE
;
528 /* And put the mouse cursor back where it was at acquire time */
529 if (This
->base
.dwCoopLevel
& DISCL_EXCLUSIVE
|| This
->warp_override
== WARP_FORCE_ON
)
531 TRACE(" warping mouse back to (%d , %d)\n", This
->org_coords
.x
, This
->org_coords
.y
);
532 SetCursorPos(This
->org_coords
.x
, This
->org_coords
.y
);
538 static HRESULT WINAPI
SysMouseAImpl_Unacquire(LPDIRECTINPUTDEVICE8A iface
)
540 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
541 return SysMouseWImpl_Unacquire(IDirectInputDevice8W_from_impl(This
));
544 /******************************************************************************
545 * GetDeviceState : returns the "state" of the mouse.
547 * For the moment, only the "standard" return structure (DIMOUSESTATE) is
550 static HRESULT WINAPI
SysMouseWImpl_GetDeviceState(LPDIRECTINPUTDEVICE8W iface
, DWORD len
, LPVOID ptr
)
552 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
554 if(This
->base
.acquired
== 0) return DIERR_NOTACQUIRED
;
556 TRACE("(this=%p,0x%08x,%p):\n", This
, len
, ptr
);
557 _dump_mouse_state(&This
->m_state
);
559 EnterCriticalSection(&This
->base
.crit
);
560 /* Copy the current mouse state */
561 fill_DataFormat(ptr
, len
, &This
->m_state
, &This
->base
.data_format
);
563 /* Initialize the buffer when in relative mode */
564 if (!(This
->base
.data_format
.user_df
->dwFlags
& DIDF_ABSAXIS
))
566 This
->m_state
.lX
= 0;
567 This
->m_state
.lY
= 0;
568 This
->m_state
.lZ
= 0;
570 LeaveCriticalSection(&This
->base
.crit
);
572 return warp_check( This
, FALSE
);
575 static HRESULT WINAPI
SysMouseAImpl_GetDeviceState(LPDIRECTINPUTDEVICE8A iface
, DWORD len
, LPVOID ptr
)
577 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
578 return SysMouseWImpl_GetDeviceState(IDirectInputDevice8W_from_impl(This
), len
, ptr
);
581 /******************************************************************************
582 * GetDeviceData : gets buffered input data.
584 static HRESULT WINAPI
SysMouseWImpl_GetDeviceData(LPDIRECTINPUTDEVICE8W iface
,
585 DWORD dodsize
, LPDIDEVICEOBJECTDATA dod
, LPDWORD entries
, DWORD flags
)
587 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
590 res
= IDirectInputDevice2WImpl_GetDeviceData(iface
, dodsize
, dod
, entries
, flags
);
591 if (SUCCEEDED(res
)) res
= warp_check( This
, FALSE
);
595 static HRESULT WINAPI
SysMouseAImpl_GetDeviceData(LPDIRECTINPUTDEVICE8A iface
,
596 DWORD dodsize
, LPDIDEVICEOBJECTDATA dod
, LPDWORD entries
, DWORD flags
)
598 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
599 return SysMouseWImpl_GetDeviceData(IDirectInputDevice8W_from_impl(This
), dodsize
, dod
, entries
, flags
);
602 /******************************************************************************
603 * GetProperty : get input device properties
605 static HRESULT WINAPI
SysMouseWImpl_GetProperty(LPDIRECTINPUTDEVICE8W iface
, REFGUID rguid
, LPDIPROPHEADER pdiph
)
607 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
609 TRACE("(%p) %s,%p\n", This
, debugstr_guid(rguid
), pdiph
);
610 _dump_DIPROPHEADER(pdiph
);
612 if (IS_DIPROP(rguid
)) {
613 switch (LOWORD(rguid
)) {
614 case (DWORD_PTR
) DIPROP_GRANULARITY
: {
615 LPDIPROPDWORD pr
= (LPDIPROPDWORD
) pdiph
;
617 /* We'll just assume that the app asks about the Z axis */
618 pr
->dwData
= WHEEL_DELTA
;
623 case (DWORD_PTR
) DIPROP_RANGE
: {
624 LPDIPROPRANGE pr
= (LPDIPROPRANGE
) pdiph
;
626 if ((pdiph
->dwHow
== DIPH_BYID
) &&
627 ((pdiph
->dwObj
== (DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE
) | DIDFT_RELAXIS
)) ||
628 (pdiph
->dwObj
== (DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE
) | DIDFT_RELAXIS
)))) {
629 /* Querying the range of either the X or the Y axis. As I do
630 not know the range, do as if the range were
632 pr
->lMin
= DIPROPRANGE_NOMIN
;
633 pr
->lMax
= DIPROPRANGE_NOMAX
;
640 return IDirectInputDevice2WImpl_GetProperty(iface
, rguid
, pdiph
);
647 static HRESULT WINAPI
SysMouseAImpl_GetProperty(LPDIRECTINPUTDEVICE8A iface
, REFGUID rguid
, LPDIPROPHEADER pdiph
)
649 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
650 return SysMouseWImpl_GetProperty(IDirectInputDevice8W_from_impl(This
), rguid
, pdiph
);
653 /******************************************************************************
654 * GetCapabilities : get the device capabilities
656 static HRESULT WINAPI
SysMouseWImpl_GetCapabilities(LPDIRECTINPUTDEVICE8W iface
, LPDIDEVCAPS lpDIDevCaps
)
658 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
661 TRACE("(this=%p,%p)\n",This
,lpDIDevCaps
);
663 if ((lpDIDevCaps
->dwSize
!= sizeof(DIDEVCAPS
)) && (lpDIDevCaps
->dwSize
!= sizeof(DIDEVCAPS_DX3
))) {
664 WARN("invalid parameter\n");
665 return DIERR_INVALIDPARAM
;
668 devcaps
.dwSize
= lpDIDevCaps
->dwSize
;
669 devcaps
.dwFlags
= DIDC_ATTACHED
;
670 if (This
->base
.dinput
->dwVersion
>= 0x0800)
671 devcaps
.dwDevType
= DI8DEVTYPE_MOUSE
| (DI8DEVTYPEMOUSE_TRADITIONAL
<< 8);
673 devcaps
.dwDevType
= DIDEVTYPE_MOUSE
| (DIDEVTYPEMOUSE_TRADITIONAL
<< 8);
675 devcaps
.dwButtons
= 8;
677 devcaps
.dwFFSamplePeriod
= 0;
678 devcaps
.dwFFMinTimeResolution
= 0;
679 devcaps
.dwFirmwareRevision
= 100;
680 devcaps
.dwHardwareRevision
= 100;
681 devcaps
.dwFFDriverVersion
= 0;
683 memcpy(lpDIDevCaps
, &devcaps
, lpDIDevCaps
->dwSize
);
688 static HRESULT WINAPI
SysMouseAImpl_GetCapabilities(LPDIRECTINPUTDEVICE8A iface
, LPDIDEVCAPS lpDIDevCaps
)
690 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
691 return SysMouseWImpl_GetCapabilities(IDirectInputDevice8W_from_impl(This
), lpDIDevCaps
);
694 /******************************************************************************
695 * GetObjectInfo : get information about a device object such as a button
698 static HRESULT WINAPI
SysMouseWImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8W iface
,
699 LPDIDEVICEOBJECTINSTANCEW pdidoi
, DWORD dwObj
, DWORD dwHow
)
701 static const WCHAR x_axisW
[] = {'X','-','A','x','i','s',0};
702 static const WCHAR y_axisW
[] = {'Y','-','A','x','i','s',0};
703 static const WCHAR wheelW
[] = {'W','h','e','e','l',0};
704 static const WCHAR buttonW
[] = {'B','u','t','t','o','n',' ','%','d',0};
707 res
= IDirectInputDevice2WImpl_GetObjectInfo(iface
, pdidoi
, dwObj
, dwHow
);
708 if (res
!= DI_OK
) return res
;
710 if (IsEqualGUID(&pdidoi
->guidType
, &GUID_XAxis
)) strcpyW(pdidoi
->tszName
, x_axisW
);
711 else if (IsEqualGUID(&pdidoi
->guidType
, &GUID_YAxis
)) strcpyW(pdidoi
->tszName
, y_axisW
);
712 else if (IsEqualGUID(&pdidoi
->guidType
, &GUID_ZAxis
)) strcpyW(pdidoi
->tszName
, wheelW
);
713 else if (pdidoi
->dwType
& DIDFT_BUTTON
)
714 wsprintfW(pdidoi
->tszName
, buttonW
, DIDFT_GETINSTANCE(pdidoi
->dwType
) - 3);
716 _dump_OBJECTINSTANCEW(pdidoi
);
720 static HRESULT WINAPI
SysMouseAImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8A iface
,
721 LPDIDEVICEOBJECTINSTANCEA pdidoi
, DWORD dwObj
, DWORD dwHow
)
723 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
725 DIDEVICEOBJECTINSTANCEW didoiW
;
726 DWORD dwSize
= pdidoi
->dwSize
;
728 didoiW
.dwSize
= sizeof(didoiW
);
729 res
= SysMouseWImpl_GetObjectInfo(IDirectInputDevice8W_from_impl(This
), &didoiW
, dwObj
, dwHow
);
730 if (res
!= DI_OK
) return res
;
732 memset(pdidoi
, 0, pdidoi
->dwSize
);
733 memcpy(pdidoi
, &didoiW
, FIELD_OFFSET(DIDEVICEOBJECTINSTANCEW
, tszName
));
734 pdidoi
->dwSize
= dwSize
;
735 WideCharToMultiByte(CP_ACP
, 0, didoiW
.tszName
, -1, pdidoi
->tszName
,
736 sizeof(pdidoi
->tszName
), NULL
, NULL
);
741 /******************************************************************************
742 * GetDeviceInfo : get information about a device's identity
744 static HRESULT WINAPI
SysMouseAImpl_GetDeviceInfo(
745 LPDIRECTINPUTDEVICE8A iface
,
746 LPDIDEVICEINSTANCEA pdidi
)
748 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
749 TRACE("(this=%p,%p)\n", This
, pdidi
);
751 if (pdidi
->dwSize
!= sizeof(DIDEVICEINSTANCEA
)) {
752 WARN(" dinput3 not supported yet...\n");
756 fill_mouse_dideviceinstanceA(pdidi
, This
->base
.dinput
->dwVersion
);
761 static HRESULT WINAPI
SysMouseWImpl_GetDeviceInfo(LPDIRECTINPUTDEVICE8W iface
, LPDIDEVICEINSTANCEW pdidi
)
763 SysMouseImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
764 TRACE("(this=%p,%p)\n", This
, pdidi
);
766 if (pdidi
->dwSize
!= sizeof(DIDEVICEINSTANCEW
)) {
767 WARN(" dinput3 not supported yet...\n");
771 fill_mouse_dideviceinstanceW(pdidi
, This
->base
.dinput
->dwVersion
);
776 static HRESULT WINAPI
SysMouseWImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface
,
777 LPDIACTIONFORMATW lpdiaf
,
778 LPCWSTR lpszUserName
,
781 FIXME("(%p)->(%p,%s,%08x): semi-stub !\n", iface
, lpdiaf
, debugstr_w(lpszUserName
), dwFlags
);
783 return _build_action_map(iface
, lpdiaf
, lpszUserName
, dwFlags
, DIMOUSE_MASK
, &c_dfDIMouse2
);
786 static HRESULT WINAPI
SysMouseAImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface
,
787 LPDIACTIONFORMATA lpdiaf
,
791 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
792 DIACTIONFORMATW diafW
;
794 WCHAR
*lpszUserNameW
= NULL
;
797 diafW
.rgoAction
= HeapAlloc(GetProcessHeap(), 0, sizeof(DIACTIONW
)*lpdiaf
->dwNumActions
);
798 _copy_diactionformatAtoW(&diafW
, lpdiaf
);
800 if (lpszUserName
!= NULL
)
802 username_size
= MultiByteToWideChar(CP_ACP
, 0, lpszUserName
, -1, NULL
, 0);
803 lpszUserNameW
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
)*username_size
);
804 MultiByteToWideChar(CP_ACP
, 0, lpszUserName
, -1, lpszUserNameW
, username_size
);
807 hr
= SysMouseWImpl_BuildActionMap(&This
->base
.IDirectInputDevice8W_iface
, &diafW
, lpszUserNameW
, dwFlags
);
809 _copy_diactionformatWtoA(lpdiaf
, &diafW
);
810 HeapFree(GetProcessHeap(), 0, diafW
.rgoAction
);
811 HeapFree(GetProcessHeap(), 0, lpszUserNameW
);
816 static HRESULT WINAPI
SysMouseWImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface
,
817 LPDIACTIONFORMATW lpdiaf
,
818 LPCWSTR lpszUserName
,
821 FIXME("(%p)->(%p,%s,%08x): semi-stub !\n", iface
, lpdiaf
, debugstr_w(lpszUserName
), dwFlags
);
823 return _set_action_map(iface
, lpdiaf
, lpszUserName
, dwFlags
, &c_dfDIMouse2
);
826 static HRESULT WINAPI
SysMouseAImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface
,
827 LPDIACTIONFORMATA lpdiaf
,
831 SysMouseImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
832 DIACTIONFORMATW diafW
;
834 WCHAR
*lpszUserNameW
= NULL
;
837 diafW
.rgoAction
= HeapAlloc(GetProcessHeap(), 0, sizeof(DIACTIONW
)*lpdiaf
->dwNumActions
);
838 _copy_diactionformatAtoW(&diafW
, lpdiaf
);
840 if (lpszUserName
!= NULL
)
842 username_size
= MultiByteToWideChar(CP_ACP
, 0, lpszUserName
, -1, NULL
, 0);
843 lpszUserNameW
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
)*username_size
);
844 MultiByteToWideChar(CP_ACP
, 0, lpszUserName
, -1, lpszUserNameW
, username_size
);
847 hr
= SysMouseWImpl_SetActionMap(&This
->base
.IDirectInputDevice8W_iface
, &diafW
, lpszUserNameW
, dwFlags
);
849 HeapFree(GetProcessHeap(), 0, diafW
.rgoAction
);
850 HeapFree(GetProcessHeap(), 0, lpszUserNameW
);
855 static const IDirectInputDevice8AVtbl SysMouseAvt
=
857 IDirectInputDevice2AImpl_QueryInterface
,
858 IDirectInputDevice2AImpl_AddRef
,
859 IDirectInputDevice2AImpl_Release
,
860 SysMouseAImpl_GetCapabilities
,
861 IDirectInputDevice2AImpl_EnumObjects
,
862 SysMouseAImpl_GetProperty
,
863 IDirectInputDevice2AImpl_SetProperty
,
864 SysMouseAImpl_Acquire
,
865 SysMouseAImpl_Unacquire
,
866 SysMouseAImpl_GetDeviceState
,
867 SysMouseAImpl_GetDeviceData
,
868 IDirectInputDevice2AImpl_SetDataFormat
,
869 IDirectInputDevice2AImpl_SetEventNotification
,
870 IDirectInputDevice2AImpl_SetCooperativeLevel
,
871 SysMouseAImpl_GetObjectInfo
,
872 SysMouseAImpl_GetDeviceInfo
,
873 IDirectInputDevice2AImpl_RunControlPanel
,
874 IDirectInputDevice2AImpl_Initialize
,
875 IDirectInputDevice2AImpl_CreateEffect
,
876 IDirectInputDevice2AImpl_EnumEffects
,
877 IDirectInputDevice2AImpl_GetEffectInfo
,
878 IDirectInputDevice2AImpl_GetForceFeedbackState
,
879 IDirectInputDevice2AImpl_SendForceFeedbackCommand
,
880 IDirectInputDevice2AImpl_EnumCreatedEffectObjects
,
881 IDirectInputDevice2AImpl_Escape
,
882 IDirectInputDevice2AImpl_Poll
,
883 IDirectInputDevice2AImpl_SendDeviceData
,
884 IDirectInputDevice7AImpl_EnumEffectsInFile
,
885 IDirectInputDevice7AImpl_WriteEffectToFile
,
886 SysMouseAImpl_BuildActionMap
,
887 SysMouseAImpl_SetActionMap
,
888 IDirectInputDevice8AImpl_GetImageInfo
891 static const IDirectInputDevice8WVtbl SysMouseWvt
=
893 IDirectInputDevice2WImpl_QueryInterface
,
894 IDirectInputDevice2WImpl_AddRef
,
895 IDirectInputDevice2WImpl_Release
,
896 SysMouseWImpl_GetCapabilities
,
897 IDirectInputDevice2WImpl_EnumObjects
,
898 SysMouseWImpl_GetProperty
,
899 IDirectInputDevice2WImpl_SetProperty
,
900 SysMouseWImpl_Acquire
,
901 SysMouseWImpl_Unacquire
,
902 SysMouseWImpl_GetDeviceState
,
903 SysMouseWImpl_GetDeviceData
,
904 IDirectInputDevice2WImpl_SetDataFormat
,
905 IDirectInputDevice2WImpl_SetEventNotification
,
906 IDirectInputDevice2WImpl_SetCooperativeLevel
,
907 SysMouseWImpl_GetObjectInfo
,
908 SysMouseWImpl_GetDeviceInfo
,
909 IDirectInputDevice2WImpl_RunControlPanel
,
910 IDirectInputDevice2WImpl_Initialize
,
911 IDirectInputDevice2WImpl_CreateEffect
,
912 IDirectInputDevice2WImpl_EnumEffects
,
913 IDirectInputDevice2WImpl_GetEffectInfo
,
914 IDirectInputDevice2WImpl_GetForceFeedbackState
,
915 IDirectInputDevice2WImpl_SendForceFeedbackCommand
,
916 IDirectInputDevice2WImpl_EnumCreatedEffectObjects
,
917 IDirectInputDevice2WImpl_Escape
,
918 IDirectInputDevice2WImpl_Poll
,
919 IDirectInputDevice2WImpl_SendDeviceData
,
920 IDirectInputDevice7WImpl_EnumEffectsInFile
,
921 IDirectInputDevice7WImpl_WriteEffectToFile
,
922 SysMouseWImpl_BuildActionMap
,
923 SysMouseWImpl_SetActionMap
,
924 IDirectInputDevice8WImpl_GetImageInfo