glfw/src/x11_joystick.c

349 lines
9.5 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
// GLFW - An OpenGL library
2012-08-28 13:03:57 +00:00
// Platform: X11
2010-09-07 15:41:26 +00:00
// API version: 3.0
2010-09-07 15:34:51 +00:00
// WWW: http://www.glfw.org/
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// 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"
#ifdef __linux__
2012-08-26 16:11:31 +00:00
#include <linux/joystick.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <regex.h>
#include <dirent.h>
2012-08-26 16:11:31 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#endif // __linux__
2012-08-26 16:11:31 +00:00
2010-09-07 15:34:51 +00:00
//========================================================================
2012-08-26 16:11:31 +00:00
// Attempt to open the specified joystick device
2010-09-07 15:34:51 +00:00
//========================================================================
2012-08-26 16:11:31 +00:00
static int openJoystickDevice(int joy, const char* path)
{
#ifdef __linux__
2012-08-26 16:11:31 +00:00
char numAxes, numButtons;
char name[256];
2012-08-26 16:11:31 +00:00
int fd, version;
2010-09-07 15:34:51 +00:00
2012-09-06 23:01:17 +00:00
fd = open(path, O_RDONLY | O_NONBLOCK);
2012-08-26 16:11:31 +00:00
if (fd == -1)
return GL_FALSE;
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
_glfwLibrary.X11.joystick[joy].fd = fd;
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00: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 GL_FALSE;
}
2010-09-07 15:34:51 +00:00
if (ioctl(fd, JSIOCGNAME(sizeof(name)), name) < 0)
strncpy(name, "Unknown", sizeof(name));
_glfwLibrary.X11.joystick[joy].name = strdup(name);
2012-08-26 16:11:31 +00:00
ioctl(fd, JSIOCGAXES, &numAxes);
_glfwLibrary.X11.joystick[joy].numAxes = (int) numAxes;
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
ioctl(fd, JSIOCGBUTTONS, &numButtons);
_glfwLibrary.X11.joystick[joy].numButtons = (int) numButtons;
_glfwLibrary.X11.joystick[joy].axis =
(float*) malloc(sizeof(float) * numAxes);
if (_glfwLibrary.X11.joystick[joy].axis == NULL)
{
close(fd);
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
_glfwSetError(GLFW_OUT_OF_MEMORY, NULL);
return GL_FALSE;
}
_glfwLibrary.X11.joystick[joy].button =
(unsigned char*) malloc(sizeof(char) * numButtons);
if (_glfwLibrary.X11.joystick[joy].button == NULL)
{
free(_glfwLibrary.X11.joystick[joy].axis);
close(fd);
_glfwSetError(GLFW_OUT_OF_MEMORY, NULL);
return GL_FALSE;
}
_glfwLibrary.X11.joystick[joy].present = GL_TRUE;
#endif // __linux__
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
return GL_TRUE;
}
2010-09-07 15:34:51 +00:00
2010-09-15 14:44:43 +00:00
2010-09-07 15:34:51 +00:00
//========================================================================
2012-08-26 16:11:31 +00:00
// Polls for and processes events for all present joysticks
2010-09-07 15:34:51 +00:00
//========================================================================
2012-08-26 16:11:31 +00:00
static void pollJoystickEvents(void)
2010-09-07 15:34:51 +00:00
{
#ifdef __linux__
2012-08-26 16:11:31 +00:00
int i;
ssize_t result;
2012-08-26 16:11:31 +00:00
struct js_event e;
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
for (i = 0; i <= GLFW_JOYSTICK_LAST; i++)
2010-09-07 15:34:51 +00:00
{
2012-08-26 16:11:31 +00:00
if (!_glfwLibrary.X11.joystick[i].present)
continue;
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
// Read all queued events (non-blocking)
for (;;)
2010-09-07 15:34:51 +00:00
{
errno = 0;
result = read(_glfwLibrary.X11.joystick[i].fd, &e, sizeof(e));
if (errno == ENODEV)
_glfwLibrary.X11.joystick[i].present = GL_FALSE;
2012-09-06 23:01:17 +00:00
if (result == -1)
break;
2012-08-26 16:11:31 +00:00
// We don't care if it's an init event or not
e.type &= ~JS_EVENT_INIT;
switch (e.type)
2010-09-07 15:34:51 +00:00
{
2012-08-26 16:11:31 +00:00
case JS_EVENT_AXIS:
_glfwLibrary.X11.joystick[i].axis[e.number] =
(float) e.value / 32767.0f;
// We need to change the sign for the Y axes, so that
// positive = up/forward, according to the GLFW spec.
if (e.number & 1)
{
_glfwLibrary.X11.joystick[i].axis[e.number] =
-_glfwLibrary.X11.joystick[i].axis[e.number];
}
break;
case JS_EVENT_BUTTON:
_glfwLibrary.X11.joystick[i].button[e.number] =
e.value ? GLFW_PRESS : GLFW_RELEASE;
break;
default:
break;
2010-09-07 15:34:51 +00:00
}
}
}
#endif // __linux__
2010-09-07 15:34:51 +00:00
}
2012-08-26 16:11:31 +00:00
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 15:34:51 +00:00
//========================================================================
2012-08-26 16:11:31 +00:00
// Initialize joystick interface
2010-09-07 15:34:51 +00:00
//========================================================================
int _glfwInitJoysticks(void)
2010-09-07 15:34:51 +00:00
{
#ifdef __linux__
int i, joy = 0;
regex_t regex;
DIR* dir;
2012-09-07 13:48:03 +00:00
const char* dirs[] =
2012-08-26 16:11:31 +00:00
{
"/dev/input",
"/dev"
2012-08-26 16:11:31 +00:00
};
2010-09-07 15:34:51 +00:00
if (regcomp(&regex, "^js[0-9]\\+$", 0) != 0)
2010-09-07 15:34:51 +00:00
{
_glfwSetError(GLFW_PLATFORM_ERROR, "X11: Failed to compile regex");
return GL_FALSE;
}
2012-09-07 13:48:03 +00:00
for (i = 0; i < sizeof(dirs) / sizeof(dirs[0]); i++)
{
struct dirent* entry;
2012-09-07 13:48:03 +00:00
dir = opendir(dirs[i]);
if (!dir)
continue;
while ((entry = readdir(dir)))
2010-09-07 15:34:51 +00:00
{
char path[20];
regmatch_t match;
2010-09-08 13:51:25 +00:00
if (regexec(&regex, entry->d_name, 1, &match, 0) != 0)
continue;
2012-09-07 13:48:03 +00:00
snprintf(path, sizeof(path), "%s/%s", dirs[i], entry->d_name);
2012-08-26 16:11:31 +00:00
if (openJoystickDevice(joy, path))
joy++;
2010-09-07 15:34:51 +00:00
}
closedir(dir);
2010-09-07 15:34:51 +00:00
}
regfree(&regex);
#endif // __linux__
return GL_TRUE;
2010-09-07 15:34:51 +00:00
}
//========================================================================
2012-08-26 16:11:31 +00:00
// Close all opened joystick handles
2010-09-07 15:34:51 +00:00
//========================================================================
2012-08-26 16:11:31 +00:00
void _glfwTerminateJoysticks(void)
2010-09-07 15:34:51 +00:00
{
#ifdef __linux__
2010-09-07 15:34:51 +00:00
int i;
2010-09-08 13:51:25 +00:00
for (i = 0; i <= GLFW_JOYSTICK_LAST; i++)
2010-09-07 15:34:51 +00:00
{
2012-08-26 16:11:31 +00:00
if (_glfwLibrary.X11.joystick[i].present)
2010-09-07 15:34:51 +00:00
{
2012-08-26 16:11:31 +00:00
close(_glfwLibrary.X11.joystick[i].fd);
free(_glfwLibrary.X11.joystick[i].axis);
free(_glfwLibrary.X11.joystick[i].button);
free(_glfwLibrary.X11.joystick[i].name);
2012-08-26 16:11:31 +00:00
_glfwLibrary.X11.joystick[i].present = GL_FALSE;
2010-09-07 15:34:51 +00:00
}
}
#endif // __linux__
2010-09-07 15:34:51 +00:00
}
2010-09-15 14:44:43 +00:00
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 15:34:51 +00:00
//========================================================================
// Determine joystick capabilities
2010-09-07 15:34:51 +00:00
//========================================================================
2010-09-08 13:51:25 +00:00
int _glfwPlatformGetJoystickParam(int joy, int param)
2010-09-07 15:34:51 +00:00
{
pollJoystickEvents();
2012-08-26 16:11:31 +00:00
if (!_glfwLibrary.X11.joystick[joy].present)
2010-09-07 15:34:51 +00:00
return 0;
2010-09-08 13:51:25 +00:00
switch (param)
2010-09-07 15:34:51 +00:00
{
2010-09-08 14:02:02 +00:00
case GLFW_PRESENT:
return GL_TRUE;
2010-09-07 15:34:51 +00:00
2010-09-08 14:02:02 +00:00
case GLFW_AXES:
2012-08-26 16:11:31 +00:00
return _glfwLibrary.X11.joystick[joy].numAxes;
2010-09-07 15:34:51 +00:00
2010-09-08 14:02:02 +00:00
case GLFW_BUTTONS:
2012-08-26 16:11:31 +00:00
return _glfwLibrary.X11.joystick[joy].numButtons;
2010-09-07 15:34:51 +00:00
2010-09-08 14:02:02 +00:00
default:
_glfwSetError(GLFW_INVALID_ENUM, NULL);
2010-09-07 15:34:51 +00:00
}
return 0;
}
//========================================================================
// Get joystick axis positions
2010-09-07 15:34:51 +00:00
//========================================================================
int _glfwPlatformGetJoystickAxes(int joy, float* axes, int numAxes)
2010-09-07 15:34:51 +00:00
{
int i;
pollJoystickEvents();
2012-08-26 16:11:31 +00:00
if (!_glfwLibrary.X11.joystick[joy].present)
2010-09-07 15:34:51 +00:00
return 0;
2012-08-26 16:11:31 +00:00
if (_glfwLibrary.X11.joystick[joy].numAxes < numAxes)
numAxes = _glfwLibrary.X11.joystick[joy].numAxes;
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
for (i = 0; i < numAxes; i++)
axes[i] = _glfwLibrary.X11.joystick[joy].axis[i];
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
return numAxes;
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Get joystick button states
2010-09-07 15:34:51 +00:00
//========================================================================
2010-09-08 13:58:43 +00:00
int _glfwPlatformGetJoystickButtons(int joy, unsigned char* buttons,
2012-08-26 16:11:31 +00:00
int numButtons)
2010-09-07 15:34:51 +00:00
{
int i;
pollJoystickEvents();
2012-08-26 16:11:31 +00:00
if (!_glfwLibrary.X11.joystick[joy].present)
2010-09-07 15:34:51 +00:00
return 0;
2012-08-26 16:11:31 +00:00
if (_glfwLibrary.X11.joystick[joy].numButtons < numButtons)
numButtons = _glfwLibrary.X11.joystick[joy].numButtons;
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
for (i = 0; i < numButtons; i++)
buttons[i] = _glfwLibrary.X11.joystick[joy].button[i];
2010-09-07 15:34:51 +00:00
2012-08-26 16:11:31 +00:00
return numButtons;
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Get joystick name
//========================================================================
const char* _glfwPlatformGetJoystickName(int joy)
{
if (!_glfwLibrary.X11.joystick[joy].present)
return NULL;
return _glfwLibrary.X11.joystick[joy].name;
}