Skip to content

Latest commit

 

History

History
698 lines (606 loc) · 23.7 KB

SDL_evdev.c

File metadata and controls

698 lines (606 loc) · 23.7 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 2, 2017
Jan 2, 2017
3
Copyright (C) 1997-2017 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
58
59
#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
#endif
Oct 1, 2016
Oct 1, 2016
60
61
62
63
typedef struct SDL_evdevlist_item
{
char *path;
int fd;
Jan 9, 2017
Jan 9, 2017
64
Oct 1, 2016
Oct 1, 2016
65
66
/* TODO: use this for every device, not just touchscreen */
int out_of_sync;
Jan 9, 2017
Jan 9, 2017
67
Oct 1, 2016
Oct 1, 2016
68
69
70
71
72
73
/* 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
74
Oct 1, 2016
Oct 1, 2016
75
76
int min_x, max_x, range_x;
int min_y, max_y, range_y;
Jan 9, 2017
Jan 9, 2017
77
Oct 1, 2016
Oct 1, 2016
78
79
80
81
82
83
84
85
86
87
88
89
90
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;
int x, y;
} * slots;
} * touchscreen_data;
Jan 9, 2017
Jan 9, 2017
91
Oct 1, 2016
Oct 1, 2016
92
93
94
95
96
struct SDL_evdevlist_item *next;
} SDL_evdevlist_item;
typedef struct SDL_EVDEV_PrivateData
{
Jan 9, 2017
Jan 9, 2017
97
98
int ref_count;
int num_devices;
Oct 1, 2016
Oct 1, 2016
99
100
SDL_evdevlist_item *first;
SDL_evdevlist_item *last;
Jan 9, 2017
Jan 9, 2017
101
SDL_EVDEV_keyboard_state *kbd;
Oct 1, 2016
Oct 1, 2016
102
103
104
105
106
} SDL_EVDEV_PrivateData;
#define _THIS SDL_EVDEV_PrivateData *_this
static _THIS = NULL;
107
108
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
109
static int SDL_EVDEV_device_removed(const char *dev_path);
110
111
#if SDL_USE_LIBUDEV
Oct 1, 2016
Oct 1, 2016
112
static int SDL_EVDEV_device_added(const char *dev_path, int udev_class);
Jun 11, 2017
Jun 11, 2017
113
static void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_type, int udev_class,
Oct 1, 2016
Oct 1, 2016
114
const char *dev_path);
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#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 */
};
int
SDL_EVDEV_Init(void)
{
Oct 1, 2016
Oct 1, 2016
131
132
133
if (_this == NULL) {
_this = (SDL_EVDEV_PrivateData*)SDL_calloc(1, sizeof(*_this));
if (_this == NULL) {
134
135
136
137
return SDL_OutOfMemory();
}
#if SDL_USE_LIBUDEV
Oct 1, 2016
Oct 1, 2016
138
139
if (SDL_UDEV_Init() < 0) {
SDL_free(_this);
140
141
142
143
144
_this = NULL;
return -1;
}
/* Set up the udev callback */
Jun 25, 2015
Jun 25, 2015
145
if (SDL_UDEV_AddCallback(SDL_EVDEV_udev_callback) < 0) {
Oct 1, 2016
Oct 1, 2016
146
SDL_UDEV_Quit();
Oct 1, 2016
Oct 1, 2016
147
SDL_free(_this);
Oct 1, 2016
Oct 1, 2016
148
_this = NULL;
Jan 9, 2017
Jan 9, 2017
151
152
153
154
155
156
/* 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
157
Jan 9, 2017
Jan 9, 2017
158
_this->kbd = SDL_EVDEV_kbd_init();
Jan 9, 2017
Jan 9, 2017
160
161
_this->ref_count += 1;
Jan 9, 2017
Jan 9, 2017
162
Oct 1, 2016
Oct 1, 2016
163
return 0;
164
165
166
167
168
}
void
SDL_EVDEV_Quit(void)
{
Oct 1, 2016
Oct 1, 2016
169
if (_this == NULL) {
Jan 9, 2017
Jan 9, 2017
172
173
_this->ref_count -= 1;
Jan 9, 2017
Jan 9, 2017
174
Oct 1, 2016
Oct 1, 2016
175
if (_this->ref_count < 1) {
Oct 1, 2016
Oct 1, 2016
177
SDL_UDEV_DelCallback(SDL_EVDEV_udev_callback);
178
179
SDL_UDEV_Quit();
#endif /* SDL_USE_LIBUDEV */
Jan 9, 2017
Jan 9, 2017
180
181
182
SDL_EVDEV_kbd_quit(_this->kbd);
183
184
/* Remove existing devices */
while(_this->first != NULL) {
Oct 1, 2016
Oct 1, 2016
185
SDL_EVDEV_device_removed(_this->first->path);
Jan 9, 2017
Jan 9, 2017
187
Oct 1, 2016
Oct 1, 2016
188
189
190
SDL_assert(_this->first == NULL);
SDL_assert(_this->last == NULL);
SDL_assert(_this->num_devices == 0);
Jan 9, 2017
Jan 9, 2017
191
Oct 1, 2016
Oct 1, 2016
192
SDL_free(_this);
193
194
195
196
197
_this = NULL;
}
}
#if SDL_USE_LIBUDEV
Jun 11, 2017
Jun 11, 2017
198
static void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_event, int udev_class,
Oct 1, 2016
Oct 1, 2016
199
const char* dev_path)
Oct 1, 2016
Oct 1, 2016
201
if (dev_path == NULL) {
Jan 9, 2017
Jan 9, 2017
204
Oct 1, 2016
Oct 1, 2016
205
switch(udev_event) {
206
case SDL_UDEV_DEVICEADDED:
Oct 1, 2016
Oct 1, 2016
207
208
if (!(udev_class & (SDL_UDEV_DEVICE_MOUSE | SDL_UDEV_DEVICE_KEYBOARD |
SDL_UDEV_DEVICE_TOUCHSCREEN)))
Jun 25, 2015
Jun 25, 2015
209
return;
Oct 1, 2016
Oct 1, 2016
210
Oct 1, 2016
Oct 1, 2016
211
SDL_EVDEV_device_added(dev_path, udev_class);
Oct 1, 2016
Oct 1, 2016
212
break;
213
case SDL_UDEV_DEVICEREMOVED:
Oct 1, 2016
Oct 1, 2016
214
SDL_EVDEV_device_removed(dev_path);
215
216
217
218
219
220
221
222
223
224
225
break;
default:
break;
}
}
#endif /* SDL_USE_LIBUDEV */
void
SDL_EVDEV_Poll(void)
{
struct input_event events[32];
Oct 1, 2016
Oct 1, 2016
226
int i, j, len;
227
228
229
230
SDL_evdevlist_item *item;
SDL_Scancode scan_code;
int mouse_button;
SDL_Mouse *mouse;
Oct 1, 2016
Oct 1, 2016
231
float norm_x, norm_y;
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
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
247
248
/* special handling for touchscreen, that should eventually be
used for all devices */
Oct 1, 2016
Oct 1, 2016
249
250
if (item->out_of_sync && item->is_touchscreen &&
events[i].type == EV_SYN && events[i].code != SYN_REPORT) {
Oct 1, 2016
Oct 1, 2016
251
252
break;
}
Jan 9, 2017
Jan 9, 2017
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
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;
}
/* 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
271
} else if (events[i].value == 1 || events[i].value == 2 /* key repeated */) {
272
273
274
SDL_SendKeyboardKey(SDL_PRESSED, scan_code);
}
}
Jan 9, 2017
Jan 9, 2017
275
SDL_EVDEV_kbd_keycode(_this->kbd, events[i].code, events[i].value);
276
277
278
break;
case EV_ABS:
switch(events[i].code) {
Oct 1, 2016
Oct 1, 2016
279
case ABS_MT_SLOT:
Oct 1, 2016
Oct 1, 2016
280
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
281
282
283
284
break;
item->touchscreen_data->current_slot = events[i].value;
break;
case ABS_MT_TRACKING_ID:
Oct 1, 2016
Oct 1, 2016
285
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
286
break;
Oct 1, 2016
Oct 1, 2016
287
if (events[i].value >= 0) {
Oct 1, 2016
Oct 1, 2016
288
289
290
291
292
293
294
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
295
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
296
297
break;
item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value;
Oct 1, 2016
Oct 1, 2016
298
if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
299
300
301
302
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
303
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
304
305
break;
item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value;
Oct 1, 2016
Oct 1, 2016
306
if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
307
308
309
item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_MOVE;
}
break;
Oct 1, 2016
Oct 1, 2016
311
if (item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
312
break;
313
314
315
SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, events[i].value, mouse->y);
break;
case ABS_Y:
Oct 1, 2016
Oct 1, 2016
316
if (item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
317
break;
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, mouse->x, events[i].value);
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
344
case SYN_REPORT:
Oct 1, 2016
Oct 1, 2016
345
if (!item->is_touchscreen) /* FIXME: temp hack */
Oct 1, 2016
Oct 1, 2016
346
break;
Jan 9, 2017
Jan 9, 2017
347
Oct 1, 2016
Oct 1, 2016
348
for(j = 0; j < item->touchscreen_data->max_slots; j++) {
Oct 1, 2016
Oct 1, 2016
349
350
351
352
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
353
Oct 1, 2016
Oct 1, 2016
354
switch(item->touchscreen_data->slots[j].delta) {
Oct 1, 2016
Oct 1, 2016
355
case EVDEV_TOUCH_SLOTDELTA_DOWN:
Oct 1, 2016
Oct 1, 2016
356
SDL_SendTouch(item->fd, item->touchscreen_data->slots[j].tracking_id, SDL_TRUE, norm_x, norm_y, 1.0f);
Oct 1, 2016
Oct 1, 2016
357
358
359
item->touchscreen_data->slots[j].delta = EVDEV_TOUCH_SLOTDELTA_NONE;
break;
case EVDEV_TOUCH_SLOTDELTA_UP:
Oct 1, 2016
Oct 1, 2016
360
SDL_SendTouch(item->fd, item->touchscreen_data->slots[j].tracking_id, SDL_FALSE, norm_x, norm_y, 1.0f);
Oct 1, 2016
Oct 1, 2016
361
362
363
364
item->touchscreen_data->slots[j].tracking_id = -1;
item->touchscreen_data->slots[j].delta = EVDEV_TOUCH_SLOTDELTA_NONE;
break;
case EVDEV_TOUCH_SLOTDELTA_MOVE:
Oct 1, 2016
Oct 1, 2016
365
SDL_SendTouchMotion(item->fd, item->touchscreen_data->slots[j].tracking_id, norm_x, norm_y, 1.0f);
Oct 1, 2016
Oct 1, 2016
366
367
368
369
370
371
item->touchscreen_data->slots[j].delta = EVDEV_TOUCH_SLOTDELTA_NONE;
break;
default:
break;
}
}
Jan 9, 2017
Jan 9, 2017
372
Oct 1, 2016
Oct 1, 2016
373
if (item->out_of_sync)
Oct 1, 2016
Oct 1, 2016
374
375
item->out_of_sync = 0;
break;
Oct 1, 2016
Oct 1, 2016
377
if (item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
378
item->out_of_sync = 1;
379
380
381
382
383
384
385
386
387
388
389
390
391
SDL_EVDEV_sync_device(item);
break;
default:
break;
}
break;
}
}
}
}
}
static SDL_Scancode
Oct 1, 2016
Oct 1, 2016
392
SDL_EVDEV_translate_keycode(int keycode)
393
394
395
{
SDL_Scancode scancode = SDL_SCANCODE_UNKNOWN;
Oct 1, 2016
Oct 1, 2016
396
if (keycode < SDL_arraysize(linux_scancode_table))
Oct 1, 2016
Oct 1, 2016
397
398
scancode = linux_scancode_table[keycode];
Oct 1, 2016
Oct 1, 2016
399
400
if (scancode == SDL_SCANCODE_UNKNOWN) {
SDL_Log("The key you just pressed is not recognized by SDL. To help "
May 26, 2017
May 26, 2017
401
402
"get this fixed, please report this to the SDL forums/mailing list "
"<https://discourse.libsdl.org/> EVDEV KeyCode %d", keycode);
Oct 1, 2016
Oct 1, 2016
404
405
406
407
return scancode;
}
Oct 1, 2016
Oct 1, 2016
408
#ifdef SDL_USE_LIBUDEV
Oct 1, 2016
Oct 1, 2016
409
static int
Oct 1, 2016
Oct 1, 2016
410
411
SDL_EVDEV_init_touchscreen(SDL_evdevlist_item* item)
{
Oct 1, 2016
Oct 1, 2016
412
413
414
int ret, i;
char name[64];
struct input_absinfo abs_info;
Jan 9, 2017
Jan 9, 2017
415
Oct 1, 2016
Oct 1, 2016
416
if (!item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
417
return 0;
Jan 9, 2017
Jan 9, 2017
418
Oct 1, 2016
Oct 1, 2016
419
420
item->touchscreen_data = SDL_calloc(1, sizeof(*item->touchscreen_data));
if (item->touchscreen_data == NULL)
Oct 1, 2016
Oct 1, 2016
421
return SDL_OutOfMemory();
Jan 9, 2017
Jan 9, 2017
422
Oct 1, 2016
Oct 1, 2016
423
424
425
426
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
427
}
Jan 9, 2017
Jan 9, 2017
428
Oct 1, 2016
Oct 1, 2016
429
430
431
item->touchscreen_data->name = SDL_strdup(name);
if (item->touchscreen_data->name == NULL) {
SDL_free(item->touchscreen_data);
Oct 1, 2016
Oct 1, 2016
432
433
return SDL_OutOfMemory();
}
Jan 9, 2017
Jan 9, 2017
434
Oct 1, 2016
Oct 1, 2016
435
436
437
438
439
ret = ioctl(item->fd, EVIOCGABS(ABS_MT_POSITION_X), &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");
Oct 1, 2016
Oct 1, 2016
440
441
442
443
}
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
444
Oct 1, 2016
Oct 1, 2016
445
446
447
448
449
ret = ioctl(item->fd, EVIOCGABS(ABS_MT_POSITION_Y), &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");
Oct 1, 2016
Oct 1, 2016
450
451
452
453
}
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
454
Oct 1, 2016
Oct 1, 2016
455
456
457
458
459
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");
Oct 1, 2016
Oct 1, 2016
460
461
}
item->touchscreen_data->max_slots = abs_info.maximum + 1;
Jan 9, 2017
Jan 9, 2017
462
Oct 1, 2016
Oct 1, 2016
463
464
item->touchscreen_data->slots = SDL_calloc(
item->touchscreen_data->max_slots,
Oct 1, 2016
Oct 1, 2016
465
466
467
468
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
469
470
return SDL_OutOfMemory();
}
Jan 9, 2017
Jan 9, 2017
471
Oct 1, 2016
Oct 1, 2016
472
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
Oct 1, 2016
Oct 1, 2016
473
474
item->touchscreen_data->slots[i].tracking_id = -1;
}
Jan 9, 2017
Jan 9, 2017
475
Oct 1, 2016
Oct 1, 2016
476
477
478
479
480
481
ret = SDL_AddTouch(item->fd, /* I guess our fd is unique enough */
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
482
483
return ret;
}
Jan 9, 2017
Jan 9, 2017
484
Oct 1, 2016
Oct 1, 2016
485
486
return 0;
}
Oct 1, 2016
Oct 1, 2016
487
#endif /* SDL_USE_LIBUDEV */
Oct 1, 2016
Oct 1, 2016
488
489
static void
Oct 1, 2016
Oct 1, 2016
490
491
SDL_EVDEV_destroy_touchscreen(SDL_evdevlist_item* item) {
if (!item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
492
return;
Jan 9, 2017
Jan 9, 2017
493
Oct 1, 2016
Oct 1, 2016
494
495
496
497
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
498
499
}
500
501
502
static void
SDL_EVDEV_sync_device(SDL_evdevlist_item *item)
{
Oct 1, 2016
Oct 1, 2016
503
#ifdef EVIOCGMTSLOTS
Oct 1, 2016
Oct 1, 2016
504
505
506
507
508
509
510
511
512
513
514
515
516
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
*/
__u32* mt_req_code;
__s32* mt_req_values;
size_t mt_req_size;
Jan 9, 2017
Jan 9, 2017
517
Oct 1, 2016
Oct 1, 2016
518
/* TODO: sync devices other than touchscreen */
Oct 1, 2016
Oct 1, 2016
519
if (!item->is_touchscreen)
Oct 1, 2016
Oct 1, 2016
520
return;
Jan 9, 2017
Jan 9, 2017
521
Oct 1, 2016
Oct 1, 2016
522
523
mt_req_size = sizeof(*mt_req_code) +
sizeof(*mt_req_values) * item->touchscreen_data->max_slots;
Jan 9, 2017
Jan 9, 2017
524
Oct 1, 2016
Oct 1, 2016
525
526
mt_req_code = SDL_calloc(1, mt_req_size);
if (mt_req_code == NULL) {
Oct 1, 2016
Oct 1, 2016
527
528
return;
}
Jan 9, 2017
Jan 9, 2017
529
Oct 1, 2016
Oct 1, 2016
530
mt_req_values = (__s32*)mt_req_code + 1;
Jan 9, 2017
Jan 9, 2017
531
Oct 1, 2016
Oct 1, 2016
532
*mt_req_code = ABS_MT_TRACKING_ID;
Oct 1, 2016
Oct 1, 2016
533
534
535
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
536
537
return;
}
Oct 1, 2016
Oct 1, 2016
538
for(i = 0; i < item->touchscreen_data->max_slots; i++) {
Oct 1, 2016
Oct 1, 2016
539
540
541
542
543
544
545
546
547
/*
* 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
548
549
if (item->touchscreen_data->slots[i].tracking_id < 0 &&
mt_req_values[i] >= 0) {
Oct 1, 2016
Oct 1, 2016
550
551
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
552
553
} else if (item->touchscreen_data->slots[i].tracking_id >= 0 &&
mt_req_values[i] < 0) {
Oct 1, 2016
Oct 1, 2016
554
555
556
557
item->touchscreen_data->slots[i].tracking_id = -1;
item->touchscreen_data->slots[i].delta = EVDEV_TOUCH_SLOTDELTA_UP;
}
}
Jan 9, 2017
Jan 9, 2017
558
Oct 1, 2016
Oct 1, 2016
559
*mt_req_code = ABS_MT_POSITION_X;
Oct 1, 2016
Oct 1, 2016
560
561
562
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
563
564
return;
}
Oct 1, 2016
Oct 1, 2016
565
566
567
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
568
item->touchscreen_data->slots[i].x = mt_req_values[i];
Oct 1, 2016
Oct 1, 2016
569
570
if (item->touchscreen_data->slots[i].delta ==
EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
571
572
573
574
575
item->touchscreen_data->slots[i].delta =
EVDEV_TOUCH_SLOTDELTA_MOVE;
}
}
}
Jan 9, 2017
Jan 9, 2017
576
Oct 1, 2016
Oct 1, 2016
577
*mt_req_code = ABS_MT_POSITION_Y;
Oct 1, 2016
Oct 1, 2016
578
579
580
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
581
582
return;
}
Oct 1, 2016
Oct 1, 2016
583
584
585
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
586
item->touchscreen_data->slots[i].y = mt_req_values[i];
Oct 1, 2016
Oct 1, 2016
587
588
if (item->touchscreen_data->slots[i].delta ==
EVDEV_TOUCH_SLOTDELTA_NONE) {
Oct 1, 2016
Oct 1, 2016
589
590
591
592
593
item->touchscreen_data->slots[i].delta =
EVDEV_TOUCH_SLOTDELTA_MOVE;
}
}
}
Jan 9, 2017
Jan 9, 2017
594
Oct 1, 2016
Oct 1, 2016
595
596
597
ret = ioctl(item->fd, EVIOCGABS(ABS_MT_SLOT), &abs_info);
if (ret < 0) {
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
598
599
600
return;
}
item->touchscreen_data->current_slot = abs_info.value;
Jan 9, 2017
Jan 9, 2017
601
Oct 1, 2016
Oct 1, 2016
602
SDL_free(mt_req_code);
Oct 1, 2016
Oct 1, 2016
603
604
#endif /* EVIOCGMTSLOTS */
605
606
607
608
}
#if SDL_USE_LIBUDEV
static int
Oct 1, 2016
Oct 1, 2016
609
SDL_EVDEV_device_added(const char *dev_path, int udev_class)
Oct 1, 2016
Oct 1, 2016
611
int ret;
612
613
614
615
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
616
if (SDL_strcmp(dev_path, item->path) == 0) {
617
618
619
return -1; /* already have this one */
}
}
Jan 9, 2017
Jan 9, 2017
620
621
622
623
624
625
item = (SDL_evdevlist_item *) SDL_calloc(1, sizeof (SDL_evdevlist_item));
if (item == NULL) {
return SDL_OutOfMemory();
}
Oct 1, 2016
Oct 1, 2016
626
item->fd = open(dev_path, O_RDONLY | O_NONBLOCK);
627
628
if (item->fd < 0) {
SDL_free(item);
Oct 1, 2016
Oct 1, 2016
629
return SDL_SetError("Unable to open %s", dev_path);
Jan 9, 2017
Jan 9, 2017
631
Oct 1, 2016
Oct 1, 2016
632
item->path = SDL_strdup(dev_path);
633
634
635
636
637
if (item->path == NULL) {
close(item->fd);
SDL_free(item);
return SDL_OutOfMemory();
}
Jan 9, 2017
Jan 9, 2017
638
Oct 1, 2016
Oct 1, 2016
639
if (udev_class & SDL_UDEV_DEVICE_TOUCHSCREEN) {
Oct 1, 2016
Oct 1, 2016
640
item->is_touchscreen = 1;
Jan 9, 2017
Jan 9, 2017
641
Oct 1, 2016
Oct 1, 2016
642
if ((ret = SDL_EVDEV_init_touchscreen(item)) < 0) {
Oct 1, 2016
Oct 1, 2016
643
644
645
646
647
close(item->fd);
SDL_free(item);
return ret;
}
}
Jan 9, 2017
Jan 9, 2017
648
649
650
651
652
653
654
if (_this->last == NULL) {
_this->first = _this->last = item;
} else {
_this->last->next = item;
_this->last = item;
}
Jan 9, 2017
Jan 9, 2017
655
656
SDL_EVDEV_sync_device(item);
Jan 9, 2017
Jan 9, 2017
657
Oct 1, 2016
Oct 1, 2016
658
return _this->num_devices++;
659
660
661
662
}
#endif /* SDL_USE_LIBUDEV */
static int
Oct 1, 2016
Oct 1, 2016
663
SDL_EVDEV_device_removed(const char *dev_path)
664
665
666
667
668
669
{
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
670
if (SDL_strcmp(dev_path, item->path) == 0) {
671
672
673
674
675
676
677
678
679
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
680
681
if (item->is_touchscreen) {
SDL_EVDEV_destroy_touchscreen(item);
Oct 1, 2016
Oct 1, 2016
682
}
683
684
685
close(item->fd);
SDL_free(item->path);
SDL_free(item);
Oct 1, 2016
Oct 1, 2016
686
_this->num_devices--;
687
688
689
690
691
692
693
694
695
696
697
698
return 0;
}
prev = item;
}
return -1;
}
#endif /* SDL_INPUT_LINUXEV */
/* vi: set ts=4 sw=4 expandtab: */