blob: d4ca0abbcb8baf149a452cba9d9fd7c5cd056d07 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <fcntl.h>
20#include <dirent.h>
21#include <sys/poll.h>
22#include <limits.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040023#include <linux/input.h>
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +010024#include <sys/types.h>
25#include <sys/stat.h>
26#include <unistd.h>
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050027#include <stdio.h>
28#include <string.h>
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +010029
Dees_Troy51a0e822012-09-05 15:24:24 -040030
31#include "../common.h"
32
33#include "minui.h"
34
35//#define _EVENT_LOGGING
36
Dees_Troy3f23d9e2013-05-03 21:04:05 +000037#define MAX_DEVICES 32
Dees_Troy51a0e822012-09-05 15:24:24 -040038
39#define VIBRATOR_TIMEOUT_FILE "/sys/class/timed_output/vibrator/enable"
40#define VIBRATOR_TIME_MS 50
41
Dees_Troyf7596752012-09-28 13:21:36 -040042#ifndef SYN_REPORT
Dees_Troy51a0e822012-09-05 15:24:24 -040043#define SYN_REPORT 0x00
Dees_Troyf7596752012-09-28 13:21:36 -040044#endif
45#ifndef SYN_CONFIG
Dees_Troy51a0e822012-09-05 15:24:24 -040046#define SYN_CONFIG 0x01
Dees_Troyf7596752012-09-28 13:21:36 -040047#endif
48#ifndef SYN_MT_REPORT
Dees_Troy51a0e822012-09-05 15:24:24 -040049#define SYN_MT_REPORT 0x02
Dees_Troyf7596752012-09-28 13:21:36 -040050#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040051
52#define ABS_MT_POSITION 0x2a /* Group a set of X and Y */
53#define ABS_MT_AMPLITUDE 0x2b /* Group a set of Z and W */
54#define ABS_MT_SLOT 0x2f
55#define ABS_MT_TOUCH_MAJOR 0x30
56#define ABS_MT_TOUCH_MINOR 0x31
57#define ABS_MT_WIDTH_MAJOR 0x32
58#define ABS_MT_WIDTH_MINOR 0x33
59#define ABS_MT_ORIENTATION 0x34
60#define ABS_MT_POSITION_X 0x35
61#define ABS_MT_POSITION_Y 0x36
62#define ABS_MT_TOOL_TYPE 0x37
63#define ABS_MT_BLOB_ID 0x38
64#define ABS_MT_TRACKING_ID 0x39
65#define ABS_MT_PRESSURE 0x3a
66#define ABS_MT_DISTANCE 0x3b
67
68enum {
69 DOWN_NOT,
70 DOWN_SENT,
71 DOWN_RELEASED,
72};
73
74struct virtualkey {
75 int scancode;
76 int centerx, centery;
77 int width, height;
78};
79
80struct position {
81 int x, y;
82 int synced;
83 struct input_absinfo xi, yi;
84};
85
86struct ev {
87 struct pollfd *fd;
88
89 struct virtualkey *vks;
90 int vk_count;
91
92 char deviceName[64];
93
94 int ignored;
95
96 struct position p, mt_p;
97 int down;
98};
99
100static struct pollfd ev_fds[MAX_DEVICES];
101static struct ev evs[MAX_DEVICES];
102static unsigned ev_count = 0;
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100103static struct timeval lastInputStat;
104static unsigned long lastInputMTime;
105static int has_mouse = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400106
107static inline int ABS(int x) {
108 return x<0?-x:x;
109}
110
111int vibrate(int timeout_ms)
112{
113 char str[20];
114 int fd;
115 int ret;
116
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +0000117 if (timeout_ms > 10000) timeout_ms = 1000;
118
Dees_Troy51a0e822012-09-05 15:24:24 -0400119 fd = open(VIBRATOR_TIMEOUT_FILE, O_WRONLY);
120 if (fd < 0)
121 return -1;
122
123 ret = snprintf(str, sizeof(str), "%d", timeout_ms);
124 ret = write(fd, str, ret);
125 close(fd);
126
127 if (ret < 0)
128 return -1;
129
130 return 0;
131}
132
133/* Returns empty tokens */
134static char *vk_strtok_r(char *str, const char *delim, char **save_str)
135{
136 if(!str)
137 {
138 if(!*save_str)
139 return NULL;
140
141 str = (*save_str) + 1;
142 }
143 *save_str = strpbrk(str, delim);
144
145 if (*save_str)
146 **save_str = '\0';
147
148 return str;
149}
150
151static int vk_init(struct ev *e)
152{
153 char vk_path[PATH_MAX] = "/sys/board_properties/virtualkeys.";
154 char vks[2048], *ts = NULL;
155 ssize_t len;
156 int vk_fd;
157 int i;
158
159 e->vk_count = 0;
160
161 len = strlen(vk_path);
162 len = ioctl(e->fd->fd, EVIOCGNAME(sizeof(e->deviceName)), e->deviceName);
163 if (len <= 0)
164 {
Dees_Troy2673cec2013-04-02 20:22:16 +0000165 printf("Unable to query event object.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400166 return -1;
167 }
168#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000169 printf("Event object: %s\n", e->deviceName);
Dees_Troy51a0e822012-09-05 15:24:24 -0400170#endif
171
Flemmardf4674612014-01-10 09:14:44 +0100172#ifdef WHITELIST_INPUT
173 if (strcmp(e->deviceName, EXPAND(WHITELIST_INPUT)) != 0)
174 {
175 e->ignored = 1;
176 }
177#else
Ethan Yonker5742a402014-08-12 14:52:49 -0500178#ifndef TW_INPUT_BLACKLIST
Dees_Troy51a0e822012-09-05 15:24:24 -0400179 // Blacklist these "input" devices
Ethan Yonker3c4ac3b2014-08-14 11:15:32 -0500180 if (strcmp(e->deviceName, "bma250") == 0 || strcmp(e->deviceName, "bma150") == 0)
Dees_Troy51a0e822012-09-05 15:24:24 -0400181 {
Ethan Yonker5742a402014-08-12 14:52:49 -0500182 printf("blacklisting %s input device\n", e->deviceName);
Dees_Troy51a0e822012-09-05 15:24:24 -0400183 e->ignored = 1;
184 }
Ethan Yonker5742a402014-08-12 14:52:49 -0500185#else
186 char* bl = strdup(EXPAND(TW_INPUT_BLACKLIST));
187 char* blacklist = strtok(bl, "\n");
188
189 while (blacklist != NULL) {
190 if (strcmp(e->deviceName, blacklist) == 0) {
191 printf("blacklisting %s input device\n", blacklist);
192 e->ignored = 1;
193 }
194 blacklist = strtok(NULL, "\n");
195 }
196 free(bl);
197#endif
Flemmardf4674612014-01-10 09:14:44 +0100198#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400199
200 strcat(vk_path, e->deviceName);
201
202 // Some devices split the keys from the touchscreen
203 e->vk_count = 0;
204 vk_fd = open(vk_path, O_RDONLY);
205 if (vk_fd >= 0)
206 {
207 len = read(vk_fd, vks, sizeof(vks)-1);
208 close(vk_fd);
209 if (len <= 0)
210 return -1;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500211
Dees_Troy51a0e822012-09-05 15:24:24 -0400212 vks[len] = '\0';
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500213
Dees_Troy51a0e822012-09-05 15:24:24 -0400214 /* Parse a line like:
215 keytype:keycode:centerx:centery:width:height:keytype2:keycode2:centerx2:...
216 */
217 for (ts = vks, e->vk_count = 1; *ts; ++ts) {
218 if (*ts == ':')
219 ++e->vk_count;
220 }
221
222 if (e->vk_count % 6) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000223 printf("minui: %s is %d %% 6\n", vk_path, e->vk_count % 6);
Dees_Troy51a0e822012-09-05 15:24:24 -0400224 }
225 e->vk_count /= 6;
226 if (e->vk_count <= 0)
227 return -1;
228
229 e->down = DOWN_NOT;
230 }
231
232 ioctl(e->fd->fd, EVIOCGABS(ABS_X), &e->p.xi);
233 ioctl(e->fd->fd, EVIOCGABS(ABS_Y), &e->p.yi);
234 e->p.synced = 0;
235#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000236 printf("EV: ST minX: %d maxX: %d minY: %d maxY: %d\n", e->p.xi.minimum, e->p.xi.maximum, e->p.yi.minimum, e->p.yi.maximum);
Dees_Troy51a0e822012-09-05 15:24:24 -0400237#endif
238
239 ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_X), &e->mt_p.xi);
240 ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_Y), &e->mt_p.yi);
241 e->mt_p.synced = 0;
242#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000243 printf("EV: MT minX: %d maxX: %d minY: %d maxY: %d\n", e->mt_p.xi.minimum, e->mt_p.xi.maximum, e->mt_p.yi.minimum, e->mt_p.yi.maximum);
Dees_Troy51a0e822012-09-05 15:24:24 -0400244#endif
245
Ethan Yonkerfbb43532015-12-28 21:54:50 +0100246 e->vks = (virtualkey *)malloc(sizeof(*e->vks) * e->vk_count);
Dees_Troy51a0e822012-09-05 15:24:24 -0400247
248 for (i = 0; i < e->vk_count; ++i) {
249 char *token[6];
250 int j;
251
252 for (j = 0; j < 6; ++j) {
253 token[j] = vk_strtok_r((i||j)?NULL:vks, ":", &ts);
254 }
255
256 if (strcmp(token[0], "0x01") != 0) {
257 /* Java does string compare, so we do too. */
Dees_Troy2673cec2013-04-02 20:22:16 +0000258 printf("minui: %s: ignoring unknown virtual key type %s\n", vk_path, token[0]);
Dees_Troy51a0e822012-09-05 15:24:24 -0400259 continue;
260 }
261
262 e->vks[i].scancode = strtol(token[1], NULL, 0);
263 e->vks[i].centerx = strtol(token[2], NULL, 0);
264 e->vks[i].centery = strtol(token[3], NULL, 0);
265 e->vks[i].width = strtol(token[4], NULL, 0);
266 e->vks[i].height = strtol(token[5], NULL, 0);
267 }
268
269 return 0;
270}
271
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100272#define BITS_PER_LONG (sizeof(long) * 8)
273#define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
274#define OFF(x) ((x)%BITS_PER_LONG)
275#define LONG(x) ((x)/BITS_PER_LONG)
276#define test_bit(bit, array) ((array[LONG(bit)] >> OFF(bit)) & 1)
Vojtech Bocek971d3182014-02-20 21:43:28 +0100277
278// Check for EV_REL (REL_X and REL_Y) and, because touchscreens can have those too,
279// check also for EV_KEY (BTN_LEFT and BTN_RIGHT)
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100280static void check_mouse(int fd)
281{
282 if(has_mouse)
283 return;
284
285 unsigned long bit[EV_MAX][NBITS(KEY_MAX)];
286 memset(bit, 0, sizeof(bit));
287 ioctl(fd, EVIOCGBIT(0, EV_MAX), bit[0]);
288
Vojtech Bocek971d3182014-02-20 21:43:28 +0100289 if(!test_bit(EV_REL, bit[0]) || !test_bit(EV_KEY, bit[0]))
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100290 return;
291
292 ioctl(fd, EVIOCGBIT(EV_REL, KEY_MAX), bit[EV_REL]);
Vojtech Bocek971d3182014-02-20 21:43:28 +0100293 if(!test_bit(REL_X, bit[EV_REL]) || !test_bit(REL_Y, bit[EV_REL]))
294 return;
295
296 ioctl(fd, EVIOCGBIT(EV_KEY, KEY_MAX), bit[EV_KEY]);
297 if(!test_bit(BTN_LEFT, bit[EV_KEY]) || !test_bit(BTN_RIGHT, bit[EV_KEY]))
298 return;
299
300 has_mouse = 1;
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100301}
302
303int ev_has_mouse(void)
304{
305 return has_mouse;
306}
307
Dees_Troy51a0e822012-09-05 15:24:24 -0400308int ev_init(void)
309{
310 DIR *dir;
311 struct dirent *de;
312 int fd;
313
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100314 has_mouse = 0;
315
Dees_Troy51a0e822012-09-05 15:24:24 -0400316 dir = opendir("/dev/input");
317 if(dir != 0) {
318 while((de = readdir(dir))) {
319// fprintf(stderr,"/dev/input/%s\n", de->d_name);
320 if(strncmp(de->d_name,"event",5)) continue;
321 fd = openat(dirfd(dir), de->d_name, O_RDONLY);
322 if(fd < 0) continue;
323
324 ev_fds[ev_count].fd = fd;
325 ev_fds[ev_count].events = POLLIN;
326 evs[ev_count].fd = &ev_fds[ev_count];
327
328 /* Load virtualkeys if there are any */
329 vk_init(&evs[ev_count]);
330
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100331 check_mouse(fd);
332
Dees_Troy51a0e822012-09-05 15:24:24 -0400333 ev_count++;
334 if(ev_count == MAX_DEVICES) break;
335 }
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100336 closedir(dir);
Dees_Troy51a0e822012-09-05 15:24:24 -0400337 }
338
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100339 struct stat st;
340 if(stat("/dev/input", &st) >= 0)
341 lastInputMTime = st.st_mtime;
342 gettimeofday(&lastInputStat, NULL);
343
Dees_Troy51a0e822012-09-05 15:24:24 -0400344 return 0;
345}
346
347void ev_exit(void)
348{
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100349 while (ev_count-- > 0) {
350 if (evs[ev_count].vk_count) {
351 free(evs[ev_count].vks);
352 evs[ev_count].vk_count = 0;
353 }
354 close(ev_fds[ev_count].fd);
Dees_Troy51a0e822012-09-05 15:24:24 -0400355 }
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100356 ev_count = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400357}
358
359static int vk_inside_display(__s32 value, struct input_absinfo *info, int screen_size)
360{
361 int screen_pos;
362
363 if (info->minimum == info->maximum)
364 return 0;
365
366 screen_pos = (value - info->minimum) * (screen_size - 1) / (info->maximum - info->minimum);
367 return (screen_pos >= 0 && screen_pos < screen_size);
368}
369
Dees_Troyb7ecc092013-08-24 12:15:41 +0000370static int vk_tp_to_screen(struct position *p, int *x, int *y)
Dees_Troy51a0e822012-09-05 15:24:24 -0400371{
372 if (p->xi.minimum == p->xi.maximum || p->yi.minimum == p->yi.maximum)
373 {
374 // In this case, we assume the screen dimensions are the same.
375 *x = p->x;
376 *y = p->y;
377 return 0;
378 }
379
Dees_Troyb7ecc092013-08-24 12:15:41 +0000380#ifdef _EVENT_LOGGING
381 printf("EV: p->x=%d x-range=%d,%d fb-width=%d\n", p->x, p->xi.minimum, p->xi.maximum, gr_fb_width());
382#endif
383
Dees_Troy51a0e822012-09-05 15:24:24 -0400384#ifndef RECOVERY_TOUCHSCREEN_SWAP_XY
Dees_Troyb7ecc092013-08-24 12:15:41 +0000385 int fb_width = gr_fb_width();
386 int fb_height = gr_fb_height();
Dees_Troy51a0e822012-09-05 15:24:24 -0400387#else
388 // We need to swap the scaling sizes, too
Dees_Troyb7ecc092013-08-24 12:15:41 +0000389 int fb_width = gr_fb_height();
390 int fb_height = gr_fb_width();
Dees_Troy51a0e822012-09-05 15:24:24 -0400391#endif
392
393 *x = (p->x - p->xi.minimum) * (fb_width - 1) / (p->xi.maximum - p->xi.minimum);
394 *y = (p->y - p->yi.minimum) * (fb_height - 1) / (p->yi.maximum - p->yi.minimum);
395
396 if (*x >= 0 && *x < fb_width &&
397 *y >= 0 && *y < fb_height)
398 {
399 return 0;
400 }
401
402 return 1;
403}
404
405/* Translate a virtual key in to a real key event, if needed */
406/* Returns non-zero when the event should be consumed */
Dees_Troyb7ecc092013-08-24 12:15:41 +0000407static int vk_modify(struct ev *e, struct input_event *ev)
Dees_Troy51a0e822012-09-05 15:24:24 -0400408{
409 static int downX = -1, downY = -1;
410 static int discard = 0;
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100411 static int last_virt_key = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400412 static int lastWasSynReport = 0;
413 static int touchReleaseOnNextSynReport = 0;
Dees_Troyd86400b2013-05-13 19:04:35 +0000414 static int use_tracking_id_negative_as_touch_release = 0; // On some devices, type: 3 code: 39 value: -1, aka EV_ABS ABS_MT_TRACKING_ID -1 indicates a true touch release
Dees_Troy51a0e822012-09-05 15:24:24 -0400415 int i;
416 int x, y;
417
418 // This is used to ditch useless event handlers, like an accelerometer
419 if (e->ignored) return 1;
420
421 if (ev->type == EV_REL && ev->code == REL_Z)
422 {
423 // This appears to be an accelerometer or another strange input device. It's not the touchscreen.
424#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000425 printf("EV: Device disabled due to non-touchscreen messages.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400426#endif
427 e->ignored = 1;
428 return 1;
429 }
430
431#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000432 printf("EV: %s => type: %x code: %x value: %d\n", e->deviceName, ev->type, ev->code, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400433#endif
434
435 // Handle keyboard events, value of 1 indicates key down, 0 indicates key up
436 if (ev->type == EV_KEY) {
437 return 0;
438 }
439
440 if (ev->type == EV_ABS) {
441 switch (ev->code) {
442
443 case ABS_X: //00
444 e->p.synced |= 0x01;
445 e->p.x = ev->value;
446#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000447 printf("EV: %s => EV_ABS ABS_X %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400448#endif
449 break;
450
451 case ABS_Y: //01
452 e->p.synced |= 0x02;
453 e->p.y = ev->value;
454#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000455 printf("EV: %s => EV_ABS ABS_Y %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400456#endif
457 break;
458
459 case ABS_MT_POSITION: //2a
460 e->mt_p.synced = 0x03;
461 if (ev->value == (1 << 31))
462 {
Ethan Yonker32f68a32014-12-29 08:13:23 -0600463#ifndef TW_IGNORE_MT_POSITION_0
Dees_Troy51a0e822012-09-05 15:24:24 -0400464 e->mt_p.x = 0;
465 e->mt_p.y = 0;
466 lastWasSynReport = 1;
Ethan Yonker32f68a32014-12-29 08:13:23 -0600467#endif
468#ifdef _EVENT_LOGGING
469#ifndef TW_IGNORE_MT_POSITION_0
470 printf("EV: %s => EV_ABS ABS_MT_POSITION %d, set x and y to 0 and lastWasSynReport to 1\n", e->deviceName, ev->value);
471#else
472 printf("Ignoring ABS_MT_POSITION 0\n", e->deviceName, ev->value);
473#endif
474#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400475 }
476 else
477 {
478 lastWasSynReport = 0;
479 e->mt_p.x = (ev->value & 0x7FFF0000) >> 16;
480 e->mt_p.y = (ev->value & 0xFFFF);
Ethan Yonker32f68a32014-12-29 08:13:23 -0600481#ifdef _EVENT_LOGGING
482 printf("EV: %s => EV_ABS ABS_MT_POSITION %d, set x: %d and y: %d and lastWasSynReport to 0\n", e->deviceName, ev->value, (ev->value & 0x7FFF0000) >> 16, (ev->value & 0xFFFF));
483#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400484 }
485 break;
486
487 case ABS_MT_TOUCH_MAJOR: //30
488 if (ev->value == 0)
489 {
Ibrahim Awwal2e9cb012014-01-04 12:38:26 -0800490#ifndef TW_IGNORE_MAJOR_AXIS_0
Dees_Troy51a0e822012-09-05 15:24:24 -0400491 // We're in a touch release, although some devices will still send positions as well
492 e->mt_p.x = 0;
493 e->mt_p.y = 0;
494 touchReleaseOnNextSynReport = 1;
Ibrahim Awwal2e9cb012014-01-04 12:38:26 -0800495#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400496 }
497#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000498 printf("EV: %s => EV_ABS ABS_MT_TOUCH_MAJOR %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400499#endif
500 break;
501
502 case ABS_MT_PRESSURE: //3a
503 if (ev->value == 0)
504 {
505 // We're in a touch release, although some devices will still send positions as well
506 e->mt_p.x = 0;
507 e->mt_p.y = 0;
508 touchReleaseOnNextSynReport = 1;
509 }
510#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000511 printf("EV: %s => EV_ABS ABS_MT_PRESSURE %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400512#endif
513 break;
514
515 case ABS_MT_POSITION_X: //35
516 e->mt_p.synced |= 0x01;
517 e->mt_p.x = ev->value;
518#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000519 printf("EV: %s => EV_ABS ABS_MT_POSITION_X %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400520#endif
521 break;
522
523 case ABS_MT_POSITION_Y: //36
524 e->mt_p.synced |= 0x02;
525 e->mt_p.y = ev->value;
526#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000527 printf("EV: %s => EV_ABS ABS_MT_POSITION_Y %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400528#endif
529 break;
530
Dees_Troy51a0e822012-09-05 15:24:24 -0400531 case ABS_MT_TOUCH_MINOR: //31
Dees_Troyd86400b2013-05-13 19:04:35 +0000532#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000533 printf("EV: %s => EV_ABS ABS_MT_TOUCH_MINOR %d\n", e->deviceName, ev->value);
Dees_Troyd86400b2013-05-13 19:04:35 +0000534#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400535 break;
536
537 case ABS_MT_WIDTH_MAJOR: //32
Dees_Troyd86400b2013-05-13 19:04:35 +0000538#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000539 printf("EV: %s => EV_ABS ABS_MT_WIDTH_MAJOR %d\n", e->deviceName, ev->value);
Dees_Troyd86400b2013-05-13 19:04:35 +0000540#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400541 break;
542
543 case ABS_MT_WIDTH_MINOR: //33
Dees_Troyd86400b2013-05-13 19:04:35 +0000544#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000545 printf("EV: %s => EV_ABS ABS_MT_WIDTH_MINOR %d\n", e->deviceName, ev->value);
Dees_Troyd86400b2013-05-13 19:04:35 +0000546#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400547 break;
548
Dees_Troyd86400b2013-05-13 19:04:35 +0000549 case ABS_MT_TRACKING_ID: //39
Ethan Yonkerd6821a12015-08-26 15:29:23 -0500550#ifdef TW_IGNORE_ABS_MT_TRACKING_ID
551#ifdef _EVENT_LOGGING
552 printf("EV: %s => EV_ABS ABS_MT_TRACKING_ID %d ignored\n", e->deviceName, ev->value);
553#endif
554 return 1;
555#endif
Dees_Troyd86400b2013-05-13 19:04:35 +0000556 if (ev->value < 0) {
557 e->mt_p.x = 0;
558 e->mt_p.y = 0;
559 touchReleaseOnNextSynReport = 2;
560 use_tracking_id_negative_as_touch_release = 1;
561#ifdef _EVENT_LOGGING
562 if (use_tracking_id_negative_as_touch_release)
563 printf("using ABS_MT_TRACKING_ID value -1 to indicate touch releases\n");
564#endif
565 }
566#ifdef _EVENT_LOGGING
567 printf("EV: %s => EV_ABS ABS_MT_TRACKING_ID %d\n", e->deviceName, ev->value);
568#endif
569 break;
570
571#ifdef _EVENT_LOGGING
572 // These are for touch logging purposes only
Dees_Troy51a0e822012-09-05 15:24:24 -0400573 case ABS_MT_ORIENTATION: //34
Dees_Troy2673cec2013-04-02 20:22:16 +0000574 printf("EV: %s => EV_ABS ABS_MT_ORIENTATION %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400575 return 1;
576 break;
577
578 case ABS_MT_TOOL_TYPE: //37
579 LOGI("EV: %s => EV_ABS ABS_MT_TOOL_TYPE %d\n", e->deviceName, ev->value);
580 return 1;
581 break;
582
583 case ABS_MT_BLOB_ID: //38
Dees_Troy2673cec2013-04-02 20:22:16 +0000584 printf("EV: %s => EV_ABS ABS_MT_BLOB_ID %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400585 return 1;
586 break;
587
Dees_Troy51a0e822012-09-05 15:24:24 -0400588 case ABS_MT_DISTANCE: //3b
Dees_Troy2673cec2013-04-02 20:22:16 +0000589 printf("EV: %s => EV_ABS ABS_MT_DISTANCE %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400590 return 1;
591 break;
Ethan Yonkerd6821a12015-08-26 15:29:23 -0500592 case ABS_MT_SLOT:
593 printf("EV: %s => ABS_MT_SLOT %d\n", e->deviceName, ev->value);
594 return 1;
595 break;
Dees_Troy51a0e822012-09-05 15:24:24 -0400596#endif
597
598 default:
599 // This is an unhandled message, just skip it
600 return 1;
601 }
602
603 if (ev->code != ABS_MT_POSITION)
604 {
605 lastWasSynReport = 0;
606 return 1;
607 }
608 }
609
610 // Check if we should ignore the message
611 if (ev->code != ABS_MT_POSITION && (ev->type != EV_SYN || (ev->code != SYN_REPORT && ev->code != SYN_MT_REPORT)))
612 {
613 lastWasSynReport = 0;
614 return 0;
615 }
616
617#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000618 if (ev->type == EV_SYN && ev->code == SYN_REPORT) printf("EV: %s => EV_SYN SYN_REPORT\n", e->deviceName);
619 if (ev->type == EV_SYN && ev->code == SYN_MT_REPORT) printf("EV: %s => EV_SYN SYN_MT_REPORT\n", e->deviceName);
Dees_Troy51a0e822012-09-05 15:24:24 -0400620#endif
621
622 // Discard the MT versions
623 if (ev->code == SYN_MT_REPORT) return 0;
624
Dees_Troyd86400b2013-05-13 19:04:35 +0000625 if (((lastWasSynReport == 1 || touchReleaseOnNextSynReport == 1) && !use_tracking_id_negative_as_touch_release) || (use_tracking_id_negative_as_touch_release && touchReleaseOnNextSynReport == 2))
Dees_Troy51a0e822012-09-05 15:24:24 -0400626 {
627 // Reset the value
628 touchReleaseOnNextSynReport = 0;
629
630 // We are a finger-up state
631 if (!discard)
632 {
633 // Report the key up
634 ev->type = EV_ABS;
635 ev->code = 0;
636 ev->value = (downX << 16) | downY;
637 }
638 downX = -1;
639 downY = -1;
640 if (discard)
641 {
642 discard = 0;
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100643
644 // Send the keyUp event
645 ev->type = EV_KEY;
646 ev->code = last_virt_key;
647 ev->value = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400648 }
649 return 0;
650 }
651 lastWasSynReport = 1;
652
653 // Retrieve where the x,y position is
654 if (e->p.synced & 0x03)
655 {
Dees_Troyb7ecc092013-08-24 12:15:41 +0000656 vk_tp_to_screen(&e->p, &x, &y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400657 }
658 else if (e->mt_p.synced & 0x03)
659 {
Dees_Troyb7ecc092013-08-24 12:15:41 +0000660 vk_tp_to_screen(&e->mt_p, &x, &y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400661 }
662 else
663 {
664 // We don't have useful information to convey
665 return 1;
666 }
667
668#ifdef RECOVERY_TOUCHSCREEN_SWAP_XY
669 x ^= y;
670 y ^= x;
671 x ^= y;
672#endif
673#ifdef RECOVERY_TOUCHSCREEN_FLIP_X
Dees_Troyb7ecc092013-08-24 12:15:41 +0000674 x = gr_fb_width() - x;
Dees_Troy51a0e822012-09-05 15:24:24 -0400675#endif
676#ifdef RECOVERY_TOUCHSCREEN_FLIP_Y
Dees_Troyb7ecc092013-08-24 12:15:41 +0000677 y = gr_fb_height() - y;
Dees_Troy51a0e822012-09-05 15:24:24 -0400678#endif
679
680#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000681 printf("EV: x: %d y: %d\n", x, y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400682#endif
683
684 // Clear the current sync states
685 e->p.synced = e->mt_p.synced = 0;
686
687 // If we have nothing useful to report, skip it
688 if (x == -1 || y == -1) return 1;
689
Ethan Yonker96bc6dd2015-03-18 11:44:34 -0500690 // Special case, we'll ignore touches on 0,0 because it usually means
691 // that we received extra data after our last sync and x and y were
692 // reset to 0. We should not be using 0,0 anyway.
693 if (x == 0 && y == 0)
694 return 1;
695
Dees_Troy51a0e822012-09-05 15:24:24 -0400696 // On first touch, see if we're at a virtual key
697 if (downX == -1)
698 {
699 // Attempt mapping to virtual key
700 for (i = 0; i < e->vk_count; ++i)
701 {
702 int xd = ABS(e->vks[i].centerx - x);
703 int yd = ABS(e->vks[i].centery - y);
704
705 if (xd < e->vks[i].width/2 && yd < e->vks[i].height/2)
706 {
707 ev->type = EV_KEY;
708 ev->code = e->vks[i].scancode;
709 ev->value = 1;
710
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100711 last_virt_key = e->vks[i].scancode;
712
Dees_Troy51a0e822012-09-05 15:24:24 -0400713 vibrate(VIBRATOR_TIME_MS);
714
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500715 // Mark that all further movement until lift is discard,
Dees_Troy51a0e822012-09-05 15:24:24 -0400716 // and make sure we don't come back into this area
717 discard = 1;
718 downX = 0;
719 return 0;
720 }
721 }
722 }
723
724 // If we were originally a button press, discard this event
725 if (discard)
726 {
727 return 1;
728 }
729
730 // Record where we started the touch for deciding if this is a key or a scroll
731 downX = x;
732 downY = y;
733
734 ev->type = EV_ABS;
735 ev->code = 1;
736 ev->value = (x << 16) | y;
737 return 0;
738}
739
thatde72b6d2015-02-08 08:55:00 +0100740int ev_get(struct input_event *ev, int timeout_ms)
Dees_Troy51a0e822012-09-05 15:24:24 -0400741{
742 int r;
743 unsigned n;
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100744 struct timeval curr;
Dees_Troy51a0e822012-09-05 15:24:24 -0400745
Ethan Yonkere13fa632015-01-27 11:30:03 -0600746 gettimeofday(&curr, NULL);
747 if(curr.tv_sec - lastInputStat.tv_sec >= 2)
748 {
749 struct stat st;
750 stat("/dev/input", &st);
751 if (st.st_mtime > lastInputMTime)
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100752 {
Ethan Yonkere13fa632015-01-27 11:30:03 -0600753 printf("Reloading input devices\n");
754 ev_exit();
755 ev_init();
756 lastInputMTime = st.st_mtime;
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100757 }
Ethan Yonkere13fa632015-01-27 11:30:03 -0600758 lastInputStat = curr;
759 }
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +0100760
thatde72b6d2015-02-08 08:55:00 +0100761 r = poll(ev_fds, ev_count, timeout_ms);
Dees_Troy51a0e822012-09-05 15:24:24 -0400762
Ethan Yonkere13fa632015-01-27 11:30:03 -0600763 if(r > 0) {
764 for(n = 0; n < ev_count; n++) {
765 if(ev_fds[n].revents & POLLIN) {
766 r = read(ev_fds[n].fd, ev, sizeof(*ev));
767 if(r == sizeof(*ev)) {
768 if (!vk_modify(&evs[n], ev))
769 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400770 }
771 }
772 }
thatc5837f32015-02-01 01:59:43 +0100773 return -1;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600774 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400775
thatc5837f32015-02-01 01:59:43 +0100776 return -2;
Dees_Troy51a0e822012-09-05 15:24:24 -0400777}
778
779int ev_wait(int timeout)
780{
781 return -1;
782}
783
784void ev_dispatch(void)
785{
786 return;
787}
788
789int ev_get_input(int fd, short revents, struct input_event *ev)
790{
791 return -1;
792}