3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
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
22 /* This file contains all the Device specific functions that can be used as stubs
23 by real device implementations.
25 It also contains all the helper functions.
31 #include "wine/debug.h"
32 #include "wine/unicode.h"
39 #include "device_private.h"
40 #include "dinput_private.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(dinput
);
44 static inline IDirectInputDeviceImpl
*impl_from_IDirectInputDevice8A(IDirectInputDevice8A
*iface
)
46 return CONTAINING_RECORD(iface
, IDirectInputDeviceImpl
, IDirectInputDevice8A_iface
);
48 static inline IDirectInputDeviceImpl
*impl_from_IDirectInputDevice8W(IDirectInputDevice8W
*iface
)
50 return CONTAINING_RECORD(iface
, IDirectInputDeviceImpl
, IDirectInputDevice8W_iface
);
53 static inline IDirectInputDevice8A
*IDirectInputDevice8A_from_impl(IDirectInputDeviceImpl
*This
)
55 return &This
->IDirectInputDevice8A_iface
;
57 static inline IDirectInputDevice8W
*IDirectInputDevice8W_from_impl(IDirectInputDeviceImpl
*This
)
59 return &This
->IDirectInputDevice8W_iface
;
62 /******************************************************************************
63 * Various debugging tools
65 static void _dump_cooperativelevel_DI(DWORD dwFlags
) {
66 if (TRACE_ON(dinput
)) {
72 #define FE(x) { x, #x}
76 FE(DISCL_NONEXCLUSIVE
),
80 TRACE(" cooperative level : ");
81 for (i
= 0; i
< (sizeof(flags
) / sizeof(flags
[0])); i
++)
82 if (flags
[i
].mask
& dwFlags
)
83 TRACE("%s ",flags
[i
].name
);
88 static void _dump_EnumObjects_flags(DWORD dwFlags
) {
89 if (TRACE_ON(dinput
)) {
96 #define FE(x) { x, #x}
102 FE(DIDFT_COLLECTION
),
104 FE(DIDFT_FFACTUATOR
),
105 FE(DIDFT_FFEFFECTTRIGGER
),
107 FE(DIDFT_VENDORDEFINED
),
112 type
= (dwFlags
& 0xFF0000FF);
113 instance
= ((dwFlags
>> 8) & 0xFFFF);
115 if (type
== DIDFT_ALL
) {
118 for (i
= 0; i
< (sizeof(flags
) / sizeof(flags
[0])); i
++) {
119 if (flags
[i
].mask
& type
) {
120 type
&= ~flags
[i
].mask
;
121 TRACE(" %s",flags
[i
].name
);
125 TRACE(" (unhandled: %08x)", type
);
128 TRACE(" / Instance: ");
129 if (instance
== ((DIDFT_ANYINSTANCE
>> 8) & 0xFFFF)) {
130 TRACE("DIDFT_ANYINSTANCE");
132 TRACE("%3d", instance
);
137 void _dump_DIPROPHEADER(LPCDIPROPHEADER diph
) {
138 if (TRACE_ON(dinput
)) {
139 TRACE(" - dwObj = 0x%08x\n", diph
->dwObj
);
140 TRACE(" - dwHow = %s\n",
141 ((diph
->dwHow
== DIPH_DEVICE
) ? "DIPH_DEVICE" :
142 ((diph
->dwHow
== DIPH_BYOFFSET
) ? "DIPH_BYOFFSET" :
143 ((diph
->dwHow
== DIPH_BYID
)) ? "DIPH_BYID" : "unknown")));
147 void _dump_OBJECTINSTANCEA(const DIDEVICEOBJECTINSTANCEA
*ddoi
) {
148 TRACE(" - enumerating : %s ('%s') - %2d - 0x%08x - %s\n",
149 debugstr_guid(&ddoi
->guidType
), _dump_dinput_GUID(&ddoi
->guidType
), ddoi
->dwOfs
, ddoi
->dwType
, ddoi
->tszName
);
152 void _dump_OBJECTINSTANCEW(const DIDEVICEOBJECTINSTANCEW
*ddoi
) {
153 TRACE(" - enumerating : %s ('%s'), - %2d - 0x%08x - %s\n",
154 debugstr_guid(&ddoi
->guidType
), _dump_dinput_GUID(&ddoi
->guidType
), ddoi
->dwOfs
, ddoi
->dwType
, debugstr_w(ddoi
->tszName
));
157 /* This function is a helper to convert a GUID into any possible DInput GUID out there */
158 const char *_dump_dinput_GUID(const GUID
*guid
) {
160 static const struct {
164 #define FE(x) { &x, #x}
177 FE(GUID_SysKeyboard
),
179 FE(GUID_ConstantForce
),
185 FE(GUID_SawtoothDown
),
195 for (i
= 0; i
< (sizeof(guids
) / sizeof(guids
[0])); i
++) {
196 if (IsEqualGUID(guids
[i
].guid
, guid
)) {
197 return guids
[i
].name
;
200 return debugstr_guid(guid
);
203 void _dump_DIDATAFORMAT(const DIDATAFORMAT
*df
) {
206 TRACE("Dumping DIDATAFORMAT structure:\n");
207 TRACE(" - dwSize: %d\n", df
->dwSize
);
208 if (df
->dwSize
!= sizeof(DIDATAFORMAT
)) {
209 WARN("Non-standard DIDATAFORMAT structure size %d\n", df
->dwSize
);
211 TRACE(" - dwObjsize: %d\n", df
->dwObjSize
);
212 if (df
->dwObjSize
!= sizeof(DIOBJECTDATAFORMAT
)) {
213 WARN("Non-standard DIOBJECTDATAFORMAT structure size %d\n", df
->dwObjSize
);
215 TRACE(" - dwFlags: 0x%08x (", df
->dwFlags
);
216 switch (df
->dwFlags
) {
217 case DIDF_ABSAXIS
: TRACE("DIDF_ABSAXIS"); break;
218 case DIDF_RELAXIS
: TRACE("DIDF_RELAXIS"); break;
219 default: TRACE("unknown"); break;
222 TRACE(" - dwDataSize: %d\n", df
->dwDataSize
);
223 TRACE(" - dwNumObjs: %d\n", df
->dwNumObjs
);
225 for (i
= 0; i
< df
->dwNumObjs
; i
++) {
226 TRACE(" - Object %d:\n", i
);
227 TRACE(" * GUID: %s ('%s')\n", debugstr_guid(df
->rgodf
[i
].pguid
), _dump_dinput_GUID(df
->rgodf
[i
].pguid
));
228 TRACE(" * dwOfs: %d\n", df
->rgodf
[i
].dwOfs
);
229 TRACE(" * dwType: 0x%08x\n", df
->rgodf
[i
].dwType
);
230 TRACE(" "); _dump_EnumObjects_flags(df
->rgodf
[i
].dwType
); TRACE("\n");
231 TRACE(" * dwFlags: 0x%08x\n", df
->rgodf
[i
].dwFlags
);
235 /******************************************************************************
236 * Get the default and the app-specific config keys.
238 BOOL
get_app_key(HKEY
*defkey
, HKEY
*appkey
)
240 char buffer
[MAX_PATH
+16];
245 /* @@ Wine registry key: HKCU\Software\Wine\DirectInput */
246 if (RegOpenKeyA(HKEY_CURRENT_USER
, "Software\\Wine\\DirectInput", defkey
))
249 len
= GetModuleFileNameA(0, buffer
, MAX_PATH
);
250 if (len
&& len
< MAX_PATH
)
254 /* @@ Wine registry key: HKCU\Software\Wine\AppDefaults\app.exe\DirectInput */
255 if (!RegOpenKeyA(HKEY_CURRENT_USER
, "Software\\Wine\\AppDefaults", &tmpkey
))
257 char *p
, *appname
= buffer
;
258 if ((p
= strrchr(appname
, '/'))) appname
= p
+ 1;
259 if ((p
= strrchr(appname
, '\\'))) appname
= p
+ 1;
260 strcat(appname
, "\\DirectInput");
262 if (RegOpenKeyA(tmpkey
, appname
, appkey
)) *appkey
= 0;
267 return *defkey
|| *appkey
;
270 /******************************************************************************
271 * Get a config key from either the app-specific or the default config
273 DWORD
get_config_key( HKEY defkey
, HKEY appkey
, const char *name
,
274 char *buffer
, DWORD size
)
276 if (appkey
&& !RegQueryValueExA( appkey
, name
, 0, NULL
, (LPBYTE
)buffer
, &size
))
279 if (defkey
&& !RegQueryValueExA( defkey
, name
, 0, NULL
, (LPBYTE
)buffer
, &size
))
282 return ERROR_FILE_NOT_FOUND
;
285 /* Conversion between internal data buffer and external data buffer */
286 void fill_DataFormat(void *out
, DWORD size
, const void *in
, const DataFormat
*df
)
289 const char *in_c
= in
;
292 memset(out
, 0, size
);
293 if (df
->dt
== NULL
) {
294 /* This means that the app uses Wine's internal data format */
295 memcpy(out
, in
, min(size
, df
->internal_format_size
));
297 for (i
= 0; i
< df
->size
; i
++) {
298 if (df
->dt
[i
].offset_in
>= 0) {
299 switch (df
->dt
[i
].size
) {
301 TRACE("Copying (c) to %d from %d (value %d)\n",
302 df
->dt
[i
].offset_out
, df
->dt
[i
].offset_in
, *(in_c
+ df
->dt
[i
].offset_in
));
303 *(out_c
+ df
->dt
[i
].offset_out
) = *(in_c
+ df
->dt
[i
].offset_in
);
307 TRACE("Copying (s) to %d from %d (value %d)\n",
308 df
->dt
[i
].offset_out
, df
->dt
[i
].offset_in
, *((const short *)(in_c
+ df
->dt
[i
].offset_in
)));
309 *((short *)(out_c
+ df
->dt
[i
].offset_out
)) = *((const short *)(in_c
+ df
->dt
[i
].offset_in
));
313 TRACE("Copying (i) to %d from %d (value %d)\n",
314 df
->dt
[i
].offset_out
, df
->dt
[i
].offset_in
, *((const int *)(in_c
+ df
->dt
[i
].offset_in
)));
315 *((int *)(out_c
+ df
->dt
[i
].offset_out
)) = *((const int *)(in_c
+ df
->dt
[i
].offset_in
));
319 memcpy((out_c
+ df
->dt
[i
].offset_out
), (in_c
+ df
->dt
[i
].offset_in
), df
->dt
[i
].size
);
323 switch (df
->dt
[i
].size
) {
325 TRACE("Copying (c) to %d default value %d\n",
326 df
->dt
[i
].offset_out
, df
->dt
[i
].value
);
327 *(out_c
+ df
->dt
[i
].offset_out
) = (char) df
->dt
[i
].value
;
331 TRACE("Copying (s) to %d default value %d\n",
332 df
->dt
[i
].offset_out
, df
->dt
[i
].value
);
333 *((short *) (out_c
+ df
->dt
[i
].offset_out
)) = (short) df
->dt
[i
].value
;
337 TRACE("Copying (i) to %d default value %d\n",
338 df
->dt
[i
].offset_out
, df
->dt
[i
].value
);
339 *((int *) (out_c
+ df
->dt
[i
].offset_out
)) = df
->dt
[i
].value
;
343 memset((out_c
+ df
->dt
[i
].offset_out
), 0, df
->dt
[i
].size
);
351 void release_DataFormat(DataFormat
* format
)
353 TRACE("Deleting DataFormat: %p\n", format
);
355 HeapFree(GetProcessHeap(), 0, format
->dt
);
357 HeapFree(GetProcessHeap(), 0, format
->offsets
);
358 format
->offsets
= NULL
;
359 HeapFree(GetProcessHeap(), 0, format
->user_df
);
360 format
->user_df
= NULL
;
363 static inline LPDIOBJECTDATAFORMAT
dataformat_to_odf(LPCDIDATAFORMAT df
, int idx
)
365 if (idx
< 0 || idx
>= df
->dwNumObjs
) return NULL
;
366 return (LPDIOBJECTDATAFORMAT
)((LPBYTE
)df
->rgodf
+ idx
* df
->dwObjSize
);
369 /* dataformat_to_odf_by_type
370 * Find the Nth object of the selected type in the DataFormat
372 LPDIOBJECTDATAFORMAT
dataformat_to_odf_by_type(LPCDIDATAFORMAT df
, int n
, DWORD type
)
376 for (i
=0; i
< df
->dwNumObjs
; i
++)
378 LPDIOBJECTDATAFORMAT odf
= dataformat_to_odf(df
, i
);
380 if (odf
->dwType
& type
)
392 static HRESULT
create_DataFormat(LPCDIDATAFORMAT asked_format
, DataFormat
*format
)
401 if (!format
->wine_df
) return DIERR_INVALIDPARAM
;
402 done
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, asked_format
->dwNumObjs
* sizeof(int));
403 dt
= HeapAlloc(GetProcessHeap(), 0, asked_format
->dwNumObjs
* sizeof(DataTransform
));
404 if (!dt
|| !done
) goto failed
;
406 if (!(format
->offsets
= HeapAlloc(GetProcessHeap(), 0, format
->wine_df
->dwNumObjs
* sizeof(int))))
409 if (!(format
->user_df
= HeapAlloc(GetProcessHeap(), 0, asked_format
->dwSize
)))
411 memcpy(format
->user_df
, asked_format
, asked_format
->dwSize
);
413 TRACE("Creating DataTransform :\n");
415 for (i
= 0; i
< format
->wine_df
->dwNumObjs
; i
++)
417 format
->offsets
[i
] = -1;
419 for (j
= 0; j
< asked_format
->dwNumObjs
; j
++) {
423 if (/* Check if the application either requests any GUID and if not, it if matches
424 * the GUID of the Wine object.
426 ((asked_format
->rgodf
[j
].pguid
== NULL
) ||
427 (format
->wine_df
->rgodf
[i
].pguid
== NULL
) ||
428 (IsEqualGUID(format
->wine_df
->rgodf
[i
].pguid
, asked_format
->rgodf
[j
].pguid
)))
430 (/* Then check if it accepts any instance id, and if not, if it matches Wine's
433 ((asked_format
->rgodf
[j
].dwType
& DIDFT_INSTANCEMASK
) == DIDFT_ANYINSTANCE
) ||
434 (DIDFT_GETINSTANCE(asked_format
->rgodf
[j
].dwType
) == 0x00FF) || /* This is mentionned in no DX docs, but it works fine - tested on WinXP */
435 (DIDFT_GETINSTANCE(asked_format
->rgodf
[j
].dwType
) == DIDFT_GETINSTANCE(format
->wine_df
->rgodf
[i
].dwType
)))
437 ( /* Then if the asked type matches the one Wine provides */
438 DIDFT_GETTYPE(asked_format
->rgodf
[j
].dwType
) & format
->wine_df
->rgodf
[i
].dwType
))
442 TRACE("Matching :\n");
443 TRACE(" - Asked (%d) :\n", j
);
444 TRACE(" * GUID: %s ('%s')\n",
445 debugstr_guid(asked_format
->rgodf
[j
].pguid
),
446 _dump_dinput_GUID(asked_format
->rgodf
[j
].pguid
));
447 TRACE(" * Offset: %3d\n", asked_format
->rgodf
[j
].dwOfs
);
448 TRACE(" * dwType: %08x\n", asked_format
->rgodf
[j
].dwType
);
449 TRACE(" "); _dump_EnumObjects_flags(asked_format
->rgodf
[j
].dwType
); TRACE("\n");
451 TRACE(" - Wine (%d) :\n", i
);
452 TRACE(" * GUID: %s ('%s')\n",
453 debugstr_guid(format
->wine_df
->rgodf
[i
].pguid
),
454 _dump_dinput_GUID(format
->wine_df
->rgodf
[i
].pguid
));
455 TRACE(" * Offset: %3d\n", format
->wine_df
->rgodf
[i
].dwOfs
);
456 TRACE(" * dwType: %08x\n", format
->wine_df
->rgodf
[i
].dwType
);
457 TRACE(" "); _dump_EnumObjects_flags(format
->wine_df
->rgodf
[i
].dwType
); TRACE("\n");
459 if (format
->wine_df
->rgodf
[i
].dwType
& DIDFT_BUTTON
)
460 dt
[index
].size
= sizeof(BYTE
);
462 dt
[index
].size
= sizeof(DWORD
);
463 dt
[index
].offset_in
= format
->wine_df
->rgodf
[i
].dwOfs
;
464 dt
[index
].offset_out
= asked_format
->rgodf
[j
].dwOfs
;
465 format
->offsets
[i
] = asked_format
->rgodf
[j
].dwOfs
;
467 next
= next
+ dt
[index
].size
;
469 if (format
->wine_df
->rgodf
[i
].dwOfs
!= dt
[index
].offset_out
)
478 TRACE("Setting to default value :\n");
479 for (j
= 0; j
< asked_format
->dwNumObjs
; j
++) {
481 TRACE(" - Asked (%d) :\n", j
);
482 TRACE(" * GUID: %s ('%s')\n",
483 debugstr_guid(asked_format
->rgodf
[j
].pguid
),
484 _dump_dinput_GUID(asked_format
->rgodf
[j
].pguid
));
485 TRACE(" * Offset: %3d\n", asked_format
->rgodf
[j
].dwOfs
);
486 TRACE(" * dwType: %08x\n", asked_format
->rgodf
[j
].dwType
);
487 TRACE(" "); _dump_EnumObjects_flags(asked_format
->rgodf
[j
].dwType
); TRACE("\n");
489 if (asked_format
->rgodf
[j
].dwType
& DIDFT_BUTTON
)
490 dt
[index
].size
= sizeof(BYTE
);
492 dt
[index
].size
= sizeof(DWORD
);
493 dt
[index
].offset_in
= -1;
494 dt
[index
].offset_out
= asked_format
->rgodf
[j
].dwOfs
;
495 if (asked_format
->rgodf
[j
].dwType
& DIDFT_POV
)
496 dt
[index
].value
= -1;
505 format
->internal_format_size
= format
->wine_df
->dwDataSize
;
506 format
->size
= index
;
508 HeapFree(GetProcessHeap(), 0, dt
);
513 HeapFree(GetProcessHeap(), 0, done
);
518 HeapFree(GetProcessHeap(), 0, done
);
519 HeapFree(GetProcessHeap(), 0, dt
);
521 HeapFree(GetProcessHeap(), 0, format
->offsets
);
522 format
->offsets
= NULL
;
523 HeapFree(GetProcessHeap(), 0, format
->user_df
);
524 format
->user_df
= NULL
;
526 return DIERR_OUTOFMEMORY
;
529 /* find an object by it's offset in a data format */
530 static int offset_to_object(const DataFormat
*df
, int offset
)
534 if (!df
->offsets
) return -1;
536 for (i
= 0; i
< df
->wine_df
->dwNumObjs
; i
++)
537 if (df
->offsets
[i
] == offset
) return i
;
542 int id_to_object(LPCDIDATAFORMAT df
, int id
)
547 for (i
= 0; i
< df
->dwNumObjs
; i
++)
548 if ((dataformat_to_odf(df
, i
)->dwType
& 0x00ffffff) == id
)
554 static int id_to_offset(const DataFormat
*df
, int id
)
556 int obj
= id_to_object(df
->wine_df
, id
);
558 return obj
>= 0 && df
->offsets
? df
->offsets
[obj
] : -1;
561 int find_property(const DataFormat
*df
, LPCDIPROPHEADER ph
)
565 case DIPH_BYID
: return id_to_object(df
->wine_df
, ph
->dwObj
);
566 case DIPH_BYOFFSET
: return offset_to_object(df
, ph
->dwObj
);
568 FIXME("Unhandled ph->dwHow=='%04X'\n", (unsigned int)ph
->dwHow
);
573 DWORD
semantic_to_obj_id(IDirectInputDeviceImpl
* This
, DWORD dwSemantic
)
575 DWORD type
= (0x0000ff00 & dwSemantic
) >> 8;
576 DWORD offset
= 0x000000ff & dwSemantic
;
577 DWORD obj_instance
= 0;
581 for (i
= 0; i
< This
->data_format
.wine_df
->dwNumObjs
; i
++)
583 LPDIOBJECTDATAFORMAT odf
= dataformat_to_odf(This
->data_format
.wine_df
, i
);
585 if (odf
->dwOfs
== offset
)
587 obj_instance
= DIDFT_GETINSTANCE(odf
->dwType
);
593 if (!found
) return 0;
595 if (type
& DIDFT_AXIS
) type
= DIDFT_RELAXIS
;
596 if (type
& DIDFT_BUTTON
) type
= DIDFT_PSHBUTTON
;
598 return type
| (0x0000ff00 & (obj_instance
<< 8));
601 /******************************************************************************
602 * queue_event - add new event to the ring queue
605 void queue_event(LPDIRECTINPUTDEVICE8A iface
, int inst_id
, DWORD data
, DWORD time
, DWORD seq
)
607 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
608 int next_pos
, ofs
= id_to_offset(&This
->data_format
, inst_id
);
610 /* Event is being set regardless of the queue state */
611 if (This
->hEvent
) SetEvent(This
->hEvent
);
613 if (!This
->queue_len
|| This
->overflow
|| ofs
< 0) return;
615 next_pos
= (This
->queue_head
+ 1) % This
->queue_len
;
616 if (next_pos
== This
->queue_tail
)
618 TRACE(" queue overflowed\n");
619 This
->overflow
= TRUE
;
623 TRACE(" queueing %d at offset %d (queue head %d / size %d)\n",
624 data
, ofs
, This
->queue_head
, This
->queue_len
);
626 This
->data_queue
[This
->queue_head
].dwOfs
= ofs
;
627 This
->data_queue
[This
->queue_head
].dwData
= data
;
628 This
->data_queue
[This
->queue_head
].dwTimeStamp
= time
;
629 This
->data_queue
[This
->queue_head
].dwSequence
= seq
;
631 /* Set uAppData by means of action mapping */
632 if (This
->num_actions
> 0)
635 for (i
=0; i
< This
->num_actions
; i
++)
637 if (This
->action_map
[i
].offset
== ofs
)
639 TRACE("Offset %d mapped to uAppData %lu\n", ofs
, This
->action_map
[i
].uAppData
);
640 This
->data_queue
[This
->queue_head
].uAppData
= This
->action_map
[i
].uAppData
;
646 This
->queue_head
= next_pos
;
647 /* Send event if asked */
650 /******************************************************************************
654 HRESULT WINAPI
IDirectInputDevice2WImpl_Acquire(LPDIRECTINPUTDEVICE8W iface
)
656 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
659 if (!This
->data_format
.user_df
) return DIERR_INVALIDPARAM
;
660 if (This
->dwCoopLevel
& DISCL_FOREGROUND
&& This
->win
!= GetForegroundWindow())
661 return DIERR_OTHERAPPHASPRIO
;
663 EnterCriticalSection(&This
->crit
);
664 res
= This
->acquired
? S_FALSE
: DI_OK
;
668 This
->queue_head
= This
->queue_tail
= This
->overflow
= 0;
669 check_dinput_hooks(iface
);
671 LeaveCriticalSection(&This
->crit
);
676 HRESULT WINAPI
IDirectInputDevice2AImpl_Acquire(LPDIRECTINPUTDEVICE8A iface
)
678 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
679 return IDirectInputDevice2WImpl_Acquire(IDirectInputDevice8W_from_impl(This
));
683 /******************************************************************************
687 HRESULT WINAPI
IDirectInputDevice2WImpl_Unacquire(LPDIRECTINPUTDEVICE8W iface
)
689 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
692 EnterCriticalSection(&This
->crit
);
693 res
= !This
->acquired
? DI_NOEFFECT
: DI_OK
;
696 check_dinput_hooks(iface
);
697 LeaveCriticalSection(&This
->crit
);
702 HRESULT WINAPI
IDirectInputDevice2AImpl_Unacquire(LPDIRECTINPUTDEVICE8A iface
)
704 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
705 return IDirectInputDevice2WImpl_Unacquire(IDirectInputDevice8W_from_impl(This
));
708 /******************************************************************************
709 * IDirectInputDeviceA
712 HRESULT WINAPI
IDirectInputDevice2WImpl_SetDataFormat(LPDIRECTINPUTDEVICE8W iface
, LPCDIDATAFORMAT df
)
714 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
717 if (!df
) return E_POINTER
;
718 TRACE("(%p) %p\n", This
, df
);
719 _dump_DIDATAFORMAT(df
);
721 if (df
->dwSize
!= sizeof(DIDATAFORMAT
)) return DIERR_INVALIDPARAM
;
722 if (This
->acquired
) return DIERR_ACQUIRED
;
724 EnterCriticalSection(&This
->crit
);
726 release_DataFormat(&This
->data_format
);
727 res
= create_DataFormat(df
, &This
->data_format
);
729 LeaveCriticalSection(&This
->crit
);
733 HRESULT WINAPI
IDirectInputDevice2AImpl_SetDataFormat(LPDIRECTINPUTDEVICE8A iface
, LPCDIDATAFORMAT df
)
735 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
736 return IDirectInputDevice2WImpl_SetDataFormat(IDirectInputDevice8W_from_impl(This
), df
);
739 /******************************************************************************
740 * SetCooperativeLevel
742 * Set cooperative level and the source window for the events.
744 HRESULT WINAPI
IDirectInputDevice2WImpl_SetCooperativeLevel(LPDIRECTINPUTDEVICE8W iface
, HWND hwnd
, DWORD dwflags
)
746 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
748 TRACE("(%p) %p,0x%08x\n", This
, hwnd
, dwflags
);
749 _dump_cooperativelevel_DI(dwflags
);
751 if ((dwflags
& (DISCL_EXCLUSIVE
| DISCL_NONEXCLUSIVE
)) == 0 ||
752 (dwflags
& (DISCL_EXCLUSIVE
| DISCL_NONEXCLUSIVE
)) == (DISCL_EXCLUSIVE
| DISCL_NONEXCLUSIVE
) ||
753 (dwflags
& (DISCL_FOREGROUND
| DISCL_BACKGROUND
)) == 0 ||
754 (dwflags
& (DISCL_FOREGROUND
| DISCL_BACKGROUND
)) == (DISCL_FOREGROUND
| DISCL_BACKGROUND
))
755 return DIERR_INVALIDPARAM
;
757 if (dwflags
== (DISCL_NONEXCLUSIVE
| DISCL_BACKGROUND
))
758 hwnd
= GetDesktopWindow();
760 if (!hwnd
) return E_HANDLE
;
762 /* For security reasons native does not allow exclusive background level
763 for mouse and keyboard only */
764 if (dwflags
& DISCL_EXCLUSIVE
&& dwflags
& DISCL_BACKGROUND
&&
765 (IsEqualGUID(&This
->guid
, &GUID_SysMouse
) ||
766 IsEqualGUID(&This
->guid
, &GUID_SysKeyboard
)))
767 return DIERR_UNSUPPORTED
;
769 /* Store the window which asks for the mouse */
770 EnterCriticalSection(&This
->crit
);
772 This
->dwCoopLevel
= dwflags
;
773 LeaveCriticalSection(&This
->crit
);
778 HRESULT WINAPI
IDirectInputDevice2AImpl_SetCooperativeLevel(LPDIRECTINPUTDEVICE8A iface
, HWND hwnd
, DWORD dwflags
)
780 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
781 return IDirectInputDevice2WImpl_SetCooperativeLevel(IDirectInputDevice8W_from_impl(This
), hwnd
, dwflags
);
784 /******************************************************************************
785 * SetEventNotification : specifies event to be sent on state change
787 HRESULT WINAPI
IDirectInputDevice2WImpl_SetEventNotification(LPDIRECTINPUTDEVICE8W iface
, HANDLE event
)
789 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
791 TRACE("(%p) %p\n", This
, event
);
793 EnterCriticalSection(&This
->crit
);
794 This
->hEvent
= event
;
795 LeaveCriticalSection(&This
->crit
);
799 HRESULT WINAPI
IDirectInputDevice2AImpl_SetEventNotification(LPDIRECTINPUTDEVICE8A iface
, HANDLE event
)
801 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
802 return IDirectInputDevice2WImpl_SetEventNotification(IDirectInputDevice8W_from_impl(This
), event
);
806 ULONG WINAPI
IDirectInputDevice2WImpl_Release(LPDIRECTINPUTDEVICE8W iface
)
808 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
811 ref
= InterlockedDecrement(&(This
->ref
));
814 IDirectInputDevice_Unacquire(iface
);
815 /* Reset the FF state, free all effects, etc */
816 IDirectInputDevice8_SendForceFeedbackCommand(iface
, DISFFC_RESET
);
818 HeapFree(GetProcessHeap(), 0, This
->data_queue
);
820 /* Free data format */
821 HeapFree(GetProcessHeap(), 0, This
->data_format
.wine_df
->rgodf
);
822 HeapFree(GetProcessHeap(), 0, This
->data_format
.wine_df
);
823 release_DataFormat(&This
->data_format
);
825 /* Free action mapping */
826 HeapFree(GetProcessHeap(), 0, This
->action_map
);
828 EnterCriticalSection( &This
->dinput
->crit
);
829 list_remove( &This
->entry
);
830 LeaveCriticalSection( &This
->dinput
->crit
);
832 IDirectInput_Release(&This
->dinput
->IDirectInput7A_iface
);
833 This
->crit
.DebugInfo
->Spare
[0] = 0;
834 DeleteCriticalSection(&This
->crit
);
836 HeapFree(GetProcessHeap(), 0, This
);
841 ULONG WINAPI
IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface
)
843 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
844 return IDirectInputDevice2WImpl_Release(IDirectInputDevice8W_from_impl(This
));
847 HRESULT WINAPI
IDirectInputDevice2WImpl_QueryInterface(LPDIRECTINPUTDEVICE8W iface
, REFIID riid
, LPVOID
*ppobj
)
849 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
851 TRACE("(%p this=%p,%s,%p)\n", iface
, This
, debugstr_guid(riid
), ppobj
);
852 if (IsEqualGUID(&IID_IUnknown
, riid
) ||
853 IsEqualGUID(&IID_IDirectInputDeviceA
, riid
) ||
854 IsEqualGUID(&IID_IDirectInputDevice2A
, riid
) ||
855 IsEqualGUID(&IID_IDirectInputDevice7A
, riid
) ||
856 IsEqualGUID(&IID_IDirectInputDevice8A
, riid
))
858 IDirectInputDevice2_AddRef(iface
);
859 *ppobj
= IDirectInputDevice8A_from_impl(This
);
862 if (IsEqualGUID(&IID_IDirectInputDeviceW
, riid
) ||
863 IsEqualGUID(&IID_IDirectInputDevice2W
, riid
) ||
864 IsEqualGUID(&IID_IDirectInputDevice7W
, riid
) ||
865 IsEqualGUID(&IID_IDirectInputDevice8W
, riid
))
867 IDirectInputDevice2_AddRef(iface
);
868 *ppobj
= IDirectInputDevice8W_from_impl(This
);
872 WARN("Unsupported interface!\n");
876 HRESULT WINAPI
IDirectInputDevice2AImpl_QueryInterface(LPDIRECTINPUTDEVICE8A iface
, REFIID riid
, LPVOID
*ppobj
)
878 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
879 return IDirectInputDevice2WImpl_QueryInterface(IDirectInputDevice8W_from_impl(This
), riid
, ppobj
);
882 ULONG WINAPI
IDirectInputDevice2WImpl_AddRef(LPDIRECTINPUTDEVICE8W iface
)
884 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
885 return InterlockedIncrement(&This
->ref
);
888 ULONG WINAPI
IDirectInputDevice2AImpl_AddRef(LPDIRECTINPUTDEVICE8A iface
)
890 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
891 return IDirectInputDevice2WImpl_AddRef(IDirectInputDevice8W_from_impl(This
));
894 HRESULT WINAPI
IDirectInputDevice2AImpl_EnumObjects(LPDIRECTINPUTDEVICE8A iface
,
895 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback
, LPVOID lpvRef
, DWORD dwFlags
)
897 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
898 DIDEVICEOBJECTINSTANCEA ddoi
;
901 TRACE("(%p) %p,%p flags:%08x)\n", iface
, lpCallback
, lpvRef
, dwFlags
);
902 TRACE(" - flags = ");
903 _dump_EnumObjects_flags(dwFlags
);
906 /* Only the fields till dwFFMaxForce are relevant */
907 memset(&ddoi
, 0, sizeof(ddoi
));
908 ddoi
.dwSize
= FIELD_OFFSET(DIDEVICEOBJECTINSTANCEA
, dwFFMaxForce
);
910 for (i
= 0; i
< This
->data_format
.wine_df
->dwNumObjs
; i
++)
912 LPDIOBJECTDATAFORMAT odf
= dataformat_to_odf(This
->data_format
.wine_df
, i
);
914 if (dwFlags
!= DIDFT_ALL
&& !(dwFlags
& DIDFT_GETTYPE(odf
->dwType
))) continue;
915 if (IDirectInputDevice_GetObjectInfo(iface
, &ddoi
, odf
->dwType
, DIPH_BYID
) != DI_OK
)
918 if (lpCallback(&ddoi
, lpvRef
) != DIENUM_CONTINUE
) break;
924 HRESULT WINAPI
IDirectInputDevice2WImpl_EnumObjects(LPDIRECTINPUTDEVICE8W iface
,
925 LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback
, LPVOID lpvRef
, DWORD dwFlags
)
927 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
928 DIDEVICEOBJECTINSTANCEW ddoi
;
931 TRACE("(%p) %p,%p flags:%08x)\n", iface
, lpCallback
, lpvRef
, dwFlags
);
932 TRACE(" - flags = ");
933 _dump_EnumObjects_flags(dwFlags
);
936 /* Only the fields till dwFFMaxForce are relevant */
937 memset(&ddoi
, 0, sizeof(ddoi
));
938 ddoi
.dwSize
= FIELD_OFFSET(DIDEVICEOBJECTINSTANCEW
, dwFFMaxForce
);
940 for (i
= 0; i
< This
->data_format
.wine_df
->dwNumObjs
; i
++)
942 LPDIOBJECTDATAFORMAT odf
= dataformat_to_odf(This
->data_format
.wine_df
, i
);
944 if (dwFlags
!= DIDFT_ALL
&& !(dwFlags
& DIDFT_GETTYPE(odf
->dwType
))) continue;
945 if (IDirectInputDevice_GetObjectInfo(iface
, &ddoi
, odf
->dwType
, DIPH_BYID
) != DI_OK
)
948 if (lpCallback(&ddoi
, lpvRef
) != DIENUM_CONTINUE
) break;
954 /******************************************************************************
958 HRESULT WINAPI
IDirectInputDevice2WImpl_GetProperty(LPDIRECTINPUTDEVICE8W iface
, REFGUID rguid
, LPDIPROPHEADER pdiph
)
960 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
962 TRACE("(%p) %s,%p\n", iface
, debugstr_guid(rguid
), pdiph
);
963 _dump_DIPROPHEADER(pdiph
);
965 if (!IS_DIPROP(rguid
)) return DI_OK
;
967 switch (LOWORD(rguid
))
969 case (DWORD_PTR
) DIPROP_BUFFERSIZE
:
971 LPDIPROPDWORD pd
= (LPDIPROPDWORD
)pdiph
;
973 if (pdiph
->dwSize
!= sizeof(DIPROPDWORD
)) return DIERR_INVALIDPARAM
;
975 pd
->dwData
= This
->queue_len
;
976 TRACE("buffersize = %d\n", pd
->dwData
);
979 case (DWORD_PTR
) DIPROP_VIDPID
:
980 FIXME("DIPROP_VIDPID not implemented\n");
981 return DIERR_UNSUPPORTED
;
983 FIXME("Unknown property %s\n", debugstr_guid(rguid
));
984 return DIERR_INVALIDPARAM
;
990 HRESULT WINAPI
IDirectInputDevice2AImpl_GetProperty(LPDIRECTINPUTDEVICE8A iface
, REFGUID rguid
, LPDIPROPHEADER pdiph
)
992 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
993 return IDirectInputDevice2WImpl_GetProperty(IDirectInputDevice8W_from_impl(This
), rguid
, pdiph
);
996 /******************************************************************************
1000 HRESULT WINAPI
IDirectInputDevice2WImpl_SetProperty(
1001 LPDIRECTINPUTDEVICE8W iface
, REFGUID rguid
, LPCDIPROPHEADER pdiph
)
1003 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
1005 TRACE("(%p) %s,%p\n", iface
, debugstr_guid(rguid
), pdiph
);
1006 _dump_DIPROPHEADER(pdiph
);
1008 if (!IS_DIPROP(rguid
)) return DI_OK
;
1010 switch (LOWORD(rguid
))
1012 case (DWORD_PTR
) DIPROP_AXISMODE
:
1014 LPCDIPROPDWORD pd
= (LPCDIPROPDWORD
)pdiph
;
1016 if (pdiph
->dwSize
!= sizeof(DIPROPDWORD
)) return DIERR_INVALIDPARAM
;
1017 if (pdiph
->dwHow
== DIPH_DEVICE
&& pdiph
->dwObj
) return DIERR_INVALIDPARAM
;
1018 if (This
->acquired
) return DIERR_ACQUIRED
;
1019 if (pdiph
->dwHow
!= DIPH_DEVICE
) return DIERR_UNSUPPORTED
;
1020 if (!This
->data_format
.user_df
) return DI_OK
;
1022 TRACE("Axis mode: %s\n", pd
->dwData
== DIPROPAXISMODE_ABS
? "absolute" :
1025 EnterCriticalSection(&This
->crit
);
1026 This
->data_format
.user_df
->dwFlags
&= ~DIDFT_AXIS
;
1027 This
->data_format
.user_df
->dwFlags
|= pd
->dwData
== DIPROPAXISMODE_ABS
?
1028 DIDF_ABSAXIS
: DIDF_RELAXIS
;
1029 LeaveCriticalSection(&This
->crit
);
1032 case (DWORD_PTR
) DIPROP_BUFFERSIZE
:
1034 LPCDIPROPDWORD pd
= (LPCDIPROPDWORD
)pdiph
;
1036 if (pdiph
->dwSize
!= sizeof(DIPROPDWORD
)) return DIERR_INVALIDPARAM
;
1037 if (This
->acquired
) return DIERR_ACQUIRED
;
1039 TRACE("buffersize = %d\n", pd
->dwData
);
1041 EnterCriticalSection(&This
->crit
);
1042 HeapFree(GetProcessHeap(), 0, This
->data_queue
);
1044 This
->data_queue
= !pd
->dwData
? NULL
: HeapAlloc(GetProcessHeap(), 0,
1045 pd
->dwData
* sizeof(DIDEVICEOBJECTDATA
));
1046 This
->queue_head
= This
->queue_tail
= This
->overflow
= 0;
1047 This
->queue_len
= pd
->dwData
;
1049 LeaveCriticalSection(&This
->crit
);
1053 WARN("Unknown property %s\n", debugstr_guid(rguid
));
1054 return DIERR_UNSUPPORTED
;
1060 HRESULT WINAPI
IDirectInputDevice2AImpl_SetProperty(
1061 LPDIRECTINPUTDEVICE8A iface
, REFGUID rguid
, LPCDIPROPHEADER pdiph
)
1063 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1064 return IDirectInputDevice2WImpl_SetProperty(IDirectInputDevice8W_from_impl(This
), rguid
, pdiph
);
1067 HRESULT WINAPI
IDirectInputDevice2AImpl_GetObjectInfo(
1068 LPDIRECTINPUTDEVICE8A iface
,
1069 LPDIDEVICEOBJECTINSTANCEA pdidoi
,
1073 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1074 DIDEVICEOBJECTINSTANCEW didoiW
;
1078 (pdidoi
->dwSize
!= sizeof(DIDEVICEOBJECTINSTANCEA
) &&
1079 pdidoi
->dwSize
!= sizeof(DIDEVICEOBJECTINSTANCE_DX3A
)))
1080 return DIERR_INVALIDPARAM
;
1082 didoiW
.dwSize
= sizeof(didoiW
);
1083 res
= IDirectInputDevice2WImpl_GetObjectInfo(IDirectInputDevice8W_from_impl(This
), &didoiW
, dwObj
, dwHow
);
1086 DWORD dwSize
= pdidoi
->dwSize
;
1088 memset(pdidoi
, 0, pdidoi
->dwSize
);
1089 pdidoi
->dwSize
= dwSize
;
1090 pdidoi
->guidType
= didoiW
.guidType
;
1091 pdidoi
->dwOfs
= didoiW
.dwOfs
;
1092 pdidoi
->dwType
= didoiW
.dwType
;
1093 pdidoi
->dwFlags
= didoiW
.dwFlags
;
1099 HRESULT WINAPI
IDirectInputDevice2WImpl_GetObjectInfo(
1100 LPDIRECTINPUTDEVICE8W iface
,
1101 LPDIDEVICEOBJECTINSTANCEW pdidoi
,
1105 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
1107 LPDIOBJECTDATAFORMAT odf
;
1110 TRACE("(%p) %d(0x%08x) -> %p\n", This
, dwHow
, dwObj
, pdidoi
);
1113 (pdidoi
->dwSize
!= sizeof(DIDEVICEOBJECTINSTANCEW
) &&
1114 pdidoi
->dwSize
!= sizeof(DIDEVICEOBJECTINSTANCE_DX3W
)))
1115 return DIERR_INVALIDPARAM
;
1120 if (!This
->data_format
.offsets
) break;
1121 for (idx
= This
->data_format
.wine_df
->dwNumObjs
- 1; idx
>= 0; idx
--)
1122 if (This
->data_format
.offsets
[idx
] == dwObj
) break;
1125 dwObj
&= 0x00ffffff;
1126 for (idx
= This
->data_format
.wine_df
->dwNumObjs
- 1; idx
>= 0; idx
--)
1127 if ((dataformat_to_odf(This
->data_format
.wine_df
, idx
)->dwType
& 0x00ffffff) == dwObj
)
1132 FIXME("dwHow = DIPH_BYUSAGE not implemented\n");
1135 WARN("invalid parameter: dwHow = %08x\n", dwHow
);
1136 return DIERR_INVALIDPARAM
;
1138 if (idx
< 0) return DIERR_OBJECTNOTFOUND
;
1140 odf
= dataformat_to_odf(This
->data_format
.wine_df
, idx
);
1141 dwSize
= pdidoi
->dwSize
; /* save due to memset below */
1142 memset(pdidoi
, 0, pdidoi
->dwSize
);
1143 pdidoi
->dwSize
= dwSize
;
1144 if (odf
->pguid
) pdidoi
->guidType
= *odf
->pguid
;
1145 pdidoi
->dwOfs
= This
->data_format
.offsets
? This
->data_format
.offsets
[idx
] : odf
->dwOfs
;
1146 pdidoi
->dwType
= odf
->dwType
;
1147 pdidoi
->dwFlags
= odf
->dwFlags
;
1152 HRESULT WINAPI
IDirectInputDevice2WImpl_GetDeviceData(LPDIRECTINPUTDEVICE8W iface
, DWORD dodsize
,
1153 LPDIDEVICEOBJECTDATA dod
, LPDWORD entries
, DWORD flags
)
1155 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
1156 HRESULT ret
= DI_OK
;
1159 TRACE("(%p) %p -> %p(%d) x%d, 0x%08x\n",
1160 This
, dod
, entries
, entries
? *entries
: 0, dodsize
, flags
);
1162 if (!This
->acquired
)
1163 return DIERR_NOTACQUIRED
;
1164 if (!This
->queue_len
)
1165 return DIERR_NOTBUFFERED
;
1166 if (dodsize
< sizeof(DIDEVICEOBJECTDATA_DX3
))
1167 return DIERR_INVALIDPARAM
;
1169 IDirectInputDevice2_Poll(iface
);
1170 EnterCriticalSection(&This
->crit
);
1172 len
= This
->queue_head
- This
->queue_tail
;
1173 if (len
< 0) len
+= This
->queue_len
;
1175 if ((*entries
!= INFINITE
) && (len
> *entries
)) len
= *entries
;
1180 for (i
= 0; i
< len
; i
++)
1182 int n
= (This
->queue_tail
+ i
) % This
->queue_len
;
1183 memcpy((char *)dod
+ dodsize
* i
, This
->data_queue
+ n
, dodsize
);
1189 ret
= DI_BUFFEROVERFLOW
;
1191 if (!(flags
& DIGDD_PEEK
))
1193 /* Advance reading position */
1194 This
->queue_tail
= (This
->queue_tail
+ len
) % This
->queue_len
;
1195 This
->overflow
= FALSE
;
1198 LeaveCriticalSection(&This
->crit
);
1200 TRACE("Returning %d events queued\n", *entries
);
1204 HRESULT WINAPI
IDirectInputDevice2AImpl_GetDeviceData(LPDIRECTINPUTDEVICE8A iface
, DWORD dodsize
,
1205 LPDIDEVICEOBJECTDATA dod
, LPDWORD entries
, DWORD flags
)
1207 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1208 return IDirectInputDevice2WImpl_GetDeviceData(IDirectInputDevice8W_from_impl(This
), dodsize
, dod
, entries
, flags
);
1211 HRESULT WINAPI
IDirectInputDevice2WImpl_RunControlPanel(LPDIRECTINPUTDEVICE8W iface
, HWND hwndOwner
, DWORD dwFlags
)
1213 FIXME("(this=%p,%p,0x%08x): stub!\n", iface
, hwndOwner
, dwFlags
);
1218 HRESULT WINAPI
IDirectInputDevice2AImpl_RunControlPanel(LPDIRECTINPUTDEVICE8A iface
, HWND hwndOwner
, DWORD dwFlags
)
1220 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1221 return IDirectInputDevice2WImpl_RunControlPanel(IDirectInputDevice8W_from_impl(This
), hwndOwner
, dwFlags
);
1224 HRESULT WINAPI
IDirectInputDevice2WImpl_Initialize(LPDIRECTINPUTDEVICE8W iface
, HINSTANCE hinst
, DWORD dwVersion
,
1227 FIXME("(this=%p,%p,%d,%s): stub!\n", iface
, hinst
, dwVersion
, debugstr_guid(rguid
));
1231 HRESULT WINAPI
IDirectInputDevice2AImpl_Initialize(LPDIRECTINPUTDEVICE8A iface
, HINSTANCE hinst
, DWORD dwVersion
,
1234 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1235 return IDirectInputDevice2WImpl_Initialize(IDirectInputDevice8W_from_impl(This
), hinst
, dwVersion
, rguid
);
1238 /******************************************************************************
1239 * IDirectInputDevice2A
1242 HRESULT WINAPI
IDirectInputDevice2WImpl_CreateEffect(LPDIRECTINPUTDEVICE8W iface
, REFGUID rguid
, LPCDIEFFECT lpeff
,
1243 LPDIRECTINPUTEFFECT
*ppdef
, LPUNKNOWN pUnkOuter
)
1245 FIXME("(this=%p,%s,%p,%p,%p): stub!\n", iface
, debugstr_guid(rguid
), lpeff
, ppdef
, pUnkOuter
);
1249 HRESULT WINAPI
IDirectInputDevice2AImpl_CreateEffect(LPDIRECTINPUTDEVICE8A iface
, REFGUID rguid
, LPCDIEFFECT lpeff
,
1250 LPDIRECTINPUTEFFECT
*ppdef
, LPUNKNOWN pUnkOuter
)
1252 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1253 return IDirectInputDevice2WImpl_CreateEffect(IDirectInputDevice8W_from_impl(This
), rguid
, lpeff
, ppdef
, pUnkOuter
);
1256 HRESULT WINAPI
IDirectInputDevice2AImpl_EnumEffects(
1257 LPDIRECTINPUTDEVICE8A iface
,
1258 LPDIENUMEFFECTSCALLBACKA lpCallback
,
1262 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
1263 iface
, lpCallback
, lpvRef
, dwFlags
);
1268 HRESULT WINAPI
IDirectInputDevice2WImpl_EnumEffects(
1269 LPDIRECTINPUTDEVICE8W iface
,
1270 LPDIENUMEFFECTSCALLBACKW lpCallback
,
1274 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
1275 iface
, lpCallback
, lpvRef
, dwFlags
);
1280 HRESULT WINAPI
IDirectInputDevice2AImpl_GetEffectInfo(
1281 LPDIRECTINPUTDEVICE8A iface
,
1282 LPDIEFFECTINFOA lpdei
,
1285 FIXME("(this=%p,%p,%s): stub!\n",
1286 iface
, lpdei
, debugstr_guid(rguid
));
1290 HRESULT WINAPI
IDirectInputDevice2WImpl_GetEffectInfo(
1291 LPDIRECTINPUTDEVICE8W iface
,
1292 LPDIEFFECTINFOW lpdei
,
1295 FIXME("(this=%p,%p,%s): stub!\n",
1296 iface
, lpdei
, debugstr_guid(rguid
));
1300 HRESULT WINAPI
IDirectInputDevice2WImpl_GetForceFeedbackState(LPDIRECTINPUTDEVICE8W iface
, LPDWORD pdwOut
)
1302 FIXME("(this=%p,%p): stub!\n", iface
, pdwOut
);
1306 HRESULT WINAPI
IDirectInputDevice2AImpl_GetForceFeedbackState(LPDIRECTINPUTDEVICE8A iface
, LPDWORD pdwOut
)
1308 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1309 return IDirectInputDevice2WImpl_GetForceFeedbackState(IDirectInputDevice8W_from_impl(This
), pdwOut
);
1312 HRESULT WINAPI
IDirectInputDevice2WImpl_SendForceFeedbackCommand(LPDIRECTINPUTDEVICE8W iface
, DWORD dwFlags
)
1314 TRACE("(%p) 0x%08x:\n", iface
, dwFlags
);
1318 HRESULT WINAPI
IDirectInputDevice2AImpl_SendForceFeedbackCommand(LPDIRECTINPUTDEVICE8A iface
, DWORD dwFlags
)
1320 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1321 return IDirectInputDevice2WImpl_SendForceFeedbackCommand(IDirectInputDevice8W_from_impl(This
), dwFlags
);
1324 HRESULT WINAPI
IDirectInputDevice2WImpl_EnumCreatedEffectObjects(LPDIRECTINPUTDEVICE8W iface
,
1325 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback
, LPVOID lpvRef
, DWORD dwFlags
)
1327 FIXME("(this=%p,%p,%p,0x%08x): stub!\n", iface
, lpCallback
, lpvRef
, dwFlags
);
1331 HRESULT WINAPI
IDirectInputDevice2AImpl_EnumCreatedEffectObjects(LPDIRECTINPUTDEVICE8A iface
,
1332 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback
, LPVOID lpvRef
, DWORD dwFlags
)
1334 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1335 return IDirectInputDevice2WImpl_EnumCreatedEffectObjects(IDirectInputDevice8W_from_impl(This
), lpCallback
, lpvRef
, dwFlags
);
1338 HRESULT WINAPI
IDirectInputDevice2WImpl_Escape(LPDIRECTINPUTDEVICE8W iface
, LPDIEFFESCAPE lpDIEEsc
)
1340 FIXME("(this=%p,%p): stub!\n", iface
, lpDIEEsc
);
1344 HRESULT WINAPI
IDirectInputDevice2AImpl_Escape(LPDIRECTINPUTDEVICE8A iface
, LPDIEFFESCAPE lpDIEEsc
)
1346 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1347 return IDirectInputDevice2WImpl_Escape(IDirectInputDevice8W_from_impl(This
), lpDIEEsc
);
1350 HRESULT WINAPI
IDirectInputDevice2WImpl_Poll(LPDIRECTINPUTDEVICE8W iface
)
1352 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8W(iface
);
1354 if (!This
->acquired
) return DIERR_NOTACQUIRED
;
1355 /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
1359 HRESULT WINAPI
IDirectInputDevice2AImpl_Poll(LPDIRECTINPUTDEVICE8A iface
)
1361 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1362 return IDirectInputDevice2WImpl_Poll(IDirectInputDevice8W_from_impl(This
));
1365 HRESULT WINAPI
IDirectInputDevice2WImpl_SendDeviceData(LPDIRECTINPUTDEVICE8W iface
, DWORD cbObjectData
,
1366 LPCDIDEVICEOBJECTDATA rgdod
, LPDWORD pdwInOut
,
1369 FIXME("(this=%p,0x%08x,%p,%p,0x%08x): stub!\n", iface
, cbObjectData
, rgdod
, pdwInOut
, dwFlags
);
1374 HRESULT WINAPI
IDirectInputDevice2AImpl_SendDeviceData(LPDIRECTINPUTDEVICE8A iface
, DWORD cbObjectData
,
1375 LPCDIDEVICEOBJECTDATA rgdod
, LPDWORD pdwInOut
,
1378 IDirectInputDeviceImpl
*This
= impl_from_IDirectInputDevice8A(iface
);
1379 return IDirectInputDevice2WImpl_SendDeviceData(IDirectInputDevice8W_from_impl(This
), cbObjectData
, rgdod
,
1383 HRESULT WINAPI
IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface
,
1384 LPCSTR lpszFileName
,
1385 LPDIENUMEFFECTSINFILECALLBACK pec
,
1389 FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface
, lpszFileName
, pec
, pvRef
, dwFlags
);
1394 HRESULT WINAPI
IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface
,
1395 LPCWSTR lpszFileName
,
1396 LPDIENUMEFFECTSINFILECALLBACK pec
,
1400 FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface
, debugstr_w(lpszFileName
), pec
, pvRef
, dwFlags
);
1405 HRESULT WINAPI
IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface
,
1406 LPCSTR lpszFileName
,
1408 LPDIFILEEFFECT rgDiFileEft
,
1411 FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface
, lpszFileName
, dwEntries
, rgDiFileEft
, dwFlags
);
1416 HRESULT WINAPI
IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface
,
1417 LPCWSTR lpszFileName
,
1419 LPDIFILEEFFECT rgDiFileEft
,
1422 FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface
, debugstr_w(lpszFileName
), dwEntries
, rgDiFileEft
, dwFlags
);
1427 HRESULT WINAPI
IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface
,
1428 LPDIACTIONFORMATW lpdiaf
,
1429 LPCWSTR lpszUserName
,
1432 FIXME("(%p)->(%p,%s,%08x): semi-stub !\n", iface
, lpdiaf
, debugstr_w(lpszUserName
), dwFlags
);
1433 #define X(x) if (dwFlags & x) FIXME("\tdwFlags =|"#x"\n");
1436 X(DIDBAM_INITIALIZE
)
1437 X(DIDBAM_HWDEFAULTS
)
1443 HRESULT WINAPI
IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface
,
1444 LPDIACTIONFORMATW lpdiaf
,
1445 LPCWSTR lpszUserName
,
1451 FIXME("(%p)->(%p,%s,%08x): semi-stub !\n", iface
, lpdiaf
, debugstr_w(lpszUserName
), dwFlags
);
1453 dpr
.diph
.dwSize
= sizeof(DIPROPRANGE
);
1454 dpr
.lMin
= lpdiaf
->lAxisMin
;
1455 dpr
.lMax
= lpdiaf
->lAxisMax
;
1456 dpr
.diph
.dwHeaderSize
= sizeof(DIPROPHEADER
);
1457 dpr
.diph
.dwHow
= DIPH_DEVICE
;
1458 IDirectInputDevice8_SetProperty(iface
, DIPROP_RANGE
, &dpr
.diph
);
1460 if (lpdiaf
->dwBufferSize
> 0)
1462 dp
.diph
.dwSize
= sizeof(DIPROPDWORD
);
1463 dp
.dwData
= lpdiaf
->dwBufferSize
;
1464 dp
.diph
.dwHeaderSize
= sizeof(DIPROPHEADER
);
1465 dp
.diph
.dwHow
= DIPH_DEVICE
;
1466 IDirectInputDevice8_SetProperty(iface
, DIPROP_BUFFERSIZE
, &dp
.diph
);
1472 HRESULT WINAPI
IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface
,
1473 LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader
)
1475 FIXME("(%p)->(%p): stub !\n", iface
, lpdiDevImageInfoHeader
);
1480 HRESULT WINAPI
IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface
,
1481 LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader
)
1483 FIXME("(%p)->(%p): stub !\n", iface
, lpdiDevImageInfoHeader
);