1 /* DirectInput Joystick device for Mac OS/X
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
6 * Copyright 2009 CodeWeavers, Aric Stewart
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
26 #if defined(HAVE_IOKIT_HID_IOHIDLIB_H)
27 #define ULONG __carbon_ULONG
28 #define E_INVALIDARG __carbon_E_INVALIDARG
29 #define E_OUTOFMEMORY __carbon_E_OUTOFMEMORY
30 #define E_HANDLE __carbon_E_HANDLE
31 #define E_ACCESSDENIED __carbon_E_ACCESSDENIED
32 #define E_UNEXPECTED __carbon_E_UNEXPECTED
33 #define E_FAIL __carbon_E_FAIL
34 #define E_ABORT __carbon_E_ABORT
35 #define E_POINTER __carbon_E_POINTER
36 #define E_NOINTERFACE __carbon_E_NOINTERFACE
37 #define E_NOTIMPL __carbon_E_NOTIMPL
38 #define S_FALSE __carbon_S_FALSE
39 #define S_OK __carbon_S_OK
40 #define HRESULT_FACILITY __carbon_HRESULT_FACILITY
41 #define IS_ERROR __carbon_IS_ERROR
42 #define FAILED __carbon_FAILED
43 #define SUCCEEDED __carbon_SUCCEEDED
44 #define MAKE_HRESULT __carbon_MAKE_HRESULT
45 #define HRESULT __carbon_HRESULT
46 #define STDMETHODCALLTYPE __carbon_STDMETHODCALLTYPE
47 #include <IOKit/hid/IOHIDLib.h>
61 #undef HRESULT_FACILITY
67 #undef STDMETHODCALLTYPE
68 #endif /* HAVE_IOKIT_HID_IOHIDLIB_H */
70 #include "wine/debug.h"
71 #include "wine/unicode.h"
78 #include "dinput_private.h"
79 #include "device_private.h"
80 #include "joystick_private.h"
82 #ifdef HAVE_IOHIDMANAGERCREATE
84 WINE_DEFAULT_DEBUG_CHANNEL(dinput
);
86 static IOHIDManagerRef gIOHIDManagerRef
= NULL
;
87 static CFArrayRef gCollections
= NULL
;
89 typedef struct JoystickImpl JoystickImpl
;
90 static const IDirectInputDevice8AVtbl JoystickAvt
;
91 static const IDirectInputDevice8WVtbl JoystickWvt
;
95 struct JoystickGenericImpl generic
;
99 CFMutableArrayRef elementCFArrayRef
;
103 static inline JoystickImpl
*impl_from_IDirectInputDevice8A(IDirectInputDevice8A
*iface
)
105 return CONTAINING_RECORD(CONTAINING_RECORD(CONTAINING_RECORD(iface
, IDirectInputDeviceImpl
, IDirectInputDevice8A_iface
),
106 JoystickGenericImpl
, base
), JoystickImpl
, generic
);
108 static inline JoystickImpl
*impl_from_IDirectInputDevice8W(IDirectInputDevice8W
*iface
)
110 return CONTAINING_RECORD(CONTAINING_RECORD(CONTAINING_RECORD(iface
, IDirectInputDeviceImpl
, IDirectInputDevice8W_iface
),
111 JoystickGenericImpl
, base
), JoystickImpl
, generic
);
114 static const GUID DInput_Wine_OsX_Joystick_GUID
= { /* 59CAD8F6-E617-41E2-8EB7-47B23EEEDC5A */
115 0x59CAD8F6, 0xE617, 0x41E2, {0x8E, 0xB7, 0x47, 0xB2, 0x3E, 0xEE, 0xDC, 0x5A}
118 static void CFSetApplierFunctionCopyToCFArray(const void *value
, void *context
)
120 CFArrayAppendValue( ( CFMutableArrayRef
) context
, value
);
123 static CFMutableDictionaryRef
creates_osx_device_match(int usage
)
125 CFMutableDictionaryRef result
;
127 result
= CFDictionaryCreateMutable( kCFAllocatorDefault
, 0,
128 &kCFTypeDictionaryKeyCallBacks
, &kCFTypeDictionaryValueCallBacks
);
132 int number
= kHIDPage_GenericDesktop
;
133 CFNumberRef pageCFNumberRef
= CFNumberCreate( kCFAllocatorDefault
,
134 kCFNumberIntType
, &number
);
136 if ( pageCFNumberRef
)
138 CFNumberRef usageCFNumberRef
;
140 CFDictionarySetValue( result
, CFSTR( kIOHIDDeviceUsagePageKey
),
142 CFRelease( pageCFNumberRef
);
144 usageCFNumberRef
= CFNumberCreate( kCFAllocatorDefault
,
145 kCFNumberIntType
, &usage
);
146 if ( usageCFNumberRef
)
148 CFDictionarySetValue( result
, CFSTR( kIOHIDDeviceUsageKey
),
150 CFRelease( usageCFNumberRef
);
154 ERR("CFNumberCreate() failed.\n");
160 ERR("CFNumberCreate failed.\n");
166 ERR("CFDictionaryCreateMutable failed.\n");
173 static CFIndex
find_top_level(IOHIDDeviceRef tIOHIDDeviceRef
, CFArrayRef topLevels
)
175 CFArrayRef gElementCFArrayRef
;
178 if (!tIOHIDDeviceRef
)
181 gElementCFArrayRef
= IOHIDDeviceCopyMatchingElements(tIOHIDDeviceRef
, NULL
, 0);
183 if (gElementCFArrayRef
)
185 CFIndex idx
, cnt
= CFArrayGetCount(gElementCFArrayRef
);
186 for (idx
=0; idx
<cnt
; idx
++)
188 IOHIDElementRef tIOHIDElementRef
= (IOHIDElementRef
)CFArrayGetValueAtIndex(gElementCFArrayRef
, idx
);
189 int eleType
= IOHIDElementGetType(tIOHIDElementRef
);
191 /* Check for top-level gaming device collections */
192 if (eleType
== kIOHIDElementTypeCollection
&& IOHIDElementGetParent(tIOHIDElementRef
) == 0)
194 int tUsagePage
= IOHIDElementGetUsagePage(tIOHIDElementRef
);
195 int tUsage
= IOHIDElementGetUsage(tIOHIDElementRef
);
197 if (tUsagePage
== kHIDPage_GenericDesktop
&&
198 (tUsage
== kHIDUsage_GD_Joystick
|| tUsage
== kHIDUsage_GD_GamePad
))
200 CFArrayAppendValue((CFMutableArrayRef
)topLevels
, tIOHIDElementRef
);
209 static void get_element_children(IOHIDElementRef tElement
, CFArrayRef childElements
)
212 CFArrayRef tElementChildrenArray
= IOHIDElementGetChildren(tElement
);
214 cnt
= CFArrayGetCount(tElementChildrenArray
);
218 /* Either add the element to the array or grab its children */
219 for (idx
=0; idx
<cnt
; idx
++)
221 IOHIDElementRef tChildElementRef
;
223 tChildElementRef
= (IOHIDElementRef
)CFArrayGetValueAtIndex(tElementChildrenArray
, idx
);
224 if (IOHIDElementGetType(tChildElementRef
) == kIOHIDElementTypeCollection
)
225 get_element_children(tChildElementRef
, childElements
);
227 CFArrayAppendValue((CFMutableArrayRef
)childElements
, tChildElementRef
);
231 static int find_osx_devices(void)
234 CFMutableDictionaryRef result
;
238 gIOHIDManagerRef
= IOHIDManagerCreate( kCFAllocatorDefault
, 0L );
239 tIOReturn
= IOHIDManagerOpen( gIOHIDManagerRef
, 0L);
240 if ( kIOReturnSuccess
!= tIOReturn
)
242 ERR("Couldn't open IOHIDManager.\n");
246 matching
= CFArrayCreateMutable( kCFAllocatorDefault
, 0,
247 &kCFTypeArrayCallBacks
);
249 /* build matching dictionary */
250 result
= creates_osx_device_match(kHIDUsage_GD_Joystick
);
256 CFArrayAppendValue( ( CFMutableArrayRef
)matching
, result
);
257 result
= creates_osx_device_match(kHIDUsage_GD_GamePad
);
263 CFArrayAppendValue( ( CFMutableArrayRef
)matching
, result
);
265 IOHIDManagerSetDeviceMatchingMultiple( gIOHIDManagerRef
, matching
);
266 devset
= IOHIDManagerCopyDevices( gIOHIDManagerRef
);
269 CFIndex countDevices
, countCollections
, idx
;
270 CFArrayRef gDevices
= CFArrayCreateMutable(kCFAllocatorDefault
, 0, &kCFTypeArrayCallBacks
);
271 CFSetApplyFunction(devset
, CFSetApplierFunctionCopyToCFArray
, (void*)gDevices
);
273 countDevices
= CFArrayGetCount(gDevices
);
275 gCollections
= CFArrayCreateMutable(kCFAllocatorDefault
, 0, &kCFTypeArrayCallBacks
);
279 countCollections
= 0;
280 for (idx
= 0; idx
< countDevices
; idx
++)
283 IOHIDDeviceRef tDevice
;
285 tDevice
= (IOHIDDeviceRef
) CFArrayGetValueAtIndex(gDevices
, idx
);
286 tTop
= find_top_level(tDevice
, gCollections
);
287 countCollections
+= tTop
;
292 TRACE("found %i device(s), %i collection(s)\n",(int)countDevices
,(int)countCollections
);
293 return (int)countCollections
;
298 static int get_osx_device_name(int id
, char *name
, int length
)
301 IOHIDElementRef tIOHIDElementRef
;
302 IOHIDDeviceRef tIOHIDDeviceRef
;
307 tIOHIDElementRef
= (IOHIDElementRef
)CFArrayGetValueAtIndex(gCollections
, id
);
309 if (!tIOHIDElementRef
)
311 ERR("Invalid Element requested %i\n",id
);
315 tIOHIDDeviceRef
= IOHIDElementGetDevice(tIOHIDElementRef
);
320 if (!tIOHIDDeviceRef
)
322 ERR("Invalid Device requested %i\n",id
);
326 str
= IOHIDDeviceGetProperty(tIOHIDDeviceRef
, CFSTR( kIOHIDProductKey
));
329 CFIndex len
= CFStringGetLength(str
);
332 CFStringGetCString(str
,name
,length
,kCFStringEncodingASCII
);
341 static void insert_sort_button(int header
, IOHIDElementRef tIOHIDElementRef
,
342 CFMutableArrayRef elementCFArrayRef
, int index
,
345 IOHIDElementRef targetElement
;
348 CFArraySetValueAtIndex(elementCFArrayRef
, header
+index
, NULL
);
349 targetElement
= ( IOHIDElementRef
) CFArrayGetValueAtIndex( elementCFArrayRef
, header
+target
);
350 if (targetElement
== NULL
)
352 CFArraySetValueAtIndex(elementCFArrayRef
, header
+target
,tIOHIDElementRef
);
355 usage
= IOHIDElementGetUsage( targetElement
);
356 usage
--; /* usage 1 based index */
358 insert_sort_button(header
, targetElement
, elementCFArrayRef
, target
, usage
);
359 CFArraySetValueAtIndex(elementCFArrayRef
, header
+target
,tIOHIDElementRef
);
362 static void get_osx_device_elements(JoystickImpl
*device
, int axis_map
[8])
364 IOHIDElementRef tIOHIDElementRef
;
365 CFArrayRef gElementCFArrayRef
;
371 device
->elementCFArrayRef
= NULL
;
376 tIOHIDElementRef
= (IOHIDElementRef
)CFArrayGetValueAtIndex(gCollections
, device
->id
);
378 if (!tIOHIDElementRef
)
381 gElementCFArrayRef
= CFArrayCreateMutable(kCFAllocatorDefault
, 0, &kCFTypeArrayCallBacks
);
382 get_element_children(tIOHIDElementRef
, gElementCFArrayRef
);
384 if (gElementCFArrayRef
)
386 CFIndex idx
, cnt
= CFArrayGetCount( gElementCFArrayRef
);
387 /* build our element array in the order that dinput expects */
388 device
->elementCFArrayRef
= CFArrayCreateMutable(NULL
,0,NULL
);
390 for ( idx
= 0; idx
< cnt
; idx
++ )
392 IOHIDElementRef tIOHIDElementRef
= ( IOHIDElementRef
) CFArrayGetValueAtIndex( gElementCFArrayRef
, idx
);
393 int eleType
= IOHIDElementGetType( tIOHIDElementRef
);
396 case kIOHIDElementTypeInput_Button
:
398 int usagePage
= IOHIDElementGetUsagePage( tIOHIDElementRef
);
399 if (usagePage
!= kHIDPage_Button
)
401 /* avoid strange elements found on the 360 controller */
407 CFArrayInsertValueAtIndex(device
->elementCFArrayRef
, (axes
+povs
+buttons
), tIOHIDElementRef
);
412 case kIOHIDElementTypeInput_Axis
:
414 CFArrayInsertValueAtIndex(device
->elementCFArrayRef
, axes
, tIOHIDElementRef
);
418 case kIOHIDElementTypeInput_Misc
:
420 uint32_t usage
= IOHIDElementGetUsage( tIOHIDElementRef
);
423 case kHIDUsage_GD_Hatswitch
:
425 CFArrayInsertValueAtIndex(device
->elementCFArrayRef
, (axes
+povs
), tIOHIDElementRef
);
429 case kHIDUsage_GD_Slider
:
433 /* fallthrough, sliders are axis */
437 case kHIDUsage_GD_Rx
:
438 case kHIDUsage_GD_Ry
:
439 case kHIDUsage_GD_Rz
:
441 CFArrayInsertValueAtIndex(device
->elementCFArrayRef
, axes
, tIOHIDElementRef
);
442 axis_map
[axes
]=usage
;
447 FIXME("Unhandled usage %i\n",usage
);
452 FIXME("Unhandled type %i\n",eleType
);
457 device
->generic
.devcaps
.dwAxes
= axes
;
458 device
->generic
.devcaps
.dwButtons
= buttons
;
459 device
->generic
.devcaps
.dwPOVs
= povs
;
461 /* Sort buttons into correct order */
462 for (buttons
= 0; buttons
< device
->generic
.devcaps
.dwButtons
; buttons
++)
464 IOHIDElementRef tIOHIDElementRef
= ( IOHIDElementRef
) CFArrayGetValueAtIndex( device
->elementCFArrayRef
, axes
+povs
+buttons
);
465 uint32_t usage
= IOHIDElementGetUsage( tIOHIDElementRef
);
466 usage
--; /* usage is 1 indexed we need 0 indexed */
467 if (usage
== buttons
)
470 insert_sort_button(axes
+povs
, tIOHIDElementRef
, device
->elementCFArrayRef
,buttons
,usage
);
474 static void get_osx_device_elements_props(JoystickImpl
*device
)
476 CFArrayRef gElementCFArrayRef
= device
->elementCFArrayRef
;
478 if (gElementCFArrayRef
)
480 CFIndex idx
, cnt
= CFArrayGetCount( gElementCFArrayRef
);
482 for ( idx
= 0; idx
< cnt
; idx
++ )
484 IOHIDElementRef tIOHIDElementRef
= ( IOHIDElementRef
) CFArrayGetValueAtIndex( gElementCFArrayRef
, idx
);
486 device
->generic
.props
[idx
].lDevMin
= IOHIDElementGetLogicalMin(tIOHIDElementRef
);
487 device
->generic
.props
[idx
].lDevMax
= IOHIDElementGetLogicalMax(tIOHIDElementRef
);
488 device
->generic
.props
[idx
].lMin
= 0;
489 device
->generic
.props
[idx
].lMax
= 0xffff;
490 device
->generic
.props
[idx
].lDeadZone
= 0;
491 device
->generic
.props
[idx
].lSaturation
= 0;
496 static void poll_osx_device_state(LPDIRECTINPUTDEVICE8A iface
)
498 JoystickImpl
*device
= impl_from_IDirectInputDevice8A(iface
);
499 IOHIDElementRef tIOHIDTopElementRef
;
500 IOHIDDeviceRef tIOHIDDeviceRef
;
501 CFArrayRef gElementCFArrayRef
= device
->elementCFArrayRef
;
503 TRACE("polling device %i\n",device
->id
);
508 tIOHIDTopElementRef
= (IOHIDElementRef
) CFArrayGetValueAtIndex(gCollections
, device
->id
);
509 tIOHIDDeviceRef
= IOHIDElementGetDevice(tIOHIDTopElementRef
);
511 if (!tIOHIDDeviceRef
)
514 if (gElementCFArrayRef
)
520 CFIndex idx
, cnt
= CFArrayGetCount( gElementCFArrayRef
);
522 for ( idx
= 0; idx
< cnt
; idx
++ )
524 IOHIDValueRef valueRef
;
525 int val
, oldVal
, newVal
;
526 IOHIDElementRef tIOHIDElementRef
= ( IOHIDElementRef
) CFArrayGetValueAtIndex( gElementCFArrayRef
, idx
);
527 int eleType
= IOHIDElementGetType( tIOHIDElementRef
);
531 case kIOHIDElementTypeInput_Button
:
534 IOHIDDeviceGetValue(tIOHIDDeviceRef
, tIOHIDElementRef
, &valueRef
);
535 val
= IOHIDValueGetIntegerValue(valueRef
);
536 newVal
= val
? 0x80 : 0x0;
537 oldVal
= device
->generic
.js
.rgbButtons
[button_idx
];
538 device
->generic
.js
.rgbButtons
[button_idx
] = newVal
;
539 if (oldVal
!= newVal
)
541 inst_id
= DIDFT_MAKEINSTANCE(button_idx
) | DIDFT_PSHBUTTON
;
542 queue_event(iface
,inst_id
,newVal
,GetCurrentTime(),device
->generic
.base
.dinput
->evsequence
++);
547 case kIOHIDElementTypeInput_Misc
:
549 uint32_t usage
= IOHIDElementGetUsage( tIOHIDElementRef
);
552 case kHIDUsage_GD_Hatswitch
:
554 IOHIDDeviceGetValue(tIOHIDDeviceRef
, tIOHIDElementRef
, &valueRef
);
555 val
= IOHIDValueGetIntegerValue(valueRef
);
556 oldVal
= device
->generic
.js
.rgdwPOV
[pov_idx
];
561 device
->generic
.js
.rgdwPOV
[pov_idx
] = newVal
;
562 if (oldVal
!= newVal
)
564 inst_id
= DIDFT_MAKEINSTANCE(pov_idx
) | DIDFT_POV
;
565 queue_event(iface
,inst_id
,newVal
,GetCurrentTime(),device
->generic
.base
.dinput
->evsequence
++);
573 case kHIDUsage_GD_Rx
:
574 case kHIDUsage_GD_Ry
:
575 case kHIDUsage_GD_Rz
:
576 case kHIDUsage_GD_Slider
:
580 IOHIDDeviceGetValue(tIOHIDDeviceRef
, tIOHIDElementRef
, &valueRef
);
581 val
= IOHIDValueGetIntegerValue(valueRef
);
582 newVal
= joystick_map_axis(&device
->generic
.props
[idx
], val
);
587 oldVal
= device
->generic
.js
.lX
;
588 device
->generic
.js
.lX
= newVal
;
592 oldVal
= device
->generic
.js
.lY
;
593 device
->generic
.js
.lY
= newVal
;
597 oldVal
= device
->generic
.js
.lZ
;
598 device
->generic
.js
.lZ
= newVal
;
600 case kHIDUsage_GD_Rx
:
602 oldVal
= device
->generic
.js
.lRx
;
603 device
->generic
.js
.lRx
= newVal
;
605 case kHIDUsage_GD_Ry
:
607 oldVal
= device
->generic
.js
.lRy
;
608 device
->generic
.js
.lRy
= newVal
;
610 case kHIDUsage_GD_Rz
:
612 oldVal
= device
->generic
.js
.lRz
;
613 device
->generic
.js
.lRz
= newVal
;
615 case kHIDUsage_GD_Slider
:
616 wine_obj
= 6 + slider_idx
;
617 oldVal
= device
->generic
.js
.rglSlider
[slider_idx
];
618 device
->generic
.js
.rglSlider
[slider_idx
] = newVal
;
622 if ((wine_obj
!= -1) &&
625 inst_id
= DIDFT_MAKEINSTANCE(wine_obj
) | DIDFT_ABSAXIS
;
626 queue_event(iface
,inst_id
,newVal
,GetCurrentTime(),device
->generic
.base
.dinput
->evsequence
++);
632 FIXME("unhandled usage %i\n",usage
);
637 FIXME("Unhandled type %i\n",eleType
);
643 static INT
find_joystick_devices(void)
645 static INT joystick_devices_count
= -1;
647 if (joystick_devices_count
!= -1) return joystick_devices_count
;
649 joystick_devices_count
= find_osx_devices();
651 return joystick_devices_count
;
654 static BOOL
joydev_enum_deviceA(DWORD dwDevType
, DWORD dwFlags
, LPDIDEVICEINSTANCEA lpddi
, DWORD version
, int id
)
656 if (id
>= find_joystick_devices()) return FALSE
;
658 if (dwFlags
& DIEDFL_FORCEFEEDBACK
) {
659 WARN("force feedback not supported\n");
663 if ((dwDevType
== 0) ||
664 ((dwDevType
== DIDEVTYPE_JOYSTICK
) && (version
> 0x0300 && version
< 0x0800)) ||
665 (((dwDevType
== DI8DEVCLASS_GAMECTRL
) || (dwDevType
== DI8DEVTYPE_JOYSTICK
)) && (version
>= 0x0800)))
667 /* Return joystick */
668 lpddi
->guidInstance
= DInput_Wine_OsX_Joystick_GUID
;
669 lpddi
->guidInstance
.Data3
= id
;
670 lpddi
->guidProduct
= DInput_Wine_OsX_Joystick_GUID
;
671 /* we only support traditional joysticks for now */
672 if (version
>= 0x0800)
673 lpddi
->dwDevType
= DI8DEVTYPE_JOYSTICK
| (DI8DEVTYPEJOYSTICK_STANDARD
<< 8);
675 lpddi
->dwDevType
= DIDEVTYPE_JOYSTICK
| (DIDEVTYPEJOYSTICK_TRADITIONAL
<< 8);
676 sprintf(lpddi
->tszInstanceName
, "Joystick %d", id
);
678 /* get the device name */
679 get_osx_device_name(id
, lpddi
->tszProductName
, MAX_PATH
);
681 lpddi
->guidFFDriver
= GUID_NULL
;
688 static BOOL
joydev_enum_deviceW(DWORD dwDevType
, DWORD dwFlags
, LPDIDEVICEINSTANCEW lpddi
, DWORD version
, int id
)
693 if (id
>= find_joystick_devices()) return FALSE
;
695 if (dwFlags
& DIEDFL_FORCEFEEDBACK
) {
696 WARN("force feedback not supported\n");
700 if ((dwDevType
== 0) ||
701 ((dwDevType
== DIDEVTYPE_JOYSTICK
) && (version
> 0x0300 && version
< 0x0800)) ||
702 (((dwDevType
== DI8DEVCLASS_GAMECTRL
) || (dwDevType
== DI8DEVTYPE_JOYSTICK
)) && (version
>= 0x0800))) {
703 /* Return joystick */
704 lpddi
->guidInstance
= DInput_Wine_OsX_Joystick_GUID
;
705 lpddi
->guidInstance
.Data3
= id
;
706 lpddi
->guidProduct
= DInput_Wine_OsX_Joystick_GUID
;
707 /* we only support traditional joysticks for now */
708 if (version
>= 0x0800)
709 lpddi
->dwDevType
= DI8DEVTYPE_JOYSTICK
| (DI8DEVTYPEJOYSTICK_STANDARD
<< 8);
711 lpddi
->dwDevType
= DIDEVTYPE_JOYSTICK
| (DIDEVTYPEJOYSTICK_TRADITIONAL
<< 8);
712 sprintf(friendly
, "Joystick %d", id
);
713 MultiByteToWideChar(CP_ACP
, 0, friendly
, -1, lpddi
->tszInstanceName
, MAX_PATH
);
714 /* get the device name */
715 get_osx_device_name(id
, name
, MAX_PATH
);
717 MultiByteToWideChar(CP_ACP
, 0, name
, -1, lpddi
->tszProductName
, MAX_PATH
);
718 lpddi
->guidFFDriver
= GUID_NULL
;
725 static HRESULT
alloc_device(REFGUID rguid
, IDirectInputImpl
*dinput
,
726 JoystickImpl
**pdev
, unsigned short index
)
729 JoystickImpl
* newDevice
;
732 LPDIDATAFORMAT df
= NULL
;
734 int axis_map
[8]; /* max axes */
735 int slider_count
= 0;
737 TRACE("%s %p %p %hu\n", debugstr_guid(rguid
), dinput
, pdev
, index
);
739 newDevice
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(JoystickImpl
));
740 if (newDevice
== 0) {
741 WARN("out of memory\n");
743 return DIERR_OUTOFMEMORY
;
746 newDevice
->id
= index
;
748 newDevice
->generic
.guidInstance
= DInput_Wine_OsX_Joystick_GUID
;
749 newDevice
->generic
.guidInstance
.Data3
= index
;
750 newDevice
->generic
.guidProduct
= DInput_Wine_OsX_Joystick_GUID
;
751 newDevice
->generic
.joy_polldev
= poll_osx_device_state
;
753 /* get the device name */
754 get_osx_device_name(index
, name
, MAX_PATH
);
755 TRACE("Name %s\n",name
);
757 /* copy the device name */
758 newDevice
->generic
.name
= HeapAlloc(GetProcessHeap(),0,strlen(name
) + 1);
759 strcpy(newDevice
->generic
.name
, name
);
761 memset(axis_map
, 0, sizeof(axis_map
));
762 get_osx_device_elements(newDevice
, axis_map
);
764 TRACE("%i axes %i buttons %i povs\n",newDevice
->generic
.devcaps
.dwAxes
,newDevice
->generic
.devcaps
.dwButtons
,newDevice
->generic
.devcaps
.dwPOVs
);
766 if (newDevice
->generic
.devcaps
.dwButtons
> 128)
768 WARN("Can't support %d buttons. Clamping down to 128\n", newDevice
->generic
.devcaps
.dwButtons
);
769 newDevice
->generic
.devcaps
.dwButtons
= 128;
772 newDevice
->generic
.base
.IDirectInputDevice8A_iface
.lpVtbl
= &JoystickAvt
;
773 newDevice
->generic
.base
.IDirectInputDevice8W_iface
.lpVtbl
= &JoystickWvt
;
774 newDevice
->generic
.base
.ref
= 1;
775 newDevice
->generic
.base
.dinput
= dinput
;
776 newDevice
->generic
.base
.guid
= *rguid
;
777 InitializeCriticalSection(&newDevice
->generic
.base
.crit
);
778 newDevice
->generic
.base
.crit
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": JoystickImpl*->generic.base.crit");
780 /* Create copy of default data format */
781 if (!(df
= HeapAlloc(GetProcessHeap(), 0, c_dfDIJoystick2
.dwSize
))) goto FAILED
;
782 memcpy(df
, &c_dfDIJoystick2
, c_dfDIJoystick2
.dwSize
);
784 df
->dwNumObjs
= newDevice
->generic
.devcaps
.dwAxes
+ newDevice
->generic
.devcaps
.dwPOVs
+ newDevice
->generic
.devcaps
.dwButtons
;
785 if (!(df
->rgodf
= HeapAlloc(GetProcessHeap(), 0, df
->dwNumObjs
* df
->dwObjSize
))) goto FAILED
;
787 for (i
= 0; i
< newDevice
->generic
.devcaps
.dwAxes
; i
++)
792 case kHIDUsage_GD_X
: wine_obj
= 0; break;
793 case kHIDUsage_GD_Y
: wine_obj
= 1; break;
794 case kHIDUsage_GD_Z
: wine_obj
= 2; break;
795 case kHIDUsage_GD_Rx
: wine_obj
= 3; break;
796 case kHIDUsage_GD_Ry
: wine_obj
= 4; break;
797 case kHIDUsage_GD_Rz
: wine_obj
= 5; break;
798 case kHIDUsage_GD_Slider
:
799 wine_obj
= 6 + slider_count
;
803 if (wine_obj
< 0 ) continue;
805 memcpy(&df
->rgodf
[idx
], &c_dfDIJoystick2
.rgodf
[wine_obj
], df
->dwObjSize
);
806 df
->rgodf
[idx
++].dwType
= DIDFT_MAKEINSTANCE(wine_obj
) | DIDFT_ABSAXIS
;
809 for (i
= 0; i
< newDevice
->generic
.devcaps
.dwPOVs
; i
++)
811 memcpy(&df
->rgodf
[idx
], &c_dfDIJoystick2
.rgodf
[i
+ 8], df
->dwObjSize
);
812 df
->rgodf
[idx
++].dwType
= DIDFT_MAKEINSTANCE(i
) | DIDFT_POV
;
815 for (i
= 0; i
< newDevice
->generic
.devcaps
.dwButtons
; i
++)
817 memcpy(&df
->rgodf
[idx
], &c_dfDIJoystick2
.rgodf
[i
+ 12], df
->dwObjSize
);
818 df
->rgodf
[idx
].pguid
= &GUID_Button
;
819 df
->rgodf
[idx
++].dwType
= DIDFT_MAKEINSTANCE(i
) | DIDFT_PSHBUTTON
;
821 newDevice
->generic
.base
.data_format
.wine_df
= df
;
823 /* initialize default properties */
824 get_osx_device_elements_props(newDevice
);
826 IDirectInput_AddRef(&newDevice
->generic
.base
.dinput
->IDirectInput7A_iface
);
828 EnterCriticalSection(&dinput
->crit
);
829 list_add_tail(&dinput
->devices_list
, &newDevice
->generic
.base
.entry
);
830 LeaveCriticalSection(&dinput
->crit
);
832 newDevice
->generic
.devcaps
.dwSize
= sizeof(newDevice
->generic
.devcaps
);
833 newDevice
->generic
.devcaps
.dwFlags
= DIDC_ATTACHED
;
834 if (newDevice
->generic
.base
.dinput
->dwVersion
>= 0x0800)
835 newDevice
->generic
.devcaps
.dwDevType
= DI8DEVTYPE_JOYSTICK
| (DI8DEVTYPEJOYSTICK_STANDARD
<< 8);
837 newDevice
->generic
.devcaps
.dwDevType
= DIDEVTYPE_JOYSTICK
| (DIDEVTYPEJOYSTICK_TRADITIONAL
<< 8);
838 newDevice
->generic
.devcaps
.dwFFSamplePeriod
= 0;
839 newDevice
->generic
.devcaps
.dwFFMinTimeResolution
= 0;
840 newDevice
->generic
.devcaps
.dwFirmwareRevision
= 0;
841 newDevice
->generic
.devcaps
.dwHardwareRevision
= 0;
842 newDevice
->generic
.devcaps
.dwFFDriverVersion
= 0;
844 if (TRACE_ON(dinput
)) {
845 _dump_DIDATAFORMAT(newDevice
->generic
.base
.data_format
.wine_df
);
846 _dump_DIDEVCAPS(&newDevice
->generic
.devcaps
);
854 hr
= DIERR_OUTOFMEMORY
;
855 if (df
) HeapFree(GetProcessHeap(), 0, df
->rgodf
);
856 HeapFree(GetProcessHeap(), 0, df
);
857 release_DataFormat(&newDevice
->generic
.base
.data_format
);
858 HeapFree(GetProcessHeap(),0,newDevice
->generic
.name
);
859 HeapFree(GetProcessHeap(),0,newDevice
);
865 /******************************************************************************
866 * get_joystick_index : Get the joystick index from a given GUID
868 static unsigned short get_joystick_index(REFGUID guid
)
870 GUID wine_joystick
= DInput_Wine_OsX_Joystick_GUID
;
871 GUID dev_guid
= *guid
;
873 wine_joystick
.Data3
= 0;
876 /* for the standard joystick GUID use index 0 */
877 if(IsEqualGUID(&GUID_Joystick
,guid
)) return 0;
879 /* for the wine joystick GUIDs use the index stored in Data3 */
880 if(IsEqualGUID(&wine_joystick
, &dev_guid
)) return guid
->Data3
;
885 static HRESULT
joydev_create_device(IDirectInputImpl
*dinput
, REFGUID rguid
, REFIID riid
, LPVOID
*pdev
, int unicode
)
887 unsigned short index
;
888 int joystick_devices_count
;
890 TRACE("%p %s %s %p %i\n", dinput
, debugstr_guid(rguid
), debugstr_guid(riid
), pdev
, unicode
);
893 if ((joystick_devices_count
= find_joystick_devices()) == 0)
894 return DIERR_DEVICENOTREG
;
896 if ((index
= get_joystick_index(rguid
)) < 0xffff &&
897 joystick_devices_count
&& index
< joystick_devices_count
)
904 else if (IsEqualGUID(&IID_IDirectInputDeviceA
, riid
) ||
905 IsEqualGUID(&IID_IDirectInputDevice2A
, riid
) ||
906 IsEqualGUID(&IID_IDirectInputDevice7A
, riid
) ||
907 IsEqualGUID(&IID_IDirectInputDevice8A
, riid
))
911 else if (IsEqualGUID(&IID_IDirectInputDeviceW
, riid
) ||
912 IsEqualGUID(&IID_IDirectInputDevice2W
, riid
) ||
913 IsEqualGUID(&IID_IDirectInputDevice7W
, riid
) ||
914 IsEqualGUID(&IID_IDirectInputDevice8W
, riid
))
920 WARN("no interface\n");
921 return DIERR_NOINTERFACE
;
924 hr
= alloc_device(rguid
, dinput
, &This
, index
);
925 if (!This
) return hr
;
928 *pdev
= &This
->generic
.base
.IDirectInputDevice8W_iface
;
930 *pdev
= &This
->generic
.base
.IDirectInputDevice8A_iface
;
934 return DIERR_DEVICENOTREG
;
937 const struct dinput_device joystick_osx_device
= {
938 "Wine OS X joystick driver",
944 static const IDirectInputDevice8AVtbl JoystickAvt
=
946 IDirectInputDevice2AImpl_QueryInterface
,
947 IDirectInputDevice2AImpl_AddRef
,
948 IDirectInputDevice2AImpl_Release
,
949 JoystickAGenericImpl_GetCapabilities
,
950 IDirectInputDevice2AImpl_EnumObjects
,
951 JoystickAGenericImpl_GetProperty
,
952 JoystickAGenericImpl_SetProperty
,
953 IDirectInputDevice2AImpl_Acquire
,
954 IDirectInputDevice2AImpl_Unacquire
,
955 JoystickAGenericImpl_GetDeviceState
,
956 IDirectInputDevice2AImpl_GetDeviceData
,
957 IDirectInputDevice2AImpl_SetDataFormat
,
958 IDirectInputDevice2AImpl_SetEventNotification
,
959 IDirectInputDevice2AImpl_SetCooperativeLevel
,
960 JoystickAGenericImpl_GetObjectInfo
,
961 JoystickAGenericImpl_GetDeviceInfo
,
962 IDirectInputDevice2AImpl_RunControlPanel
,
963 IDirectInputDevice2AImpl_Initialize
,
964 IDirectInputDevice2AImpl_CreateEffect
,
965 IDirectInputDevice2AImpl_EnumEffects
,
966 IDirectInputDevice2AImpl_GetEffectInfo
,
967 IDirectInputDevice2AImpl_GetForceFeedbackState
,
968 IDirectInputDevice2AImpl_SendForceFeedbackCommand
,
969 IDirectInputDevice2AImpl_EnumCreatedEffectObjects
,
970 IDirectInputDevice2AImpl_Escape
,
971 JoystickAGenericImpl_Poll
,
972 IDirectInputDevice2AImpl_SendDeviceData
,
973 IDirectInputDevice7AImpl_EnumEffectsInFile
,
974 IDirectInputDevice7AImpl_WriteEffectToFile
,
975 JoystickAGenericImpl_BuildActionMap
,
976 JoystickAGenericImpl_SetActionMap
,
977 IDirectInputDevice8AImpl_GetImageInfo
980 static const IDirectInputDevice8WVtbl JoystickWvt
=
982 IDirectInputDevice2WImpl_QueryInterface
,
983 IDirectInputDevice2WImpl_AddRef
,
984 IDirectInputDevice2WImpl_Release
,
985 JoystickWGenericImpl_GetCapabilities
,
986 IDirectInputDevice2WImpl_EnumObjects
,
987 JoystickWGenericImpl_GetProperty
,
988 JoystickWGenericImpl_SetProperty
,
989 IDirectInputDevice2WImpl_Acquire
,
990 IDirectInputDevice2WImpl_Unacquire
,
991 JoystickWGenericImpl_GetDeviceState
,
992 IDirectInputDevice2WImpl_GetDeviceData
,
993 IDirectInputDevice2WImpl_SetDataFormat
,
994 IDirectInputDevice2WImpl_SetEventNotification
,
995 IDirectInputDevice2WImpl_SetCooperativeLevel
,
996 JoystickWGenericImpl_GetObjectInfo
,
997 JoystickWGenericImpl_GetDeviceInfo
,
998 IDirectInputDevice2WImpl_RunControlPanel
,
999 IDirectInputDevice2WImpl_Initialize
,
1000 IDirectInputDevice2WImpl_CreateEffect
,
1001 IDirectInputDevice2WImpl_EnumEffects
,
1002 IDirectInputDevice2WImpl_GetEffectInfo
,
1003 IDirectInputDevice2WImpl_GetForceFeedbackState
,
1004 IDirectInputDevice2WImpl_SendForceFeedbackCommand
,
1005 IDirectInputDevice2WImpl_EnumCreatedEffectObjects
,
1006 IDirectInputDevice2WImpl_Escape
,
1007 JoystickWGenericImpl_Poll
,
1008 IDirectInputDevice2WImpl_SendDeviceData
,
1009 IDirectInputDevice7WImpl_EnumEffectsInFile
,
1010 IDirectInputDevice7WImpl_WriteEffectToFile
,
1011 JoystickWGenericImpl_BuildActionMap
,
1012 JoystickWGenericImpl_SetActionMap
,
1013 IDirectInputDevice8WImpl_GetImageInfo
1016 #else /* HAVE_IOHIDMANAGERCREATE */
1018 const struct dinput_device joystick_osx_device
= {
1019 "Wine OS X joystick driver",
1025 #endif /* HAVE_IOHIDMANAGERCREATE */