📄 linuxinput.c
字号:
/* DirectInput Joystick device * * Copyright 1998,2000 Marcus Meissner * Copyright 1998,1999 Lionel Ulmer * Copyright 2000-2001 TransGaming Technologies Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include "config.h"#include "wine/port.h"#ifdef HAVE_LINUX_INPUT_H#include <assert.h>#include <stdarg.h>#include <stdio.h>#include <string.h>#include <time.h>#ifdef HAVE_UNISTD_H# include <unistd.h>#endif#ifdef HAVE_SYS_TIME_H# include <sys/time.h>#endif#include <sys/fcntl.h>#ifdef HAVE_SYS_IOCTL_H# include <sys/ioctl.h>#endif#include <errno.h>#ifdef HAVE_SYS_ERRNO_H# include <sys/errno.h>#endif#ifdef HAVE_CORRECT_LINUXINPUT_H#ifdef HAVE_LINUX_INPUT_H# include <linux/input.h>#endif#define EVDEVPREFIX "/dev/input/event"#include "wine/debug.h"#include "wine/unicode.h"#include "windef.h"#include "winbase.h"#include "winerror.h"#include "dinput.h"#include "dinput_private.h"#include "device_private.h"WINE_DEFAULT_DEBUG_CHANNEL(dinput);/* Wine joystick driver object instances */#define WINE_JOYSTICK_AXIS_BASE 0#define WINE_JOYSTICK_BUTTON_BASE 8typedef struct JoystickImpl JoystickImpl;static ICOM_VTABLE(IDirectInputDevice8A) JoystickAvt;static ICOM_VTABLE(IDirectInputDevice8W) JoystickWvt;struct JoystickImpl{ LPVOID lpVtbl; DWORD ref; GUID guid; /* The 'parent' DInput */ IDirectInputImpl *dinput; /* joystick private */ /* what range and deadzone the game wants */ LONG wantmin[ABS_MAX]; LONG wantmax[ABS_MAX]; LONG deadz[ABS_MAX]; /* autodetecting ranges per axe by following movement */ LONG havemax[ABS_MAX]; LONG havemin[ABS_MAX]; int joyfd; LPDIDATAFORMAT df; HANDLE hEvent; LPDIDEVICEOBJECTDATA data_queue; int queue_head, queue_tail, queue_len; DIJOYSTATE js; /* data returned by the EVIOCGABS() ioctl */ int axes[ABS_MAX+1][5];#define AXE_ABS 0#define AXE_ABSMIN 1#define AXE_ABSMAX 2#define AXE_ABSFUZZ 3#define AXE_ABSFLAT 4 /* data returned by EVIOCGBIT for EV_ABS and EV_KEY */ BYTE absbits[(ABS_MAX+7)/8]; BYTE keybits[(KEY_MAX+7)/8];};/* This GUID is slightly different from the linux joystick one. Take note. */static GUID DInput_Wine_Joystick_GUID = { /* 9e573eda-7734-11d2-8d4a-23903fb6bdf7 */ 0x9e573eda, 0x7734, 0x11d2, {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}};#define test_bit(arr,bit) (((BYTE*)arr)[bit>>3]&(1<<(bit&7)))static int joydev_have(void){ int i, fd; int havejoy = 0; for (i=0;i<64;i++) { char buf[200]; BYTE absbits[(ABS_MAX+7)/8],keybits[(KEY_MAX+7)/8]; sprintf(buf,EVDEVPREFIX"%d",i); if (-1!=(fd=open(buf,O_RDONLY))) { if (-1==ioctl(fd,EVIOCGBIT(EV_ABS,sizeof(absbits)),absbits)) { perror("EVIOCGBIT EV_ABS"); close(fd); continue; } if (-1==ioctl(fd,EVIOCGBIT(EV_KEY,sizeof(keybits)),keybits)) { perror("EVIOCGBIT EV_KEY"); close(fd); continue; } /* A true joystick has at least axis X and Y, and at least 1 * button. copied from linux/drivers/input/joydev.c */ if (test_bit(absbits,ABS_X) && test_bit(absbits,ABS_Y) && ( test_bit(keybits,BTN_TRIGGER) || test_bit(keybits,BTN_A) || test_bit(keybits,BTN_1) ) ) { FIXME("found a joystick at %s!\n",buf); havejoy = 1; } close(fd); } if (havejoy || (errno==ENODEV)) break; } return havejoy;}static BOOL joydev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, int version){ int havejoy = 0; if ((dwDevType != 0) && (GET_DIDEVICE_TYPE(dwDevType) != DIDEVTYPE_JOYSTICK)) return FALSE; if (dwFlags & DIEDFL_FORCEFEEDBACK) return FALSE; havejoy = joydev_have(); if (!havejoy) return FALSE; TRACE("Enumerating the linuxinput Joystick device\n"); /* Return joystick */ lpddi->guidInstance = GUID_Joystick; lpddi->guidProduct = DInput_Wine_Joystick_GUID; lpddi->guidFFDriver = GUID_NULL; lpddi->dwDevType = DIDEVTYPE_JOYSTICK | (DIDEVTYPEJOYSTICK_TRADITIONAL<<8); strcpy(lpddi->tszInstanceName, "Joystick"); /* ioctl JSIOCGNAME(len) */ strcpy(lpddi->tszProductName, "Wine Joystick"); return TRUE;}static BOOL joydev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, int version){ int havejoy = 0; if ((dwDevType != 0) && (GET_DIDEVICE_TYPE(dwDevType) != DIDEVTYPE_JOYSTICK)) return FALSE; if (dwFlags & DIEDFL_FORCEFEEDBACK) return FALSE; havejoy = joydev_have(); if (!havejoy) return FALSE; TRACE("Enumerating the linuxinput Joystick device\n"); /* Return joystick */ lpddi->guidInstance = GUID_Joystick; lpddi->guidProduct = DInput_Wine_Joystick_GUID; lpddi->guidFFDriver = GUID_NULL; lpddi->dwDevType = DIDEVTYPE_JOYSTICK | (DIDEVTYPEJOYSTICK_TRADITIONAL<<8); MultiByteToWideChar(CP_ACP, 0, "Joystick", -1, lpddi->tszInstanceName, MAX_PATH); /* ioctl JSIOCGNAME(len) */ MultiByteToWideChar(CP_ACP, 0, "Wine Joystick", -1, lpddi->tszProductName, MAX_PATH); return TRUE;}static JoystickImpl *alloc_device(REFGUID rguid, LPVOID jvt, IDirectInputImpl *dinput){ JoystickImpl* newDevice; int i; newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(JoystickImpl)); newDevice->lpVtbl = jvt; newDevice->ref = 1; newDevice->joyfd = -1; newDevice->dinput = dinput; memcpy(&(newDevice->guid),rguid,sizeof(*rguid)); for (i=0;i<ABS_MAX;i++) { newDevice->wantmin[i] = -32768; newDevice->wantmax[i] = 32767; newDevice->deadz[i] = 1024; /* guessing */ } return newDevice;}static HRESULT joydev_create_deviceA(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev){ int havejoy = 0; havejoy = joydev_have(); if (!havejoy) return DIERR_DEVICENOTREG; if ((IsEqualGUID(&GUID_Joystick,rguid)) || (IsEqualGUID(&DInput_Wine_Joystick_GUID,rguid))) { if ((riid == NULL) || IsEqualGUID(&IID_IDirectInputDeviceA,riid) || IsEqualGUID(&IID_IDirectInputDevice2A,riid) || IsEqualGUID(&IID_IDirectInputDevice7A,riid) || IsEqualGUID(&IID_IDirectInputDevice8A,riid)) { *pdev = (IDirectInputDeviceA*) alloc_device(rguid, &JoystickAvt, dinput); TRACE("Creating a Joystick device (%p)\n", *pdev); return DI_OK; } else return DIERR_NOINTERFACE; } return DIERR_DEVICENOTREG;}static HRESULT joydev_create_deviceW(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEW* pdev){ int havejoy = 0; havejoy = joydev_have(); if (!havejoy) return DIERR_DEVICENOTREG; if ((IsEqualGUID(&GUID_Joystick,rguid)) || (IsEqualGUID(&DInput_Wine_Joystick_GUID,rguid))) { if ((riid == NULL) || IsEqualGUID(&IID_IDirectInputDeviceW,riid) || IsEqualGUID(&IID_IDirectInputDevice2W,riid) || IsEqualGUID(&IID_IDirectInputDevice7W,riid) || IsEqualGUID(&IID_IDirectInputDevice8W,riid)) { *pdev = (IDirectInputDeviceW*) alloc_device(rguid, &JoystickWvt, dinput); TRACE("Creating a Joystick device (%p)\n", *pdev); return DI_OK; } else return DIERR_NOINTERFACE; } return DIERR_DEVICENOTREG;}static dinput_device joydev = { 20, joydev_enum_deviceA, joydev_enum_deviceW, joydev_create_deviceA, joydev_create_deviceW};DECL_GLOBAL_CONSTRUCTOR(joydev_register) { dinput_register_device(&joydev); }/****************************************************************************** * Joystick */static ULONG WINAPI JoystickAImpl_Release(LPDIRECTINPUTDEVICE8A iface){ ICOM_THIS(JoystickImpl,iface); This->ref--; if (This->ref) return This->ref; /* Free the data queue */ if (This->data_queue != NULL) HeapFree(GetProcessHeap(),0,This->data_queue); /* Free the DataFormat */ HeapFree(GetProcessHeap(), 0, This->df); HeapFree(GetProcessHeap(),0,This); return 0;}/****************************************************************************** * SetDataFormat : the application can choose the format of the data * the device driver sends back with GetDeviceState. */static HRESULT WINAPI JoystickAImpl_SetDataFormat( LPDIRECTINPUTDEVICE8A iface,LPCDIDATAFORMAT df){ ICOM_THIS(JoystickImpl,iface); int i; TRACE("(this=%p,%p)\n",This,df); TRACE("(df.dwSize=%ld)\n",df->dwSize); TRACE("(df.dwObjsize=%ld)\n",df->dwObjSize); TRACE("(df.dwFlags=0x%08lx)\n",df->dwFlags); TRACE("(df.dwDataSize=%ld)\n",df->dwDataSize); TRACE("(df.dwNumObjs=%ld)\n",df->dwNumObjs); for (i=0;i<df->dwNumObjs;i++) { TRACE("df.rgodf[%d].guid %s (%p)\n",i,debugstr_guid(df->rgodf[i].pguid), df->rgodf[i].pguid); TRACE("df.rgodf[%d].dwOfs %ld\n",i,df->rgodf[i].dwOfs); TRACE("dwType 0x%02x,dwInstance %d\n",DIDFT_GETTYPE(df->rgodf[i].dwType),DIDFT_GETINSTANCE(df->rgodf[i].dwType)); TRACE("df.rgodf[%d].dwFlags 0x%08lx\n",i,df->rgodf[i].dwFlags); } /* Store the new data format */ This->df = HeapAlloc(GetProcessHeap(),0,df->dwSize); memcpy(This->df, df, df->dwSize); This->df->rgodf = HeapAlloc(GetProcessHeap(),0,df->dwNumObjs*df->dwObjSize); memcpy(This->df->rgodf,df->rgodf,df->dwNumObjs*df->dwObjSize); return 0;}/****************************************************************************** * Acquire : gets exclusive control of the joystick */static HRESULT WINAPI JoystickAImpl_Acquire(LPDIRECTINPUTDEVICE8A iface){ int i; ICOM_THIS(JoystickImpl,iface); char buf[200]; TRACE("(this=%p)\n",This); if (This->joyfd!=-1) return 0; for (i=0;i<64;i++) { sprintf(buf,EVDEVPREFIX"%d",i); if (-1==(This->joyfd=open(buf,O_RDONLY))) { if (errno==ENODEV) return DIERR_NOTFOUND; perror(buf); continue; } if ((-1!=ioctl(This->joyfd,EVIOCGBIT(EV_ABS,sizeof(This->absbits)),This->absbits)) && (-1!=ioctl(This->joyfd,EVIOCGBIT(EV_KEY,sizeof(This->keybits)),This->keybits)) && (test_bit(This->absbits,ABS_X) && test_bit(This->absbits,ABS_Y) && (test_bit(This->keybits,BTN_TRIGGER)|| test_bit(This->keybits,BTN_A) || test_bit(This->keybits,BTN_1) ) ) ) break; close(This->joyfd); This->joyfd = -1; } if (This->joyfd==-1) return DIERR_NOTFOUND; for (i=0;i<ABS_MAX;i++) { if (test_bit(This->absbits,i)) { if (-1==ioctl(This->joyfd,EVIOCGABS(i),&(This->axes[i]))) continue; FIXME("axe %d: cur=%d, min=%d, max=%d, fuzz=%d, flat=%d\n", i, This->axes[i][AXE_ABS], This->axes[i][AXE_ABSMIN], This->axes[i][AXE_ABSMAX], This->axes[i][AXE_ABSFUZZ], This->axes[i][AXE_ABSFLAT] ); This->havemax[i] = This->axes[i][AXE_ABSMIN]; This->havemin[i] = This->axes[i][AXE_ABSMAX]; } } MESSAGE("\n"); return 0;}/****************************************************************************** * Unacquire : frees the joystick */static HRESULT WINAPI JoystickAImpl_Unacquire(LPDIRECTINPUTDEVICE8A iface){ ICOM_THIS(JoystickImpl,iface); TRACE("(this=%p)\n",This); if (This->joyfd!=-1) { close(This->joyfd); This->joyfd = -1; } return DI_OK;}/* * This maps the read value (from the input event) to a value in the * 'wanted' range. It also autodetects the possible range of the axe and * adapts values accordingly. */static intmap_axis(JoystickImpl* This, int axis, int val) { int xmid = This->axes[axis][AXE_ABS]; int xmin = This->axes[axis][AXE_ABSMIN]; int xmax = This->axes[axis][AXE_ABSMAX]; int hmax = This->havemax[axis]; int hmin = This->havemin[axis]; int wmin = This->wantmin[axis]; int wmax = This->wantmax[axis]; int ret; if (val > hmax) This->havemax[axis] = hmax = val; if (val < hmin) This->havemin[axis] = hmin = val; if (xmin == xmax) return val; if ((hmin == hmax) || (hmax==xmid) || (hmin==xmid)) return val; /* dont assume total linearity, but linearity starting from a zeropoint */ if (val > xmid) { ret = (val-xmid)*((wmax-wmin)/2)/(hmax-xmid)+0; } else { ret = (xmid-val)*((wmax-wmin)/2)/(hmin-xmid)+0; }#if 0 /* deadzone doesn't work comfortably enough right now. needs more testing*/ if ((ret > -deadz/2 ) && (ret < deadz/2)) { FIXME("%d in deadzone, return mid.\n",val); return (wmax-wmin)/2+wmin; }#endif return ret;}static void joy_polldev(JoystickImpl *This) { struct timeval tv; fd_set readfds; struct input_event ie; if (This->joyfd==-1) return; while (1) { memset(&tv,0,sizeof(tv)); FD_ZERO(&readfds); FD_SET(This->joyfd,&readfds); if (1>select(This->joyfd+1,&readfds,NULL,NULL,&tv)) return; /* we have one event, so we can read */ if (sizeof(ie)!=read(This->joyfd,&ie,sizeof(ie))) return; TRACE("input_event: type %d, code %d, value %d\n",ie.type,ie.code,ie.value); switch (ie.type) { case EV_KEY: /* button */ switch (ie.code) { case BTN_TRIGGER: /* normal flight stick */ case BTN_A: /* gamepad */ case BTN_1: /* generic */ GEN_EVENT(DIJOFS_BUTTON(0),ie.value?0x80:0x0,ie.time.tv_usec,(This->dinput->evsequence)++); This->js.rgbButtons[0] = ie.value?0x80:0x00;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -