1 /* DirectInput Mouse device
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
10 #ifdef HAVE_SYS_ERRNO_H
11 # include <sys/errno.h>
14 #include "debugtools.h"
25 #include "dinput_private.h"
26 #include "device_private.h"
30 DEFAULT_DEBUG_CHANNEL(dinput);
32 /* Wine mouse driver object instances */
33 #define WINE_MOUSE_X_AXIS_INSTANCE 0x0001
34 #define WINE_MOUSE_Y_AXIS_INSTANCE 0x0002
35 #define WINE_MOUSE_L_BUTTON_INSTANCE 0x0004
36 #define WINE_MOUSE_R_BUTTON_INSTANCE 0x0008
37 #define WINE_MOUSE_M_BUTTON_INSTANCE 0x0010
39 /* ------------------------------- */
40 /* Wine mouse internal data format */
41 /* ------------------------------- */
43 /* Constants used to access the offset array */
44 #define WINE_MOUSE_X_POSITION 0
45 #define WINE_MOUSE_Y_POSITION 1
46 #define WINE_MOUSE_L_POSITION 2
47 #define WINE_MOUSE_R_POSITION 3
48 #define WINE_MOUSE_M_POSITION 4
54 } Wine_InternalMouseData;
56 #define WINE_INTERNALMOUSE_NUM_OBJS 5
58 static DIOBJECTDATAFORMAT Wine_InternalMouseObjectFormat[WINE_INTERNALMOUSE_NUM_OBJS] = {
59 { &GUID_XAxis, FIELD_OFFSET(Wine_InternalMouseData, lX),
60 DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS, 0 },
61 { &GUID_YAxis, FIELD_OFFSET(Wine_InternalMouseData, lY),
62 DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS, 0 },
63 { &GUID_Button, (FIELD_OFFSET(Wine_InternalMouseData, rgbButtons)) + 0,
64 DIDFT_MAKEINSTANCE(WINE_MOUSE_L_BUTTON_INSTANCE) | DIDFT_PSHBUTTON, 0 },
65 { &GUID_Button, (FIELD_OFFSET(Wine_InternalMouseData, rgbButtons)) + 1,
66 DIDFT_MAKEINSTANCE(WINE_MOUSE_R_BUTTON_INSTANCE) | DIDFT_PSHBUTTON, 0 },
67 { &GUID_Button, (FIELD_OFFSET(Wine_InternalMouseData, rgbButtons)) + 2,
68 DIDFT_MAKEINSTANCE(WINE_MOUSE_M_BUTTON_INSTANCE) | DIDFT_PSHBUTTON, 0 }
71 static DIDATAFORMAT Wine_InternalMouseFormat = {
72 0, /* dwSize - unused */
73 0, /* dwObjsize - unused */
74 0, /* dwFlags - unused */
75 sizeof(Wine_InternalMouseData),
76 WINE_INTERNALMOUSE_NUM_OBJS, /* dwNumObjs */
77 Wine_InternalMouseObjectFormat
80 static ICOM_VTABLE(IDirectInputDevice2A) SysMouseAvt;
81 static ICOM_VTABLE(IDirectInputDevice7A) SysMouse7Avt;
82 typedef struct SysMouseAImpl SysMouseAImpl;
85 WARP_NEEDED, /* Warping is needed */
86 WARP_STARTED, /* Warping has been done, waiting for the warp event */
87 WARP_DONE /* Warping has been done */
92 /* IDirectInputDevice2AImpl */
93 ICOM_VFIELD(IDirectInputDevice2A);
97 IDirectInputAImpl *dinput;
99 /* The current data format and the conversion between internal
100 and external data formats */
107 /* Previous position for relative moves */
109 LPMOUSE_EVENT_PROC prev_handler;
111 DWORD win_centerX, win_centerY;
112 LPDIDEVICEOBJECTDATA data_queue;
113 int queue_pos, queue_len;
114 WARP_STATUS need_warp;
117 CRITICAL_SECTION crit;
119 /* This is for mouse reporting. */
120 Wine_InternalMouseData m_state;
123 static GUID DInput_Wine_Mouse_GUID = { /* 9e573ed8-7734-11d2-8d4a-23903fb6bdf7 */
127 {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}
130 /* FIXME: This is ugly and not thread safe :/ */
131 static IDirectInputDevice2A* current_lock = NULL;
134 static BOOL mousedev_enum_device(DWORD dwDevType, DWORD dwFlags, LPCDIDEVICEINSTANCEA lpddi)
136 if ((dwDevType == 0) || (dwDevType == DIDEVTYPE_MOUSE)) {
137 TRACE("Enumerating the Mouse device\n");
140 lpddi->guidInstance = GUID_SysMouse;/* DInput's GUID */
141 lpddi->guidProduct = DInput_Wine_Mouse_GUID; /* Vendor's GUID */
142 lpddi->dwDevType = DIDEVTYPE_MOUSE | (DIDEVTYPEMOUSE_UNKNOWN << 8);
143 strcpy(lpddi->tszInstanceName, "Mouse");
144 strcpy(lpddi->tszProductName, "Wine Mouse");
152 static SysMouseAImpl *alloc_device(REFGUID rguid, ICOM_VTABLE(IDirectInputDevice2A) *mvt, IDirectInputAImpl *dinput)
154 int offset_array[5] = {
155 FIELD_OFFSET(Wine_InternalMouseData, lX),
156 FIELD_OFFSET(Wine_InternalMouseData, lY),
157 FIELD_OFFSET(Wine_InternalMouseData, rgbButtons) + 0,
158 FIELD_OFFSET(Wine_InternalMouseData, rgbButtons) + 1,
159 FIELD_OFFSET(Wine_InternalMouseData, rgbButtons) + 2
161 SysMouseAImpl* newDevice;
162 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysMouseAImpl));
164 ICOM_VTBL(newDevice) = mvt;
165 InitializeCriticalSection(&(newDevice->crit));
166 memcpy(&(newDevice->guid),rguid,sizeof(*rguid));
168 /* Per default, Wine uses its internal data format */
169 newDevice->df = &Wine_InternalMouseFormat;
170 memcpy(newDevice->offset_array, offset_array, 5 * sizeof(int));
171 newDevice->wine_df = (DataFormat *) HeapAlloc(GetProcessHeap(), 0, sizeof(DataFormat));
172 newDevice->wine_df->size = 0;
173 newDevice->wine_df->internal_format_size = Wine_InternalMouseFormat.dwDataSize;
174 newDevice->wine_df->dt = NULL;
175 newDevice->dinput = dinput;
180 static HRESULT mousedev_create_device(IDirectInputAImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev)
182 if ((IsEqualGUID(&GUID_SysMouse,rguid)) || /* Generic Mouse */
183 (IsEqualGUID(&DInput_Wine_Mouse_GUID,rguid))) { /* Wine Mouse */
184 if ((riid == NULL) || (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) || (IsEqualGUID(&IID_IDirectInputDevice2A,riid))) {
185 *pdev=(IDirectInputDeviceA*) alloc_device(rguid, &SysMouseAvt, dinput);
187 TRACE("Creating a Mouse device (%p)\n", *pdev);
189 }else if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
190 *pdev=(IDirectInputDeviceA*) alloc_device(rguid, (ICOM_VTABLE(IDirectInputDevice2A) *) &SysMouse7Avt, dinput);
192 TRACE("Creating a Mouse DInput7A device (%p)\n", *pdev);
195 return DIERR_NOINTERFACE;
198 return DIERR_DEVICENOTREG;
201 static dinput_device mousedev = {
203 mousedev_enum_device,
204 mousedev_create_device
207 DECL_GLOBAL_CONSTRUCTOR(mousedev_register) { dinput_register_device(&mousedev); }
209 /******************************************************************************
210 * SysMouseA (DInput Mouse support)
213 /******************************************************************************
214 * Release : release the mouse buffer.
216 static ULONG WINAPI SysMouseAImpl_Release(LPDIRECTINPUTDEVICE2A iface)
218 ICOM_THIS(SysMouseAImpl,iface);
224 /* Free the data queue */
225 if (This->data_queue != NULL)
226 HeapFree(GetProcessHeap(),0,This->data_queue);
228 /* Install the previous event handler (in case of releasing an acquired
230 if (This->prev_handler != NULL)
231 MOUSE_Enable(This->prev_handler);
232 DeleteCriticalSection(&(This->crit));
234 /* Free the DataFormat */
235 if (This->df != &(Wine_InternalMouseFormat)) {
236 HeapFree(GetProcessHeap(), 0, This->df->rgodf);
237 HeapFree(GetProcessHeap(), 0, This->df);
240 HeapFree(GetProcessHeap(),0,This);
245 /******************************************************************************
246 * SetCooperativeLevel : store the window in which we will do our
249 static HRESULT WINAPI SysMouseAImpl_SetCooperativeLevel(
250 LPDIRECTINPUTDEVICE2A iface,HWND hwnd,DWORD dwflags
253 ICOM_THIS(SysMouseAImpl,iface);
255 TRACE("(this=%p,0x%08lx,0x%08lx)\n",This,(DWORD)hwnd,dwflags);
257 if (TRACE_ON(dinput))
258 _dump_cooperativelevel_DI(dwflags);
260 /* Store the window which asks for the mouse */
267 /******************************************************************************
268 * SetDataFormat : the application can choose the format of the data
269 * the device driver sends back with GetDeviceState.
271 * For the moment, only the "standard" configuration (c_dfDIMouse) is supported
272 * in absolute and relative mode.
274 static HRESULT WINAPI SysMouseAImpl_SetDataFormat(
275 LPDIRECTINPUTDEVICE2A iface,LPCDIDATAFORMAT df
278 ICOM_THIS(SysMouseAImpl,iface);
281 TRACE("(this=%p,%p)\n",This,df);
283 TRACE("(df.dwSize=%ld)\n",df->dwSize);
284 TRACE("(df.dwObjsize=%ld)\n",df->dwObjSize);
285 TRACE("(df.dwFlags=0x%08lx)\n",df->dwFlags);
286 TRACE("(df.dwDataSize=%ld)\n",df->dwDataSize);
287 TRACE("(df.dwNumObjs=%ld)\n",df->dwNumObjs);
289 for (i=0;i<df->dwNumObjs;i++) {
291 TRACE("df.rgodf[%d].guid %s (%p)\n",i, debugstr_guid(df->rgodf[i].pguid), df->rgodf[i].pguid);
292 TRACE("df.rgodf[%d].dwOfs %ld\n",i,df->rgodf[i].dwOfs);
293 TRACE("dwType 0x%02x,dwInstance %d\n",DIDFT_GETTYPE(df->rgodf[i].dwType),DIDFT_GETINSTANCE(df->rgodf[i].dwType));
294 TRACE("df.rgodf[%d].dwFlags 0x%08lx\n",i,df->rgodf[i].dwFlags);
297 /* Check if the mouse is in absolute or relative mode */
298 if (df->dwFlags == DIDF_ABSAXIS)
300 else if (df->dwFlags == DIDF_RELAXIS)
303 ERR("Neither absolute nor relative flag set.");
305 /* Store the new data format */
306 This->df = HeapAlloc(GetProcessHeap(),0,df->dwSize);
307 memcpy(This->df, df, df->dwSize);
308 This->df->rgodf = HeapAlloc(GetProcessHeap(),0,df->dwNumObjs*df->dwObjSize);
309 memcpy(This->df->rgodf,df->rgodf,df->dwNumObjs*df->dwObjSize);
311 /* Prepare all the data-conversion filters */
312 This->wine_df = create_DataFormat(&(Wine_InternalMouseFormat), df, This->offset_array);
317 /* Our private mouse event handler */
318 static void WINAPI dinput_mouse_event( DWORD dwFlags, DWORD dx, DWORD dy,
319 DWORD cButtons, DWORD dwExtraInfo )
321 long posX = -1, posY = -1;
322 DWORD keyState, xtime, extra;
323 SysMouseAImpl* This = (SysMouseAImpl*) current_lock;
325 EnterCriticalSection(&(This->crit));
326 /* Mouse moved -> send event if asked */
328 SetEvent(This->hEvent);
330 if ( !IsBadReadPtr( (LPVOID)dwExtraInfo, sizeof(WINE_MOUSEEVENT) )
331 && ((WINE_MOUSEEVENT *)dwExtraInfo)->magic == WINE_MOUSEEVENT_MAGIC ) {
332 WINE_MOUSEEVENT *wme = (WINE_MOUSEEVENT *)dwExtraInfo;
333 keyState = wme->keyState;
335 extra = (DWORD)wme->hWnd;
337 if (dwFlags & MOUSEEVENTF_MOVE) {
338 if (dwFlags & MOUSEEVENTF_ABSOLUTE) {
339 posX = (dx * GetSystemMetrics(SM_CXSCREEN)) >> 16;
340 posY = (dy * GetSystemMetrics(SM_CYSCREEN)) >> 16;
342 if (This->absolute) {
343 if (posX != This->prevX)
344 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], posX, xtime, 0);
345 if (posY != This->prevY)
346 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], posY, xtime, 0);
348 /* Now, warp handling */
349 if ((This->need_warp == WARP_STARTED) &&
350 (posX == This->win_centerX) && (posX == This->win_centerX)) {
351 /* Warp has been done... */
352 This->need_warp = WARP_DONE;
353 LeaveCriticalSection(&(This->crit));
357 /* Relative mouse input with absolute mouse event : the real fun starts here... */
358 if ((This->need_warp == WARP_NEEDED) ||
359 (This->need_warp == WARP_STARTED)) {
360 if (posX != This->prevX)
361 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], posX - This->prevX, xtime, (This->dinput->evsequence)++);
362 if (posY != This->prevY)
363 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], posY - This->prevY, xtime, (This->dinput->evsequence)++);
365 /* This is the first time the event handler has been called after a
366 GetData of GetState. */
367 if (posX != This->win_centerX) {
368 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], posX - This->win_centerX, xtime, (This->dinput->evsequence)++);
369 This->need_warp = WARP_NEEDED;
372 if (posY != This->win_centerY) {
373 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], posY - This->win_centerY, xtime, (This->dinput->evsequence)++);
374 This->need_warp = WARP_NEEDED;
382 if (This->absolute) {
383 This->m_state.lX = posX;
384 This->m_state.lY = posY;
386 This->m_state.lX = posX - This->win_centerX;
387 This->m_state.lY = posY - This->win_centerY;
390 /* Mouse reporting is in relative mode */
394 if (This->absolute) {
397 aposX = This->m_state.lX + posX;
400 if (aposX >= GetSystemMetrics(SM_CXSCREEN))
401 aposX = GetSystemMetrics(SM_CXSCREEN);
403 aposY = This->m_state.lY + posY;
406 if (aposY >= GetSystemMetrics(SM_CYSCREEN))
407 aposY = GetSystemMetrics(SM_CYSCREEN);
410 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], aposX, xtime, (This->dinput->evsequence)++);
412 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], aposY, xtime, (This->dinput->evsequence)++);
414 This->m_state.lX = aposX;
415 This->m_state.lY = aposY;
418 GEN_EVENT(This->offset_array[WINE_MOUSE_X_POSITION], posX, xtime, (This->dinput->evsequence)++);
420 GEN_EVENT(This->offset_array[WINE_MOUSE_Y_POSITION], posY, xtime, (This->dinput->evsequence)++);
422 This->m_state.lX = posX;
423 This->m_state.lY = posY;
428 ERR("Mouse event not supported...\n");
429 LeaveCriticalSection(&(This->crit));
433 if (TRACE_ON(dinput)) {
434 if (dwFlags & MOUSEEVENTF_MOVE)
435 TRACE(" %ld %ld (%s)", posX, posY,
436 (dwFlags & MOUSEEVENTF_ABSOLUTE ? "abs" : "rel"));
438 if ( dwFlags & MOUSEEVENTF_LEFTDOWN ) DPRINTF(" LD ");
439 if ( dwFlags & MOUSEEVENTF_LEFTUP ) DPRINTF(" LU ");
441 if ( dwFlags & MOUSEEVENTF_RIGHTDOWN ) DPRINTF(" RD ");
442 if ( dwFlags & MOUSEEVENTF_RIGHTUP ) DPRINTF(" RU ");
444 if ( dwFlags & MOUSEEVENTF_MIDDLEDOWN ) DPRINTF(" MD ");
445 if ( dwFlags & MOUSEEVENTF_MIDDLEUP ) DPRINTF(" MU ");
447 if (!(This->absolute)) DPRINTF(" W=%d ", This->need_warp);
453 if ( dwFlags & MOUSEEVENTF_LEFTDOWN ) {
454 GEN_EVENT(This->offset_array[WINE_MOUSE_L_POSITION], 0xFF, xtime, (This->dinput->evsequence)++);
455 This->m_state.rgbButtons[0] = 0xFF;
457 if ( dwFlags & MOUSEEVENTF_LEFTUP ) {
458 GEN_EVENT(This->offset_array[WINE_MOUSE_L_POSITION], 0x00, xtime, (This->dinput->evsequence)++);
459 This->m_state.rgbButtons[0] = 0x00;
461 if ( dwFlags & MOUSEEVENTF_RIGHTDOWN ) {
462 GEN_EVENT(This->offset_array[WINE_MOUSE_R_POSITION], 0xFF, xtime, (This->dinput->evsequence)++);
463 This->m_state.rgbButtons[1] = 0xFF;
465 if ( dwFlags & MOUSEEVENTF_RIGHTUP ) {
466 GEN_EVENT(This->offset_array[WINE_MOUSE_R_POSITION], 0x00, xtime, (This->dinput->evsequence)++);
467 This->m_state.rgbButtons[1] = 0x00;
469 if ( dwFlags & MOUSEEVENTF_MIDDLEDOWN ) {
470 GEN_EVENT(This->offset_array[WINE_MOUSE_M_POSITION], 0xFF, xtime, (This->dinput->evsequence)++);
471 This->m_state.rgbButtons[2] = 0xFF;
473 if ( dwFlags & MOUSEEVENTF_MIDDLEUP ) {
474 GEN_EVENT(This->offset_array[WINE_MOUSE_M_POSITION], 0x00, xtime, (This->dinput->evsequence)++);
475 This->m_state.rgbButtons[2] = 0x00;
478 TRACE("(X: %ld - Y: %ld L: %02x M: %02x R: %02x)\n",
479 This->m_state.lX, This->m_state.lY,
480 This->m_state.rgbButtons[0], This->m_state.rgbButtons[2], This->m_state.rgbButtons[1]);
482 LeaveCriticalSection(&(This->crit));
486 /******************************************************************************
487 * Acquire : gets exclusive control of the mouse
489 static HRESULT WINAPI SysMouseAImpl_Acquire(LPDIRECTINPUTDEVICE2A iface)
491 ICOM_THIS(SysMouseAImpl,iface);
494 TRACE("(this=%p)\n",This);
496 if (This->acquired == 0) {
499 /* This stores the current mouse handler. */
500 This->prev_handler = mouse_event;
502 /* Store (in a global variable) the current lock */
503 current_lock = (IDirectInputDevice2A*)This;
505 /* Init the mouse state */
506 if (This->absolute) {
507 GetCursorPos( &point );
508 This->m_state.lX = point.x;
509 This->m_state.lY = point.y;
510 This->prevX = point.x;
511 This->prevY = point.y;
513 This->m_state.lX = 0;
514 This->m_state.lY = 0;
516 This->m_state.rgbButtons[0] = (GetKeyState(VK_LBUTTON) ? 0xFF : 0x00);
517 This->m_state.rgbButtons[1] = (GetKeyState(VK_MBUTTON) ? 0xFF : 0x00);
518 This->m_state.rgbButtons[2] = (GetKeyState(VK_RBUTTON) ? 0xFF : 0x00);
520 /* Install our own mouse event handler */
521 MOUSE_Enable(dinput_mouse_event);
523 /* Get the window dimension and find the center */
524 GetWindowRect(This->win, &rect);
525 This->win_centerX = (rect.right - rect.left) / 2;
526 This->win_centerY = (rect.bottom - rect.top ) / 2;
528 /* Warp the mouse to the center of the window */
529 if (This->absolute == 0) {
530 TRACE("Warping mouse to %ld - %ld\n", This->win_centerX, This->win_centerY);
531 point.x = This->win_centerX;
532 point.y = This->win_centerY;
533 MapWindowPoints(This->win, HWND_DESKTOP, &point, 1);
534 SetCursorPos( point.x, point.y );
536 This->need_warp = WARP_DONE;
538 This->need_warp = WARP_STARTED;
547 /******************************************************************************
548 * Unacquire : frees the mouse
550 static HRESULT WINAPI SysMouseAImpl_Unacquire(LPDIRECTINPUTDEVICE2A iface)
552 ICOM_THIS(SysMouseAImpl,iface);
554 TRACE("(this=%p)\n",This);
558 /* Reinstall previous mouse event handler */
559 MOUSE_Enable(This->prev_handler);
560 This->prev_handler = NULL;
565 /* Unacquire device */
569 ERR("Unacquiring a not-acquired device !!!\n");
574 /******************************************************************************
575 * GetDeviceState : returns the "state" of the mouse.
577 * For the moment, only the "standard" return structure (DIMOUSESTATE) is
580 static HRESULT WINAPI SysMouseAImpl_GetDeviceState(
581 LPDIRECTINPUTDEVICE2A iface,DWORD len,LPVOID ptr
583 ICOM_THIS(SysMouseAImpl,iface);
585 EnterCriticalSection(&(This->crit));
586 TRACE("(this=%p,0x%08lx,%p): \n",This,len,ptr);
588 /* Copy the current mouse state */
589 fill_DataFormat(ptr, &(This->m_state), This->wine_df);
591 /* Initialize the buffer when in relative mode */
592 if (This->absolute == 0) {
593 This->m_state.lX = 0;
594 This->m_state.lY = 0;
597 /* Check if we need to do a mouse warping */
598 if (This->need_warp == WARP_NEEDED) {
601 TRACE("Warping mouse to %ld - %ld\n", This->win_centerX, This->win_centerY);
602 point.x = This->win_centerX;
603 point.y = This->win_centerY;
604 MapWindowPoints(This->win, HWND_DESKTOP, &point, 1);
605 SetCursorPos( point.x, point.y );
608 This->need_warp = WARP_DONE;
610 This->need_warp = WARP_STARTED;
614 LeaveCriticalSection(&(This->crit));
616 TRACE("(X: %ld - Y: %ld L: %02x M: %02x R: %02x)\n",
617 This->m_state.lX, This->m_state.lY,
618 This->m_state.rgbButtons[0], This->m_state.rgbButtons[2], This->m_state.rgbButtons[1]);
623 /******************************************************************************
624 * GetDeviceState : gets buffered input data.
626 static HRESULT WINAPI SysMouseAImpl_GetDeviceData(LPDIRECTINPUTDEVICE2A iface,
628 LPDIDEVICEOBJECTDATA dod,
632 ICOM_THIS(SysMouseAImpl,iface);
634 EnterCriticalSection(&(This->crit));
635 TRACE("(%p)->(dods=%ld,entries=%ld,fl=0x%08lx)\n",This,dodsize,*entries,flags);
637 if (flags & DIGDD_PEEK)
638 FIXME("DIGDD_PEEK\n");
641 *entries = This->queue_pos;
644 /* Check for buffer overflow */
645 if (This->queue_pos > *entries) {
646 WARN("Buffer overflow not handled properly yet...\n");
647 This->queue_pos = *entries;
649 if (dodsize != sizeof(DIDEVICEOBJECTDATA)) {
650 ERR("Wrong structure size !\n");
651 LeaveCriticalSection(&(This->crit));
652 return DIERR_INVALIDPARAM;
656 TRACE("Application retrieving %d event(s).\n", This->queue_pos);
658 /* Copy the buffered data into the application queue */
659 memcpy(dod, This->data_queue, This->queue_pos * dodsize);
660 *entries = This->queue_pos;
662 /* Reset the event queue */
665 LeaveCriticalSection(&(This->crit));
667 /* Check if we need to do a mouse warping */
668 if (This->need_warp == WARP_NEEDED) {
671 TRACE("Warping mouse to %ld - %ld\n", This->win_centerX, This->win_centerY);
672 point.x = This->win_centerX;
673 point.y = This->win_centerY;
674 MapWindowPoints(This->win, HWND_DESKTOP, &point, 1);
675 SetCursorPos( point.x, point.y );
678 This->need_warp = WARP_DONE;
680 This->need_warp = WARP_STARTED;
686 /******************************************************************************
687 * SetProperty : change input device properties
689 static HRESULT WINAPI SysMouseAImpl_SetProperty(LPDIRECTINPUTDEVICE2A iface,
693 ICOM_THIS(SysMouseAImpl,iface);
695 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(rguid),ph);
697 if (!HIWORD(rguid)) {
698 switch ((DWORD)rguid) {
699 case (DWORD) DIPROP_BUFFERSIZE: {
700 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
702 TRACE("buffersize = %ld\n",pd->dwData);
704 This->data_queue = (LPDIDEVICEOBJECTDATA)HeapAlloc(GetProcessHeap(),0,
705 pd->dwData * sizeof(DIDEVICEOBJECTDATA));
707 This->queue_len = pd->dwData;
710 case (DWORD) DIPROP_AXISMODE: {
711 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
712 This->absolute = !(pd->dwData);
713 TRACE("absolute mode: %d\n", This->absolute);
717 FIXME("Unknown type %ld (%s)\n",(DWORD)rguid,debugstr_guid(rguid));
725 /******************************************************************************
726 * GetProperty : get input device properties
728 static HRESULT WINAPI SysMouseAImpl_GetProperty(LPDIRECTINPUTDEVICE2A iface,
730 LPDIPROPHEADER pdiph)
732 ICOM_THIS(SysMouseAImpl,iface);
734 TRACE("(this=%p,%s,%p): stub!\n",
735 iface, debugstr_guid(rguid), pdiph);
737 if (TRACE_ON(dinput))
738 _dump_DIPROPHEADER(pdiph);
740 if (!HIWORD(rguid)) {
741 switch ((DWORD)rguid) {
742 case (DWORD) DIPROP_BUFFERSIZE: {
743 LPDIPROPDWORD pd = (LPDIPROPDWORD)pdiph;
745 TRACE(" return buffersize = %d\n",This->queue_len);
746 pd->dwData = This->queue_len;
750 case (DWORD) DIPROP_RANGE: {
751 LPDIPROPRANGE pr = (LPDIPROPRANGE) pdiph;
753 if ((pdiph->dwHow == DIPH_BYID) &&
754 ((pdiph->dwObj == (DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS)) ||
755 (pdiph->dwObj == (DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS)))) {
756 /* Querying the range of either the X or the Y axis. As I do
757 not know the range, do as if the range where
759 pr->lMin = DIPROPRANGE_NOMIN;
760 pr->lMax = DIPROPRANGE_NOMAX;
767 FIXME("Unknown type %ld (%s)\n",(DWORD)rguid,debugstr_guid(rguid));
778 /******************************************************************************
779 * SetEventNotification : specifies event to be sent on state change
781 static HRESULT WINAPI SysMouseAImpl_SetEventNotification(LPDIRECTINPUTDEVICE2A iface,
783 ICOM_THIS(SysMouseAImpl,iface);
785 TRACE("(this=%p,0x%08lx)\n",This,(DWORD)hnd);
792 /******************************************************************************
793 * GetCapabilities : get the device capablitites
795 static HRESULT WINAPI SysMouseAImpl_GetCapabilities(
796 LPDIRECTINPUTDEVICE2A iface,
797 LPDIDEVCAPS lpDIDevCaps)
799 ICOM_THIS(SysMouseAImpl,iface);
801 TRACE("(this=%p,%p)\n",This,lpDIDevCaps);
803 if (lpDIDevCaps->dwSize == sizeof(DIDEVCAPS)) {
804 lpDIDevCaps->dwFlags = DIDC_ATTACHED;
805 lpDIDevCaps->dwDevType = DIDEVTYPE_MOUSE;
806 lpDIDevCaps->dwAxes = 2;
807 lpDIDevCaps->dwButtons = 3;
808 lpDIDevCaps->dwPOVs = 0;
809 lpDIDevCaps->dwFFSamplePeriod = 0;
810 lpDIDevCaps->dwFFMinTimeResolution = 0;
811 lpDIDevCaps->dwFirmwareRevision = 100;
812 lpDIDevCaps->dwHardwareRevision = 100;
813 lpDIDevCaps->dwFFDriverVersion = 0;
816 FIXME("DirectX 3.0 not supported....\n");
823 /******************************************************************************
824 * EnumObjects : enumerate the different buttons and axis...
826 static HRESULT WINAPI SysMouseAImpl_EnumObjects(
827 LPDIRECTINPUTDEVICE2A iface,
828 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
832 ICOM_THIS(SysMouseAImpl,iface);
833 DIDEVICEOBJECTINSTANCEA ddoi;
835 TRACE("(this=%p,%p,%p,%08lx)\n", This, lpCallback, lpvRef, dwFlags);
836 if (TRACE_ON(dinput)) {
837 DPRINTF(" - flags = ");
838 _dump_EnumObjects_flags(dwFlags);
842 /* Only the fields till dwFFMaxForce are relevant */
843 ddoi.dwSize = FIELD_OFFSET(DIDEVICEOBJECTINSTANCEA, dwFFMaxForce);
845 /* In a mouse, we have : two relative axis and three buttons */
846 if ((dwFlags == DIDFT_ALL) ||
847 (dwFlags & DIDFT_AXIS)) {
849 ddoi.guidType = GUID_XAxis;
850 ddoi.dwOfs = This->offset_array[WINE_MOUSE_X_POSITION];
851 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS;
852 strcpy(ddoi.tszName, "X-Axis");
853 _dump_OBJECTINSTANCEA(&ddoi);
854 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
857 ddoi.guidType = GUID_YAxis;
858 ddoi.dwOfs = This->offset_array[WINE_MOUSE_Y_POSITION];
859 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS;
860 strcpy(ddoi.tszName, "Y-Axis");
861 _dump_OBJECTINSTANCEA(&ddoi);
862 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
865 if ((dwFlags == DIDFT_ALL) ||
866 (dwFlags & DIDFT_BUTTON)) {
867 ddoi.guidType = GUID_Button;
870 ddoi.dwOfs = This->offset_array[WINE_MOUSE_L_POSITION];
871 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_L_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
872 strcpy(ddoi.tszName, "Left-Button");
873 _dump_OBJECTINSTANCEA(&ddoi);
874 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
877 ddoi.dwOfs = This->offset_array[WINE_MOUSE_R_POSITION];
878 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_R_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
879 strcpy(ddoi.tszName, "Right-Button");
880 _dump_OBJECTINSTANCEA(&ddoi);
881 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
884 ddoi.dwOfs = This->offset_array[WINE_MOUSE_M_POSITION];
885 ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_M_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
886 strcpy(ddoi.tszName, "Middle-Button");
887 _dump_OBJECTINSTANCEA(&ddoi);
888 if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
895 static ICOM_VTABLE(IDirectInputDevice2A) SysMouseAvt =
897 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
898 IDirectInputDevice2AImpl_QueryInterface,
899 IDirectInputDevice2AImpl_AddRef,
900 SysMouseAImpl_Release,
901 SysMouseAImpl_GetCapabilities,
902 SysMouseAImpl_EnumObjects,
903 SysMouseAImpl_GetProperty,
904 SysMouseAImpl_SetProperty,
905 SysMouseAImpl_Acquire,
906 SysMouseAImpl_Unacquire,
907 SysMouseAImpl_GetDeviceState,
908 SysMouseAImpl_GetDeviceData,
909 SysMouseAImpl_SetDataFormat,
910 SysMouseAImpl_SetEventNotification,
911 SysMouseAImpl_SetCooperativeLevel,
912 IDirectInputDevice2AImpl_GetObjectInfo,
913 IDirectInputDevice2AImpl_GetDeviceInfo,
914 IDirectInputDevice2AImpl_RunControlPanel,
915 IDirectInputDevice2AImpl_Initialize,
916 IDirectInputDevice2AImpl_CreateEffect,
917 IDirectInputDevice2AImpl_EnumEffects,
918 IDirectInputDevice2AImpl_GetEffectInfo,
919 IDirectInputDevice2AImpl_GetForceFeedbackState,
920 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
921 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
922 IDirectInputDevice2AImpl_Escape,
923 IDirectInputDevice2AImpl_Poll,
924 IDirectInputDevice2AImpl_SendDeviceData,
927 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
928 # define XCAST(fun) (typeof(SysMouse7Avt.fn##fun))
930 # define XCAST(fun) (void*)
933 static ICOM_VTABLE(IDirectInputDevice7A) SysMouse7Avt =
935 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
936 XCAST(QueryInterface)IDirectInputDevice2AImpl_QueryInterface,
937 XCAST(AddRef)IDirectInputDevice2AImpl_AddRef,
938 XCAST(Release)SysMouseAImpl_Release,
939 XCAST(GetCapabilities)SysMouseAImpl_GetCapabilities,
940 XCAST(EnumObjects)SysMouseAImpl_EnumObjects,
941 XCAST(GetProperty)SysMouseAImpl_GetProperty,
942 XCAST(SetProperty)SysMouseAImpl_SetProperty,
943 XCAST(Acquire)SysMouseAImpl_Acquire,
944 XCAST(Unacquire)SysMouseAImpl_Unacquire,
945 XCAST(GetDeviceState)SysMouseAImpl_GetDeviceState,
946 XCAST(GetDeviceData)SysMouseAImpl_GetDeviceData,
947 XCAST(SetDataFormat)SysMouseAImpl_SetDataFormat,
948 XCAST(SetEventNotification)SysMouseAImpl_SetEventNotification,
949 XCAST(SetCooperativeLevel)SysMouseAImpl_SetCooperativeLevel,
950 XCAST(GetObjectInfo)IDirectInputDevice2AImpl_GetObjectInfo,
951 XCAST(GetDeviceInfo)IDirectInputDevice2AImpl_GetDeviceInfo,
952 XCAST(RunControlPanel)IDirectInputDevice2AImpl_RunControlPanel,
953 XCAST(Initialize)IDirectInputDevice2AImpl_Initialize,
954 XCAST(CreateEffect)IDirectInputDevice2AImpl_CreateEffect,
955 XCAST(EnumEffects)IDirectInputDevice2AImpl_EnumEffects,
956 XCAST(GetEffectInfo)IDirectInputDevice2AImpl_GetEffectInfo,
957 XCAST(GetForceFeedbackState)IDirectInputDevice2AImpl_GetForceFeedbackState,
958 XCAST(SendForceFeedbackCommand)IDirectInputDevice2AImpl_SendForceFeedbackCommand,
959 XCAST(EnumCreatedEffectObjects)IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
960 XCAST(Escape)IDirectInputDevice2AImpl_Escape,
961 XCAST(Poll)IDirectInputDevice2AImpl_Poll,
962 XCAST(SendDeviceData)IDirectInputDevice2AImpl_SendDeviceData,
963 IDirectInputDevice7AImpl_EnumEffectsInFile,
964 IDirectInputDevice7AImpl_WriteEffectToFile