Skip to content

Latest commit

 

History

History
797 lines (696 loc) · 28.2 KB

SDL_evdev.c

File metadata and controls

797 lines (696 loc) · 28.2 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 17, 2020
Jan 17, 2020
3
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 "../../SDL_internal.h"
#ifdef SDL_INPUT_LINUXEV
/* This is based on the linux joystick driver */
/* References: https://www.kernel.org/doc/Documentation/input/input.txt
* https://www.kernel.org/doc/Documentation/input/event-codes.txt
* /usr/include/linux/input.h
* The evtest application is also useful to debug the protocol
*/
#include "SDL_evdev.h"
Jan 9, 2017
Jan 9, 2017
33
#include "SDL_evdev_kbd.h"
34
35
36
37
38
39
40
41
42
43
44
45
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/input.h>
#include "SDL.h"
#include "SDL_assert.h"
#include "SDL_endian.h"
#include "SDL_scancode.h"
#include "../../events/SDL_events_c.h"
Oct 1, 2016
Oct 1, 2016
46
#include "../../events/scancodes_linux.h" /* adds linux_scancode_table */
Jan 9, 2017
Jan 9, 2017
47
#include "../../core/linux/SDL_udev.h"
Jan 8, 2017
Jan 8, 2017
49
/* These are not defined in older Linux kernel headers */
50
51
52
#ifndef SYN_DROPPED
#define SYN_DROPPED 3
#endif
Nov 1, 2016
Nov 1, 2016
53
54
55
56
57
#ifndef ABS_MT_SLOT
#define ABS_MT_SLOT 0x2f
#define ABS_MT_POSITION_X 0x35
#define ABS_MT_POSITION_Y 0x36
#define ABS_MT_TRACKING_ID 0x39
Jan 15, 2019
Jan 15, 2019
58
#define ABS_MT_PRESSURE 0x3a
Nov 1, 2016
Nov 1, 2016
59
60
#endif
Oct 1, 2016
Oct 1, 2016
61
62
63
64
typedef struct SDL_evdevlist_item
{
char *path;
int fd;
Jan 9, 2017
Jan 9, 2017
65
Oct 1, 2016
Oct 1, 2016
66
67
/* TODO: use this for every device, not just touchscreen */
int out_of_sync;
Jan 9, 2017
Jan 9, 2017
68
Oct 1, 2016
Oct 1, 2016
69
70
71
72
73
74
/* TODO: expand on this to have data for every possible class (mouse,
keyboard, touchpad, etc.). Also there's probably some things in here we
can pull out to the SDL_evdevlist_item i.e. name */
int is_touchscreen;
struct {
char* name;
Jan 9, 2017
Jan 9, 2017
75
Oct 1, 2016
Oct 1, 2016
76
77
int min_x, max_x, range_x;
int min_y, max_y, range_y;
Jan 15, 2019
Jan 15, 2019
78
int min_pressure, max_pressure, range_pressure;
Jan 9, 2017
Jan 9, 2017
79
Oct 1, 2016
Oct 1, 2016
80
81
82
83
84
85
86
87
88
89
int max_slots;
int current_slot;
struct {
enum {
EVDEV_TOUCH_SLOTDELTA_NONE = 0,
EVDEV_TOUCH_SLOTDELTA_DOWN,
EVDEV_TOUCH_SLOTDELTA_UP,
EVDEV_TOUCH_SLOTDELTA_MOVE
} delta;
int tracking_id;
Jan 15, 2019
Jan 15, 2019
90
int x, y, pressure;
Oct 1, 2016
Oct 1, 2016
91
} * slots;
Jan 15, 2019
Jan 15, 2019
92
Oct 1, 2016
Oct 1, 2016
93
} * touchscreen_data;
Jan 9, 2017
Jan 9, 2017
94
Oct 1, 2016
Oct 1, 2016
95
96
97
98
99
struct SDL_evdevlist_item *next;
} SDL_evdevlist_item;
typedef struct SDL_EVDEV_PrivateData
{
Jan 9, 2017
Jan 9, 2017
100
101
int ref_count;
int num_devices;
Oct 1, 2016
Oct 1, 2016
102
103
SDL_evdevlist_item *first;
SDL_evdevlist_item *last;
Jan 9, 2017
Jan 9, 2017
104
SDL_EVDEV_keyboard_state *kbd;
Oct 1, 2016
Oct 1, 2016
105
106
} SDL_EVDEV_PrivateData;
Aug 29, 2018
Aug 29, 2018
107
#undef _THIS
Oct 1, 2016
Oct 1, 2016
108
109
110
#define _THIS SDL_EVDEV_PrivateData *_this
static _THIS = NULL;
111
112
static SDL_Scancode SDL_EVDEV_translate_keycode(int keycode);
static void SDL_EVDEV_sync_device(SDL_evdevlist_item *item);
Oct 1, 2016
Oct 1, 2016
113
static int SDL_EVDEV_device_removed(const char *dev_path);
114
115
#if SDL_USE_LIBUDEV
Oct 1, 2016
Oct 1, 2016
116
static int SDL_EVDEV_device_added(const char *dev_path, int udev_class);
Jun 11, 2017
Jun 11, 2017
117
static void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_type, int udev_class,
Oct 1, 2016
Oct 1, 2016
118
const char *dev_path);
119
120
121
122
123
124
125
126
127
128
129
130
131
#endif /* SDL_USE_LIBUDEV */
static Uint8 EVDEV_MouseButtons[] = {
SDL_BUTTON_LEFT, /* BTN_LEFT 0x110 */
SDL_BUTTON_RIGHT, /* BTN_RIGHT 0x111 */
SDL_BUTTON_MIDDLE, /* BTN_MIDDLE 0x112 */
SDL_BUTTON_X1, /* BTN_SIDE 0x113 */
SDL_BUTTON_X2, /* BTN_EXTRA 0x114 */
SDL_BUTTON_X2 + 1, /* BTN_FORWARD 0x115 */
SDL_BUTTON_X2 + 2, /* BTN_BACK 0x116 */
SDL_BUTTON_X2 + 3 /* BTN_TASK 0x117 */
};
Jul 3, 2019
Jul 3, 2019
132
133
134
135
136
137
138
139
static int
SDL_EVDEV_SetRelativeMouseMode(SDL_bool enabled)
{
/* Mice already send relative events through this interface */
return 0;
}
140
141
142
int
SDL_EVDEV_Init(void)
{
Oct 1, 2016
Oct 1, 2016
143
144
145
if (_this == NULL) {
_this = (SDL_EVDEV_PrivateData*)SDL_calloc(1, sizeof(*_this));
if (_this == NULL) {
146
147
148
149
return SDL_OutOfMemory();
}
#if SDL_USE_LIBUDEV
Oct 1, 2016
Oct 1, 2016
150
151
if (SDL_UDEV_Init() < 0) {
SDL_free(_this);
152
153
154
155
156
_this = NULL;
return -1;
}
/* Set up the udev callback */
Jun 25, 2015
Jun 25, 2015
157
if (SDL_UDEV_AddCallback(SDL_EVDEV_udev_callback) < 0) {
Oct 1, 2016
Oct 1, 2016
158
SDL_UDEV_Quit();
Oct 1, 2016
Oct 1, 2016
159
SDL_free(_this);
Oct 1, 2016
Oct 1, 2016
160
_this = NULL;
Jan 9, 2017
Jan 9, 2017
163
164
165
166
167
168
/* Force a scan to build the initial device list */
SDL_UDEV_Scan();
#else
/* TODO: Scan the devices manually, like a caveman */
#endif /* SDL_USE_LIBUDEV */
Jan 8, 2017
Jan 8, 2017
169
Jan 9, 2017
Jan 9, 2017
170
_this->kbd = SDL_EVDEV_kbd_init();
Jan 9, 2017
Jan 9, 2017
172
Jul 3, 2019
Jul 3, 2019
173
174
SDL_GetMouse()->SetRelativeMouseMode = SDL_EVDEV_SetRelativeMouseMode;
175
_this->ref_count += 1;
Jan 9, 2017
Jan 9, 2017
176
Oct 1, 2016
Oct 1, 2016
177
return 0;
178
179
180
181
182
}
void
SDL_EVDEV_Quit(void)
{
Oct 1, 2016
Oct 1, 2016
183
if (_this == NULL) {
Jan 9, 2017
Jan 9, 2017
186
187
_this->ref_count -= 1;
Jan 9, 2017
Jan 9, 2017
188
Oct 1, 2016
Oct 1, 2016
189
if (_this->ref_count < 1) {
Oct 1, 2016
Oct 1, 2016
191
SDL_UDEV_DelCallback(SDL_EVDEV_udev_callback);
192
193
SDL_UDEV_Quit();
#endif /* SDL_USE_LIBUDEV */
Jan 9, 2017
Jan 9, 2017
194
195
196
SDL_EVDEV_kbd_quit(_this->kbd);
197
198
/* Remove existing devices */
while(_this->first != NULL) {
Oct 1, 2016
Oct 1, 2016
199
SDL_EVDEV_device_removed(_this->first->path);
Jan 9, 2017
Jan 9, 2017
201
Oct 1, 2016
Oct 1, 2016
202
203
204
SDL_assert(_this->first == NULL);
SDL_assert(_this->last == NULL);
SDL_assert(_this->num_devices == 0);
Jan 9, 2017
Jan 9, 2017
205
Oct 1, 2016
Oct 1, 2016
206
SDL_free(_this);
207
208
209
210
211
_this = NULL;
}
}
#if SDL_USE_LIBUDEV
Jun 11, 2017
Jun 11, 2017
212
static void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_event, int udev_class,
Oct 1, 2016
Oct 1, 2016
213
const char* dev_path)
Oct 1, 2016
Oct 1, 2016
215
if (dev_path == NULL) {
Jan 9, 2017
Jan 9, 2017
218
Oct 1, 2016
Oct 1, 2016
219
switch(udev_event) {
220
case SDL_UDEV_DEVICEADDED:
Oct 1, 2016
Oct 1, 2016
221
222
if (!(udev_class & (SDL_UDEV_DEVICE_MOUSE | SDL_UDEV_DEVICE_KEYBOARD |
SDL_UDEV_DEVICE_TOUCHSCREEN)))
Jun 25, 2015
Jun 25, 2015
223
return;
Oct 1, 2016
Oct 1, 2016
224
Oct 1, 2016
Oct 1, 2016
225
SDL_EVDEV_device_added(dev_path, udev_class);
Oct 1, 2016
Oct 1, 2016
226
break;
227
case SDL_UDEV_DEVICEREMOVED:
Oct 1, 2016
Oct 1, 2016
228
SDL_EVDEV_device_removed(dev_path);
229
230
231
232
233
234
235
236
237
238
239
break;
default:
break;
}
}
#endif /* SDL_USE_LIBUDEV */
void
SDL_EVDEV_Poll(void)
{
struct input_event events[32];
Oct 1, 2016
Oct 1, 2016
240
int i, j, len;
241
242
243
244
SDL_evdevlist_item *item;
SDL_Scancode scan_code;
int mouse_button;
SDL_Mouse *mouse;
Jan 15, 2019
Jan 15, 2019
245
float norm_x, norm_y, norm_pressure;
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
if (!_this) {
return;
}
#if SDL_USE_LIBUDEV
SDL_UDEV_Poll();
#endif
mouse = SDL_GetMouse();
for (item = _this->first; item != NULL; item = item->next) {
while ((len = read(item->fd, events, (sizeof events))) > 0) {
len /= sizeof(events[0]);
for (i = 0; i < len; ++i) {
Oct 1, 2016
Oct 1, 2016
261
262
/* special handling for touchscreen, that should eventually be
used for all devices */
Oct 1, 2016
Oct 1, 2016
263
264
if (item->out_of_sync && item->is_touchscreen &&
events[i].type == EV_SYN && events[i].code != SYN_REPORT) {
Oct 1, 2016
Oct 1, 2016
265
266
break;
}
Jan 9, 2017
Jan 9, 2017
267
268
269
270
271
272
273
274
275
276
277
278
279
switch (events[i].type) {
case EV_KEY:
if (events[i].code >= BTN_MOUSE && events[i].code < BTN_MOUSE + SDL_arraysize(EVDEV_MouseButtons)) {
mouse_button = events[i].code - BTN_MOUSE;
if (events[i].value == 0) {
SDL_SendMouseButton(mouse->focus, mouse->mouseID, SDL_RELEASED, EVDEV_MouseButtons[mouse_button]);
} else if (events[i].value == 1) {
SDL_SendMouseButton(mouse->focus, mouse->mouseID, SDL_PRESSED, EVDEV_MouseButtons[mouse_button]);
}
break;
}
Jan 15, 2019
Jan 15, 2019
280
281
282
/* BTH_TOUCH event value 1 indicates there is contact with
a touchscreen or trackpad (earlist finger's current
position is sent in EV_ABS ABS_X/ABS_Y, switching to
Apr 4, 2019
Apr 4, 2019
283
next finger after earlist is released) */
Jan 15, 2019
Jan 15, 2019
284
if (item->is_touchscreen && events[i].code == BTN_TOUCH) {
Jun 12, 2019
Jun 12, 2019
285
286
287
288
289
290
if (item->touchscreen_data->max_slots == 1) {
if (events[i].value)
item->touchscreen_data->slots[0].delta = EVDEV_TOUCH_SLOTDELTA_DOWN;
else
item->touchscreen_data->slots[0].delta = EVDEV_TOUCH_SLOTDELTA_UP;
}
Jan 15, 2019
Jan 15, 2019
291
292
293
break;
}
294
295
296
297
298
/* Probably keyboard */
scan_code = SDL_EVDEV_translate_keycode(events[i].code);
if (scan_code != SDL_SCANCODE_UNKNOWN) {
if (events[i].value == 0) {
SDL_SendKeyboardKey(SDL_RELEASED, scan_code);
Oct 1, 2016
Oct 1, 2016
299
} else if (events[i].value == 1 || events[i].value == 2 /* key repeated */) {
300
301
302
SDL_SendKeyboardKey(SDL_PRESSED, scan_code);
}
}
Jan 9, 2017
Jan 9, 2017
303
SDL_EVDEV_kbd_keycode(_this->kbd, events[i].code, events[i].value);
304
305
306
break;
case EV_ABS:
switch(events[i].code) {
Oct 1, 2016
Oct 1, 2016
307
case ABS_MT_SLOT:
Oct 1, 2016
Oct 1, 2016
308
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
309
310
311
312
break;
item->touchscreen_data->current_slot = events[i].value;
break;
case ABS_MT_TRACKING_ID:
Oct 1, 2016
Oct 1, 2016
313
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
314
break;
Oct 1, 2016
Oct 1, 2016
315
if (events[i].value >= 0) {
Oct 1, 2016
Oct 1, 2016
316
317
318
319
320
321
322
item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value;
item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_DOWN;
} else {
item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_UP;
}
break;
case ABS_MT_POSITION_X:
Oct 1, 2016
Oct 1, 2016
323
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
324
325
break;
item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value;
Oct 1, 2016
Oct 1, 2016
326
if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
327
328
329
330
item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_MOVE;
}
break;
case ABS_MT_POSITION_Y:
Oct 1, 2016
Oct 1, 2016
331
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
332
333
break;
item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value;
Oct 1, 2016
Oct 1, 2016
334
if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
335
336
337
item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_MOVE;
}
break;
Jan 15, 2019
Jan 15, 2019
338
339
340
341
342
343
344
345
case ABS_MT_PRESSURE:
if (!item->is_touchscreen) /* FIXME: temp hack */
break;
item->touchscreen_data->slots[item->touchscreen_data->current_slot].pressure = events[i].value;
if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTDELTA_NONE) {
item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_MOVE;
}
break;
Jun 12, 2019
Jun 12, 2019
347
348
349
350
351
352
if (item->is_touchscreen) {
if (item->touchscreen_data->max_slots != 1)
break;
item->touchscreen_data->slots[0].x = events[i].value;
} else
SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, events[i].value, mouse->y);
353
354
break;
case ABS_Y:
Jun 12, 2019
Jun 12, 2019
355
356
357
358
359
360
if (item->is_touchscreen) {
if (item->touchscreen_data->max_slots != 1)
break;
item->touchscreen_data->slots[0].y = events[i].value;
} else
SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, mouse->x, events[i].value);
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
break;
default:
break;
}
break;
case EV_REL:
switch(events[i].code) {
case REL_X:
SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_TRUE, events[i].value, 0);
break;
case REL_Y:
SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_TRUE, 0, events[i].value);
break;
case REL_WHEEL:
SDL_SendMouseWheel(mouse->focus, mouse->mouseID, 0, events[i].value, SDL_MOUSEWHEEL_NORMAL);
break;
case REL_HWHEEL:
SDL_SendMouseWheel(mouse->focus, mouse->mouseID, events[i].value, 0, SDL_MOUSEWHEEL_NORMAL);
break;
default:
break;
}
break;
case EV_SYN:
switch (events[i].code) {
Oct 1, 2016
Oct 1, 2016
386
case SYN_REPORT:
Oct 1, 2016
Oct 1, 2016
387
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
388
break;
Jan 9, 2017
Jan 9, 2017
389
Oct 1, 2016
Oct 1, 2016
390
for(j = 0; j < item->touchscreen_data->max_slots; j++) {
Oct 1, 2016
Oct 1, 2016
391
392
393
394
norm_x = (float)(item->touchscreen_data->slots[j].x - item->touchscreen_data->min_x) /
(float)item->touchscreen_data->range_x;
norm_y = (float)(item->touchscreen_data->slots[j].y - item->touchscreen_data->min_y) /
(float)item->touchscreen_data->range_y;
Jan 9, 2017
Jan 9, 2017
395
Jan 15, 2019
Jan 15, 2019
396
397
398
399
400
401
402
403
if (item->touchscreen_data->range_pressure > 0) {
norm_pressure = (float)(item->touchscreen_data->slots[j].pressure - item->touchscreen_data->min_pressure) /
(float)item->touchscreen_data->range_pressure;
} else {
/* This touchscreen does not support pressure */
norm_pressure = 1.0f;
}
Aug 4, 2019
Aug 4, 2019
404
405
406
/* FIXME: the touch's window shouldn't be null, but
* the coordinate space of touch positions needs to
* be window-relative in that case. */
Oct 1, 2016
Oct 1, 2016
407
switch(item->touchscreen_data->slots[j].delta) {
Oct 1, 2016
Oct 1, 2016
408
case EVDEV_TOUCH_SLOTDELTA_DOWN:
Aug 4, 2019
Aug 4, 2019
409
SDL_SendTouch(item->fd, item->touchscreen_data->slots[j].tracking_id, NULL, SDL_TRUE, norm_x, norm_y, norm_pressure);
Oct 1, 2016
Oct 1, 2016
410
411
412
item->touchscreen_data->slots[j].delta = EVDEV_TOUCH_SLOTDELTA_NONE;
break;
case EVDEV_TOUCH_SLOTDELTA_UP:
Aug 4, 2019
Aug 4, 2019
413
SDL_SendTouch(item->fd, item->touchscreen_data->slots[j].tracking_id, NULL, SDL_FALSE, norm_x, norm_y, norm_pressure);
Oct 1, 2016
Oct 1, 2016
414
415
416
417
item->touchscreen_data->slots[j].tracking_id = -1;
item->touchscreen_data->slots[j].delta = EVDEV_TOUCH_SLOTDELTA_NONE;
break;
case EVDEV_TOUCH_SLOTDELTA_MOVE:
Aug 4, 2019
Aug 4, 2019
418
SDL_SendTouchMotion(item->fd, item->touchscreen_data->slots[j].tracking_id, NULL, norm_x, norm_y, norm_pressure);
Oct 1, 2016
Oct 1, 2016
419
420
421
422
423
424
item->touchscreen_data->slots[j].delta = EVDEV_TOUCH_SLOTDELTA_NONE;
break;
default:
break;
}
}
Jan 9, 2017
Jan 9, 2017
425
Oct 1, 2016
Oct 1, 2016
426
if (item->out_of_sync)
Oct 1, 2016
Oct 1, 2016
427
428
item->out_of_sync = 0;
break;
Oct 1, 2016
Oct 1, 2016
430
if (item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
431
item->out_of_sync = 1;
432
433
434
435
436
437
438
439
440
441
442
443
444
SDL_EVDEV_sync_device(item);
break;
default:
break;
}
break;
}
}
}
}
}
static SDL_Scancode
Oct 1, 2016
Oct 1, 2016
445
SDL_EVDEV_translate_keycode(int keycode)
446
447
448
{
SDL_Scancode scancode = SDL_SCANCODE_UNKNOWN;
Nov 18, 2019
Nov 18, 2019
449
if (keycode < SDL_arraysize(linux_scancode_table)) {
Oct 1, 2016
Oct 1, 2016
450
451
scancode = linux_scancode_table[keycode];
Nov 18, 2019
Nov 18, 2019
452
453
454
455
456
457
458
459
460
461
if (scancode == SDL_SCANCODE_UNKNOWN) {
/* BTN_TOUCH is handled elsewhere, but we might still end up here if
you get an unexpected BTN_TOUCH from something SDL believes is not
a touch device. In this case, we'd rather not get a misleading
SDL_Log message about an unknown key. */
if (keycode != BTN_TOUCH) {
SDL_Log("The key you just pressed is not recognized by SDL. To help "
"get this fixed, please report this to the SDL forums/mailing list "
"<https://discourse.libsdl.org/> EVDEV KeyCode %d", keycode);
}
Jan 15, 2019
Jan 15, 2019
462
}
Oct 1, 2016
Oct 1, 2016
464
465
466
467
return scancode;
}
Oct 1, 2016
Oct 1, 2016
468
#ifdef SDL_USE_LIBUDEV
Oct 1, 2016
Oct 1, 2016
469
static int
Oct 1, 2016
Oct 1, 2016
470
471
SDL_EVDEV_init_touchscreen(SDL_evdevlist_item* item)
{
Oct 1, 2016
Oct 1, 2016
472
int ret, i;
Jun 12, 2019
Jun 12, 2019
473
unsigned long xreq, yreq;
Oct 1, 2016
Oct 1, 2016
474
475
char name[64];
struct input_absinfo abs_info;
Jan 9, 2017
Jan 9, 2017
476
Oct 1, 2016
Oct 1, 2016
477
if (!item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
478
return 0;
Jan 9, 2017
Jan 9, 2017
479
Oct 1, 2016
Oct 1, 2016
480
481
item->touchscreen_data = SDL_calloc(1, sizeof(*item->touchscreen_data));
if (item->touchscreen_data == NULL)
Oct 1, 2016
Oct 1, 2016
482
return SDL_OutOfMemory();
Jan 9, 2017
Jan 9, 2017
483
Oct 1, 2016
Oct 1, 2016
484
485
486
487
ret = ioctl(item->fd, EVIOCGNAME(sizeof(name)), name);
if (ret < 0) {
SDL_free(item->touchscreen_data);
return SDL_SetError("Failed to get evdev touchscreen name");
Oct 1, 2016
Oct 1, 2016
488
}
Jan 9, 2017
Jan 9, 2017
489
Oct 1, 2016
Oct 1, 2016
490
491
492
item->touchscreen_data->name = SDL_strdup(name);
if (item->touchscreen_data->name == NULL) {
SDL_free(item->touchscreen_data);
Oct 1, 2016
Oct 1, 2016
493
494
return SDL_OutOfMemory();
}
Jan 9, 2017
Jan 9, 2017
495
Jun 12, 2019
Jun 12, 2019
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
ret = ioctl(item->fd, EVIOCGABS(ABS_MT_SLOT), &abs_info);
if (ret < 0) {
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
return SDL_SetError("Failed to get evdev touchscreen limits");
}
if (abs_info.maximum == 0) {
item->touchscreen_data->max_slots = 1;
xreq = EVIOCGABS(ABS_X);
yreq = EVIOCGABS(ABS_Y);
} else {
item->touchscreen_data->max_slots = abs_info.maximum + 1;
xreq = EVIOCGABS(ABS_MT_POSITION_X);
yreq = EVIOCGABS(ABS_MT_POSITION_Y);
}
ret = ioctl(item->fd, xreq, &abs_info);
Oct 1, 2016
Oct 1, 2016
514
515
516
517
if (ret < 0) {
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
return SDL_SetError("Failed to get evdev touchscreen limits");
Oct 1, 2016
Oct 1, 2016
518
519
520
521
}
item->touchscreen_data->min_x = abs_info.minimum;
item->touchscreen_data->max_x = abs_info.maximum;
item->touchscreen_data->range_x = abs_info.maximum - abs_info.minimum;
Jan 9, 2017
Jan 9, 2017
522
Jun 12, 2019
Jun 12, 2019
523
ret = ioctl(item->fd, yreq, &abs_info);
Oct 1, 2016
Oct 1, 2016
524
525
526
527
if (ret < 0) {
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
return SDL_SetError("Failed to get evdev touchscreen limits");
Oct 1, 2016
Oct 1, 2016
528
529
530
531
}
item->touchscreen_data->min_y = abs_info.minimum;
item->touchscreen_data->max_y = abs_info.maximum;
item->touchscreen_data->range_y = abs_info.maximum - abs_info.minimum;
Jan 9, 2017
Jan 9, 2017
532
Jan 15, 2019
Jan 15, 2019
533
534
535
536
537
538
539
540
541
542
ret = ioctl(item->fd, EVIOCGABS(ABS_MT_PRESSURE), &abs_info);
if (ret < 0) {
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
return SDL_SetError("Failed to get evdev touchscreen limits");
}
item->touchscreen_data->min_pressure = abs_info.minimum;
item->touchscreen_data->max_pressure = abs_info.maximum;
item->touchscreen_data->range_pressure = abs_info.maximum - abs_info.minimum;
Oct 1, 2016
Oct 1, 2016
543
544
item->touchscreen_data->slots = SDL_calloc(
item->touchscreen_data->max_slots,
Oct 1, 2016
Oct 1, 2016
545
546
547
548
sizeof(*item->touchscreen_data->slots));
if (item->touchscreen_data->slots == NULL) {
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
Oct 1, 2016
Oct 1, 2016
549
550
return SDL_OutOfMemory();
}
Jan 9, 2017
Jan 9, 2017
551
Oct 1, 2016
Oct 1, 2016
552
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
Oct 1, 2016
Oct 1, 2016
553
554
item->touchscreen_data->slots[i].tracking_id = -1;
}
Jan 9, 2017
Jan 9, 2017
555
Oct 1, 2016
Oct 1, 2016
556
ret = SDL_AddTouch(item->fd, /* I guess our fd is unique enough */
Nov 10, 2018
Nov 10, 2018
557
SDL_TOUCH_DEVICE_DIRECT,
Oct 1, 2016
Oct 1, 2016
558
559
560
561
562
item->touchscreen_data->name);
if (ret < 0) {
SDL_free(item->touchscreen_data->slots);
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
Oct 1, 2016
Oct 1, 2016
563
564
return ret;
}
Jan 9, 2017
Jan 9, 2017
565
Oct 1, 2016
Oct 1, 2016
566
567
return 0;
}
Oct 1, 2016
Oct 1, 2016
568
#endif /* SDL_USE_LIBUDEV */
Oct 1, 2016
Oct 1, 2016
569
570
static void
Oct 1, 2016
Oct 1, 2016
571
572
SDL_EVDEV_destroy_touchscreen(SDL_evdevlist_item* item) {
if (!item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
573
return;
Jan 9, 2017
Jan 9, 2017
574
Oct 1, 2016
Oct 1, 2016
575
576
577
578
SDL_DelTouch(item->fd);
SDL_free(item->touchscreen_data->slots);
SDL_free(item->touchscreen_data->name);
SDL_free(item->touchscreen_data);
Oct 1, 2016
Oct 1, 2016
579
580
}
581
582
583
static void
SDL_EVDEV_sync_device(SDL_evdevlist_item *item)
{
Oct 1, 2016
Oct 1, 2016
584
#ifdef EVIOCGMTSLOTS
Oct 1, 2016
Oct 1, 2016
585
586
587
588
589
590
591
592
593
594
int i, ret;
struct input_absinfo abs_info;
/*
* struct input_mt_request_layout {
* __u32 code;
* __s32 values[num_slots];
* };
*
* this is the structure we're trying to emulate
*/
Jun 5, 2019
Jun 5, 2019
595
596
Uint32* mt_req_code;
Sint32* mt_req_values;
Oct 1, 2016
Oct 1, 2016
597
size_t mt_req_size;
Jan 9, 2017
Jan 9, 2017
598
Oct 1, 2016
Oct 1, 2016
599
/* TODO: sync devices other than touchscreen */
Oct 1, 2016
Oct 1, 2016
600
if (!item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
601
return;
Jan 9, 2017
Jan 9, 2017
602
Oct 1, 2016
Oct 1, 2016
603
604
mt_req_size = sizeof(*mt_req_code) +
sizeof(*mt_req_values) * item->touchscreen_data->max_slots;
Jan 9, 2017
Jan 9, 2017
605
Oct 1, 2016
Oct 1, 2016
606
607
mt_req_code = SDL_calloc(1, mt_req_size);
if (mt_req_code == NULL) {
Oct 1, 2016
Oct 1, 2016
608
609
return;
}
Jan 9, 2017
Jan 9, 2017
610
Jun 5, 2019
Jun 5, 2019
611
mt_req_values = (Sint32*)mt_req_code + 1;
Jan 9, 2017
Jan 9, 2017
612
Oct 1, 2016
Oct 1, 2016
613
*mt_req_code = ABS_MT_TRACKING_ID;
Oct 1, 2016
Oct 1, 2016
614
615
616
ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
if (ret < 0) {
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
617
618
return;
}
Oct 1, 2016
Oct 1, 2016
619
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
Oct 1, 2016
Oct 1, 2016
620
621
622
623
624
625
626
627
628
/*
* This doesn't account for the very edge case of the user removing their
* finger and replacing it on the screen during the time we're out of sync,
* which'll mean that we're not going from down -> up or up -> down, we're
* going from down -> down but with a different tracking id, meaning we'd
* have to tell SDL of the two events, but since we wait till SYN_REPORT in
* SDL_EVDEV_Poll to tell SDL, the current structure of this code doesn't
* allow it. Lets just pray to God it doesn't happen.
*/
Oct 1, 2016
Oct 1, 2016
629
630
if (item->touchscreen_data->slots[i].tracking_id < 0 &&
mt_req_values[i] >= 0) {
Oct 1, 2016
Oct 1, 2016
631
632
item->touchscreen_data->slots[i].tracking_id = mt_req_values[i];
item->touchscreen_data->slots[i].delta = EVDEV_TOUCH_SLOTDELTA_DOWN;
Oct 1, 2016
Oct 1, 2016
633
634
} else if (item->touchscreen_data->slots[i].tracking_id >= 0 &&
mt_req_values[i] < 0) {
Oct 1, 2016
Oct 1, 2016
635
636
637
638
item->touchscreen_data->slots[i].tracking_id = -1;
item->touchscreen_data->slots[i].delta = EVDEV_TOUCH_SLOTDELTA_UP;
}
}
Jan 9, 2017
Jan 9, 2017
639
Oct 1, 2016
Oct 1, 2016
640
*mt_req_code = ABS_MT_POSITION_X;
Oct 1, 2016
Oct 1, 2016
641
642
643
ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
if (ret < 0) {
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
644
645
return;
}
Oct 1, 2016
Oct 1, 2016
646
647
648
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
if (item->touchscreen_data->slots[i].tracking_id >= 0 &&
item->touchscreen_data->slots[i].x != mt_req_values[i]) {
Oct 1, 2016
Oct 1, 2016
649
item->touchscreen_data->slots[i].x = mt_req_values[i];
Oct 1, 2016
Oct 1, 2016
650
651
if (item->touchscreen_data->slots[i].delta ==
EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
652
653
654
655
656
item->touchscreen_data->slots[i].delta =
EVDEV_TOUCH_SLOTDELTA_MOVE;
}
}
}
Jan 9, 2017
Jan 9, 2017
657
Oct 1, 2016
Oct 1, 2016
658
*mt_req_code = ABS_MT_POSITION_Y;
Oct 1, 2016
Oct 1, 2016
659
660
661
ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
if (ret < 0) {
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
662
663
return;
}
Oct 1, 2016
Oct 1, 2016
664
665
666
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
if (item->touchscreen_data->slots[i].tracking_id >= 0 &&
item->touchscreen_data->slots[i].y != mt_req_values[i]) {
Oct 1, 2016
Oct 1, 2016
667
item->touchscreen_data->slots[i].y = mt_req_values[i];
Oct 1, 2016
Oct 1, 2016
668
669
if (item->touchscreen_data->slots[i].delta ==
EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
670
671
672
673
674
item->touchscreen_data->slots[i].delta =
EVDEV_TOUCH_SLOTDELTA_MOVE;
}
}
}
Jan 9, 2017
Jan 9, 2017
675
Jan 15, 2019
Jan 15, 2019
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
*mt_req_code = ABS_MT_PRESSURE;
ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
if (ret < 0) {
SDL_free(mt_req_code);
return;
}
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
if (item->touchscreen_data->slots[i].tracking_id >= 0 &&
item->touchscreen_data->slots[i].pressure != mt_req_values[i]) {
item->touchscreen_data->slots[i].pressure = mt_req_values[i];
if (item->touchscreen_data->slots[i].delta ==
EVDEV_TOUCH_SLOTDELTA_NONE) {
item->touchscreen_data->slots[i].delta =
EVDEV_TOUCH_SLOTDELTA_MOVE;
}
}
}
Oct 1, 2016
Oct 1, 2016
694
695
696
ret = ioctl(item->fd, EVIOCGABS(ABS_MT_SLOT), &abs_info);
if (ret < 0) {
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
697
698
699
return;
}
item->touchscreen_data->current_slot = abs_info.value;
Jan 9, 2017
Jan 9, 2017
700
Oct 1, 2016
Oct 1, 2016
701
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
702
703
#endif /* EVIOCGMTSLOTS */
704
705
706
707
}
#if SDL_USE_LIBUDEV
static int
Oct 1, 2016
Oct 1, 2016
708
SDL_EVDEV_device_added(const char *dev_path, int udev_class)
Oct 1, 2016
Oct 1, 2016
710
int ret;
711
712
713
714
SDL_evdevlist_item *item;
/* Check to make sure it's not already in list. */
for (item = _this->first; item != NULL; item = item->next) {
Oct 1, 2016
Oct 1, 2016
715
if (SDL_strcmp(dev_path, item->path) == 0) {
716
717
718
return -1; /* already have this one */
}
}
Jan 9, 2017
Jan 9, 2017
719
720
721
722
723
724
item = (SDL_evdevlist_item *) SDL_calloc(1, sizeof (SDL_evdevlist_item));
if (item == NULL) {
return SDL_OutOfMemory();
}
Oct 1, 2016
Oct 1, 2016
725
item->fd = open(dev_path, O_RDONLY | O_NONBLOCK);
726
727
if (item->fd < 0) {
SDL_free(item);
Oct 1, 2016
Oct 1, 2016
728
return SDL_SetError("Unable to open %s", dev_path);
Jan 9, 2017
Jan 9, 2017
730
Oct 1, 2016
Oct 1, 2016
731
item->path = SDL_strdup(dev_path);
732
733
734
735
736
if (item->path == NULL) {
close(item->fd);
SDL_free(item);
return SDL_OutOfMemory();
}
Jan 9, 2017
Jan 9, 2017
737
Oct 1, 2016
Oct 1, 2016
738
if (udev_class & SDL_UDEV_DEVICE_TOUCHSCREEN) {
Oct 1, 2016
Oct 1, 2016
739
item->is_touchscreen = 1;
Jan 9, 2017
Jan 9, 2017
740
Oct 1, 2016
Oct 1, 2016
741
if ((ret = SDL_EVDEV_init_touchscreen(item)) < 0) {
Oct 1, 2016
Oct 1, 2016
742
743
744
745
746
close(item->fd);
SDL_free(item);
return ret;
}
}
Jan 9, 2017
Jan 9, 2017
747
748
749
750
751
752
753
if (_this->last == NULL) {
_this->first = _this->last = item;
} else {
_this->last->next = item;
_this->last = item;
}
Jan 9, 2017
Jan 9, 2017
754
755
SDL_EVDEV_sync_device(item);
Jan 9, 2017
Jan 9, 2017
756
Oct 1, 2016
Oct 1, 2016
757
return _this->num_devices++;
758
759
760
761
}
#endif /* SDL_USE_LIBUDEV */
static int
Oct 1, 2016
Oct 1, 2016
762
SDL_EVDEV_device_removed(const char *dev_path)
763
764
765
766
767
768
{
SDL_evdevlist_item *item;
SDL_evdevlist_item *prev = NULL;
for (item = _this->first; item != NULL; item = item->next) {
/* found it, remove it. */
Oct 1, 2016
Oct 1, 2016
769
if (SDL_strcmp(dev_path, item->path) == 0) {
770
771
772
773
774
775
776
777
778
if (prev != NULL) {
prev->next = item->next;
} else {
SDL_assert(_this->first == item);
_this->first = item->next;
}
if (item == _this->last) {
_this->last = prev;
}
Oct 1, 2016
Oct 1, 2016
779
780
if (item->is_touchscreen) {
SDL_EVDEV_destroy_touchscreen(item);
Oct 1, 2016
Oct 1, 2016
781
}
782
783
784
close(item->fd);
SDL_free(item->path);
SDL_free(item);
Oct 1, 2016
Oct 1, 2016
785
_this->num_devices--;
786
787
788
789
790
791
792
793
794
795
796
797
return 0;
}
prev = item;
}
return -1;
}
#endif /* SDL_INPUT_LINUXEV */
/* vi: set ts=4 sw=4 expandtab: */