2020-11-11 19:14:34 -08:00
|
|
|
/*
|
|
|
|
|
Simple DirectMedia Layer
|
2023-01-09 09:41:41 -08:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2020-11-11 19:14:34 -08:00
|
|
|
Copyright (C) 2020 Collabora Ltd.
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2022-11-29 18:34:15 -08:00
|
|
|
#include "SDL_internal.h"
|
2020-11-11 19:14:34 -08:00
|
|
|
|
|
|
|
|
#include "SDL_evdev_capabilities.h"
|
|
|
|
|
|
2023-03-29 21:49:01 +00:00
|
|
|
#ifdef HAVE_LINUX_INPUT_H
|
2020-11-11 19:14:34 -08:00
|
|
|
|
2020-12-28 00:55:28 +03:00
|
|
|
/* missing defines in older Linux kernel headers */
|
|
|
|
|
#ifndef BTN_TRIGGER_HAPPY
|
|
|
|
|
#define BTN_TRIGGER_HAPPY 0x2c0
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef BTN_DPAD_UP
|
2022-11-30 12:51:59 -08:00
|
|
|
#define BTN_DPAD_UP 0x220
|
2020-12-28 00:55:28 +03:00
|
|
|
#endif
|
|
|
|
|
#ifndef KEY_ALS_TOGGLE
|
2022-11-30 12:51:59 -08:00
|
|
|
#define KEY_ALS_TOGGLE 0x230
|
2020-12-28 00:55:28 +03:00
|
|
|
#endif
|
|
|
|
|
|
2020-11-11 19:14:34 -08:00
|
|
|
extern int
|
2023-06-16 15:14:33 +01:00
|
|
|
SDL_EVDEV_GuessDeviceClass(const unsigned long bitmask_props[NBITS(INPUT_PROP_MAX)],
|
|
|
|
|
const unsigned long bitmask_ev[NBITS(EV_MAX)],
|
2022-12-01 16:07:03 -05:00
|
|
|
const unsigned long bitmask_abs[NBITS(ABS_MAX)],
|
|
|
|
|
const unsigned long bitmask_key[NBITS(KEY_MAX)],
|
|
|
|
|
const unsigned long bitmask_rel[NBITS(REL_MAX)])
|
2020-11-11 19:14:34 -08:00
|
|
|
{
|
2022-11-30 12:51:59 -08:00
|
|
|
struct range
|
|
|
|
|
{
|
2020-12-28 00:55:28 +03:00
|
|
|
unsigned start;
|
|
|
|
|
unsigned end;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* key code ranges above BTN_MISC (start is inclusive, stop is exclusive)*/
|
|
|
|
|
static const struct range high_key_blocks[] = {
|
|
|
|
|
{ KEY_OK, BTN_DPAD_UP },
|
|
|
|
|
{ KEY_ALS_TOGGLE, BTN_TRIGGER_HAPPY }
|
|
|
|
|
};
|
|
|
|
|
|
2020-11-11 19:14:34 -08:00
|
|
|
int devclass = 0;
|
|
|
|
|
unsigned long keyboard_mask;
|
|
|
|
|
|
2023-06-16 15:16:44 +01:00
|
|
|
/* If the kernel specifically says it's an accelerometer, believe it */
|
|
|
|
|
if (test_bit(INPUT_PROP_ACCELEROMETER, bitmask_props)) {
|
|
|
|
|
return SDL_UDEV_DEVICE_ACCELEROMETER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We treat pointing sticks as indistinguishable from mice */
|
|
|
|
|
if (test_bit(INPUT_PROP_POINTING_STICK, bitmask_props)) {
|
|
|
|
|
return SDL_UDEV_DEVICE_MOUSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We treat buttonpads as equivalent to touchpads */
|
|
|
|
|
if (test_bit(INPUT_PROP_TOPBUTTONPAD, bitmask_props) ||
|
|
|
|
|
test_bit(INPUT_PROP_BUTTONPAD, bitmask_props)) {
|
|
|
|
|
return SDL_UDEV_DEVICE_TOUCHPAD;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-11 19:15:09 -08:00
|
|
|
/* X, Y, Z axes but no buttons probably means an accelerometer */
|
|
|
|
|
if (test_bit(EV_ABS, bitmask_ev) &&
|
|
|
|
|
test_bit(ABS_X, bitmask_abs) &&
|
|
|
|
|
test_bit(ABS_Y, bitmask_abs) &&
|
|
|
|
|
test_bit(ABS_Z, bitmask_abs) &&
|
|
|
|
|
!test_bit(EV_KEY, bitmask_ev)) {
|
|
|
|
|
return SDL_UDEV_DEVICE_ACCELEROMETER;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-16 15:16:44 +01:00
|
|
|
/* RX, RY, RZ axes but no buttons probably means a gyro or
|
|
|
|
|
* accelerometer (we don't distinguish) */
|
2020-11-11 19:15:09 -08:00
|
|
|
if (test_bit(EV_ABS, bitmask_ev) &&
|
|
|
|
|
test_bit(ABS_RX, bitmask_abs) &&
|
|
|
|
|
test_bit(ABS_RY, bitmask_abs) &&
|
|
|
|
|
test_bit(ABS_RZ, bitmask_abs) &&
|
|
|
|
|
!test_bit(EV_KEY, bitmask_ev)) {
|
|
|
|
|
return SDL_UDEV_DEVICE_ACCELEROMETER;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-11 19:14:34 -08:00
|
|
|
if (test_bit(EV_ABS, bitmask_ev) &&
|
|
|
|
|
test_bit(ABS_X, bitmask_abs) && test_bit(ABS_Y, bitmask_abs)) {
|
|
|
|
|
if (test_bit(BTN_STYLUS, bitmask_key) || test_bit(BTN_TOOL_PEN, bitmask_key)) {
|
|
|
|
|
; /* ID_INPUT_TABLET */
|
|
|
|
|
} else if (test_bit(BTN_TOOL_FINGER, bitmask_key) && !test_bit(BTN_TOOL_PEN, bitmask_key)) {
|
2021-10-07 18:14:16 -07:00
|
|
|
devclass |= SDL_UDEV_DEVICE_TOUCHPAD; /* ID_INPUT_TOUCHPAD */
|
2020-11-11 19:14:34 -08:00
|
|
|
} else if (test_bit(BTN_MOUSE, bitmask_key)) {
|
|
|
|
|
devclass |= SDL_UDEV_DEVICE_MOUSE; /* ID_INPUT_MOUSE */
|
|
|
|
|
} else if (test_bit(BTN_TOUCH, bitmask_key)) {
|
|
|
|
|
/* TODO: better determining between touchscreen and multitouch touchpad,
|
|
|
|
|
see https://github.com/systemd/systemd/blob/master/src/udev/udev-builtin-input_id.c */
|
|
|
|
|
devclass |= SDL_UDEV_DEVICE_TOUCHSCREEN; /* ID_INPUT_TOUCHSCREEN */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (test_bit(BTN_TRIGGER, bitmask_key) ||
|
|
|
|
|
test_bit(BTN_A, bitmask_key) ||
|
|
|
|
|
test_bit(BTN_1, bitmask_key) ||
|
|
|
|
|
test_bit(ABS_RX, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_RY, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_RZ, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_THROTTLE, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_RUDDER, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_WHEEL, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_GAS, bitmask_abs) ||
|
|
|
|
|
test_bit(ABS_BRAKE, bitmask_abs)) {
|
|
|
|
|
devclass |= SDL_UDEV_DEVICE_JOYSTICK; /* ID_INPUT_JOYSTICK */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (test_bit(EV_REL, bitmask_ev) &&
|
|
|
|
|
test_bit(REL_X, bitmask_rel) && test_bit(REL_Y, bitmask_rel) &&
|
|
|
|
|
test_bit(BTN_MOUSE, bitmask_key)) {
|
|
|
|
|
devclass |= SDL_UDEV_DEVICE_MOUSE; /* ID_INPUT_MOUSE */
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-28 00:55:28 +03:00
|
|
|
if (test_bit(EV_KEY, bitmask_ev)) {
|
|
|
|
|
unsigned i;
|
|
|
|
|
unsigned long found = 0;
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
for (i = 0; i < BTN_MISC / BITS_PER_LONG; ++i) {
|
2020-12-28 00:55:28 +03:00
|
|
|
found |= bitmask_key[i];
|
|
|
|
|
}
|
|
|
|
|
/* If there are no keys in the lower block, check the higher blocks */
|
|
|
|
|
if (!found) {
|
|
|
|
|
unsigned block;
|
|
|
|
|
for (block = 0; block < (sizeof(high_key_blocks) / sizeof(struct range)); ++block) {
|
|
|
|
|
for (i = high_key_blocks[block].start; i < high_key_blocks[block].end; ++i) {
|
|
|
|
|
if (test_bit(i, bitmask_key)) {
|
|
|
|
|
found = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (found > 0) {
|
2023-06-16 14:53:29 +01:00
|
|
|
devclass |= SDL_UDEV_DEVICE_HAS_KEYS; /* ID_INPUT_KEY */
|
2020-12-28 00:55:28 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-16 14:53:29 +01:00
|
|
|
/* the first 32 bits are ESC, numbers, and Q to D, so if we have all of
|
|
|
|
|
* those, consider it to be a fully-featured keyboard;
|
|
|
|
|
* do not test KEY_RESERVED, though */
|
2020-11-11 19:14:34 -08:00
|
|
|
keyboard_mask = 0xFFFFFFFE;
|
2023-06-16 14:53:29 +01:00
|
|
|
if ((bitmask_key[0] & keyboard_mask) == keyboard_mask) {
|
2020-11-11 19:14:34 -08:00
|
|
|
devclass |= SDL_UDEV_DEVICE_KEYBOARD; /* ID_INPUT_KEYBOARD */
|
2022-11-27 17:38:43 +01:00
|
|
|
}
|
2020-11-11 19:14:34 -08:00
|
|
|
|
|
|
|
|
return devclass;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-11 10:24:17 -08:00
|
|
|
#endif /* HAVE_LINUX_INPUT_H */
|