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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/port.h"
35 #include "dinput_private.h"
36 #include "device_private.h"
37 #include "wine/debug.h"
38 #include "wine/unicode.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
44 /* Wine mouse driver object instances */
45 #define WINE_MOUSE_X_AXIS_INSTANCE 0
46 #define WINE_MOUSE_Y_AXIS_INSTANCE 1
47 #define WINE_MOUSE_Z_AXIS_INSTANCE 2
48 #define WINE_MOUSE_L_BUTTON_INSTANCE 0
49 #define WINE_MOUSE_R_BUTTON_INSTANCE 1
50 #define WINE_MOUSE_M_BUTTON_INSTANCE 2
51 #define WINE_MOUSE_D_BUTTON_INSTANCE 3
53 /* ------------------------------- */
54 /* Wine mouse internal data format */
55 /* ------------------------------- */
57 /* Constants used to access the offset array */
58 #define WINE_MOUSE_X_POSITION 0
59 #define WINE_MOUSE_Y_POSITION 1
60 #define WINE_MOUSE_Z_POSITION 2
61 #define WINE_MOUSE_L_POSITION 3
62 #define WINE_MOUSE_R_POSITION 4
63 #define WINE_MOUSE_M_POSITION 5
70 } Wine_InternalMouseData;
72 #define WINE_INTERNALMOUSE_NUM_OBJS 6
74 static const DIOBJECTDATAFORMAT Wine_InternalMouseObjectFormat[WINE_INTERNALMOUSE_NUM_OBJS] = {
75 { &GUID_XAxis, FIELD_OFFSET(Wine_InternalMouseData, lX),
76 DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS, 0 },
77 { &GUID_YAxis, FIELD_OFFSET(Wine_InternalMouseData, lY),
78 DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS, 0 },
79 { &GUID_ZAxis, FIELD_OFFSET(Wine_InternalMouseData, lZ),
80 DIDFT_MAKEINSTANCE(WINE_MOUSE_Z_AXIS_INSTANCE) | DIDFT_RELAXIS, 0 },
81 { &GUID_Button, (FIELD_OFFSET(Wine_InternalMouseData, rgbButtons)) + 0,
82 DIDFT_MAKEINSTANCE(WINE_MOUSE_L_BUTTON_INSTANCE) | DIDFT_PSHBUTTON, 0 },
83 { &GUID_Button, (FIELD_OFFSET(Wine_InternalMouseData, rgbButtons)) + 1,
84 DIDFT_MAKEINSTANCE(WINE_MOUSE_R_BUTTON_INSTANCE) | DIDFT_PSHBUTTON, 0 },
85 { &GUID_Button, (FIELD_OFFSET(Wine_InternalMouseData, rgbButtons)) + 2,
86 DIDFT_MAKEINSTANCE(WINE_MOUSE_M_BUTTON_INSTANCE) | DIDFT_PSHBUTTON, 0 }
89 static const DIDATAFORMAT Wine_InternalMouseFormat = {
90 0, /* dwSize - unused */
91 0, /* dwObjsize - unused */
92 0, /* dwFlags - unused */
93 sizeof(Wine_InternalMouseData),
94 WINE_INTERNALMOUSE_NUM_OBJS, /* dwNumObjs */
95 (LPDIOBJECTDATAFORMAT) Wine_InternalMouseObjectFormat
98 static IDirectInputDevice8AVtbl SysMouseAvt;
99 static IDirectInputDevice8WVtbl SysMouseWvt;
101 typedef struct SysMouseImpl SysMouseImpl;
104 WARP_DONE, /* Warping has been done */
105 WARP_NEEDED, /* Warping is needed */
106 WARP_STARTED /* Warping has been done, waiting for the warp event */
115 IDirectInputImpl *dinput;
117 /* The current data format and the conversion between internal
118 and external data formats */
121 int offset_array[WINE_INTERNALMOUSE_NUM_OBJS];
125 /* Previous position for relative moves */
127 /* These are used in case of relative -> absolute transitions */
133 DWORD win_centerX, win_centerY;
134 LPDIDEVICEOBJECTDATA data_queue;
135 int queue_head, queue_tail, queue_len;
137 /* warping: whether we need to move mouse back to middle once we
138 * reach window borders (for e.g. shooters, "surface movement" games) */
139 WARP_STATUS need_warp;
142 CRITICAL_SECTION crit;
144 /* This is for mouse reporting. */
145 Wine_InternalMouseData m_state;
148 /* FIXME: This is ugly and not thread safe :/ */
149 static IDirectInputDevice8A* current_lock = NULL;
151 static GUID DInput_Wine_Mouse_GUID = { /* 9e573ed8-7734-11d2-8d4a-23903fb6bdf7 */
155 {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}
158 static void fill_mouse_dideviceinstanceA(LPDIDEVICEINSTANCEA lpddi, int version) {
160 DIDEVICEINSTANCEA ddi;
162 dwSize = lpddi->dwSize;
164 TRACE("%ld %p\n", dwSize, lpddi);
166 memset(lpddi, 0, dwSize);
167 memset(&ddi, 0, sizeof(ddi));
170 ddi.guidInstance = GUID_SysMouse;/* DInput's GUID */
171 ddi.guidProduct = DInput_Wine_Mouse_GUID; /* Vendor's GUID */
173 ddi.dwDevType = DI8DEVTYPE_MOUSE | (DI8DEVTYPEMOUSE_TRADITIONAL << 8);
175 ddi.dwDevType = DIDEVTYPE_MOUSE | (DIDEVTYPEMOUSE_TRADITIONAL << 8);
176 strcpy(ddi.tszInstanceName, "Mouse");
177 strcpy(ddi.tszProductName, "Wine Mouse");
179 memcpy(lpddi, &ddi, (dwSize < sizeof(ddi) ? dwSize : sizeof(ddi)));
182 static void fill_mouse_dideviceinstanceW(LPDIDEVICEINSTANCEW lpddi, int version) {
184 DIDEVICEINSTANCEW ddi;
186 dwSize = lpddi->dwSize;
188 TRACE("%ld %p\n", dwSize, lpddi);
190 memset(lpddi, 0, dwSize);
191 memset(&ddi, 0, sizeof(ddi));
194 ddi.guidInstance = GUID_SysMouse;/* DInput's GUID */
195 ddi.guidProduct = DInput_Wine_Mouse_GUID; /* Vendor's GUID */
197 ddi.dwDevType = DI8DEVTYPE_MOUSE | (DI8DEVTYPEMOUSE_TRADITIONAL << 8);
199 ddi.dwDevType = DIDEVTYPE_MOUSE | (DIDEVTYPEMOUSE_TRADITIONAL << 8);
200 MultiByteToWideChar(CP_ACP, 0, "Mouse", -1, ddi.tszInstanceName, MAX_PATH);
201 MultiByteToWideChar(CP_ACP, 0, "Wine Mouse", -1, ddi.tszProductName, MAX_PATH);
203 memcpy(lpddi, &ddi, (dwSize < sizeof(ddi) ? dwSize : sizeof(ddi)));
206 static BOOL mousedev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, int version, int id)
211 if ((dwDevType == 0) ||
212 ((dwDevType == DIDEVTYPE_MOUSE) && (version < 8)) ||
213 (((dwDevType == DI8DEVCLASS_POINTER) || (dwDevType == DI8DEVTYPE_MOUSE)) && (version >= 8))) {
214 TRACE("Enumerating the mouse device\n");
216 fill_mouse_dideviceinstanceA(lpddi, version);
224 static BOOL mousedev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, int version, int id)
229 if ((dwDevType == 0) ||
230 ((dwDevType == DIDEVTYPE_MOUSE) && (version < 8)) ||
231 (((dwDevType == DI8DEVCLASS_POINTER) || (dwDevType == DI8DEVTYPE_MOUSE)) && (version >= 8))) {
232 TRACE("Enumerating the mouse device\n");
234 fill_mouse_dideviceinstanceW(lpddi, version);
242 static SysMouseImpl *alloc_device(REFGUID rguid, LPVOID mvt, IDirectInputImpl *dinput)
244 int offset_array[WINE_INTERNALMOUSE_NUM_OBJS] = {
245 FIELD_OFFSET(Wine_InternalMouseData, lX),
246 FIELD_OFFSET(Wine_InternalMouseData, lY),
247 FIELD_OFFSET(Wine_InternalMouseData, lZ),
248 FIELD_OFFSET(Wine_InternalMouseData, rgbButtons) + 0,
249 FIELD_OFFSET(Wine_InternalMouseData, rgbButtons) + 1,
250 FIELD_OFFSET(Wine_InternalMouseData, rgbButtons) + 2
252 SysMouseImpl* newDevice;
253 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysMouseImpl));
255 newDevice->lpVtbl = mvt;
256 InitializeCriticalSection(&(newDevice->crit));
257 memcpy(&(newDevice->guid),rguid,sizeof(*rguid));
259 /* Per default, Wine uses its internal data format */
260 newDevice->df = (DIDATAFORMAT *) &Wine_InternalMouseFormat;
261 memcpy(newDevice->offset_array, offset_array, WINE_INTERNALMOUSE_NUM_OBJS * sizeof(int));
262 newDevice->wine_df = (DataFormat *) HeapAlloc(GetProcessHeap(), 0, sizeof(DataFormat));
263 newDevice->wine_df->size = 0;
264 newDevice->wine_df->internal_format_size = Wine_InternalMouseFormat.dwDataSize;
265 newDevice->wine_df->dt = NULL;
266 newDevice->dinput = dinput;
271 static HRESULT mousedev_create_deviceA(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev)
273 if ((IsEqualGUID(&GUID_SysMouse,rguid)) || /* Generic Mouse */
274 (IsEqualGUID(&DInput_Wine_Mouse_GUID,rguid))) { /* Wine Mouse */
275 if ((riid == NULL) ||
276 IsEqualGUID(&IID_IDirectInputDeviceA,riid) ||
277 IsEqualGUID(&IID_IDirectInputDevice2A,riid) ||
278 IsEqualGUID(&IID_IDirectInputDevice7A,riid) ||
279 IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
280 *pdev = (IDirectInputDeviceA*) alloc_device(rguid, &SysMouseAvt, dinput);
281 TRACE("Creating a Mouse device (%p)\n", *pdev);
284 return DIERR_NOINTERFACE;
287 return DIERR_DEVICENOTREG;
290 static HRESULT mousedev_create_deviceW(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEW* pdev)
292 if ((IsEqualGUID(&GUID_SysMouse,rguid)) || /* Generic Mouse */
293 (IsEqualGUID(&DInput_Wine_Mouse_GUID,rguid))) { /* Wine Mouse */
294 if ((riid == NULL) ||
295 IsEqualGUID(&IID_IDirectInputDeviceW,riid) ||
296 IsEqualGUID(&IID_IDirectInputDevice2W,riid) ||
297 IsEqualGUID(&IID_IDirectInputDevice7W,riid) ||
298 IsEqualGUID(&IID_IDirectInputDevice8W,riid)) {
299 *pdev = (IDirectInputDeviceW*) alloc_device(rguid, &SysMouseWvt, dinput);
300 TRACE("Creating a Mouse device (%p)\n", *pdev);
303 return DIERR_NOINTERFACE;
306 return DIERR_DEVICENOTREG;
309 const struct dinput_device mouse_device = {
311 mousedev_enum_deviceA,
312 mousedev_enum_deviceW,
313 mousedev_create_deviceA,
314 mousedev_create_deviceW
317 /******************************************************************************
318 * SysMouseA (DInput Mouse support)
321 /******************************************************************************
322 * Release : release the mouse buffer.
324 static ULONG WINAPI SysMouseAImpl_Release(LPDIRECTINPUTDEVICE8A iface)
326 SysMouseImpl *This = (SysMouseImpl *)iface;
329 ref = InterlockedDecrement(&(This->ref));
333 /* Free the data queue */
334 HeapFree(GetProcessHeap(),0,This->data_queue);
337 UnhookWindowsHookEx( This->hook );
338 if (This->dwCoopLevel & DISCL_EXCLUSIVE)
339 ShowCursor(TRUE); /* show cursor */
341 DeleteCriticalSection(&(This->crit));
343 /* Free the DataFormat */
344 if (This->df != &(Wine_InternalMouseFormat)) {
345 HeapFree(GetProcessHeap(), 0, This->df->rgodf);
346 HeapFree(GetProcessHeap(), 0, This->df);
349 HeapFree(GetProcessHeap(),0,This);
354 /******************************************************************************
355 * SetCooperativeLevel : store the window in which we will do our
358 static HRESULT WINAPI SysMouseAImpl_SetCooperativeLevel(
359 LPDIRECTINPUTDEVICE8A iface,HWND hwnd,DWORD dwflags
362 SysMouseImpl *This = (SysMouseImpl *)iface;
364 TRACE("(this=%p,0x%08lx,0x%08lx)\n",This,(DWORD)hwnd,dwflags);
366 if (TRACE_ON(dinput)) {
367 TRACE(" cooperative level : ");
368 _dump_cooperativelevel_DI(dwflags);
371 /* Store the window which asks for the mouse */
373 hwnd = GetDesktopWindow();
375 This->dwCoopLevel = dwflags;
381 /******************************************************************************
382 * SetDataFormat : the application can choose the format of the data
383 * the device driver sends back with GetDeviceState.
385 * For the moment, only the "standard" configuration (c_dfDIMouse) is supported
386 * in absolute and relative mode.
388 static HRESULT WINAPI SysMouseAImpl_SetDataFormat(
389 LPDIRECTINPUTDEVICE8A iface,LPCDIDATAFORMAT df
392 SysMouseImpl *This = (SysMouseImpl *)iface;
394 TRACE("(this=%p,%p)\n",This,df);
396 _dump_DIDATAFORMAT(df);
398 /* Tests under windows show that a call to SetDataFormat always sets the mouse
399 in relative mode whatever the dwFlags value (DIDF_ABSAXIS/DIDF_RELAXIS).
400 To switch in absolute mode, SetProperty must be used. */
403 /* Store the new data format */
404 This->df = HeapAlloc(GetProcessHeap(),0,df->dwSize);
405 memcpy(This->df, df, df->dwSize);
406 This->df->rgodf = HeapAlloc(GetProcessHeap(),0,df->dwNumObjs*df->dwObjSize);
407 memcpy(This->df->rgodf,df->rgodf,df->dwNumObjs*df->dwObjSize);
409 /* Prepare all the data-conversion filters */
410 This->wine_df = create_DataFormat(&(Wine_InternalMouseFormat), df, This->offset_array);
415 /* low-level mouse hook */
416 static LRESULT CALLBACK dinput_mouse_hook( int code, WPARAM wparam, LPARAM lparam )
419 MSLLHOOKSTRUCT *hook = (MSLLHOOKSTRUCT *)lparam;
420 SysMouseImpl* This = (SysMouseImpl*) current_lock;
422 static long last_event = 0;
425 if (code != HC_ACTION) return CallNextHookEx( This->hook, code, wparam, lparam );
427 EnterCriticalSection(&(This->crit));
428 dwCoop = This->dwCoopLevel;
430 /* Only allow mouse events every 10 ms.
431 * This is to allow the cursor to start acceleration before
432 * the warps happen. But if it involves a mouse button event we
433 * allow it since we don't want to lose the clicks.
435 if (((GetCurrentTime() - last_event) < 10)
436 && wparam == WM_MOUSEMOVE)
438 else last_event = GetCurrentTime();
440 /* Mouse moved -> send event if asked */
442 SetEvent(This->hEvent);
444 if (wparam == WM_MOUSEMOVE) {
445 if (This->absolute) {
446 if (hook->pt.x != This->prevX)
447 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], hook->pt.x, hook->time, 0);
448 if (hook->pt.y != This->prevY)
449 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], hook->pt.y, hook->time, 0);
451 /* Now, warp handling */
452 if ((This->need_warp == WARP_STARTED) &&
453 (hook->pt.x == This->mapped_center.x) && (hook->pt.y == This->mapped_center.y)) {
454 /* Warp has been done... */
455 This->need_warp = WARP_DONE;
459 /* Relative mouse input with absolute mouse event : the real fun starts here... */
460 if ((This->need_warp == WARP_NEEDED) ||
461 (This->need_warp == WARP_STARTED)) {
462 if (hook->pt.x != This->prevX)
463 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], hook->pt.x - This->prevX,
464 hook->time, (This->dinput->evsequence)++);
465 if (hook->pt.y != This->prevY)
466 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], hook->pt.y - This->prevY,
467 hook->time, (This->dinput->evsequence)++);
469 /* This is the first time the event handler has been called after a
470 GetDeviceData or GetDeviceState. */
471 if (hook->pt.x != This->mapped_center.x) {
472 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], hook->pt.x - This->mapped_center.x,
473 hook->time, (This->dinput->evsequence)++);
474 This->need_warp = WARP_NEEDED;
477 if (hook->pt.y != This->mapped_center.y) {
478 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], hook->pt.y - This->mapped_center.y,
479 hook->time, (This->dinput->evsequence)++);
480 This->need_warp = WARP_NEEDED;
485 This->prevX = hook->pt.x;
486 This->prevY = hook->pt.y;
488 if (This->absolute) {
489 This->m_state.lX = hook->pt.x;
490 This->m_state.lY = hook->pt.y;
492 This->m_state.lX = hook->pt.x - This->mapped_center.x;
493 This->m_state.lY = hook->pt.y - This->mapped_center.y;
497 TRACE(" msg %x pt %ld %ld (W=%d)\n",
498 wparam, hook->pt.x, hook->pt.y, (!This->absolute) && This->need_warp );
502 GEN_EVENT(This->offset_array[WINE_MOUSE_L_POSITION], 0x80,
503 hook->time, This->dinput->evsequence++);
504 This->m_state.rgbButtons[0] = 0x80;
507 GEN_EVENT(This->offset_array[WINE_MOUSE_L_POSITION], 0x00,
508 hook->time, This->dinput->evsequence++);
509 This->m_state.rgbButtons[0] = 0x00;
512 GEN_EVENT(This->offset_array[WINE_MOUSE_R_POSITION], 0x80,
513 hook->time, This->dinput->evsequence++);
514 This->m_state.rgbButtons[1] = 0x80;
517 GEN_EVENT(This->offset_array[WINE_MOUSE_R_POSITION], 0x00,
518 hook->time, This->dinput->evsequence++);
519 This->m_state.rgbButtons[1] = 0x00;
522 GEN_EVENT(This->offset_array[WINE_MOUSE_M_POSITION], 0x80,
523 hook->time, This->dinput->evsequence++);
524 This->m_state.rgbButtons[2] = 0x80;
527 GEN_EVENT(This->offset_array[WINE_MOUSE_M_POSITION], 0x00,
528 hook->time, This->dinput->evsequence++);
529 This->m_state.rgbButtons[2] = 0x00;
532 wdata = (short)HIWORD(hook->mouseData);
533 GEN_EVENT(This->offset_array[WINE_MOUSE_Z_POSITION], wdata,
534 hook->time, This->dinput->evsequence++);
535 This->m_state.lZ += wdata;
539 TRACE("(X: %ld - Y: %ld L: %02x M: %02x R: %02x)\n",
540 This->m_state.lX, This->m_state.lY,
541 This->m_state.rgbButtons[0], This->m_state.rgbButtons[2], This->m_state.rgbButtons[1]);
544 LeaveCriticalSection(&(This->crit));
546 if (dwCoop & DISCL_NONEXCLUSIVE) {
547 /* Pass the events down to previous handlers (e.g. win32 input) */
548 ret = CallNextHookEx( This->hook, code, wparam, lparam );
557 static void dinput_window_check(SysMouseImpl* This) {
559 DWORD centerX, centerY;
561 /* make sure the window hasn't moved */
562 GetWindowRect(This->win, &rect);
563 centerX = (rect.right - rect.left) / 2;
564 centerY = (rect.bottom - rect.top ) / 2;
565 if (This->win_centerX != centerX || This->win_centerY != centerY) {
566 This->win_centerX = centerX;
567 This->win_centerY = centerY;
569 This->mapped_center.x = This->win_centerX;
570 This->mapped_center.y = This->win_centerY;
571 MapWindowPoints(This->win, HWND_DESKTOP, &This->mapped_center, 1);
575 /******************************************************************************
576 * Acquire : gets exclusive control of the mouse
578 static HRESULT WINAPI SysMouseAImpl_Acquire(LPDIRECTINPUTDEVICE8A iface)
580 SysMouseImpl *This = (SysMouseImpl *)iface;
583 TRACE("(this=%p)\n",This);
585 if (This->acquired == 0) {
588 /* Store (in a global variable) the current lock */
589 current_lock = (IDirectInputDevice8A*)This;
591 /* Init the mouse state */
592 GetCursorPos( &point );
593 if (This->absolute) {
594 This->m_state.lX = point.x;
595 This->m_state.lY = point.y;
596 This->prevX = point.x;
597 This->prevY = point.y;
599 This->m_state.lX = 0;
600 This->m_state.lY = 0;
601 This->org_coords = point;
603 This->m_state.lZ = 0;
604 This->m_state.rgbButtons[0] = ((GetKeyState(VK_LBUTTON) & 0x80) ? 0xFF : 0x00);
605 This->m_state.rgbButtons[1] = ((GetKeyState(VK_RBUTTON) & 0x80) ? 0xFF : 0x00);
606 This->m_state.rgbButtons[2] = ((GetKeyState(VK_MBUTTON) & 0x80) ? 0xFF : 0x00);
608 /* Install our mouse hook */
609 if (This->dwCoopLevel & DISCL_EXCLUSIVE)
610 ShowCursor(FALSE); /* hide cursor */
611 This->hook = SetWindowsHookExA( WH_MOUSE_LL, dinput_mouse_hook, DINPUT_instance, 0 );
613 /* Get the window dimension and find the center */
614 GetWindowRect(This->win, &rect);
615 This->win_centerX = (rect.right - rect.left) / 2;
616 This->win_centerY = (rect.bottom - rect.top ) / 2;
618 /* Warp the mouse to the center of the window */
619 if (This->absolute == 0) {
620 This->mapped_center.x = This->win_centerX;
621 This->mapped_center.y = This->win_centerY;
622 MapWindowPoints(This->win, HWND_DESKTOP, &This->mapped_center, 1);
623 TRACE("Warping mouse to %ld - %ld\n", This->mapped_center.x, This->mapped_center.y);
624 SetCursorPos( This->mapped_center.x, This->mapped_center.y );
626 This->need_warp = WARP_DONE;
628 This->need_warp = WARP_STARTED;
638 /******************************************************************************
639 * Unacquire : frees the mouse
641 static HRESULT WINAPI SysMouseAImpl_Unacquire(LPDIRECTINPUTDEVICE8A iface)
643 SysMouseImpl *This = (SysMouseImpl *)iface;
645 TRACE("(this=%p)\n",This);
647 if (This->acquired) {
648 /* Reinstall previous mouse event handler */
650 UnhookWindowsHookEx( This->hook );
653 if (This->dwCoopLevel & DISCL_EXCLUSIVE)
654 ShowCursor(TRUE); /* show cursor */
660 /* Unacquire device */
663 /* And put the mouse cursor back where it was at acquire time */
664 if (This->absolute == 0) {
665 TRACE(" warping mouse back to (%ld , %ld)\n", This->org_coords.x, This->org_coords.y);
666 SetCursorPos(This->org_coords.x, This->org_coords.y);
675 /******************************************************************************
676 * GetDeviceState : returns the "state" of the mouse.
678 * For the moment, only the "standard" return structure (DIMOUSESTATE) is
681 static HRESULT WINAPI SysMouseAImpl_GetDeviceState(
682 LPDIRECTINPUTDEVICE8A iface,DWORD len,LPVOID ptr
684 SysMouseImpl *This = (SysMouseImpl *)iface;
686 EnterCriticalSection(&(This->crit));
687 TRACE("(this=%p,0x%08lx,%p): \n",This,len,ptr);
689 /* Copy the current mouse state */
690 fill_DataFormat(ptr, &(This->m_state), This->wine_df);
692 /* Initialize the buffer when in relative mode */
693 if (This->absolute == 0) {
694 This->m_state.lX = 0;
695 This->m_state.lY = 0;
696 This->m_state.lZ = 0;
699 /* Check if we need to do a mouse warping */
700 if (This->need_warp == WARP_NEEDED) {
701 dinput_window_check(This);
702 TRACE("Warping mouse to %ld - %ld\n", This->mapped_center.x, This->mapped_center.y);
703 SetCursorPos( This->mapped_center.x, This->mapped_center.y );
706 This->need_warp = WARP_DONE;
708 This->need_warp = WARP_STARTED;
712 LeaveCriticalSection(&(This->crit));
714 TRACE("(X: %ld - Y: %ld - Z: %ld L: %02x M: %02x R: %02x)\n",
715 This->m_state.lX, This->m_state.lY, This->m_state.lZ,
716 This->m_state.rgbButtons[0], This->m_state.rgbButtons[2], This->m_state.rgbButtons[1]);
721 /******************************************************************************
722 * GetDeviceState : gets buffered input data.
724 static HRESULT WINAPI SysMouseAImpl_GetDeviceData(LPDIRECTINPUTDEVICE8A iface,
726 LPDIDEVICEOBJECTDATA dod,
730 SysMouseImpl *This = (SysMouseImpl *)iface;
734 TRACE("(%p)->(dods=%ld,entries=%ld,fl=0x%08lx)\n",This,dodsize,*entries,flags);
736 if (This->acquired == 0) {
737 WARN(" application tries to get data from an unacquired device !\n");
738 return DIERR_NOTACQUIRED;
741 EnterCriticalSection(&(This->crit));
743 len = ((This->queue_head < This->queue_tail) ? This->queue_len : 0)
744 + (This->queue_head - This->queue_tail);
745 if (len > *entries) len = *entries;
749 TRACE("Application discarding %ld event(s).\n", len);
752 nqtail = This->queue_tail + len;
753 while (nqtail >= This->queue_len) nqtail -= This->queue_len;
755 if (dodsize < sizeof(DIDEVICEOBJECTDATA_DX3)) {
756 ERR("Wrong structure size !\n");
757 LeaveCriticalSection(&(This->crit));
758 return DIERR_INVALIDPARAM;
762 TRACE("Application retrieving %ld event(s).\n", len);
765 nqtail = This->queue_tail;
767 /* Copy the buffered data into the application queue */
768 memcpy((char *)dod + *entries * dodsize, This->data_queue + nqtail, dodsize);
769 /* Advance position */
771 if (nqtail >= This->queue_len)
772 nqtail -= This->queue_len;
777 if (!(flags & DIGDD_PEEK))
778 This->queue_tail = nqtail;
780 LeaveCriticalSection(&(This->crit));
782 /* Check if we need to do a mouse warping */
783 if (This->need_warp == WARP_NEEDED) {
784 dinput_window_check(This);
785 TRACE("Warping mouse to %ld - %ld\n", This->mapped_center.x, This->mapped_center.y);
786 SetCursorPos( This->mapped_center.x, This->mapped_center.y );
789 This->need_warp = WARP_DONE;
791 This->need_warp = WARP_STARTED;
797 /******************************************************************************
798 * SetProperty : change input device properties
800 static HRESULT WINAPI SysMouseAImpl_SetProperty(LPDIRECTINPUTDEVICE8A iface,
804 SysMouseImpl *This = (SysMouseImpl *)iface;
806 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(rguid),ph);
808 if (!HIWORD(rguid)) {
809 switch ((DWORD)rguid) {
810 case (DWORD) DIPROP_BUFFERSIZE: {
811 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
813 TRACE("buffersize = %ld\n",pd->dwData);
815 This->data_queue = (LPDIDEVICEOBJECTDATA)HeapAlloc(GetProcessHeap(),0,
816 pd->dwData * sizeof(DIDEVICEOBJECTDATA));
817 This->queue_head = 0;
818 This->queue_tail = 0;
819 This->queue_len = pd->dwData;
822 case (DWORD) DIPROP_AXISMODE: {
823 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
824 This->absolute = !(pd->dwData);
825 TRACE("Using %s coordinates mode now\n", This->absolute ? "absolute" : "relative");
829 FIXME("Unknown type %ld (%s)\n",(DWORD)rguid,debugstr_guid(rguid));
837 /******************************************************************************
838 * GetProperty : get input device properties
840 static HRESULT WINAPI SysMouseAImpl_GetProperty(LPDIRECTINPUTDEVICE8A iface,
842 LPDIPROPHEADER pdiph)
844 SysMouseImpl *This = (SysMouseImpl *)iface;
846 TRACE("(this=%p,%s,%p)\n",
847 iface, debugstr_guid(rguid), pdiph);
849 if (TRACE_ON(dinput))
850 _dump_DIPROPHEADER(pdiph);
852 if (!HIWORD(rguid)) {
853 switch ((DWORD)rguid) {
854 case (DWORD) DIPROP_BUFFERSIZE: {
855 LPDIPROPDWORD pd = (LPDIPROPDWORD)pdiph;
857 TRACE(" return buffersize = %d\n",This->queue_len);
858 pd->dwData = This->queue_len;
862 case (DWORD) DIPROP_GRANULARITY: {
863 LPDIPROPDWORD pr = (LPDIPROPDWORD) pdiph;
865 /* We'll just assume that the app asks about the Z axis */
866 pr->dwData = WHEEL_DELTA;
871 case (DWORD) DIPROP_RANGE: {
872 LPDIPROPRANGE pr = (LPDIPROPRANGE) pdiph;
874 if ((pdiph->dwHow == DIPH_BYID) &&
875 ((pdiph->dwObj == (DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS)) ||
876 (pdiph->dwObj == (DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS)))) {
877 /* Querying the range of either the X or the Y axis. As I do
878 not know the range, do as if the range were
880 pr->lMin = DIPROPRANGE_NOMIN;
881 pr->lMax = DIPROPRANGE_NOMAX;
888 FIXME("Unknown type %ld (%s)\n",(DWORD)rguid,debugstr_guid(rguid));
898 /******************************************************************************
899 * SetEventNotification : specifies event to be sent on state change
901 static HRESULT WINAPI SysMouseAImpl_SetEventNotification(LPDIRECTINPUTDEVICE8A iface,
903 SysMouseImpl *This = (SysMouseImpl *)iface;
905 TRACE("(this=%p,0x%08lx)\n",This,(DWORD)hnd);
912 /******************************************************************************
913 * GetCapabilities : get the device capablitites
915 static HRESULT WINAPI SysMouseAImpl_GetCapabilities(
916 LPDIRECTINPUTDEVICE8A iface,
917 LPDIDEVCAPS lpDIDevCaps)
919 SysMouseImpl *This = (SysMouseImpl *)iface;
922 TRACE("(this=%p,%p)\n",This,lpDIDevCaps);
924 if ((lpDIDevCaps->dwSize != sizeof(DIDEVCAPS)) && (lpDIDevCaps->dwSize != sizeof(DIDEVCAPS_DX3))) {
925 WARN("invalid parameter\n");
926 return DIERR_INVALIDPARAM;
929 devcaps.dwSize = lpDIDevCaps->dwSize;
930 devcaps.dwFlags = DIDC_ATTACHED;
931 if (This->dinput->version >= 8)
932 devcaps.dwDevType = DI8DEVTYPE_MOUSE | (DI8DEVTYPEMOUSE_TRADITIONAL << 8);
934 devcaps.dwDevType = DIDEVTYPE_MOUSE | (DIDEVTYPEMOUSE_TRADITIONAL << 8);
936 devcaps.dwButtons = 3;
938 devcaps.dwFFSamplePeriod = 0;
939 devcaps.dwFFMinTimeResolution = 0;
940 devcaps.dwFirmwareRevision = 100;
941 devcaps.dwHardwareRevision = 100;
942 devcaps.dwFFDriverVersion = 0;
944 memcpy(lpDIDevCaps, &devcaps, lpDIDevCaps->dwSize);
950 /******************************************************************************
951 * EnumObjects : enumerate the different buttons and axis...
953 static HRESULT WINAPI SysMouseAImpl_EnumObjects(
954 LPDIRECTINPUTDEVICE8A iface,
955 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
959 SysMouseImpl *This = (SysMouseImpl *)iface;
960 DIDEVICEOBJECTINSTANCEA ddoi;
962 TRACE("(this=%p,%p,%p,%08lx)\n", This, lpCallback, lpvRef, dwFlags);
963 if (TRACE_ON(dinput)) {
964 TRACE(" - flags = ");
965 _dump_EnumObjects_flags(dwFlags);
969 /* Only the fields till dwFFMaxForce are relevant */
970 memset(&ddoi, 0, sizeof(ddoi));
971 ddoi.dwSize = FIELD_OFFSET(DIDEVICEOBJECTINSTANCEA, dwFFMaxForce);
973 /* In a mouse, we have : two relative axis and three buttons */
974 if ((dwFlags == DIDFT_ALL) ||
975 (dwFlags & DIDFT_AXIS)) {
977 ddoi.guidType = GUID_XAxis;
978 ddoi.dwOfs = This->offset_array[WINE_MOUSE_X_POSITION];
979 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS;
980 strcpy(ddoi.tszName, "X-Axis");
981 _dump_OBJECTINSTANCEA(&ddoi);
982 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
985 ddoi.guidType = GUID_YAxis;
986 ddoi.dwOfs = This->offset_array[WINE_MOUSE_Y_POSITION];
987 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS;
988 strcpy(ddoi.tszName, "Y-Axis");
989 _dump_OBJECTINSTANCEA(&ddoi);
990 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
993 ddoi.guidType = GUID_ZAxis;
994 ddoi.dwOfs = This->offset_array[WINE_MOUSE_Z_POSITION];
995 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_Z_AXIS_INSTANCE) | DIDFT_RELAXIS;
996 strcpy(ddoi.tszName, "Z-Axis");
997 _dump_OBJECTINSTANCEA(&ddoi);
998 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
1001 if ((dwFlags == DIDFT_ALL) ||
1002 (dwFlags & DIDFT_BUTTON)) {
1003 ddoi.guidType = GUID_Button;
1006 ddoi.dwOfs = This->offset_array[WINE_MOUSE_L_POSITION];
1007 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_L_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
1008 strcpy(ddoi.tszName, "Left-Button");
1009 _dump_OBJECTINSTANCEA(&ddoi);
1010 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
1013 ddoi.dwOfs = This->offset_array[WINE_MOUSE_R_POSITION];
1014 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_R_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
1015 strcpy(ddoi.tszName, "Right-Button");
1016 _dump_OBJECTINSTANCEA(&ddoi);
1017 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
1020 ddoi.dwOfs = This->offset_array[WINE_MOUSE_M_POSITION];
1021 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_M_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
1022 strcpy(ddoi.tszName, "Middle-Button");
1023 _dump_OBJECTINSTANCEA(&ddoi);
1024 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
1030 static HRESULT WINAPI SysMouseWImpl_EnumObjects(LPDIRECTINPUTDEVICE8W iface, LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback, LPVOID lpvRef,DWORD dwFlags)
1032 SysMouseImpl *This = (SysMouseImpl *)iface;
1034 device_enumobjects_AtoWcb_data data;
1036 data.lpCallBack = lpCallback;
1037 data.lpvRef = lpvRef;
1039 return SysMouseAImpl_EnumObjects((LPDIRECTINPUTDEVICE8A) This, (LPDIENUMDEVICEOBJECTSCALLBACKA) DIEnumDevicesCallbackAtoW, (LPVOID) &data, dwFlags);
1042 /******************************************************************************
1043 * GetDeviceInfo : get information about a device's identity
1045 static HRESULT WINAPI SysMouseAImpl_GetDeviceInfo(
1046 LPDIRECTINPUTDEVICE8A iface,
1047 LPDIDEVICEINSTANCEA pdidi)
1049 SysMouseImpl *This = (SysMouseImpl *)iface;
1050 TRACE("(this=%p,%p)\n", This, pdidi);
1052 if (pdidi->dwSize != sizeof(DIDEVICEINSTANCEA)) {
1053 WARN(" dinput3 not supporte yet...\n");
1057 fill_mouse_dideviceinstanceA(pdidi, This->dinput->version);
1062 static HRESULT WINAPI SysMouseWImpl_GetDeviceInfo(LPDIRECTINPUTDEVICE8W iface, LPDIDEVICEINSTANCEW pdidi)
1064 SysMouseImpl *This = (SysMouseImpl *)iface;
1065 TRACE("(this=%p,%p)\n", This, pdidi);
1067 if (pdidi->dwSize != sizeof(DIDEVICEINSTANCEW)) {
1068 WARN(" dinput3 not supporte yet...\n");
1072 fill_mouse_dideviceinstanceW(pdidi, This->dinput->version);
1078 static IDirectInputDevice8AVtbl SysMouseAvt =
1080 IDirectInputDevice2AImpl_QueryInterface,
1081 IDirectInputDevice2AImpl_AddRef,
1082 SysMouseAImpl_Release,
1083 SysMouseAImpl_GetCapabilities,
1084 SysMouseAImpl_EnumObjects,
1085 SysMouseAImpl_GetProperty,
1086 SysMouseAImpl_SetProperty,
1087 SysMouseAImpl_Acquire,
1088 SysMouseAImpl_Unacquire,
1089 SysMouseAImpl_GetDeviceState,
1090 SysMouseAImpl_GetDeviceData,
1091 SysMouseAImpl_SetDataFormat,
1092 SysMouseAImpl_SetEventNotification,
1093 SysMouseAImpl_SetCooperativeLevel,
1094 IDirectInputDevice2AImpl_GetObjectInfo,
1095 SysMouseAImpl_GetDeviceInfo,
1096 IDirectInputDevice2AImpl_RunControlPanel,
1097 IDirectInputDevice2AImpl_Initialize,
1098 IDirectInputDevice2AImpl_CreateEffect,
1099 IDirectInputDevice2AImpl_EnumEffects,
1100 IDirectInputDevice2AImpl_GetEffectInfo,
1101 IDirectInputDevice2AImpl_GetForceFeedbackState,
1102 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
1103 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
1104 IDirectInputDevice2AImpl_Escape,
1105 IDirectInputDevice2AImpl_Poll,
1106 IDirectInputDevice2AImpl_SendDeviceData,
1107 IDirectInputDevice7AImpl_EnumEffectsInFile,
1108 IDirectInputDevice7AImpl_WriteEffectToFile,
1109 IDirectInputDevice8AImpl_BuildActionMap,
1110 IDirectInputDevice8AImpl_SetActionMap,
1111 IDirectInputDevice8AImpl_GetImageInfo
1114 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
1115 # define XCAST(fun) (typeof(SysMouseWvt.fun))
1117 # define XCAST(fun) (void*)
1120 static IDirectInputDevice8WVtbl SysMouseWvt =
1122 IDirectInputDevice2WImpl_QueryInterface,
1123 XCAST(AddRef)IDirectInputDevice2AImpl_AddRef,
1124 XCAST(Release)SysMouseAImpl_Release,
1125 XCAST(GetCapabilities)SysMouseAImpl_GetCapabilities,
1126 SysMouseWImpl_EnumObjects,
1127 XCAST(GetProperty)SysMouseAImpl_GetProperty,
1128 XCAST(SetProperty)SysMouseAImpl_SetProperty,
1129 XCAST(Acquire)SysMouseAImpl_Acquire,
1130 XCAST(Unacquire)SysMouseAImpl_Unacquire,
1131 XCAST(GetDeviceState)SysMouseAImpl_GetDeviceState,
1132 XCAST(GetDeviceData)SysMouseAImpl_GetDeviceData,
1133 XCAST(SetDataFormat)SysMouseAImpl_SetDataFormat,
1134 XCAST(SetEventNotification)SysMouseAImpl_SetEventNotification,
1135 XCAST(SetCooperativeLevel)SysMouseAImpl_SetCooperativeLevel,
1136 IDirectInputDevice2WImpl_GetObjectInfo,
1137 SysMouseWImpl_GetDeviceInfo,
1138 XCAST(RunControlPanel)IDirectInputDevice2AImpl_RunControlPanel,
1139 XCAST(Initialize)IDirectInputDevice2AImpl_Initialize,
1140 XCAST(CreateEffect)IDirectInputDevice2AImpl_CreateEffect,
1141 IDirectInputDevice2WImpl_EnumEffects,
1142 IDirectInputDevice2WImpl_GetEffectInfo,
1143 XCAST(GetForceFeedbackState)IDirectInputDevice2AImpl_GetForceFeedbackState,
1144 XCAST(SendForceFeedbackCommand)IDirectInputDevice2AImpl_SendForceFeedbackCommand,
1145 XCAST(EnumCreatedEffectObjects)IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
1146 XCAST(Escape)IDirectInputDevice2AImpl_Escape,
1147 XCAST(Poll)IDirectInputDevice2AImpl_Poll,
1148 XCAST(SendDeviceData)IDirectInputDevice2AImpl_SendDeviceData,
1149 IDirectInputDevice7WImpl_EnumEffectsInFile,
1150 IDirectInputDevice7WImpl_WriteEffectToFile,
1151 IDirectInputDevice8WImpl_BuildActionMap,
1152 IDirectInputDevice8WImpl_SetActionMap,
1153 IDirectInputDevice8WImpl_GetImageInfo