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

296 lines
8.2 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 <linux/joystick.h>
#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
2010-09-07 11:34:51 -04:00
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
{
2013-04-24 13:25:42 -04:00
char axisCount, buttonCount;
char name[256] = "";
2016-10-09 21:24:07 -04:00
int jid, fd, version;
_GLFWjoystick* js;
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;
}
2012-09-06 19:01:17 -04:00
fd = open(path, O_RDONLY | O_NONBLOCK);
2012-08-26 12:11:31 -04:00
if (fd == -1)
return GLFW_FALSE;
2010-09-07 11:34:51 -04:00
2012-08-26 12:11:31 -04:00
// Verify that the joystick driver version is at least 1.0
ioctl(fd, JSIOCGVERSION, &version);
if (version < 0x010000)
{
// It's an old 0.x interface (we don't support it)
close(fd);
return GLFW_FALSE;
2012-08-26 12:11:31 -04:00
}
2010-09-07 11:34:51 -04:00
if (ioctl(fd, JSIOCGNAME(sizeof(name)), name) < 0)
strncpy(name, "Unknown", sizeof(name));
2013-04-24 13:25:42 -04:00
ioctl(fd, JSIOCGAXES, &axisCount);
ioctl(fd, JSIOCGBUTTONS, &buttonCount);
2015-12-13 11:38:50 -05:00
js = _glfwAllocJoystick(name, axisCount, buttonCount, 0);
if (!js)
{
close(fd);
return GLFW_FALSE;
}
js->linjs.path = strdup(path);
js->linjs.fd = fd;
_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
// 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);
free(js->linjs.path);
_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, "^js[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;
char* path = NULL;
if (regexec(&_glfw.linjs.regex, entry->d_name, 1, &match, 0) != 0)
continue;
if (asprintf(&path, "%s/%s", dirname, entry->d_name) < 0)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Linux: Failed to construct device path: %s",
strerror(errno));
continue;
}
if (openJoystickDevice(path))
count++;
free(path);
}
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);
if (regexec(&_glfw.linjs.regex, e->name, 1, &match, 0) == 0)
2015-12-13 11:38:50 -05:00
{
char path[20];
snprintf(path, sizeof(path), "/dev/input/%s", e->name);
if (e->mask & (IN_CREATE | IN_ATTRIB))
openJoystickDevice(path);
else if (e->mask & IN_DELETE)
{
int jid;
for (jid = 0; jid <= GLFW_JOYSTICK_LAST; jid++)
{
if (strcmp(_glfw.joysticks[jid].linjs.path, path) == 0)
{
closeJoystick(_glfw.joysticks + jid);
break;
}
}
}
2015-12-13 11:38:50 -05:00
}
offset += sizeof(struct inotify_event) + e->len;
}
}
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 js_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
// Clear the initial-state bit
e.type &= ~JS_EVENT_INIT;
if (e.type == JS_EVENT_AXIS)
_glfwInputJoystickAxis(jid, e.number, e.value / 32767.0f);
else if (e.type == JS_EVENT_BUTTON)
_glfwInputJoystickButton(jid, e.number, e.value ? 1 : 0);
}
return js->present;
}