3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
9 * - Tomb Raider 2 Demo:
10 * Playable using keyboard only.
11 * - WingCommander Prophecy Demo:
12 * Doesn't get Input Focus.
14 * - Fallout : works great in X and DGA mode
16 * FIXME: The keyboard handling needs to (and will) be merged into keyboard.c
17 * (The current implementation is currently only a proof of concept and
25 #include <sys/signal.h>
29 #include "wine/obj_base.h"
35 #include "sysmetrics.h"
37 DEFAULT_DEBUG_CHANNEL(dinput)
39 extern BYTE InputKeyStateTable[256];
40 extern int min_keycode, max_keycode;
41 extern WORD keyc2vkey[256];
43 static ICOM_VTABLE(IDirectInputA) ddiavt;
44 static ICOM_VTABLE(IDirectInputDevice2A) SysKeyboardAvt;
45 static ICOM_VTABLE(IDirectInputDevice2A) SysMouseAvt;
47 typedef struct IDirectInputAImpl IDirectInputAImpl;
48 typedef struct IDirectInputDevice2AImpl IDirectInputDevice2AImpl;
49 typedef struct SysKeyboardAImpl SysKeyboardAImpl;
50 typedef struct SysMouseAImpl SysMouseAImpl;
52 struct IDirectInputDevice2AImpl
54 ICOM_VTABLE(IDirectInputDevice2A)* lpvtbl;
59 struct SysKeyboardAImpl
61 /* IDirectInputDevice2AImpl */
62 ICOM_VTABLE(IDirectInputDevice2A)* lpvtbl;
65 /* SysKeyboardAImpl */
71 /* IDirectInputDevice2AImpl */
72 ICOM_VTABLE(IDirectInputDevice2A)* lpvtbl;
77 /* Previous position for relative moves */
79 LPMOUSE_EVENT_PROC prev_handler;
81 DWORD win_centerX, win_centerY;
82 LPDIDEVICEOBJECTDATA data_queue;
83 int queue_pos, queue_len;
89 /* UIDs for Wine "drivers".
90 When enumerating each device supporting DInput, they have two UIDs :
93 static GUID DInput_Wine_Mouse_GUID = { /* 9e573ed8-7734-11d2-8d4a-23903fb6bdf7 */
97 {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}
99 static GUID DInput_Wine_Keyboard_GUID = { /* 0ab8648a-7735-11d2-8c73-71df54a96441 */
103 {0x8c, 0x73, 0x71, 0xdf, 0x54, 0xa9, 0x64, 0x41}
106 /* FIXME: This is ugly and not thread safe :/ */
107 static IDirectInputDevice2A* current_lock = NULL;
109 /******************************************************************************
110 * Various debugging tools
112 static void _dump_cooperativelevel(DWORD dwFlags) {
118 #define FE(x) { x, #x},
122 FE(DISCL_NONEXCLUSIVE)
124 for (i=0;i<sizeof(flags)/sizeof(flags[0]);i++)
125 if (flags[i].mask & dwFlags)
126 DUMP("%s ",flags[i].name);
130 struct IDirectInputAImpl
132 ICOM_VTABLE(IDirectInputA)* lpvtbl;
136 /******************************************************************************
137 * DirectInputCreate32A
139 HRESULT WINAPI DirectInputCreateA(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTA *ppDI, LPUNKNOWN punkOuter)
141 IDirectInputAImpl* This;
142 TRACE(dinput, "(0x%08lx,%04lx,%p,%p)\n",
143 (DWORD)hinst,dwVersion,ppDI,punkOuter
145 This = (IDirectInputAImpl*)HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputAImpl));
147 This->lpvtbl = &ddiavt;
148 *ppDI=(IDirectInputA*)This;
151 /******************************************************************************
152 * IDirectInputA_EnumDevices
154 static HRESULT WINAPI IDirectInputAImpl_EnumDevices(
155 LPDIRECTINPUTA iface, DWORD dwDevType, LPDIENUMDEVICESCALLBACKA lpCallback,
156 LPVOID pvRef, DWORD dwFlags
159 ICOM_THIS(IDirectInputAImpl,iface);
160 DIDEVICEINSTANCEA devInstance;
163 TRACE(dinput, "(this=%p,0x%04lx,%p,%p,%04lx)\n", This, dwDevType, lpCallback, pvRef, dwFlags);
165 devInstance.dwSize = sizeof(DIDEVICEINSTANCEA);
167 if ((dwDevType == 0) || (dwDevType == DIDEVTYPE_KEYBOARD)) {
168 /* Return keyboard */
169 devInstance.guidInstance = GUID_SysKeyboard; /* DInput's GUID */
170 devInstance.guidProduct = DInput_Wine_Keyboard_GUID; /* Vendor's GUID */
171 devInstance.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
172 strcpy(devInstance.tszInstanceName, "Keyboard");
173 strcpy(devInstance.tszProductName, "Wine Keyboard");
175 ret = lpCallback(&devInstance, pvRef);
176 TRACE(dinput, "Keyboard registered\n");
178 if (ret == DIENUM_STOP)
182 if ((dwDevType == 0) || (dwDevType == DIDEVTYPE_KEYBOARD)) {
184 devInstance.guidInstance = GUID_SysMouse; /* DInput's GUID */
185 devInstance.guidProduct = DInput_Wine_Mouse_GUID; /* Vendor's GUID */
186 devInstance.dwDevType = DIDEVTYPE_MOUSE | (DIDEVTYPEMOUSE_UNKNOWN << 8);
187 strcpy(devInstance.tszInstanceName, "Mouse");
188 strcpy(devInstance.tszProductName, "Wine Mouse");
190 ret = lpCallback(&devInstance, pvRef);
191 TRACE(dinput, "Mouse registered\n");
194 /* Should also do joystick enumerations.... */
199 static ULONG WINAPI IDirectInputAImpl_AddRef(LPDIRECTINPUTA iface)
201 ICOM_THIS(IDirectInputAImpl,iface);
202 return ++(This->ref);
205 static ULONG WINAPI IDirectInputAImpl_Release(LPDIRECTINPUTA iface)
207 ICOM_THIS(IDirectInputAImpl,iface);
208 if (!(--This->ref)) {
209 HeapFree(GetProcessHeap(),0,This);
215 static HRESULT WINAPI IDirectInputAImpl_CreateDevice(
216 LPDIRECTINPUTA iface,REFGUID rguid,LPDIRECTINPUTDEVICEA* pdev,
219 ICOM_THIS(IDirectInputAImpl,iface);
222 WINE_StringFromCLSID(rguid,xbuf);
223 FIXME(dinput,"(this=%p,%s,%p,%p): stub\n",This,xbuf,pdev,punk);
224 if ((!memcmp(&GUID_SysKeyboard,rguid,sizeof(GUID_SysKeyboard))) || /* Generic Keyboard */
225 (!memcmp(&DInput_Wine_Keyboard_GUID,rguid,sizeof(GUID_SysKeyboard)))) { /* Wine Keyboard */
226 SysKeyboardAImpl* newDevice;
227 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysKeyboardAImpl));
229 newDevice->lpvtbl = &SysKeyboardAvt;
230 memcpy(&(newDevice->guid),rguid,sizeof(*rguid));
231 memset(newDevice->keystate,0,256);
232 *pdev=(IDirectInputDeviceA*)newDevice;
235 if ((!memcmp(&GUID_SysMouse,rguid,sizeof(GUID_SysMouse))) || /* Generic Mouse */
236 (!memcmp(&DInput_Wine_Mouse_GUID,rguid,sizeof(GUID_SysMouse)))) { /* Wine Mouse */
237 SysKeyboardAImpl* newDevice;
238 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysMouseAImpl));
240 newDevice->lpvtbl = &SysMouseAvt;
241 memcpy(&(newDevice->guid),rguid,sizeof(*rguid));
242 *pdev=(IDirectInputDeviceA*)newDevice;
248 static HRESULT WINAPI IDirectInputAImpl_QueryInterface(
249 LPDIRECTINPUTA iface,REFIID riid,LPVOID *ppobj
251 ICOM_THIS(IDirectInputAImpl,iface);
254 WINE_StringFromCLSID(riid,xbuf);
255 TRACE(dinput,"(this=%p,%s,%p)\n",This,xbuf,ppobj);
256 if (!memcmp(&IID_IUnknown,riid,sizeof(*riid))) {
257 IDirectInputA_AddRef(iface);
261 if (!memcmp(&IID_IDirectInputA,riid,sizeof(*riid))) {
262 IDirectInputA_AddRef(iface);
269 static HRESULT WINAPI IDirectInputAImpl_Initialize(
270 LPDIRECTINPUTA iface,HINSTANCE hinst,DWORD x
272 return DIERR_ALREADYINITIALIZED;
275 static HRESULT WINAPI IDirectInputAImpl_GetDeviceStatus(LPDIRECTINPUTA iface,
277 ICOM_THIS(IDirectInputAImpl,iface);
280 WINE_StringFromCLSID(rguid,xbuf);
281 FIXME(dinput,"(%p)->(%s): stub\n",This,xbuf);
286 static HRESULT WINAPI IDirectInputAImpl_RunControlPanel(LPDIRECTINPUTA iface,
289 ICOM_THIS(IDirectInputAImpl,iface);
290 FIXME(dinput,"(%p)->(%08lx,%08lx): stub\n",This, (DWORD) hwndOwner, dwFlags);
295 static ICOM_VTABLE(IDirectInputA) ddiavt= {
296 IDirectInputAImpl_QueryInterface,
297 IDirectInputAImpl_AddRef,
298 IDirectInputAImpl_Release,
299 IDirectInputAImpl_CreateDevice,
300 IDirectInputAImpl_EnumDevices,
301 IDirectInputAImpl_GetDeviceStatus,
302 IDirectInputAImpl_RunControlPanel,
303 IDirectInputAImpl_Initialize
306 /******************************************************************************
307 * IDirectInputDeviceA
310 static HRESULT WINAPI IDirectInputDevice2AImpl_SetDataFormat(
311 LPDIRECTINPUTDEVICE2A iface,LPCDIDATAFORMAT df
315 TRACE(dinput,"(this=%p,%p)\n",This,df);
317 TRACE(dinput,"df.dwSize=%ld\n",df->dwSize);
318 TRACE(dinput,"(df.dwObjsize=%ld)\n",df->dwObjSize);
319 TRACE(dinput,"(df.dwFlags=0x%08lx)\n",df->dwFlags);
320 TRACE(dinput,"(df.dwDataSize=%ld)\n",df->dwDataSize);
321 TRACE(dinput,"(df.dwNumObjs=%ld)\n",df->dwNumObjs);
323 for (i=0;i<df->dwNumObjs;i++) {
326 if (df->rgodf[i].pguid)
327 WINE_StringFromCLSID(df->rgodf[i].pguid,xbuf);
329 strcpy(xbuf,"<no guid>");
330 TRACE(dinput,"df.rgodf[%d].guid %s\n",i,xbuf);
331 TRACE(dinput,"df.rgodf[%d].dwOfs %ld\n",i,df->rgodf[i].dwOfs);
332 TRACE(dinput,"dwType 0x%02lx,dwInstance %ld\n",DIDFT_GETTYPE(df->rgodf[i].dwType),DIDFT_GETINSTANCE(df->rgodf[i].dwType));
333 TRACE(dinput,"df.rgodf[%d].dwFlags 0x%08lx\n",i,df->rgodf[i].dwFlags);
339 static HRESULT WINAPI IDirectInputDevice2AImpl_SetCooperativeLevel(
340 LPDIRECTINPUTDEVICE2A iface,HWND hwnd,DWORD dwflags
342 ICOM_THIS(IDirectInputDevice2AImpl,iface);
343 FIXME(dinput,"(this=%p,0x%08lx,0x%08lx): stub\n",This,(DWORD)hwnd,dwflags);
344 if (TRACE_ON(dinput))
345 _dump_cooperativelevel(dwflags);
349 static HRESULT WINAPI IDirectInputDevice2AImpl_SetEventNotification(
350 LPDIRECTINPUTDEVICE2A iface,HANDLE hnd
352 ICOM_THIS(IDirectInputDevice2AImpl,iface);
353 FIXME(dinput,"(this=%p,0x%08lx): stub\n",This,(DWORD)hnd);
357 static ULONG WINAPI IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE2A iface)
359 ICOM_THIS(IDirectInputDevice2AImpl,iface);
363 HeapFree(GetProcessHeap(),0,This);
367 static HRESULT WINAPI SysKeyboardAImpl_SetProperty(
368 LPDIRECTINPUTDEVICE2A iface,REFGUID rguid,LPCDIPROPHEADER ph
371 ICOM_THIS(SysKeyboardAImpl,iface);
375 WINE_StringFromCLSID(rguid,xbuf);
377 sprintf(xbuf,"<special guid %ld>",(DWORD)rguid);
378 TRACE(dinput,"(this=%p,%s,%p)\n",This,xbuf,ph);
379 TRACE(dinput,"(size=%ld,headersize=%ld,obj=%ld,how=%ld\n",
380 ph->dwSize,ph->dwHeaderSize,ph->dwObj,ph->dwHow);
381 if (!HIWORD(rguid)) {
382 switch ((DWORD)rguid) {
383 case (DWORD) DIPROP_BUFFERSIZE: {
384 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
386 TRACE(dinput,"(buffersize=%ld)\n",pd->dwData);
390 WARN(dinput,"Unknown type %ld\n",(DWORD)rguid);
397 static HRESULT WINAPI SysKeyboardAImpl_GetDeviceState(
398 LPDIRECTINPUTDEVICE2A iface,DWORD len,LPVOID ptr
405 for (keyc=min_keycode;keyc<max_keycode;keyc++)
407 /* X keycode to virtual key */
408 vkey = keyc2vkey[keyc] & 0xFF;
409 /* The windows scancode is keyc-min_keycode */
410 if (InputKeyStateTable[vkey]&0x80) {
411 ((LPBYTE)ptr)[keyc-min_keycode]=0x80;
412 ((LPBYTE)ptr)[(keyc-min_keycode)|0x80]=0x80;
417 WARN(dinput,"whoops, SysKeyboardAImpl_GetDeviceState got len %ld?\n",len);
421 static HRESULT WINAPI SysKeyboardAImpl_GetDeviceData(
422 LPDIRECTINPUTDEVICE2A iface,DWORD dodsize,LPDIDEVICEOBJECTDATA dod,
423 LPDWORD entries,DWORD flags
426 ICOM_THIS(SysKeyboardAImpl,iface);
427 int keyc,n,vkey,xentries;
429 TRACE(dinput,"(this=%p,%ld,%p,%p(%ld)),0x%08lx)\n",
430 This,dodsize,dod,entries,entries?*entries:0,flags);
431 EVENT_WaitNetEvent(FALSE,TRUE);
439 for (keyc=min_keycode;(keyc<max_keycode) && (n<*entries);keyc++)
441 /* X keycode to virtual key */
442 vkey = keyc2vkey[keyc] & 0xFF;
443 if (This->keystate[vkey] == (InputKeyStateTable[vkey]&0x80))
447 dod[n].dwOfs = keyc-min_keycode; /* scancode */
448 dod[n].dwData = InputKeyStateTable[vkey]&0x80;
449 dod[n].dwTimeStamp = 0; /* umm */
450 dod[n].dwSequence = 0; /* umm */
453 if (!(flags & DIGDD_PEEK))
454 This->keystate[vkey] = InputKeyStateTable[vkey]&0x80;
458 if (n) fprintf(stderr,"%d entries\n",n);
463 static HRESULT WINAPI SysKeyboardAImpl_Acquire(LPDIRECTINPUTDEVICE2A iface)
465 ICOM_THIS(SysKeyboardAImpl,iface);
466 TRACE(dinput,"(this=%p): stub\n",This);
470 static HRESULT WINAPI SysKeyboardAImpl_Unacquire(LPDIRECTINPUTDEVICE2A iface)
472 ICOM_THIS(SysKeyboardAImpl,iface);
473 TRACE(dinput,"(this=%p): stub\n",This);
477 static HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
478 LPDIRECTINPUTDEVICE2A iface,REFIID riid,LPVOID *ppobj
481 ICOM_THIS(IDirectInputDevice2AImpl,iface);
484 WINE_StringFromCLSID(riid,xbuf);
485 TRACE(dinput,"(this=%p,%s,%p)\n",This,xbuf,ppobj);
486 if (!memcmp(&IID_IUnknown,riid,sizeof(*riid))) {
487 IDirectInputDevice2_AddRef(iface);
491 if (!memcmp(&IID_IDirectInputDeviceA,riid,sizeof(*riid))) {
492 IDirectInputDevice2_AddRef(iface);
496 if (!memcmp(&IID_IDirectInputDevice2A,riid,sizeof(*riid))) {
497 IDirectInputDevice2_AddRef(iface);
504 static ULONG WINAPI IDirectInputDevice2AImpl_AddRef(
505 LPDIRECTINPUTDEVICE2A iface)
507 ICOM_THIS(IDirectInputDevice2AImpl,iface);
511 static HRESULT WINAPI IDirectInputDevice2AImpl_GetCapabilities(
512 LPDIRECTINPUTDEVICE2A iface,
513 LPDIDEVCAPS lpDIDevCaps)
515 FIXME(dinput, "stub!\n");
519 static HRESULT WINAPI IDirectInputDevice2AImpl_EnumObjects(
520 LPDIRECTINPUTDEVICE2A iface,
521 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
525 FIXME(dinput, "stub!\n");
528 lpCallback(NULL, lpvRef);
533 static HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
534 LPDIRECTINPUTDEVICE2A iface,
536 LPDIPROPHEADER pdiph)
538 FIXME(dinput, "stub!\n");
542 static HRESULT WINAPI IDirectInputDevice2AImpl_GetObjectInfo(
543 LPDIRECTINPUTDEVICE2A iface,
544 LPDIDEVICEOBJECTINSTANCEA pdidoi,
548 FIXME(dinput, "stub!\n");
552 static HRESULT WINAPI IDirectInputDevice2AImpl_GetDeviceInfo(
553 LPDIRECTINPUTDEVICE2A iface,
554 LPDIDEVICEINSTANCEA pdidi)
556 FIXME(dinput, "stub!\n");
560 static HRESULT WINAPI IDirectInputDevice2AImpl_RunControlPanel(
561 LPDIRECTINPUTDEVICE2A iface,
565 FIXME(dinput, "stub!\n");
569 static HRESULT WINAPI IDirectInputDevice2AImpl_Initialize(
570 LPDIRECTINPUTDEVICE2A iface,
575 FIXME(dinput, "stub!\n");
579 /******************************************************************************
580 * IDirectInputDevice2A
583 static HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(
584 LPDIRECTINPUTDEVICE2A iface,
587 LPDIRECTINPUTEFFECT *ppdef,
590 FIXME(dinput, "stub!\n");
594 static HRESULT WINAPI IDirectInputDevice2AImpl_EnumEffects(
595 LPDIRECTINPUTDEVICE2A iface,
596 LPDIENUMEFFECTSCALLBACKA lpCallback,
600 FIXME(dinput, "stub!\n");
602 lpCallback(NULL, lpvRef);
606 static HRESULT WINAPI IDirectInputDevice2AImpl_GetEffectInfo(
607 LPDIRECTINPUTDEVICE2A iface,
608 LPDIEFFECTINFOA lpdei,
611 FIXME(dinput, "stub!\n");
615 static HRESULT WINAPI IDirectInputDevice2AImpl_GetForceFeedbackState(
616 LPDIRECTINPUTDEVICE2A iface,
619 FIXME(dinput, "stub!\n");
623 static HRESULT WINAPI IDirectInputDevice2AImpl_SendForceFeedbackCommand(
624 LPDIRECTINPUTDEVICE2A iface,
627 FIXME(dinput, "stub!\n");
631 static HRESULT WINAPI IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
632 LPDIRECTINPUTDEVICE2A iface,
633 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
637 FIXME(dinput, "stub!\n");
639 lpCallback(NULL, lpvRef);
643 static HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
644 LPDIRECTINPUTDEVICE2A iface,
645 LPDIEFFESCAPE lpDIEEsc)
647 FIXME(dinput, "stub!\n");
651 static HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
652 LPDIRECTINPUTDEVICE2A iface)
654 FIXME(dinput, "stub!\n");
658 static HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
659 LPDIRECTINPUTDEVICE2A iface,
661 LPDIDEVICEOBJECTDATA rgdod,
665 FIXME(dinput, "stub!\n");
669 /******************************************************************************
670 * SysMouseA (DInput Mouse support)
673 /******************************************************************************
674 * Release : release the mouse buffer.
676 static ULONG WINAPI SysMouseAImpl_Release(LPDIRECTINPUTDEVICE2A iface)
678 ICOM_THIS(SysMouseAImpl,iface);
684 /* Free the data queue */
685 if (This->data_queue != NULL)
686 HeapFree(GetProcessHeap(),0,This->data_queue);
688 /* Install the previous event handler (in case of releasing an aquired
690 if (This->prev_handler != NULL)
691 MOUSE_Enable(This->prev_handler);
693 HeapFree(GetProcessHeap(),0,This);
698 /******************************************************************************
699 * SetCooperativeLevel : store the window in which we will do our
702 static HRESULT WINAPI SysMouseAImpl_SetCooperativeLevel(
703 LPDIRECTINPUTDEVICE2A iface,HWND hwnd,DWORD dwflags
706 ICOM_THIS(SysMouseAImpl,iface);
708 TRACE(dinput,"(this=%p,0x%08lx,0x%08lx): stub\n",This,(DWORD)hwnd,dwflags);
710 if (TRACE_ON(dinput))
711 _dump_cooperativelevel(dwflags);
713 /* Store the window which asks for the mouse */
720 /******************************************************************************
721 * SetDataFormat : the application can choose the format of the data
722 * the device driver sends back with GetDeviceState.
724 * For the moment, only the "standard" configuration (c_dfDIMouse) is supported
725 * in absolute and relative mode.
727 static HRESULT WINAPI SysMouseAImpl_SetDataFormat(
728 LPDIRECTINPUTDEVICE2A iface,LPCDIDATAFORMAT df
731 ICOM_THIS(SysMouseAImpl,iface);
734 TRACE(dinput,"(this=%p,%p)\n",This,df);
736 TRACE(dinput,"(df.dwSize=%ld)\n",df->dwSize);
737 TRACE(dinput,"(df.dwObjsize=%ld)\n",df->dwObjSize);
738 TRACE(dinput,"(df.dwFlags=0x%08lx)\n",df->dwFlags);
739 TRACE(dinput,"(df.dwDataSize=%ld)\n",df->dwDataSize);
740 TRACE(dinput,"(df.dwNumObjs=%ld)\n",df->dwNumObjs);
742 for (i=0;i<df->dwNumObjs;i++) {
745 if (df->rgodf[i].pguid)
746 WINE_StringFromCLSID(df->rgodf[i].pguid,xbuf);
748 strcpy(xbuf,"<no guid>");
749 TRACE(dinput,"df.rgodf[%d].guid %s (%p)\n",i,xbuf, df->rgodf[i].pguid);
750 TRACE(dinput,"df.rgodf[%d].dwOfs %ld\n",i,df->rgodf[i].dwOfs);
751 TRACE(dinput,"dwType 0x%02x,dwInstance %d\n",DIDFT_GETTYPE(df->rgodf[i].dwType),DIDFT_GETINSTANCE(df->rgodf[i].dwType));
752 TRACE(dinput,"df.rgodf[%d].dwFlags 0x%08lx\n",i,df->rgodf[i].dwFlags);
755 /* Check size of data format to prevent crashes if the applications
756 sends a smaller buffer */
757 if (df->dwDataSize != sizeof(struct DIMOUSESTATE)) {
758 FIXME(dinput, "non-standard mouse configuration not supported yet.");
759 return DIERR_INVALIDPARAM;
762 /* For the moment, ignore these fields and return always as if
763 c_dfDIMouse was passed as format... */
765 /* Check if the mouse is in absolute or relative mode */
766 if (df->dwFlags == DIDF_ABSAXIS)
774 #define GEN_EVENT(offset,data,time,seq) \
776 if (This->queue_pos < This->queue_len) { \
777 This->data_queue[This->queue_pos].dwOfs = offset; \
778 This->data_queue[This->queue_pos].dwData = data; \
779 This->data_queue[This->queue_pos].dwTimeStamp = time; \
780 This->data_queue[This->queue_pos].dwSequence = seq; \
785 /* Our private mouse event handler */
786 static void WINAPI dinput_mouse_event( DWORD dwFlags, DWORD dx, DWORD dy,
787 DWORD cButtons, DWORD dwExtraInfo )
789 DWORD posX, posY, keyState, time, extra;
790 SysMouseAImpl* This = (SysMouseAImpl*) current_lock;
792 if ( !IsBadReadPtr( (LPVOID)dwExtraInfo, sizeof(WINE_MOUSEEVENT) )
793 && ((WINE_MOUSEEVENT *)dwExtraInfo)->magic == WINE_MOUSEEVENT_MAGIC ) {
794 WINE_MOUSEEVENT *wme = (WINE_MOUSEEVENT *)dwExtraInfo;
795 keyState = wme->keyState;
797 extra = (DWORD)wme->hWnd;
799 assert( dwFlags & MOUSEEVENTF_ABSOLUTE );
800 posX = (dx * SYSMETRICS_CXSCREEN) >> 16;
801 posY = (dy * SYSMETRICS_CYSCREEN) >> 16;
803 ERR(dinput, "Mouse event not supported...\n");
807 TRACE(dinput, " %ld %ld ", posX, posY);
809 if ( dwFlags & MOUSEEVENTF_MOVE ) {
810 if (This->absolute) {
811 if (posX != This->prevX)
812 GEN_EVENT(DIMOFS_X, posX, time, 0);
813 if (posY != This->prevY)
814 GEN_EVENT(DIMOFS_Y, posY, time, 0);
816 /* Relative mouse input : the real fun starts here... */
817 if (This->need_warp) {
818 if (posX != This->prevX)
819 GEN_EVENT(DIMOFS_X, posX - This->prevX, time, 0);
820 if (posY != This->prevY)
821 GEN_EVENT(DIMOFS_Y, posY - This->prevY, time, 0);
823 /* This is the first time the event handler has been called after a
824 GetData of GetState. */
825 if (posX != This->win_centerX) {
826 GEN_EVENT(DIMOFS_X, posX - This->win_centerX, time, 0);
830 if (posY != This->win_centerY) {
831 GEN_EVENT(DIMOFS_Y, posY - This->win_centerY, time, 0);
837 if ( dwFlags & MOUSEEVENTF_LEFTDOWN ) {
838 if (TRACE_ON(dinput))
841 GEN_EVENT(DIMOFS_BUTTON0, 0xFF, time, 0);
843 if ( dwFlags & MOUSEEVENTF_LEFTUP ) {
844 if (TRACE_ON(dinput))
847 GEN_EVENT(DIMOFS_BUTTON0, 0x00, time, 0);
849 if ( dwFlags & MOUSEEVENTF_RIGHTDOWN ) {
850 if (TRACE_ON(dinput))
853 GEN_EVENT(DIMOFS_BUTTON1, 0xFF, time, 0);
855 if ( dwFlags & MOUSEEVENTF_RIGHTUP ) {
856 if (TRACE_ON(dinput))
859 GEN_EVENT(DIMOFS_BUTTON1, 0x00, time, 0);
861 if ( dwFlags & MOUSEEVENTF_MIDDLEDOWN ) {
862 if (TRACE_ON(dinput))
865 GEN_EVENT(DIMOFS_BUTTON2, 0xFF, time, 0);
867 if ( dwFlags & MOUSEEVENTF_MIDDLEUP ) {
868 if (TRACE_ON(dinput))
871 GEN_EVENT(DIMOFS_BUTTON2, 0x00, time, 0);
873 if (TRACE_ON(dinput))
881 /******************************************************************************
882 * Acquire : gets exclusive control of the mouse
884 static HRESULT WINAPI SysMouseAImpl_Acquire(LPDIRECTINPUTDEVICE2A iface)
886 ICOM_THIS(SysMouseAImpl,iface);
889 TRACE(dinput,"(this=%p)\n",This);
891 if (This->acquired == 0) {
894 /* This stores the current mouse handler. */
895 This->prev_handler = mouse_event;
897 /* Store (in a global variable) the current lock */
898 current_lock = (IDirectInputDevice2A*)This;
900 /* Install our own mouse event handler */
901 MOUSE_Enable(dinput_mouse_event);
903 /* Get the window dimension and find the center */
904 GetWindowRect(This->win, &rect);
905 This->win_centerX = (rect.right - rect.left) / 2;
906 This->win_centerY = (rect.bottom - rect.top ) / 2;
908 /* Warp the mouse to the center of the window */
909 TRACE(dinput, "Warping mouse to %ld - %ld\n", This->win_centerX, This->win_centerY);
910 point.x = This->win_centerX;
911 point.y = This->win_centerY;
912 MapWindowPoints(This->win, HWND_DESKTOP, &point, 1);
913 DISPLAY_MoveCursor(point.x, point.y);
920 /******************************************************************************
921 * Unacquire : frees the mouse
923 static HRESULT WINAPI SysMouseAImpl_Unacquire(LPDIRECTINPUTDEVICE2A iface)
925 ICOM_THIS(SysMouseAImpl,iface);
927 TRACE(dinput,"(this=%p)\n",This);
929 /* Reinstall previous mouse event handler */
930 MOUSE_Enable(This->prev_handler);
931 This->prev_handler = NULL;
936 /* Unacquire device */
942 /******************************************************************************
943 * GetDeviceState : returns the "state" of the mouse.
945 * For the moment, only the "standard" return structure (DIMOUSESTATE) is
948 static HRESULT WINAPI SysMouseAImpl_GetDeviceState(
949 LPDIRECTINPUTDEVICE2A iface,DWORD len,LPVOID ptr
951 ICOM_THIS(SysMouseAImpl,iface);
953 struct DIMOUSESTATE *mstate = (struct DIMOUSESTATE *) ptr;
955 TRACE(dinput,"(this=%p,0x%08lx,%p): \n",This,len,ptr);
957 /* Check if the buffer is big enough */
958 if (len < sizeof(struct DIMOUSESTATE)) {
959 FIXME(dinput, "unsupported state structure.");
960 return DIERR_INVALIDPARAM;
963 /* Get the mouse position */
964 EVENT_QueryPointer(&rx, &ry, &state);
965 TRACE(dinput,"(X:%ld - Y:%ld)\n", rx, ry);
967 /* Fill the mouse state structure */
968 if (This->absolute) {
972 mstate->lX = rx - This->win_centerX;
973 mstate->lY = ry - This->win_centerY;
975 if ((mstate->lX != 0) || (mstate->lY != 0))
979 mstate->rgbButtons[0] = (state & MK_LBUTTON ? 0xFF : 0x00);
980 mstate->rgbButtons[1] = (state & MK_RBUTTON ? 0xFF : 0x00);
981 mstate->rgbButtons[2] = (state & MK_MBUTTON ? 0xFF : 0x00);
982 mstate->rgbButtons[3] = 0x00;
984 /* Check if we need to do a mouse warping */
985 if (This->need_warp) {
988 TRACE(dinput, "Warping mouse to %ld - %ld\n", This->win_centerX, This->win_centerY);
989 point.x = This->win_centerX;
990 point.y = This->win_centerY;
991 MapWindowPoints(This->win, HWND_DESKTOP, &point, 1);
992 DISPLAY_MoveCursor(point.x, point.y);
997 TRACE(dinput, "(X: %ld - Y: %ld L: %02x M: %02x R: %02x)\n",
998 mstate->lX, mstate->lY,
999 mstate->rgbButtons[0], mstate->rgbButtons[2], mstate->rgbButtons[1]);
1004 /******************************************************************************
1005 * GetDeviceState : gets buffered input data.
1007 static HRESULT WINAPI SysMouseAImpl_GetDeviceData(LPDIRECTINPUTDEVICE2A iface,
1009 LPDIDEVICEOBJECTDATA dod,
1013 ICOM_THIS(SysMouseAImpl,iface);
1015 TRACE(dinput,"(%p)->(%ld,%p,%p(0x%08lx),0x%08lx)\n",
1016 This,dodsize,dod,entries,*entries,flags);
1018 if (flags & DIGDD_PEEK)
1019 TRACE(dinput, "DIGDD_PEEK\n");
1022 *entries = This->queue_pos;
1023 This->queue_pos = 0;
1025 /* Check for buffer overflow */
1026 if (This->queue_pos > *entries) {
1027 WARN(dinput, "Buffer overflow not handled properly yet...\n");
1028 This->queue_pos = *entries;
1030 if (dodsize != sizeof(DIDEVICEOBJECTDATA)) {
1031 ERR(dinput, "Wrong structure size !\n");
1032 return DIERR_INVALIDPARAM;
1035 TRACE(dinput, "Application retrieving %d event(s).\n", This->queue_pos);
1037 /* Copy the buffered data into the application queue */
1038 memcpy(dod, This->data_queue, This->queue_pos * dodsize);
1040 /* Reset the event queue */
1041 This->queue_pos = 0;
1044 /* Check if we need to do a mouse warping */
1045 if (This->need_warp) {
1048 TRACE(dinput, "Warping mouse to %ld - %ld\n", This->win_centerX, This->win_centerY);
1049 point.x = This->win_centerX;
1050 point.y = This->win_centerY;
1051 MapWindowPoints(This->win, HWND_DESKTOP, &point, 1);
1052 DISPLAY_MoveCursor(point.x, point.y);
1054 This->need_warp = 0;
1060 /******************************************************************************
1061 * SetProperty : change input device properties
1063 static HRESULT WINAPI SysMouseAImpl_SetProperty(LPDIRECTINPUTDEVICE2A iface,
1067 ICOM_THIS(SysMouseAImpl,iface);
1071 WINE_StringFromCLSID(rguid,xbuf);
1073 sprintf(xbuf,"<special guid %ld>",(DWORD)rguid);
1075 TRACE(dinput,"(this=%p,%s,%p)\n",This,xbuf,ph);
1077 if (!HIWORD(rguid)) {
1078 switch ((DWORD)rguid) {
1079 case (DWORD) DIPROP_BUFFERSIZE: {
1080 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
1082 TRACE(dinput,"buffersize = %ld\n",pd->dwData);
1084 This->data_queue = (LPDIDEVICEOBJECTDATA)HeapAlloc(GetProcessHeap(),0,
1085 pd->dwData * sizeof(DIDEVICEOBJECTDATA));
1086 This->queue_pos = 0;
1087 This->queue_len = pd->dwData;
1091 WARN(dinput,"Unknown type %ld\n",(DWORD)rguid);
1100 static ICOM_VTABLE(IDirectInputDevice2A) SysKeyboardAvt={
1101 IDirectInputDevice2AImpl_QueryInterface,
1102 IDirectInputDevice2AImpl_AddRef,
1103 IDirectInputDevice2AImpl_Release,
1104 IDirectInputDevice2AImpl_GetCapabilities,
1105 IDirectInputDevice2AImpl_EnumObjects,
1106 IDirectInputDevice2AImpl_GetProperty,
1107 SysKeyboardAImpl_SetProperty,
1108 SysKeyboardAImpl_Acquire,
1109 SysKeyboardAImpl_Unacquire,
1110 SysKeyboardAImpl_GetDeviceState,
1111 SysKeyboardAImpl_GetDeviceData,
1112 IDirectInputDevice2AImpl_SetDataFormat,
1113 IDirectInputDevice2AImpl_SetEventNotification,
1114 IDirectInputDevice2AImpl_SetCooperativeLevel,
1115 IDirectInputDevice2AImpl_GetObjectInfo,
1116 IDirectInputDevice2AImpl_GetDeviceInfo,
1117 IDirectInputDevice2AImpl_RunControlPanel,
1118 IDirectInputDevice2AImpl_Initialize,
1119 IDirectInputDevice2AImpl_CreateEffect,
1120 IDirectInputDevice2AImpl_EnumEffects,
1121 IDirectInputDevice2AImpl_GetEffectInfo,
1122 IDirectInputDevice2AImpl_GetForceFeedbackState,
1123 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
1124 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
1125 IDirectInputDevice2AImpl_Escape,
1126 IDirectInputDevice2AImpl_Poll,
1127 IDirectInputDevice2AImpl_SendDeviceData,
1130 static ICOM_VTABLE(IDirectInputDevice2A) SysMouseAvt={
1131 IDirectInputDevice2AImpl_QueryInterface,
1132 IDirectInputDevice2AImpl_AddRef,
1133 SysMouseAImpl_Release,
1134 IDirectInputDevice2AImpl_GetCapabilities,
1135 IDirectInputDevice2AImpl_EnumObjects,
1136 IDirectInputDevice2AImpl_GetProperty,
1137 SysMouseAImpl_SetProperty,
1138 SysMouseAImpl_Acquire,
1139 SysMouseAImpl_Unacquire,
1140 SysMouseAImpl_GetDeviceState,
1141 SysMouseAImpl_GetDeviceData,
1142 SysMouseAImpl_SetDataFormat,
1143 IDirectInputDevice2AImpl_SetEventNotification,
1144 SysMouseAImpl_SetCooperativeLevel,
1145 IDirectInputDevice2AImpl_GetObjectInfo,
1146 IDirectInputDevice2AImpl_GetDeviceInfo,
1147 IDirectInputDevice2AImpl_RunControlPanel,
1148 IDirectInputDevice2AImpl_Initialize,
1149 IDirectInputDevice2AImpl_CreateEffect,
1150 IDirectInputDevice2AImpl_EnumEffects,
1151 IDirectInputDevice2AImpl_GetEffectInfo,
1152 IDirectInputDevice2AImpl_GetForceFeedbackState,
1153 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
1154 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
1155 IDirectInputDevice2AImpl_Escape,
1156 IDirectInputDevice2AImpl_Poll,
1157 IDirectInputDevice2AImpl_SendDeviceData,