2012-12-03 16:12:48 -05:00
|
|
|
/*
|
|
|
|
* Status:
|
|
|
|
*
|
|
|
|
* - Can map keys from some keyboard to keys on a joystick.
|
|
|
|
*
|
|
|
|
* Does not:
|
|
|
|
* - Have a nice mapping file format / datastructures YET.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-12-03 14:16:19 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
#include <signal.h>
|
2012-12-03 14:16:19 -05:00
|
|
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
#include <linux/uinput.h>
|
|
|
|
|
|
|
|
#define INPUT_PATH "/dev/input/by-path/platform-i8042-serio-0-event-kbd"
|
|
|
|
/*#define INPUT_PATH "/dev/input/by-path/platform-i8042-serio-0-event-kbd"*/
|
|
|
|
#define UINPUT_PATH "/dev/uinput"
|
|
|
|
|
2012-12-03 16:12:48 -05:00
|
|
|
/* Reverse mapping, for later use */
|
|
|
|
static const struct _key_to_str {
|
|
|
|
char *name;
|
|
|
|
int num;
|
|
|
|
} key_map[] = {
|
|
|
|
#define DEF_KEY(NAME) \
|
|
|
|
{#NAME,NAME},
|
|
|
|
#include "def_keys.h"
|
|
|
|
{NULL, -1}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int get_key_num(char* name)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
while (key_map[i].name) {
|
|
|
|
if (!strcmp(key_map[i].name, name))
|
|
|
|
return key_map[i].num;
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
static int js[2];
|
2012-12-03 16:12:48 -05:00
|
|
|
|
2012-12-03 14:16:19 -05:00
|
|
|
/* TODO:
|
2012-12-03 16:12:48 -05:00
|
|
|
* - Add file parsing / reading
|
|
|
|
* - Add proper datastructures to keep track
|
2012-12-03 14:16:19 -05:00
|
|
|
*/
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
void free_js(int sig) {
|
|
|
|
int j;
|
|
|
|
for(j = 0; j < 2; j++) {
|
|
|
|
printf("Freeing joystick: %d\n", j);
|
|
|
|
if (ioctl(js[j], UI_DEV_DESTROY) < 0) {
|
|
|
|
perror("Error freeing joystick");
|
|
|
|
}
|
|
|
|
close(js[j]);
|
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-12-03 14:16:19 -05:00
|
|
|
int main(int argc, char** argv) {
|
2012-12-03 17:06:12 -05:00
|
|
|
int i, j, nowrite;
|
|
|
|
int in; /* fds */
|
2012-12-03 14:16:19 -05:00
|
|
|
struct input_event e, je;
|
|
|
|
struct uinput_user_dev uidev;
|
|
|
|
|
2012-12-03 16:12:48 -05:00
|
|
|
int abskeyevs[] = {
|
|
|
|
ABS_HAT0X,
|
|
|
|
ABS_HAT0Y,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
int evkeys[] = {
|
2012-12-03 17:06:12 -05:00
|
|
|
BTN_JOYSTICK, /* We need this to show up as Joystick */
|
2012-12-03 16:12:48 -05:00
|
|
|
BTN_0,
|
|
|
|
BTN_1,
|
|
|
|
BTN_2,
|
|
|
|
BTN_3,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
if(signal(SIGINT, free_js)) {
|
|
|
|
printf("Atexit registration failed\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-12-03 16:12:48 -05:00
|
|
|
/* Open input and uinput */
|
2012-12-03 14:16:19 -05:00
|
|
|
in = open(INPUT_PATH, O_RDONLY);
|
|
|
|
if(in < 0) {
|
|
|
|
perror("open in");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
for(j = 0; j < 2; j++) {
|
|
|
|
js[j] = open(UINPUT_PATH, O_WRONLY | O_NONBLOCK);
|
|
|
|
if (js[j] < 0) {
|
|
|
|
perror("open js[j]");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-12-03 14:16:19 -05:00
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
/* Register device opts */
|
|
|
|
if (ioctl(js[j], UI_SET_EVBIT, EV_ABS) < 0) {
|
|
|
|
perror("ioctl EV_ABS");
|
2012-12-03 16:12:48 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
if (ioctl(js[j], UI_SET_EVBIT, EV_KEY) < 0) {
|
|
|
|
perror("ioctl EV_KEY");
|
2012-12-03 16:12:48 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2012-12-03 14:16:19 -05:00
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
/* Every ``button'' needs to be registered */
|
|
|
|
i = 0;
|
|
|
|
while(abskeyevs[i] != 0) {
|
|
|
|
if (ioctl(js[j], UI_SET_ABSBIT, abskeyevs[i]) < 0) {
|
|
|
|
perror("ioctl dynamic");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while(evkeys[i] != 0) {
|
|
|
|
if (ioctl(js[j], UI_SET_KEYBIT, evkeys[i]) < 0) {
|
|
|
|
perror("ioctl dynamic 2");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
2012-12-03 16:12:48 -05:00
|
|
|
|
2012-12-03 14:16:19 -05:00
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
/* Allocate device info */
|
|
|
|
memset(&uidev, '\0', sizeof(struct uinput_user_dev));
|
|
|
|
snprintf(uidev.name, UINPUT_MAX_NAME_SIZE, "key2joy:1");
|
2012-12-03 14:16:19 -05:00
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
uidev.id.bustype = BUS_USB;
|
|
|
|
uidev.id.vendor = 0x42;
|
|
|
|
uidev.id.product = 0xbebe;
|
|
|
|
uidev.id.version = 1;
|
2012-12-03 14:16:19 -05:00
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
if (write(js[j], &uidev, sizeof(uidev)) < 0) {
|
|
|
|
perror("write");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ioctl(js[j], UI_DEV_CREATE)) {
|
|
|
|
perror("ioctl create");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-12-03 14:16:19 -05:00
|
|
|
}
|
|
|
|
|
2012-12-03 16:12:48 -05:00
|
|
|
/* Do it! */
|
2012-12-03 14:16:19 -05:00
|
|
|
while (1) {
|
|
|
|
if (read(in, &e, sizeof(struct input_event))) {
|
|
|
|
printf("Event: (Type: %d, Code: %d, Value %d)\n", e.type, e.code, e.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-03 16:12:48 -05:00
|
|
|
memset(&je, '\0', sizeof(struct input_event));
|
|
|
|
nowrite = 0;
|
2012-12-03 17:06:12 -05:00
|
|
|
j = 0;
|
2012-12-03 16:12:48 -05:00
|
|
|
|
2012-12-03 17:12:40 -05:00
|
|
|
/* Only catch keys and ignore auto-repeat (value == 2) */
|
|
|
|
if (e.type == EV_KEY && e.value != 2) {
|
2012-12-03 16:12:48 -05:00
|
|
|
switch(e.code) {
|
|
|
|
case KEY_UP:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0Y; je.value = -e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_DOWN:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0Y; je.value = e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_LEFT:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0X; je.value = -e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_RIGHT:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0X; je.value = e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_LEFTCTRL:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_KEY; je.code = BTN_0; je.value = e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_LEFTALT:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_KEY; je.code = BTN_1; je.value = e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_SPACE:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_KEY; je.code = BTN_2; je.value = e.value; j = 0; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
case KEY_1:
|
2012-12-03 17:06:12 -05:00
|
|
|
je.type = EV_KEY; je.code = BTN_3; je.value = e.value; j = 0; break;
|
|
|
|
case KEY_R:
|
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0Y; je.value = -e.value; j = 1; break;
|
|
|
|
case KEY_F:
|
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0Y; je.value = e.value; j = 1; break;
|
|
|
|
case KEY_D:
|
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0X; je.value = -e.value; j = 1; break;
|
|
|
|
case KEY_G:
|
|
|
|
je.type = EV_ABS; je.code = ABS_HAT0X; je.value = e.value; j = 1; break;
|
|
|
|
case KEY_A:
|
|
|
|
je.type = EV_KEY; je.code = BTN_0; je.value = e.value; j = 1; break;
|
|
|
|
case KEY_S:
|
|
|
|
je.type = EV_KEY; je.code = BTN_1; je.value = e.value; j = 1; break;
|
|
|
|
case KEY_Q:
|
|
|
|
je.type = EV_KEY; je.code = BTN_2; je.value = e.value; j = 1; break;
|
|
|
|
case KEY_2:
|
|
|
|
je.type = EV_KEY; je.code = BTN_3; je.value = e.value; j = 1; break;
|
2012-12-03 16:12:48 -05:00
|
|
|
default:
|
|
|
|
nowrite = 1;
|
|
|
|
}
|
|
|
|
if (nowrite == 0) {
|
2012-12-03 17:06:12 -05:00
|
|
|
if(write(js[j], &je, sizeof(struct input_event)) < 0) {
|
2012-12-03 16:12:48 -05:00
|
|
|
perror("EV_ABS Write event");
|
|
|
|
return -1;
|
|
|
|
}
|
2012-12-03 14:16:19 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-03 16:12:48 -05:00
|
|
|
|
|
|
|
/* Synchronisation events */
|
2012-12-03 14:16:19 -05:00
|
|
|
if (e.type == EV_SYN) {
|
|
|
|
memset(&je, '\0', sizeof(struct input_event));
|
|
|
|
printf("SYN event\n");
|
|
|
|
|
|
|
|
je.type = EV_SYN;
|
|
|
|
je.code = 0;
|
|
|
|
je.value = 0;
|
|
|
|
|
2012-12-03 17:06:12 -05:00
|
|
|
if (write(js[j], &je, sizeof(struct input_event)) < 0) {
|
2012-12-03 14:16:19 -05:00
|
|
|
perror("SYN write event");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|