msi: Add more tests for MsiSourceListGetInfo.
[wine.git] / dlls / dinput / joystick_linux.c
blob4b0085ce5f788bccb74c9249b2c877bee80358f4
1 /* DirectInput Joystick device
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * To Do:
24 * dead zone
25 * force feedback
28 #include "config.h"
29 #include "wine/port.h"
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <string.h>
34 #include <time.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #ifdef HAVE_SYS_TIME_H
39 # include <sys/time.h>
40 #endif
41 #include <sys/fcntl.h>
42 #ifdef HAVE_SYS_IOCTL_H
43 # include <sys/ioctl.h>
44 #endif
45 #include <errno.h>
46 #ifdef HAVE_SYS_ERRNO_H
47 # include <sys/errno.h>
48 #endif
49 #ifdef HAVE_LINUX_IOCTL_H
50 # include <linux/ioctl.h>
51 #endif
52 #ifdef HAVE_LINUX_JOYSTICK_H
53 # include <linux/joystick.h>
54 # undef SW_MAX
55 #endif
56 #ifdef HAVE_SYS_POLL_H
57 # include <sys/poll.h>
58 #endif
60 #include "wine/debug.h"
61 #include "wine/unicode.h"
62 #include "windef.h"
63 #include "winbase.h"
64 #include "winerror.h"
65 #include "winreg.h"
66 #include "dinput.h"
68 #include "dinput_private.h"
69 #include "device_private.h"
71 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
73 #ifdef HAVE_LINUX_22_JOYSTICK_API
75 #define JOYDEV_NEW "/dev/input/js"
76 #define JOYDEV_OLD "/dev/js"
78 typedef struct JoystickImpl JoystickImpl;
79 static const IDirectInputDevice8AVtbl JoystickAvt;
80 static const IDirectInputDevice8WVtbl JoystickWvt;
81 struct JoystickImpl
83 struct IDirectInputDevice2AImpl base;
85 char dev[32];
87 /* joystick private */
88 int joyfd;
89 DIJOYSTATE2 js; /* wine data */
90 ObjProps *props;
91 char *name;
92 DIDEVCAPS devcaps;
93 LONG deadzone;
94 int *axis_map;
95 int axes;
96 int buttons;
97 POINTL povs[4];
100 static const GUID DInput_Wine_Joystick_GUID = { /* 9e573ed9-7734-11d2-8d4a-23903fb6bdf7 */
101 0x9e573ed9,
102 0x7734,
103 0x11d2,
104 {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}
107 static void _dump_DIDEVCAPS(const DIDEVCAPS *lpDIDevCaps)
109 TRACE("dwSize: %d\n", lpDIDevCaps->dwSize);
110 TRACE("dwFlags: %08x\n", lpDIDevCaps->dwFlags);
111 TRACE("dwDevType: %08x %s\n", lpDIDevCaps->dwDevType,
112 lpDIDevCaps->dwDevType == DIDEVTYPE_DEVICE ? "DIDEVTYPE_DEVICE" :
113 lpDIDevCaps->dwDevType == DIDEVTYPE_DEVICE ? "DIDEVTYPE_DEVICE" :
114 lpDIDevCaps->dwDevType == DIDEVTYPE_MOUSE ? "DIDEVTYPE_MOUSE" :
115 lpDIDevCaps->dwDevType == DIDEVTYPE_KEYBOARD ? "DIDEVTYPE_KEYBOARD" :
116 lpDIDevCaps->dwDevType == DIDEVTYPE_JOYSTICK ? "DIDEVTYPE_JOYSTICK" :
117 lpDIDevCaps->dwDevType == DIDEVTYPE_HID ? "DIDEVTYPE_HID" : "UNKNOWN");
118 TRACE("dwAxes: %d\n", lpDIDevCaps->dwAxes);
119 TRACE("dwButtons: %d\n", lpDIDevCaps->dwButtons);
120 TRACE("dwPOVs: %d\n", lpDIDevCaps->dwPOVs);
121 if (lpDIDevCaps->dwSize > sizeof(DIDEVCAPS_DX3)) {
122 TRACE("dwFFSamplePeriod: %d\n", lpDIDevCaps->dwFFSamplePeriod);
123 TRACE("dwFFMinTimeResolution: %d\n", lpDIDevCaps->dwFFMinTimeResolution);
124 TRACE("dwFirmwareRevision: %d\n", lpDIDevCaps->dwFirmwareRevision);
125 TRACE("dwHardwareRevision: %d\n", lpDIDevCaps->dwHardwareRevision);
126 TRACE("dwFFDriverVersion: %d\n", lpDIDevCaps->dwFFDriverVersion);
130 #define MAX_JOYSTICKS 64
131 static INT joystick_devices_count = -1;
132 static LPSTR joystick_devices[MAX_JOYSTICKS];
134 static INT find_joystick_devices(void)
136 INT i;
138 if (joystick_devices_count != -1) return joystick_devices_count;
140 joystick_devices_count = 0;
141 for (i = 0; i < MAX_JOYSTICKS; i++)
143 CHAR device_name[MAX_PATH], *str;
144 INT len;
145 int fd;
147 len = sprintf(device_name, "%s%d", JOYDEV_NEW, i) + 1;
148 if ((fd = open(device_name, O_RDONLY)) < 0)
150 len = sprintf(device_name, "%s%d", JOYDEV_OLD, i) + 1;
151 if ((fd = open(device_name, O_RDONLY)) < 0) continue;
154 if (!(str = HeapAlloc(GetProcessHeap(), 0, len))) break;
155 memcpy(str, device_name, len);
157 joystick_devices[joystick_devices_count++] = str;
160 return joystick_devices_count;
163 static BOOL joydev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, DWORD version, int id)
165 int fd = -1;
167 if (id >= find_joystick_devices()) return FALSE;
169 if (dwFlags & DIEDFL_FORCEFEEDBACK) {
170 WARN("force feedback not supported\n");
171 return FALSE;
174 if ((dwDevType == 0) ||
175 ((dwDevType == DIDEVTYPE_JOYSTICK) && (version > 0x0300 && version < 0x0800)) ||
176 (((dwDevType == DI8DEVCLASS_GAMECTRL) || (dwDevType == DI8DEVTYPE_JOYSTICK)) && (version >= 0x0800))) {
177 /* check whether we have a joystick */
178 if ((fd = open(joystick_devices[id], O_RDONLY)) < 0)
180 WARN("open(%s, O_RDONLY) failed: %s\n", joystick_devices[id], strerror(errno));
181 return FALSE;
184 /* Return joystick */
185 lpddi->guidInstance = DInput_Wine_Joystick_GUID;
186 lpddi->guidInstance.Data3 = id;
187 lpddi->guidProduct = DInput_Wine_Joystick_GUID;
188 /* we only support traditional joysticks for now */
189 if (version >= 0x0800)
190 lpddi->dwDevType = DI8DEVTYPE_JOYSTICK | (DI8DEVTYPEJOYSTICK_STANDARD << 8);
191 else
192 lpddi->dwDevType = DIDEVTYPE_JOYSTICK | (DIDEVTYPEJOYSTICK_TRADITIONAL << 8);
193 sprintf(lpddi->tszInstanceName, "Joystick %d", id);
194 #if defined(JSIOCGNAME)
195 if (ioctl(fd,JSIOCGNAME(sizeof(lpddi->tszProductName)),lpddi->tszProductName) < 0) {
196 WARN("ioctl(%s,JSIOCGNAME) failed: %s\n", joystick_devices[id], strerror(errno));
197 strcpy(lpddi->tszProductName, "Wine Joystick");
199 #else
200 strcpy(lpddi->tszProductName, "Wine Joystick");
201 #endif
203 lpddi->guidFFDriver = GUID_NULL;
204 close(fd);
205 TRACE("Enumerating the linux Joystick device: %s (%s)\n", joystick_devices[id], lpddi->tszProductName);
206 return TRUE;
209 return FALSE;
212 static BOOL joydev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, DWORD version, int id)
214 int fd = -1;
215 char name[MAX_PATH];
216 char friendly[32];
218 if (id >= find_joystick_devices()) return FALSE;
220 if (dwFlags & DIEDFL_FORCEFEEDBACK) {
221 WARN("force feedback not supported\n");
222 return FALSE;
225 if ((dwDevType == 0) ||
226 ((dwDevType == DIDEVTYPE_JOYSTICK) && (version > 0x0300 && version < 0x0800)) ||
227 (((dwDevType == DI8DEVCLASS_GAMECTRL) || (dwDevType == DI8DEVTYPE_JOYSTICK)) && (version >= 0x0800))) {
228 /* check whether we have a joystick */
229 if ((fd = open(joystick_devices[id], O_RDONLY)) < 0)
231 WARN("open(%s,O_RDONLY) failed: %s\n", joystick_devices[id], strerror(errno));
232 return FALSE;
235 /* Return joystick */
236 lpddi->guidInstance = DInput_Wine_Joystick_GUID;
237 lpddi->guidInstance.Data3 = id;
238 lpddi->guidProduct = DInput_Wine_Joystick_GUID;
239 /* we only support traditional joysticks for now */
240 if (version >= 0x0800)
241 lpddi->dwDevType = DI8DEVTYPE_JOYSTICK | (DI8DEVTYPEJOYSTICK_STANDARD << 8);
242 else
243 lpddi->dwDevType = DIDEVTYPE_JOYSTICK | (DIDEVTYPEJOYSTICK_TRADITIONAL << 8);
244 sprintf(friendly, "Joystick %d", id);
245 MultiByteToWideChar(CP_ACP, 0, friendly, -1, lpddi->tszInstanceName, MAX_PATH);
246 #if defined(JSIOCGNAME)
247 if (ioctl(fd,JSIOCGNAME(sizeof(name)),name) < 0) {
248 WARN("ioctl(%s, JSIOCGNAME) failed: %s\n", joystick_devices[id], strerror(errno));
249 strcpy(name, "Wine Joystick");
251 #else
252 strcpy(name, "Wine Joystick");
253 #endif
254 MultiByteToWideChar(CP_ACP, 0, name, -1, lpddi->tszProductName, MAX_PATH);
255 lpddi->guidFFDriver = GUID_NULL;
256 close(fd);
257 TRACE("Enumerating the linux Joystick device: %s (%s)\n", joystick_devices[id], name);
258 return TRUE;
261 return FALSE;
265 * Setup the dinput options.
268 static HRESULT setup_dinput_options(JoystickImpl * device)
270 char buffer[MAX_PATH+16];
271 HKEY hkey, appkey;
273 buffer[MAX_PATH]='\0';
275 get_app_key(&hkey, &appkey);
277 /* get options */
279 if (!get_config_key( hkey, appkey, "DefaultDeadZone", buffer, MAX_PATH )) {
280 device->deadzone = atoi(buffer);
281 TRACE("setting default deadzone to: \"%s\" %d\n", buffer, device->deadzone);
284 if (!get_config_key( hkey, appkey, device->name, buffer, MAX_PATH )) {
285 int tokens = 0;
286 int axis = 0;
287 int pov = 0;
288 const char *delim = ",";
289 char * ptr;
290 TRACE("\"%s\" = \"%s\"\n", device->name, buffer);
292 device->axis_map = HeapAlloc(GetProcessHeap(), 0, device->axes * sizeof(int));
293 if (device->axis_map == 0)
294 return DIERR_OUTOFMEMORY;
296 if ((ptr = strtok(buffer, delim)) != NULL) {
297 do {
298 if (strcmp(ptr, "X") == 0) {
299 device->axis_map[tokens] = 0;
300 axis++;
301 } else if (strcmp(ptr, "Y") == 0) {
302 device->axis_map[tokens] = 1;
303 axis++;
304 } else if (strcmp(ptr, "Z") == 0) {
305 device->axis_map[tokens] = 2;
306 axis++;
307 } else if (strcmp(ptr, "Rx") == 0) {
308 device->axis_map[tokens] = 3;
309 axis++;
310 } else if (strcmp(ptr, "Ry") == 0) {
311 device->axis_map[tokens] = 4;
312 axis++;
313 } else if (strcmp(ptr, "Rz") == 0) {
314 device->axis_map[tokens] = 5;
315 axis++;
316 } else if (strcmp(ptr, "Slider1") == 0) {
317 device->axis_map[tokens] = 6;
318 axis++;
319 } else if (strcmp(ptr, "Slider2") == 0) {
320 device->axis_map[tokens] = 7;
321 axis++;
322 } else if (strcmp(ptr, "POV1") == 0) {
323 device->axis_map[tokens++] = 8;
324 device->axis_map[tokens] = 8;
325 pov++;
326 } else if (strcmp(ptr, "POV2") == 0) {
327 device->axis_map[tokens++] = 9;
328 device->axis_map[tokens] = 9;
329 pov++;
330 } else if (strcmp(ptr, "POV3") == 0) {
331 device->axis_map[tokens++] = 10;
332 device->axis_map[tokens] = 10;
333 pov++;
334 } else if (strcmp(ptr, "POV4") == 0) {
335 device->axis_map[tokens++] = 11;
336 device->axis_map[tokens] = 11;
337 pov++;
338 } else {
339 ERR("invalid joystick axis type: %s\n", ptr);
340 device->axis_map[tokens] = tokens;
341 axis++;
344 tokens++;
345 } while ((ptr = strtok(NULL, delim)) != NULL);
347 if (tokens != device->devcaps.dwAxes) {
348 ERR("not all joystick axes mapped: %d axes(%d,%d), %d arguments\n", device->axes, axis, pov,tokens);
349 while (tokens < device->axes) {
350 device->axis_map[tokens] = tokens;
351 tokens++;
356 device->devcaps.dwAxes = axis;
357 device->devcaps.dwPOVs = pov;
360 if (appkey)
361 RegCloseKey( appkey );
363 if (hkey)
364 RegCloseKey( hkey );
366 return DI_OK;
369 static HRESULT alloc_device(REFGUID rguid, const void *jvt, IDirectInputImpl *dinput,
370 LPDIRECTINPUTDEVICEA* pdev, unsigned short index)
372 DWORD i;
373 JoystickImpl* newDevice;
374 char name[MAX_PATH];
375 HRESULT hr;
376 LPDIDATAFORMAT df = NULL;
377 int idx = 0;
379 TRACE("%s %p %p %p %hu\n", debugstr_guid(rguid), jvt, dinput, pdev, index);
381 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(JoystickImpl));
382 if (newDevice == 0) {
383 WARN("out of memory\n");
384 *pdev = 0;
385 return DIERR_OUTOFMEMORY;
388 if (!lstrcpynA(newDevice->dev, joystick_devices[index], sizeof(newDevice->dev)) ||
389 (newDevice->joyfd = open(newDevice->dev, O_RDONLY)) < 0)
391 WARN("open(%s, O_RDONLY) failed: %s\n", newDevice->dev, strerror(errno));
392 HeapFree(GetProcessHeap(), 0, newDevice);
393 return DIERR_DEVICENOTREG;
396 /* get the device name */
397 #if defined(JSIOCGNAME)
398 if (ioctl(newDevice->joyfd,JSIOCGNAME(MAX_PATH),name) < 0) {
399 WARN("ioctl(%s,JSIOCGNAME) failed: %s\n", newDevice->dev, strerror(errno));
400 strcpy(name, "Wine Joystick");
402 #else
403 strcpy(name, "Wine Joystick");
404 #endif
406 /* copy the device name */
407 newDevice->name = HeapAlloc(GetProcessHeap(),0,strlen(name) + 1);
408 strcpy(newDevice->name, name);
410 #ifdef JSIOCGAXES
411 if (ioctl(newDevice->joyfd,JSIOCGAXES,&newDevice->axes) < 0) {
412 WARN("ioctl(%s,JSIOCGAXES) failed: %s, defauting to 2\n", newDevice->dev, strerror(errno));
413 newDevice->axes = 2;
415 #endif
416 #ifdef JSIOCGBUTTONS
417 if (ioctl(newDevice->joyfd,JSIOCGBUTTONS,&newDevice->buttons) < 0) {
418 WARN("ioctl(%s,JSIOCGBUTTONS) failed: %s, defauting to 2\n", newDevice->dev, strerror(errno));
419 newDevice->buttons = 2;
421 #endif
423 newDevice->base.lpVtbl = jvt;
424 newDevice->base.ref = 1;
425 newDevice->base.dinput = dinput;
426 CopyMemory(&newDevice->base.guid, rguid, sizeof(*rguid));
427 InitializeCriticalSection(&newDevice->base.crit);
428 newDevice->base.crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": JoystickImpl*->base.crit");
430 /* setup_dinput_options may change these */
431 newDevice->deadzone = 0;
432 newDevice->devcaps.dwButtons = newDevice->buttons;
433 newDevice->devcaps.dwAxes = newDevice->axes;
434 newDevice->devcaps.dwPOVs = 0;
436 /* do any user specified configuration */
437 hr = setup_dinput_options(newDevice);
438 if (hr != DI_OK)
439 goto FAILED1;
441 if (newDevice->axis_map == 0) {
442 newDevice->axis_map = HeapAlloc(GetProcessHeap(), 0, newDevice->axes * sizeof(int));
443 if (newDevice->axis_map == 0)
444 goto FAILED;
446 for (i = 0; i < newDevice->axes; i++)
447 newDevice->axis_map[i] = i;
450 /* Create copy of default data format */
451 if (!(df = HeapAlloc(GetProcessHeap(), 0, c_dfDIJoystick2.dwSize))) goto FAILED;
452 memcpy(df, &c_dfDIJoystick2, c_dfDIJoystick2.dwSize);
454 /* Axes include POVs */
455 df->dwNumObjs = newDevice->axes + newDevice->buttons;
456 if (!(df->rgodf = HeapAlloc(GetProcessHeap(), 0, df->dwNumObjs * df->dwObjSize))) goto FAILED;
458 for (i = 0; i < newDevice->axes; i++)
460 int wine_obj = newDevice->axis_map[i];
462 memcpy(&df->rgodf[idx], &c_dfDIJoystick2.rgodf[wine_obj], df->dwObjSize);
463 if (wine_obj < 8)
464 df->rgodf[idx++].dwType = DIDFT_MAKEINSTANCE(wine_obj) | DIDFT_ABSAXIS;
465 else
467 df->rgodf[idx++].dwType = DIDFT_MAKEINSTANCE(wine_obj - 8) | DIDFT_POV;
468 i++; /* POV takes 2 axes */
471 for (i = 0; i < newDevice->buttons; i++)
473 memcpy(&df->rgodf[idx], &c_dfDIJoystick2.rgodf[i + 12], df->dwObjSize);
474 df->rgodf[idx++].dwType = DIDFT_MAKEINSTANCE(i) | DIDFT_PSHBUTTON;
476 newDevice->base.data_format.wine_df = df;
478 /* create default properties */
479 newDevice->props = HeapAlloc(GetProcessHeap(),0,c_dfDIJoystick2.dwNumObjs*sizeof(ObjProps));
480 if (newDevice->props == 0)
481 goto FAILED;
483 /* initialize default properties */
484 for (i = 0; i < c_dfDIJoystick2.dwNumObjs; i++) {
485 newDevice->props[i].lDevMin = -32767;
486 newDevice->props[i].lDevMax = +32767;
487 newDevice->props[i].lMin = 0;
488 newDevice->props[i].lMax = 0xffff;
489 newDevice->props[i].lDeadZone = newDevice->deadzone; /* % * 1000 */
490 newDevice->props[i].lSaturation = 0;
493 IDirectInput_AddRef((LPDIRECTINPUTDEVICE8A)newDevice->base.dinput);
495 newDevice->devcaps.dwSize = sizeof(newDevice->devcaps);
496 newDevice->devcaps.dwFlags = DIDC_ATTACHED;
497 if (newDevice->base.dinput->dwVersion >= 0x0800)
498 newDevice->devcaps.dwDevType = DI8DEVTYPE_JOYSTICK | (DI8DEVTYPEJOYSTICK_STANDARD << 8);
499 else
500 newDevice->devcaps.dwDevType = DIDEVTYPE_JOYSTICK | (DIDEVTYPEJOYSTICK_TRADITIONAL << 8);
501 newDevice->devcaps.dwFFSamplePeriod = 0;
502 newDevice->devcaps.dwFFMinTimeResolution = 0;
503 newDevice->devcaps.dwFirmwareRevision = 0;
504 newDevice->devcaps.dwHardwareRevision = 0;
505 newDevice->devcaps.dwFFDriverVersion = 0;
507 if (TRACE_ON(dinput)) {
508 _dump_DIDATAFORMAT(newDevice->base.data_format.wine_df);
509 for (i = 0; i < (newDevice->axes); i++)
510 TRACE("axis_map[%d] = %d\n", i, newDevice->axis_map[i]);
511 _dump_DIDEVCAPS(&newDevice->devcaps);
514 *pdev = (LPDIRECTINPUTDEVICEA)newDevice;
516 return DI_OK;
518 FAILED:
519 hr = DIERR_OUTOFMEMORY;
520 FAILED1:
521 if (df) HeapFree(GetProcessHeap(), 0, df->rgodf);
522 HeapFree(GetProcessHeap(), 0, df);
523 release_DataFormat(&newDevice->base.data_format);
524 HeapFree(GetProcessHeap(),0,newDevice->axis_map);
525 HeapFree(GetProcessHeap(),0,newDevice->name);
526 HeapFree(GetProcessHeap(),0,newDevice->props);
527 HeapFree(GetProcessHeap(),0,newDevice);
528 *pdev = 0;
530 return hr;
533 /******************************************************************************
534 * get_joystick_index : Get the joystick index from a given GUID
536 static unsigned short get_joystick_index(REFGUID guid)
538 GUID wine_joystick = DInput_Wine_Joystick_GUID;
539 GUID dev_guid = *guid;
541 wine_joystick.Data3 = 0;
542 dev_guid.Data3 = 0;
544 /* for the standard joystick GUID use index 0 */
545 if(IsEqualGUID(&GUID_Joystick,guid)) return 0;
547 /* for the wine joystick GUIDs use the index stored in Data3 */
548 if(IsEqualGUID(&wine_joystick, &dev_guid)) return guid->Data3;
550 return MAX_JOYSTICKS;
553 static HRESULT joydev_create_deviceA(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev)
555 unsigned short index;
557 TRACE("%p %s %p %p\n",dinput, debugstr_guid(rguid), riid, pdev);
558 find_joystick_devices();
559 *pdev = NULL;
561 if ((index = get_joystick_index(rguid)) < MAX_JOYSTICKS &&
562 joystick_devices_count && index < joystick_devices_count)
564 if ((riid == NULL) ||
565 IsEqualGUID(&IID_IDirectInputDeviceA, riid) ||
566 IsEqualGUID(&IID_IDirectInputDevice2A, riid) ||
567 IsEqualGUID(&IID_IDirectInputDevice7A, riid) ||
568 IsEqualGUID(&IID_IDirectInputDevice8A, riid))
570 return alloc_device(rguid, &JoystickAvt, dinput, pdev, index);
573 WARN("no interface\n");
574 return DIERR_NOINTERFACE;
577 return DIERR_DEVICENOTREG;
580 static HRESULT joydev_create_deviceW(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEW* pdev)
582 unsigned short index;
584 TRACE("%p %s %p %p\n",dinput, debugstr_guid(rguid), riid, pdev);
585 find_joystick_devices();
586 *pdev = NULL;
588 if ((index = get_joystick_index(rguid)) < MAX_JOYSTICKS &&
589 joystick_devices_count && index < joystick_devices_count)
591 if ((riid == NULL) ||
592 IsEqualGUID(&IID_IDirectInputDeviceW, riid) ||
593 IsEqualGUID(&IID_IDirectInputDevice2W, riid) ||
594 IsEqualGUID(&IID_IDirectInputDevice7W, riid) ||
595 IsEqualGUID(&IID_IDirectInputDevice8W, riid))
597 return alloc_device(rguid, &JoystickWvt, dinput, (LPDIRECTINPUTDEVICEA *)pdev, index);
599 WARN("no interface\n");
600 return DIERR_NOINTERFACE;
603 WARN("invalid device GUID %s\n",debugstr_guid(rguid));
604 return DIERR_DEVICENOTREG;
607 #undef MAX_JOYSTICKS
609 const struct dinput_device joystick_linux_device = {
610 "Wine Linux joystick driver",
611 joydev_enum_deviceA,
612 joydev_enum_deviceW,
613 joydev_create_deviceA,
614 joydev_create_deviceW
617 /******************************************************************************
618 * Acquire : gets exclusive control of the joystick
620 static HRESULT WINAPI JoystickAImpl_Acquire(LPDIRECTINPUTDEVICE8A iface)
622 JoystickImpl *This = (JoystickImpl *)iface;
624 TRACE("(%p)\n",This);
626 if (This->base.acquired) {
627 WARN("already acquired\n");
628 return S_FALSE;
631 /* open the joystick device */
632 if (This->joyfd==-1) {
633 TRACE("opening joystick device %s\n", This->dev);
635 This->joyfd=open(This->dev,O_RDONLY);
636 if (This->joyfd==-1) {
637 ERR("open(%s) failed: %s\n", This->dev, strerror(errno));
638 return DIERR_NOTFOUND;
642 This->base.acquired = 1;
644 return DI_OK;
647 /******************************************************************************
648 * Unacquire : frees the joystick
650 static HRESULT WINAPI JoystickAImpl_Unacquire(LPDIRECTINPUTDEVICE8A iface)
652 JoystickImpl *This = (JoystickImpl *)iface;
653 HRESULT res;
655 TRACE("(%p)\n",This);
657 if ((res = IDirectInputDevice2AImpl_Unacquire(iface)) != DI_OK) return res;
659 if (This->joyfd!=-1) {
660 TRACE("closing joystick device\n");
661 close(This->joyfd);
662 This->joyfd = -1;
663 return DI_OK;
666 return DI_NOEFFECT;
669 static void joy_polldev(JoystickImpl *This) {
670 struct pollfd plfd;
671 struct js_event jse;
672 TRACE("(%p)\n", This);
674 if (This->joyfd==-1) {
675 WARN("no device\n");
676 return;
678 while (1)
680 LONG value;
681 int inst_id = -1;
683 plfd.fd = This->joyfd;
684 plfd.events = POLLIN;
685 if (poll(&plfd,1,0) != 1)
686 return;
687 /* we have one event, so we can read */
688 if (sizeof(jse)!=read(This->joyfd,&jse,sizeof(jse))) {
689 return;
691 TRACE("js_event: type 0x%x, number %d, value %d\n",
692 jse.type,jse.number,jse.value);
693 if (jse.type & JS_EVENT_BUTTON)
695 inst_id = DIDFT_MAKEINSTANCE(jse.number) | DIDFT_PSHBUTTON;
696 This->js.rgbButtons[jse.number] = value = jse.value ? 0x80 : 0x00;
698 else if (jse.type & JS_EVENT_AXIS)
700 int number = This->axis_map[jse.number]; /* wine format object index */
702 if (number < 0) return;
703 inst_id = DIDFT_MAKEINSTANCE(number) | (number < 8 ? DIDFT_ABSAXIS : DIDFT_POV);
704 value = joystick_map_axis(&This->props[id_to_object(This->base.data_format.wine_df, inst_id)], jse.value);
706 TRACE("changing axis %d => %d\n", jse.number, number);
707 switch (number)
709 case 0: This->js.lX = value; break;
710 case 1: This->js.lY = value; break;
711 case 2: This->js.lZ = value; break;
712 case 3: This->js.lRx = value; break;
713 case 4: This->js.lRy = value; break;
714 case 5: This->js.lRz = value; break;
715 case 6: This->js.rglSlider[0] = value; break;
716 case 7: This->js.rglSlider[1] = value; break;
717 case 8: case 9: case 10: case 11:
719 int idx = number - 8;
721 if (jse.number % 2)
722 This->povs[idx].y = jse.value;
723 else
724 This->povs[idx].x = jse.value;
726 This->js.rgdwPOV[idx] = value = joystick_map_pov(&This->povs[idx]);
727 break;
729 default:
730 WARN("axis %d not supported\n", number);
733 if (inst_id >= 0)
734 queue_event((LPDIRECTINPUTDEVICE8A)This,
735 id_to_offset(&This->base.data_format, inst_id),
736 value, jse.time, This->base.dinput->evsequence++);
740 /******************************************************************************
741 * GetDeviceState : returns the "state" of the joystick.
744 static HRESULT WINAPI JoystickAImpl_GetDeviceState(
745 LPDIRECTINPUTDEVICE8A iface,
746 DWORD len,
747 LPVOID ptr)
749 JoystickImpl *This = (JoystickImpl *)iface;
751 TRACE("(%p,0x%08x,%p)\n", This, len, ptr);
753 if (!This->base.acquired) {
754 WARN("not acquired\n");
755 return DIERR_NOTACQUIRED;
758 /* update joystick state */
759 joy_polldev(This);
761 /* convert and copy data to user supplied buffer */
762 fill_DataFormat(ptr, &This->js, &This->base.data_format);
764 return DI_OK;
767 /******************************************************************************
768 * SetProperty : change input device properties
770 static HRESULT WINAPI JoystickAImpl_SetProperty(
771 LPDIRECTINPUTDEVICE8A iface,
772 REFGUID rguid,
773 LPCDIPROPHEADER ph)
775 JoystickImpl *This = (JoystickImpl *)iface;
776 int i;
778 TRACE("(%p,%s,%p)\n",This,debugstr_guid(rguid),ph);
780 if (ph == NULL) {
781 WARN("invalid parameter: ph == NULL\n");
782 return DIERR_INVALIDPARAM;
785 if (TRACE_ON(dinput))
786 _dump_DIPROPHEADER(ph);
788 if (!HIWORD(rguid)) {
789 switch (LOWORD(rguid)) {
790 case (DWORD)DIPROP_RANGE: {
791 LPCDIPROPRANGE pr = (LPCDIPROPRANGE)ph;
792 if (ph->dwHow == DIPH_DEVICE) {
793 TRACE("proprange(%d,%d) all\n", pr->lMin, pr->lMax);
794 for (i = 0; i < This->base.data_format.wine_df->dwNumObjs; i++) {
795 This->props[i].lMin = pr->lMin;
796 This->props[i].lMax = pr->lMax;
798 } else {
799 int obj = find_property(&This->base.data_format, ph);
801 TRACE("proprange(%d,%d) obj=%d\n", pr->lMin, pr->lMax, obj);
802 if (obj >= 0) {
803 This->props[obj].lMin = pr->lMin;
804 This->props[obj].lMax = pr->lMax;
805 return DI_OK;
808 break;
810 case (DWORD)DIPROP_DEADZONE: {
811 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
812 if (ph->dwHow == DIPH_DEVICE) {
813 TRACE("deadzone(%d) all\n", pd->dwData);
814 for (i = 0; i < This->base.data_format.wine_df->dwNumObjs; i++)
815 This->props[i].lDeadZone = pd->dwData;
816 } else {
817 int obj = find_property(&This->base.data_format, ph);
819 TRACE("deadzone(%d) obj=%d\n", pd->dwData, obj);
820 if (obj >= 0) {
821 This->props[obj].lDeadZone = pd->dwData;
822 return DI_OK;
825 break;
827 case (DWORD)DIPROP_SATURATION: {
828 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
829 if (ph->dwHow == DIPH_DEVICE) {
830 TRACE("saturation(%d) all\n", pd->dwData);
831 for (i = 0; i < This->base.data_format.wine_df->dwNumObjs; i++)
832 This->props[i].lSaturation = pd->dwData;
833 } else {
834 int obj = find_property(&This->base.data_format, ph);
836 TRACE("saturation(%d) obj=%d\n", pd->dwData, obj);
837 if (obj >= 0) {
838 This->props[obj].lSaturation = pd->dwData;
839 return DI_OK;
842 break;
844 default:
845 return IDirectInputDevice2AImpl_SetProperty(iface, rguid, ph);
849 return DI_OK;
852 static HRESULT WINAPI JoystickAImpl_GetCapabilities(
853 LPDIRECTINPUTDEVICE8A iface,
854 LPDIDEVCAPS lpDIDevCaps)
856 JoystickImpl *This = (JoystickImpl *)iface;
857 int size;
859 TRACE("%p->(%p)\n",iface,lpDIDevCaps);
861 if (lpDIDevCaps == NULL) {
862 WARN("invalid pointer\n");
863 return E_POINTER;
866 size = lpDIDevCaps->dwSize;
868 if (!(size == sizeof(DIDEVCAPS) || size == sizeof(DIDEVCAPS_DX3))) {
869 WARN("invalid parameter\n");
870 return DIERR_INVALIDPARAM;
873 CopyMemory(lpDIDevCaps, &This->devcaps, size);
874 lpDIDevCaps->dwSize = size;
876 if (TRACE_ON(dinput))
877 _dump_DIDEVCAPS(lpDIDevCaps);
879 return DI_OK;
882 static HRESULT WINAPI JoystickAImpl_Poll(LPDIRECTINPUTDEVICE8A iface)
884 JoystickImpl *This = (JoystickImpl *)iface;
886 TRACE("(%p)\n",This);
888 if (!This->base.acquired) {
889 WARN("not acquired\n");
890 return DIERR_NOTACQUIRED;
893 joy_polldev(This);
894 return DI_OK;
897 /******************************************************************************
898 * GetProperty : get input device properties
900 static HRESULT WINAPI JoystickAImpl_GetProperty(
901 LPDIRECTINPUTDEVICE8A iface,
902 REFGUID rguid,
903 LPDIPROPHEADER pdiph)
905 JoystickImpl *This = (JoystickImpl *)iface;
907 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(rguid), pdiph);
909 if (TRACE_ON(dinput))
910 _dump_DIPROPHEADER(pdiph);
912 if (!HIWORD(rguid)) {
913 switch (LOWORD(rguid)) {
914 case (DWORD) DIPROP_RANGE: {
915 LPDIPROPRANGE pr = (LPDIPROPRANGE)pdiph;
916 int obj = find_property(&This->base.data_format, pdiph);
918 /* The app is querying the current range of the axis
919 * return the lMin and lMax values */
920 if (obj >= 0) {
921 pr->lMin = This->props[obj].lMin;
922 pr->lMax = This->props[obj].lMax;
923 TRACE("range(%d, %d) obj=%d\n", pr->lMin, pr->lMax, obj);
924 return DI_OK;
926 break;
928 case (DWORD) DIPROP_DEADZONE: {
929 LPDIPROPDWORD pd = (LPDIPROPDWORD)pdiph;
930 int obj = find_property(&This->base.data_format, pdiph);
932 if (obj >= 0) {
933 pd->dwData = This->props[obj].lDeadZone;
934 TRACE("deadzone(%d) obj=%d\n", pd->dwData, obj);
935 return DI_OK;
937 break;
939 case (DWORD) DIPROP_SATURATION: {
940 LPDIPROPDWORD pd = (LPDIPROPDWORD)pdiph;
941 int obj = find_property(&This->base.data_format, pdiph);
943 if (obj >= 0) {
944 pd->dwData = This->props[obj].lSaturation;
945 TRACE("saturation(%d) obj=%d\n", pd->dwData, obj);
946 return DI_OK;
948 break;
950 default:
951 return IDirectInputDevice2AImpl_GetProperty(iface, rguid, pdiph);
955 return DI_OK;
958 /******************************************************************************
959 * GetObjectInfo : get object info
961 static HRESULT WINAPI JoystickWImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8W iface,
962 LPDIDEVICEOBJECTINSTANCEW pdidoi, DWORD dwObj, DWORD dwHow)
964 static const WCHAR axisW[] = {'A','x','i','s',' ','%','d',0};
965 static const WCHAR povW[] = {'P','O','V',' ','%','d',0};
966 static const WCHAR buttonW[] = {'B','u','t','t','o','n',' ','%','d',0};
967 HRESULT res;
969 res = IDirectInputDevice2WImpl_GetObjectInfo(iface, pdidoi, dwObj, dwHow);
970 if (res != DI_OK) return res;
972 if (pdidoi->dwType & DIDFT_AXIS)
973 sprintfW(pdidoi->tszName, axisW, DIDFT_GETINSTANCE(pdidoi->dwType));
974 else if (pdidoi->dwType & DIDFT_POV)
975 sprintfW(pdidoi->tszName, povW, DIDFT_GETINSTANCE(pdidoi->dwType));
976 else if (pdidoi->dwType & DIDFT_BUTTON)
977 sprintfW(pdidoi->tszName, buttonW, DIDFT_GETINSTANCE(pdidoi->dwType));
979 _dump_OBJECTINSTANCEW(pdidoi);
980 return res;
983 static HRESULT WINAPI JoystickAImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8A iface,
984 LPDIDEVICEOBJECTINSTANCEA pdidoi, DWORD dwObj, DWORD dwHow)
986 HRESULT res;
987 DIDEVICEOBJECTINSTANCEW didoiW;
988 DWORD dwSize = pdidoi->dwSize;
990 didoiW.dwSize = sizeof(didoiW);
991 res = JoystickWImpl_GetObjectInfo((LPDIRECTINPUTDEVICE8W)iface, &didoiW, dwObj, dwHow);
992 if (res != DI_OK) return res;
994 memset(pdidoi, 0, pdidoi->dwSize);
995 memcpy(pdidoi, &didoiW, FIELD_OFFSET(DIDEVICEOBJECTINSTANCEW, tszName));
996 pdidoi->dwSize = dwSize;
997 WideCharToMultiByte(CP_ACP, 0, didoiW.tszName, -1, pdidoi->tszName,
998 sizeof(pdidoi->tszName), NULL, NULL);
1000 return res;
1003 /******************************************************************************
1004 * GetDeviceInfo : get information about a device's identity
1006 static HRESULT WINAPI JoystickAImpl_GetDeviceInfo(
1007 LPDIRECTINPUTDEVICE8A iface,
1008 LPDIDEVICEINSTANCEA pdidi)
1010 JoystickImpl *This = (JoystickImpl *)iface;
1012 TRACE("(%p,%p)\n", iface, pdidi);
1014 if (pdidi == NULL) {
1015 WARN("invalid pointer\n");
1016 return E_POINTER;
1019 if ((pdidi->dwSize != sizeof(DIDEVICEINSTANCE_DX3A)) &&
1020 (pdidi->dwSize != sizeof(DIDEVICEINSTANCEA))) {
1021 WARN("invalid parameter: pdidi->dwSize = %d != %d or %d\n",
1022 pdidi->dwSize, sizeof(DIDEVICEINSTANCE_DX3A),
1023 sizeof(DIDEVICEINSTANCEA));
1024 return DIERR_INVALIDPARAM;
1027 /* Return joystick */
1028 pdidi->guidInstance = GUID_Joystick;
1029 pdidi->guidProduct = DInput_Wine_Joystick_GUID;
1030 /* we only support traditional joysticks for now */
1031 pdidi->dwDevType = This->devcaps.dwDevType;
1032 strcpy(pdidi->tszInstanceName, "Joystick");
1033 strcpy(pdidi->tszProductName, This->name);
1034 if (pdidi->dwSize > sizeof(DIDEVICEINSTANCE_DX3A)) {
1035 pdidi->guidFFDriver = GUID_NULL;
1036 pdidi->wUsagePage = 0;
1037 pdidi->wUsage = 0;
1040 return DI_OK;
1043 /******************************************************************************
1044 * GetDeviceInfo : get information about a device's identity
1046 static HRESULT WINAPI JoystickWImpl_GetDeviceInfo(
1047 LPDIRECTINPUTDEVICE8W iface,
1048 LPDIDEVICEINSTANCEW pdidi)
1050 JoystickImpl *This = (JoystickImpl *)iface;
1052 TRACE("(%p,%p)\n", iface, pdidi);
1054 if ((pdidi->dwSize != sizeof(DIDEVICEINSTANCE_DX3W)) &&
1055 (pdidi->dwSize != sizeof(DIDEVICEINSTANCEW))) {
1056 WARN("invalid parameter: pdidi->dwSize = %d != %d or %d\n",
1057 pdidi->dwSize, sizeof(DIDEVICEINSTANCE_DX3W),
1058 sizeof(DIDEVICEINSTANCEW));
1059 return DIERR_INVALIDPARAM;
1062 /* Return joystick */
1063 pdidi->guidInstance = GUID_Joystick;
1064 pdidi->guidProduct = DInput_Wine_Joystick_GUID;
1065 /* we only support traditional joysticks for now */
1066 pdidi->dwDevType = This->devcaps.dwDevType;
1067 MultiByteToWideChar(CP_ACP, 0, "Joystick", -1, pdidi->tszInstanceName, MAX_PATH);
1068 MultiByteToWideChar(CP_ACP, 0, This->name, -1, pdidi->tszProductName, MAX_PATH);
1069 if (pdidi->dwSize > sizeof(DIDEVICEINSTANCE_DX3W)) {
1070 pdidi->guidFFDriver = GUID_NULL;
1071 pdidi->wUsagePage = 0;
1072 pdidi->wUsage = 0;
1075 return DI_OK;
1078 static const IDirectInputDevice8AVtbl JoystickAvt =
1080 IDirectInputDevice2AImpl_QueryInterface,
1081 IDirectInputDevice2AImpl_AddRef,
1082 IDirectInputDevice2AImpl_Release,
1083 JoystickAImpl_GetCapabilities,
1084 IDirectInputDevice2AImpl_EnumObjects,
1085 JoystickAImpl_GetProperty,
1086 JoystickAImpl_SetProperty,
1087 JoystickAImpl_Acquire,
1088 JoystickAImpl_Unacquire,
1089 JoystickAImpl_GetDeviceState,
1090 IDirectInputDevice2AImpl_GetDeviceData,
1091 IDirectInputDevice2AImpl_SetDataFormat,
1092 IDirectInputDevice2AImpl_SetEventNotification,
1093 IDirectInputDevice2AImpl_SetCooperativeLevel,
1094 JoystickAImpl_GetObjectInfo,
1095 JoystickAImpl_GetDeviceInfo,
1096 IDirectInputDevice2AImpl_RunControlPanel,
1097 IDirectInputDevice2AImpl_Initialize,
1098 IDirectInputDevice2AImpl_CreateEffect,
1099 IDirectInputDevice2AImpl_EnumEffects,
1100 IDirectInputDevice2AImpl_GetEffectInfo,
1101 IDirectInputDevice2AImpl_GetForceFeedbackState,
1102 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
1103 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
1104 IDirectInputDevice2AImpl_Escape,
1105 JoystickAImpl_Poll,
1106 IDirectInputDevice2AImpl_SendDeviceData,
1107 IDirectInputDevice7AImpl_EnumEffectsInFile,
1108 IDirectInputDevice7AImpl_WriteEffectToFile,
1109 IDirectInputDevice8AImpl_BuildActionMap,
1110 IDirectInputDevice8AImpl_SetActionMap,
1111 IDirectInputDevice8AImpl_GetImageInfo
1114 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
1115 # define XCAST(fun) (typeof(JoystickWvt.fun))
1116 #else
1117 # define XCAST(fun) (void*)
1118 #endif
1120 static const IDirectInputDevice8WVtbl JoystickWvt =
1122 IDirectInputDevice2WImpl_QueryInterface,
1123 XCAST(AddRef)IDirectInputDevice2AImpl_AddRef,
1124 XCAST(Release)IDirectInputDevice2AImpl_Release,
1125 XCAST(GetCapabilities)JoystickAImpl_GetCapabilities,
1126 IDirectInputDevice2WImpl_EnumObjects,
1127 XCAST(GetProperty)JoystickAImpl_GetProperty,
1128 XCAST(SetProperty)JoystickAImpl_SetProperty,
1129 XCAST(Acquire)JoystickAImpl_Acquire,
1130 XCAST(Unacquire)JoystickAImpl_Unacquire,
1131 XCAST(GetDeviceState)JoystickAImpl_GetDeviceState,
1132 XCAST(GetDeviceData)IDirectInputDevice2AImpl_GetDeviceData,
1133 XCAST(SetDataFormat)IDirectInputDevice2AImpl_SetDataFormat,
1134 XCAST(SetEventNotification)IDirectInputDevice2AImpl_SetEventNotification,
1135 XCAST(SetCooperativeLevel)IDirectInputDevice2AImpl_SetCooperativeLevel,
1136 IDirectInputDevice2WImpl_GetObjectInfo,
1137 JoystickWImpl_GetDeviceInfo,
1138 XCAST(RunControlPanel)IDirectInputDevice2AImpl_RunControlPanel,
1139 XCAST(Initialize)IDirectInputDevice2AImpl_Initialize,
1140 XCAST(CreateEffect)IDirectInputDevice2AImpl_CreateEffect,
1141 IDirectInputDevice2WImpl_EnumEffects,
1142 IDirectInputDevice2WImpl_GetEffectInfo,
1143 XCAST(GetForceFeedbackState)IDirectInputDevice2AImpl_GetForceFeedbackState,
1144 XCAST(SendForceFeedbackCommand)IDirectInputDevice2AImpl_SendForceFeedbackCommand,
1145 XCAST(EnumCreatedEffectObjects)IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
1146 XCAST(Escape)IDirectInputDevice2AImpl_Escape,
1147 XCAST(Poll)JoystickAImpl_Poll,
1148 XCAST(SendDeviceData)IDirectInputDevice2AImpl_SendDeviceData,
1149 IDirectInputDevice7WImpl_EnumEffectsInFile,
1150 IDirectInputDevice7WImpl_WriteEffectToFile,
1151 IDirectInputDevice8WImpl_BuildActionMap,
1152 IDirectInputDevice8WImpl_SetActionMap,
1153 IDirectInputDevice8WImpl_GetImageInfo
1155 #undef XCAST
1157 #else /* HAVE_LINUX_22_JOYSTICK_API */
1159 const struct dinput_device joystick_linux_device = {
1160 "Wine Linux joystick driver",
1161 NULL,
1162 NULL,
1163 NULL,
1164 NULL
1167 #endif /* HAVE_LINUX_22_JOYSTICK_API */