mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 08:59:58 +00:00
373 lines
9.6 KiB
C
373 lines
9.6 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "../input_autodetect.h"
|
|
#include "../../general.h"
|
|
#include <unistd.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/inotify.h>
|
|
#include <sys/epoll.h>
|
|
#include <fcntl.h>
|
|
#include <linux/joystick.h>
|
|
|
|
#define NUM_BUTTONS 32
|
|
#define NUM_AXES 32
|
|
|
|
struct linuxraw_joypad
|
|
{
|
|
int fd;
|
|
uint64_t buttons;
|
|
int16_t axes[NUM_AXES];
|
|
|
|
char *ident;
|
|
};
|
|
|
|
static struct linuxraw_joypad linuxraw_pads[MAX_USERS];
|
|
static int g_notify;
|
|
static int g_epoll;
|
|
static bool g_hotplug;
|
|
|
|
static void linuxraw_poll_pad(struct linuxraw_joypad *pad)
|
|
{
|
|
struct js_event event;
|
|
|
|
while (read(pad->fd, &event, sizeof(event)) == (ssize_t)sizeof(event))
|
|
{
|
|
unsigned type = event.type & ~JS_EVENT_INIT;
|
|
|
|
switch (type)
|
|
{
|
|
case JS_EVENT_BUTTON:
|
|
if (event.number < NUM_BUTTONS)
|
|
{
|
|
if (event.value)
|
|
BIT64_SET(pad->buttons, event.number);
|
|
else
|
|
BIT64_CLEAR(pad->buttons, event.number);
|
|
}
|
|
break;
|
|
|
|
case JS_EVENT_AXIS:
|
|
if (event.number < NUM_AXES)
|
|
pad->axes[event.number] = event.value;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
static bool linuxraw_joypad_init_pad(const char *path, struct linuxraw_joypad *pad)
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
if (pad->fd >= 0)
|
|
return false;
|
|
|
|
/* Device can have just been created, but not made accessible (yet).
|
|
IN_ATTRIB will signal when permissions change. */
|
|
if (access(path, R_OK) < 0)
|
|
return false;
|
|
|
|
pad->fd = open(path, O_RDONLY | O_NONBLOCK);
|
|
|
|
*pad->ident = '\0';
|
|
if (pad->fd >= 0)
|
|
{
|
|
if (ioctl(pad->fd, JSIOCGNAME(sizeof(settings->input.device_names[0])), pad->ident) >= 0)
|
|
{
|
|
RARCH_LOG("[Joypad]: Found pad: %s on %s.\n", pad->ident, path);
|
|
|
|
#ifndef IS_JOYCONFIG
|
|
if (g_hotplug)
|
|
{
|
|
char msg[512];
|
|
snprintf(msg, sizeof(msg), "Joypad #%u (%s) connected.", (unsigned)(pad - linuxraw_pads), pad->ident);
|
|
rarch_main_msg_queue_push(msg, 0, 60, false);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
else
|
|
RARCH_ERR("[Joypad]: Didn't find ident of %s.\n", path);
|
|
|
|
struct epoll_event event;
|
|
event.events = EPOLLIN;
|
|
event.data.ptr = pad;
|
|
epoll_ctl(g_epoll, EPOLL_CTL_ADD, pad->fd, &event);
|
|
return true;
|
|
}
|
|
|
|
RARCH_ERR("[Joypad]: Failed to open pad %s (error: %s).\n", path, strerror(errno));
|
|
return false;
|
|
}
|
|
|
|
static void handle_plugged_pad(void)
|
|
{
|
|
int i, rc;
|
|
size_t event_size = sizeof(struct inotify_event) + NAME_MAX + 1;
|
|
uint8_t *event_buf = (uint8_t*)calloc(1, event_size);
|
|
|
|
if (!event_buf)
|
|
return;
|
|
|
|
while ((rc = read(g_notify, event_buf, event_size)) >= 0)
|
|
{
|
|
struct inotify_event *event = NULL;
|
|
|
|
/* Can read multiple events in one read() call. */
|
|
|
|
for (i = 0; i < rc; i += event->len + sizeof(struct inotify_event))
|
|
{
|
|
unsigned idx;
|
|
autoconfig_params_t params = {{0}};
|
|
|
|
event = (struct inotify_event*)&event_buf[i];
|
|
|
|
if (strstr(event->name, "js") != event->name)
|
|
continue;
|
|
|
|
idx = strtoul(event->name + 2, NULL, 0);
|
|
if (idx >= MAX_USERS)
|
|
continue;
|
|
|
|
if (event->mask & IN_DELETE)
|
|
{
|
|
if (linuxraw_pads[idx].fd >= 0)
|
|
{
|
|
|
|
#ifndef IS_JOYCONFIG
|
|
if (g_hotplug)
|
|
{
|
|
char msg[512];
|
|
snprintf(msg, sizeof(msg), "Joypad #%u (%s) disconnected.", idx, linuxraw_pads[idx].ident);
|
|
rarch_main_msg_queue_push(msg, 0, 60, false);
|
|
}
|
|
#endif
|
|
|
|
RARCH_LOG("[Joypad]: Joypad %s disconnected.\n", linuxraw_pads[idx].ident);
|
|
close(linuxraw_pads[idx].fd);
|
|
linuxraw_pads[idx].buttons = 0;
|
|
memset(linuxraw_pads[idx].axes, 0, sizeof(linuxraw_pads[idx].axes));
|
|
linuxraw_pads[idx].fd = -1;
|
|
*linuxraw_pads[idx].ident = '\0';
|
|
|
|
/* TODO - implement VID/PID? */
|
|
params.idx = idx;
|
|
input_config_autoconfigure_joypad(¶ms);
|
|
}
|
|
}
|
|
/* Sometimes, device will be created before acess to it is established. */
|
|
else if (event->mask & (IN_CREATE | IN_ATTRIB))
|
|
{
|
|
bool ret;
|
|
char path[PATH_MAX_LENGTH];
|
|
|
|
snprintf(path, sizeof(path), "/dev/input/%s", event->name);
|
|
ret = linuxraw_joypad_init_pad(path, &linuxraw_pads[idx]);
|
|
|
|
if (*linuxraw_pads[idx].ident && ret)
|
|
{
|
|
params.idx = idx;
|
|
strlcpy(params.name, linuxraw_pads[idx].ident, sizeof(params.name));
|
|
strlcpy(params.driver, linuxraw_joypad.ident, sizeof(params.driver));
|
|
/* TODO - implement VID/PID? */
|
|
input_config_autoconfigure_joypad(¶ms);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
free(event_buf);
|
|
}
|
|
|
|
static void linuxraw_joypad_poll(void)
|
|
{
|
|
int i, ret;
|
|
struct epoll_event events[MAX_USERS + 1];
|
|
|
|
retry:
|
|
ret = epoll_wait(g_epoll, events, MAX_USERS + 1, 0);
|
|
if (ret < 0 && errno == EINTR)
|
|
goto retry;
|
|
|
|
for (i = 0; i < ret; i++)
|
|
{
|
|
if (events[i].data.ptr)
|
|
linuxraw_poll_pad((struct linuxraw_joypad*)events[i].data.ptr);
|
|
else
|
|
handle_plugged_pad();
|
|
}
|
|
}
|
|
|
|
static void linuxraw_joypad_setup_notify(void)
|
|
{
|
|
fcntl(g_notify, F_SETFL, fcntl(g_notify, F_GETFL) | O_NONBLOCK);
|
|
inotify_add_watch(g_notify, "/dev/input", IN_DELETE | IN_CREATE | IN_ATTRIB);
|
|
}
|
|
|
|
static bool linuxraw_joypad_init(void)
|
|
{
|
|
unsigned i;
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
g_epoll = epoll_create(MAX_USERS + 1);
|
|
if (g_epoll < 0)
|
|
return false;
|
|
|
|
for (i = 0; i < MAX_USERS; i++)
|
|
{
|
|
char path[PATH_MAX_LENGTH];
|
|
autoconfig_params_t params = {{0}};
|
|
struct linuxraw_joypad *pad = (struct linuxraw_joypad*)&linuxraw_pads[i];
|
|
|
|
if (!pad)
|
|
continue;
|
|
|
|
params.idx = i;
|
|
|
|
pad->fd = -1;
|
|
pad->ident = settings->input.device_names[i];
|
|
|
|
snprintf(path, sizeof(path), "/dev/input/js%u", i);
|
|
|
|
if (linuxraw_joypad_init_pad(path, pad))
|
|
{
|
|
strlcpy(params.name, pad->ident, sizeof(params.name));
|
|
strlcpy(params.driver, "linuxraw", sizeof(params.driver));
|
|
|
|
/* TODO - implement VID/PID? */
|
|
input_config_autoconfigure_joypad(¶ms);
|
|
linuxraw_poll_pad(pad);
|
|
}
|
|
else
|
|
input_config_autoconfigure_joypad(¶ms);
|
|
}
|
|
|
|
g_notify = inotify_init();
|
|
if (g_notify >= 0)
|
|
{
|
|
struct epoll_event event;
|
|
|
|
linuxraw_joypad_setup_notify();
|
|
|
|
event.events = EPOLLIN;
|
|
event.data.ptr = NULL;
|
|
epoll_ctl(g_epoll, EPOLL_CTL_ADD, g_notify, &event);
|
|
}
|
|
|
|
g_hotplug = true;
|
|
|
|
return true;
|
|
}
|
|
|
|
static void linuxraw_joypad_destroy(void)
|
|
{
|
|
unsigned i;
|
|
|
|
for (i = 0; i < MAX_USERS; i++)
|
|
{
|
|
if (linuxraw_pads[i].fd >= 0)
|
|
close(linuxraw_pads[i].fd);
|
|
}
|
|
|
|
memset(linuxraw_pads, 0, sizeof(linuxraw_pads));
|
|
|
|
for (i = 0; i < MAX_USERS; i++)
|
|
linuxraw_pads[i].fd = -1;
|
|
|
|
if (g_notify >= 0)
|
|
close(g_notify);
|
|
g_notify = -1;
|
|
|
|
if (g_epoll >= 0)
|
|
close(g_epoll);
|
|
g_epoll = -1;
|
|
|
|
g_hotplug = false;
|
|
}
|
|
|
|
static bool linuxraw_joypad_button(unsigned port, uint16_t joykey)
|
|
{
|
|
const struct linuxraw_joypad *pad = (const struct linuxraw_joypad*)&linuxraw_pads[port];
|
|
if (!pad)
|
|
return false;
|
|
return joykey < NUM_BUTTONS && BIT64_GET(pad->buttons, joykey);
|
|
}
|
|
|
|
static uint64_t linuxraw_joypad_get_buttons(unsigned port)
|
|
{
|
|
const struct linuxraw_joypad *pad = (const struct linuxraw_joypad*)&linuxraw_pads[port];
|
|
if (!pad)
|
|
return 0;
|
|
return pad->buttons;
|
|
}
|
|
|
|
static int16_t linuxraw_joypad_axis(unsigned port, uint32_t joyaxis)
|
|
{
|
|
int16_t val = 0;
|
|
const struct linuxraw_joypad *pad = NULL;
|
|
|
|
if (joyaxis == AXIS_NONE)
|
|
return 0;
|
|
|
|
pad = (const struct linuxraw_joypad*)&linuxraw_pads[port];
|
|
|
|
if (AXIS_NEG_GET(joyaxis) < NUM_AXES)
|
|
{
|
|
val = pad->axes[AXIS_NEG_GET(joyaxis)];
|
|
if (val > 0)
|
|
val = 0;
|
|
/* Kernel returns values in range [-0x7fff, 0x7fff]. */
|
|
}
|
|
else if (AXIS_POS_GET(joyaxis) < NUM_AXES)
|
|
{
|
|
val = pad->axes[AXIS_POS_GET(joyaxis)];
|
|
if (val < 0)
|
|
val = 0;
|
|
}
|
|
|
|
return val;
|
|
}
|
|
|
|
static bool linuxraw_joypad_query_pad(unsigned pad)
|
|
{
|
|
return pad < MAX_USERS && linuxraw_pads[pad].fd >= 0;
|
|
}
|
|
|
|
static const char *linuxraw_joypad_name(unsigned pad)
|
|
{
|
|
if (pad >= MAX_USERS)
|
|
return NULL;
|
|
|
|
return *linuxraw_pads[pad].ident ? linuxraw_pads[pad].ident : NULL;
|
|
}
|
|
|
|
rarch_joypad_driver_t linuxraw_joypad = {
|
|
linuxraw_joypad_init,
|
|
linuxraw_joypad_query_pad,
|
|
linuxraw_joypad_destroy,
|
|
linuxraw_joypad_button,
|
|
linuxraw_joypad_get_buttons,
|
|
linuxraw_joypad_axis,
|
|
linuxraw_joypad_poll,
|
|
NULL,
|
|
linuxraw_joypad_name,
|
|
"linuxraw",
|
|
};
|