1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00
glfw/src/linux_joystick.c

422 lines
12 KiB
C
Raw Normal View History

2010-09-07 11:34:51 -04:00
//========================================================================
2016-08-18 17:42:15 -04:00
// GLFW 3.3 Linux - www.glfw.org
2010-09-07 11:34:51 -04:00
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
2016-11-21 10:23:59 -05:00
// Copyright (c) 2006-2016 Camilla Löwy <elmindreda@glfw.org>
2010-09-07 11:34:51 -04:00
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would
// be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not
// be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source
// distribution.
//
//========================================================================
#include "internal.h"
2012-08-26 12:11:31 -04:00
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/inotify.h>
2012-08-26 12:11:31 -04:00
#include <fcntl.h>
#include <errno.h>
#include <dirent.h>
2012-08-26 12:11:31 -04:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2012-08-26 12:11:31 -04:00
2017-06-15 11:13:23 -04:00
// Apply an EV_KEY event to the specified joystick
//
static void handleKeyEvent(_GLFWjoystick* js, int code, int value)
{
2017-06-15 11:13:23 -04:00
_glfwInputJoystickButton(_GLFW_JOYSTICK_ID(js),
js->linjs.keyMap[code - BTN_MISC],
value ? GLFW_PRESS : GLFW_RELEASE);
}
2017-06-15 11:13:23 -04:00
// Apply an EV_ABS event to the specified joystick
//
static void handleAbsEvent(_GLFWjoystick* js, int code, int value)
{
2017-06-15 11:13:23 -04:00
const int jid = _GLFW_JOYSTICK_ID(js);
const int index = js->linjs.absMap[code];
if (code >= ABS_HAT0X && code <= ABS_HAT3Y)
{
static const char stateMap[3][3] =
{
2017-06-15 11:13:23 -04:00
{ GLFW_HAT_CENTERED, GLFW_HAT_UP, GLFW_HAT_DOWN },
{ GLFW_HAT_LEFT, GLFW_HAT_LEFT_UP, GLFW_HAT_LEFT_DOWN },
{ GLFW_HAT_RIGHT, GLFW_HAT_RIGHT_UP, GLFW_HAT_RIGHT_DOWN },
};
2017-06-15 11:13:23 -04:00
const int hat = (code - ABS_HAT0X) / 2;
const int axis = (code - ABS_HAT0X) % 2;
int* state = js->linjs.hats[hat];
2017-06-15 11:13:23 -04:00
// NOTE: Looking at several input drivers, it seems all hat events use
// -1 for left / up, 0 for centered and 1 for right / down
if (value == 0)
state[axis] = 0;
else if (value < 0)
state[axis] = 1;
else if (value > 0)
state[axis] = 2;
_glfwInputJoystickHat(jid, index, stateMap[state[0]][state[1]]);
}
else
{
2017-06-15 11:13:23 -04:00
const struct input_absinfo* info = &js->linjs.absInfo[code];
float normalized = value;
2017-06-15 11:13:23 -04:00
const int range = info->maximum - info->minimum;
if (range)
{
2017-06-15 11:13:23 -04:00
// Normalize to 0.0 -> 1.0
normalized = (normalized - info->minimum) / range;
2017-06-15 11:13:23 -04:00
// Normalize to -1.0 -> 1.0
normalized = normalized * 2.0f - 1.0f;
}
_glfwInputJoystickAxis(jid, index, normalized);
}
}
2017-06-15 11:13:23 -04:00
// Poll state of absolute axes
//
static void pollAbsState(_GLFWjoystick* js)
{
2017-06-15 11:13:23 -04:00
int code;
2017-06-15 11:13:23 -04:00
for (code = 0; code < ABS_CNT; code++)
{
2017-06-15 11:13:23 -04:00
if (js->linjs.absMap[code] < 0)
continue;
2017-06-15 11:13:23 -04:00
struct input_absinfo* info = &js->linjs.absInfo[code];
2017-06-15 11:13:23 -04:00
if (ioctl(js->linjs.fd, EVIOCGABS(code), info) < 0)
continue;
2017-06-15 11:13:23 -04:00
handleAbsEvent(js, code, info->value);
}
}
2010-09-07 11:34:51 -04:00
2017-06-15 11:13:23 -04:00
#define isBitSet(bit, arr) (arr[(bit) / 8] & (1 << ((bit) % 8)))
2012-08-26 12:11:31 -04:00
// Attempt to open the specified joystick device
2013-02-04 07:22:10 -05:00
//
static GLFWbool openJoystickDevice(const char* path)
2012-08-26 12:11:31 -04:00
{
2017-06-15 11:13:23 -04:00
int jid, code;
char name[256] = "";
char evBits[(EV_CNT + 7) / 8] = {0};
char keyBits[(KEY_CNT + 7) / 8] = {0};
char absBits[(ABS_CNT + 7) / 8] = {0};
2017-06-15 11:13:23 -04:00
int axisCount = 0, buttonCount = 0, hatCount = 0;
_GLFWjoystickLinux linjs = {0};
_GLFWjoystick* js = NULL;
2017-01-11 23:30:56 -05:00
for (jid = 0; jid <= GLFW_JOYSTICK_LAST; jid++)
{
if (!_glfw.joysticks[jid].present)
continue;
if (strcmp(_glfw.joysticks[jid].linjs.path, path) == 0)
return GLFW_FALSE;
}
2017-06-15 11:13:23 -04:00
linjs.fd = open(path, O_RDONLY | O_NONBLOCK);
if (linjs.fd == -1)
return GLFW_FALSE;
if (ioctl(linjs.fd, EVIOCGBIT(0, sizeof(evBits)), evBits) < 0 ||
ioctl(linjs.fd, EVIOCGBIT(EV_KEY, sizeof(keyBits)), keyBits) < 0 ||
ioctl(linjs.fd, EVIOCGBIT(EV_ABS, sizeof(absBits)), absBits) < 0)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Linux: Failed to query input device elements: %s",
strerror(errno));
close(linjs.fd);
return GLFW_FALSE;
2017-06-15 11:13:23 -04:00
}
2010-09-07 11:34:51 -04:00
// Ensure this device supports the events expected of a joystick
2017-06-15 11:13:23 -04:00
if (!isBitSet(EV_KEY, evBits) || !isBitSet(EV_ABS, evBits))
2012-08-26 12:11:31 -04:00
{
2017-06-15 11:13:23 -04:00
close(linjs.fd);
return GLFW_FALSE;
2012-08-26 12:11:31 -04:00
}
2010-09-07 11:34:51 -04:00
2017-06-15 11:13:23 -04:00
if (ioctl(linjs.fd, EVIOCGNAME(sizeof(name)), name) < 0)
strncpy(name, "Unknown", sizeof(name));
2017-06-15 11:13:23 -04:00
for (code = BTN_MISC; code < KEY_CNT; code++)
{
2017-06-15 11:13:23 -04:00
if (!isBitSet(code, keyBits))
continue;
2017-06-15 11:13:23 -04:00
linjs.keyMap[code - BTN_MISC] = buttonCount;
buttonCount++;
}
2017-06-15 11:13:23 -04:00
for (code = 0; code < ABS_CNT; code++)
{
2017-06-15 11:13:23 -04:00
linjs.absMap[code] = -1;
if (!isBitSet(code, absBits))
continue;
2015-12-13 11:38:50 -05:00
2017-06-15 11:13:23 -04:00
if (code >= ABS_HAT0X && code <= ABS_HAT3Y)
{
2017-06-15 11:13:23 -04:00
linjs.absMap[code] = hatCount;
hatCount++;
// Skip the Y axis
2017-06-15 11:13:23 -04:00
code++;
}
else
{
2017-06-15 11:13:23 -04:00
if (ioctl(linjs.fd, EVIOCGABS(code), &linjs.absInfo[code]) < 0)
continue;
2017-06-15 11:13:23 -04:00
linjs.absMap[code] = axisCount;
axisCount++;
}
}
js = _glfwAllocJoystick(name, axisCount, buttonCount, hatCount);
if (!js)
{
2017-06-15 11:13:23 -04:00
close(linjs.fd);
return GLFW_FALSE;
}
strncpy(linjs.path, path, sizeof(linjs.path));
memcpy(&js->linjs, &linjs, sizeof(linjs));
2017-06-15 11:13:23 -04:00
pollAbsState(js);
_glfwInputJoystick(_GLFW_JOYSTICK_ID(js), GLFW_CONNECTED);
return GLFW_TRUE;
2012-08-26 12:11:31 -04:00
}
2010-09-07 11:34:51 -04:00
2017-06-15 11:13:23 -04:00
#undef isBitSet
// Frees all resources associated with the specified joystick
2013-02-04 07:22:10 -05:00
//
static void closeJoystick(_GLFWjoystick* js)
{
close(js->linjs.fd);
_glfwFreeJoystick(js);
_glfwInputJoystick(_GLFW_JOYSTICK_ID(js), GLFW_DISCONNECTED);
2010-09-07 11:34:51 -04:00
}
2016-07-31 13:26:57 -04:00
// Lexically compare joysticks by name; used by qsort
//
static int compareJoysticks(const void* fp, const void* sp)
{
const _GLFWjoystick* fj = fp;
const _GLFWjoystick* sj = sp;
return strcmp(fj->linjs.path, sj->linjs.path);
}
2010-09-07 11:34:51 -04:00
2012-08-26 12:11:31 -04:00
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
// Initialize joystick interface
2013-02-04 07:22:10 -05:00
//
2015-12-10 11:10:05 -05:00
GLFWbool _glfwInitJoysticksLinux(void)
2010-09-07 11:34:51 -04:00
{
DIR* dir;
int count = 0;
const char* dirname = "/dev/input";
2010-09-07 11:34:51 -04:00
_glfw.linjs.inotify = inotify_init1(IN_NONBLOCK | IN_CLOEXEC);
if (_glfw.linjs.inotify == -1)
2010-09-07 11:34:51 -04:00
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Linux: Failed to initialize inotify: %s",
strerror(errno));
2015-08-23 13:30:04 -04:00
return GLFW_FALSE;
}
// HACK: Register for IN_ATTRIB as well to get notified when udev is done
// This works well in practice but the true way is libudev
_glfw.linjs.watch = inotify_add_watch(_glfw.linjs.inotify,
dirname,
IN_CREATE | IN_ATTRIB | IN_DELETE);
if (_glfw.linjs.watch == -1)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Linux: Failed to watch for joystick connections in %s: %s",
dirname,
strerror(errno));
// Continue without device connection notifications
}
if (regcomp(&_glfw.linjs.regex, "^event[0-9]\\+$", 0) != 0)
{
_glfwInputError(GLFW_PLATFORM_ERROR, "Linux: Failed to compile regex");
2015-08-23 13:30:04 -04:00
return GLFW_FALSE;
}
dir = opendir(dirname);
if (dir)
{
struct dirent* entry;
2010-09-08 09:51:25 -04:00
while ((entry = readdir(dir)))
{
regmatch_t match;
if (regexec(&_glfw.linjs.regex, entry->d_name, 1, &match, 0) != 0)
continue;
2017-06-15 13:56:25 -04:00
char path[PATH_MAX];
2017-06-11 17:15:44 -04:00
2017-06-15 13:56:25 -04:00
snprintf(path, sizeof(path), "%s/%s", dirname, entry->d_name);
if (openJoystickDevice(path))
count++;
}
closedir(dir);
}
else
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Linux: Failed to open joystick device directory %s: %s",
dirname,
strerror(errno));
// Continue with no joysticks detected
2010-09-07 11:34:51 -04:00
}
qsort(_glfw.joysticks, count, sizeof(_GLFWjoystick), compareJoysticks);
2015-08-23 13:30:04 -04:00
return GLFW_TRUE;
2010-09-07 11:34:51 -04:00
}
2012-08-26 12:11:31 -04:00
// Close all opened joystick handles
2013-02-04 07:22:10 -05:00
//
void _glfwTerminateJoysticksLinux(void)
2010-09-07 11:34:51 -04:00
{
int jid;
2010-09-07 11:34:51 -04:00
for (jid = 0; jid <= GLFW_JOYSTICK_LAST; jid++)
2010-09-07 11:34:51 -04:00
{
_GLFWjoystick* js = _glfw.joysticks + jid;
if (js->present)
closeJoystick(js);
2010-09-07 11:34:51 -04:00
}
regfree(&_glfw.linjs.regex);
if (_glfw.linjs.inotify > 0)
{
if (_glfw.linjs.watch > 0)
inotify_rm_watch(_glfw.linjs.inotify, _glfw.linjs.watch);
close(_glfw.linjs.inotify);
}
2010-09-07 11:34:51 -04:00
}
void _glfwDetectJoystickConnectionLinux(void)
2015-12-13 11:38:50 -05:00
{
ssize_t offset = 0;
char buffer[16384];
const ssize_t size = read(_glfw.linjs.inotify, buffer, sizeof(buffer));
2015-12-13 11:38:50 -05:00
while (size > offset)
{
regmatch_t match;
const struct inotify_event* e = (struct inotify_event*) (buffer + offset);
2017-06-15 13:56:25 -04:00
offset += sizeof(struct inotify_event) + e->len;
if (regexec(&_glfw.linjs.regex, e->name, 1, &match, 0) != 0)
continue;
char path[PATH_MAX];
snprintf(path, sizeof(path), "/dev/input/%s", e->name);
if (e->mask & (IN_CREATE | IN_ATTRIB))
openJoystickDevice(path);
else if (e->mask & IN_DELETE)
2015-12-13 11:38:50 -05:00
{
2017-06-15 13:56:25 -04:00
int jid;
2017-06-15 13:56:25 -04:00
for (jid = 0; jid <= GLFW_JOYSTICK_LAST; jid++)
{
2017-06-15 13:56:25 -04:00
if (strcmp(_glfw.joysticks[jid].linjs.path, path) == 0)
{
2017-06-15 13:56:25 -04:00
closeJoystick(_glfw.joysticks + jid);
break;
}
}
2015-12-13 11:38:50 -05:00
}
}
}
2010-09-07 11:34:51 -04:00
2010-09-15 10:44:43 -04:00
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 11:34:51 -04:00
int _glfwPlatformPollJoystick(int jid, int mode)
2010-09-07 11:34:51 -04:00
{
_GLFWjoystick* js = _glfw.joysticks + jid;
// Read all queued events (non-blocking)
for (;;)
{
struct input_event e;
2010-09-07 11:34:51 -04:00
errno = 0;
if (read(js->linjs.fd, &e, sizeof(e)) < 0)
{
// Reset the joystick slot if the device was disconnected
if (errno == ENODEV)
closeJoystick(js);
break;
}
2010-09-07 11:34:51 -04:00
if (e.type == EV_SYN)
{
if (e.code == SYN_DROPPED)
_glfw.linjs.dropped = GLFW_TRUE;
else if (e.code == SYN_REPORT)
{
_glfw.linjs.dropped = GLFW_FALSE;
pollAbsState(js);
}
}
if (_glfw.linjs.dropped)
continue;
if (e.type == EV_KEY)
handleKeyEvent(js, e.code, e.value);
else if (e.type == EV_ABS)
handleAbsEvent(js, e.code, e.value);
}
return js->present;
}