blob: 2653d18d4e46d86a0ab8d3b43a1c18041b56935d [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>
23
24#include <linux/input.h>
25
26#include "../common.h"
27
28#include "minui.h"
29
30//#define _EVENT_LOGGING
31
Dees_Troy3f23d9e2013-05-03 21:04:05 +000032#define MAX_DEVICES 32
Dees_Troy51a0e822012-09-05 15:24:24 -040033
34#define VIBRATOR_TIMEOUT_FILE "/sys/class/timed_output/vibrator/enable"
35#define VIBRATOR_TIME_MS 50
36
Dees_Troyf7596752012-09-28 13:21:36 -040037#ifndef SYN_REPORT
Dees_Troy51a0e822012-09-05 15:24:24 -040038#define SYN_REPORT 0x00
Dees_Troyf7596752012-09-28 13:21:36 -040039#endif
40#ifndef SYN_CONFIG
Dees_Troy51a0e822012-09-05 15:24:24 -040041#define SYN_CONFIG 0x01
Dees_Troyf7596752012-09-28 13:21:36 -040042#endif
43#ifndef SYN_MT_REPORT
Dees_Troy51a0e822012-09-05 15:24:24 -040044#define SYN_MT_REPORT 0x02
Dees_Troyf7596752012-09-28 13:21:36 -040045#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040046
47#define ABS_MT_POSITION 0x2a /* Group a set of X and Y */
48#define ABS_MT_AMPLITUDE 0x2b /* Group a set of Z and W */
49#define ABS_MT_SLOT 0x2f
50#define ABS_MT_TOUCH_MAJOR 0x30
51#define ABS_MT_TOUCH_MINOR 0x31
52#define ABS_MT_WIDTH_MAJOR 0x32
53#define ABS_MT_WIDTH_MINOR 0x33
54#define ABS_MT_ORIENTATION 0x34
55#define ABS_MT_POSITION_X 0x35
56#define ABS_MT_POSITION_Y 0x36
57#define ABS_MT_TOOL_TYPE 0x37
58#define ABS_MT_BLOB_ID 0x38
59#define ABS_MT_TRACKING_ID 0x39
60#define ABS_MT_PRESSURE 0x3a
61#define ABS_MT_DISTANCE 0x3b
62
63enum {
64 DOWN_NOT,
65 DOWN_SENT,
66 DOWN_RELEASED,
67};
68
69struct virtualkey {
70 int scancode;
71 int centerx, centery;
72 int width, height;
73};
74
75struct position {
76 int x, y;
77 int synced;
78 struct input_absinfo xi, yi;
79};
80
81struct ev {
82 struct pollfd *fd;
83
84 struct virtualkey *vks;
85 int vk_count;
86
87 char deviceName[64];
88
89 int ignored;
90
91 struct position p, mt_p;
92 int down;
93};
94
95static struct pollfd ev_fds[MAX_DEVICES];
96static struct ev evs[MAX_DEVICES];
97static unsigned ev_count = 0;
98
99static inline int ABS(int x) {
100 return x<0?-x:x;
101}
102
103int vibrate(int timeout_ms)
104{
105 char str[20];
106 int fd;
107 int ret;
108
109 fd = open(VIBRATOR_TIMEOUT_FILE, O_WRONLY);
110 if (fd < 0)
111 return -1;
112
113 ret = snprintf(str, sizeof(str), "%d", timeout_ms);
114 ret = write(fd, str, ret);
115 close(fd);
116
117 if (ret < 0)
118 return -1;
119
120 return 0;
121}
122
123/* Returns empty tokens */
124static char *vk_strtok_r(char *str, const char *delim, char **save_str)
125{
126 if(!str)
127 {
128 if(!*save_str)
129 return NULL;
130
131 str = (*save_str) + 1;
132 }
133 *save_str = strpbrk(str, delim);
134
135 if (*save_str)
136 **save_str = '\0';
137
138 return str;
139}
140
141static int vk_init(struct ev *e)
142{
143 char vk_path[PATH_MAX] = "/sys/board_properties/virtualkeys.";
144 char vks[2048], *ts = NULL;
145 ssize_t len;
146 int vk_fd;
147 int i;
148
149 e->vk_count = 0;
150
151 len = strlen(vk_path);
152 len = ioctl(e->fd->fd, EVIOCGNAME(sizeof(e->deviceName)), e->deviceName);
153 if (len <= 0)
154 {
Dees_Troy2673cec2013-04-02 20:22:16 +0000155 printf("Unable to query event object.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400156 return -1;
157 }
158#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000159 printf("Event object: %s\n", e->deviceName);
Dees_Troy51a0e822012-09-05 15:24:24 -0400160#endif
161
162 // Blacklist these "input" devices
Dees_Troy07a3a742012-12-11 15:13:21 +0000163 if (strcmp(e->deviceName, "bma250") == 0 || strcmp(e->deviceName, "bma150") == 0)
Dees_Troy51a0e822012-09-05 15:24:24 -0400164 {
165 e->ignored = 1;
166 }
167
168 strcat(vk_path, e->deviceName);
169
170 // Some devices split the keys from the touchscreen
171 e->vk_count = 0;
172 vk_fd = open(vk_path, O_RDONLY);
173 if (vk_fd >= 0)
174 {
175 len = read(vk_fd, vks, sizeof(vks)-1);
176 close(vk_fd);
177 if (len <= 0)
178 return -1;
179
180 vks[len] = '\0';
181
182 /* Parse a line like:
183 keytype:keycode:centerx:centery:width:height:keytype2:keycode2:centerx2:...
184 */
185 for (ts = vks, e->vk_count = 1; *ts; ++ts) {
186 if (*ts == ':')
187 ++e->vk_count;
188 }
189
190 if (e->vk_count % 6) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000191 printf("minui: %s is %d %% 6\n", vk_path, e->vk_count % 6);
Dees_Troy51a0e822012-09-05 15:24:24 -0400192 }
193 e->vk_count /= 6;
194 if (e->vk_count <= 0)
195 return -1;
196
197 e->down = DOWN_NOT;
198 }
199
200 ioctl(e->fd->fd, EVIOCGABS(ABS_X), &e->p.xi);
201 ioctl(e->fd->fd, EVIOCGABS(ABS_Y), &e->p.yi);
202 e->p.synced = 0;
203#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000204 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 -0400205#endif
206
207 ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_X), &e->mt_p.xi);
208 ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_Y), &e->mt_p.yi);
209 e->mt_p.synced = 0;
210#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000211 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 -0400212#endif
213
214 e->vks = malloc(sizeof(*e->vks) * e->vk_count);
215
216 for (i = 0; i < e->vk_count; ++i) {
217 char *token[6];
218 int j;
219
220 for (j = 0; j < 6; ++j) {
221 token[j] = vk_strtok_r((i||j)?NULL:vks, ":", &ts);
222 }
223
224 if (strcmp(token[0], "0x01") != 0) {
225 /* Java does string compare, so we do too. */
Dees_Troy2673cec2013-04-02 20:22:16 +0000226 printf("minui: %s: ignoring unknown virtual key type %s\n", vk_path, token[0]);
Dees_Troy51a0e822012-09-05 15:24:24 -0400227 continue;
228 }
229
230 e->vks[i].scancode = strtol(token[1], NULL, 0);
231 e->vks[i].centerx = strtol(token[2], NULL, 0);
232 e->vks[i].centery = strtol(token[3], NULL, 0);
233 e->vks[i].width = strtol(token[4], NULL, 0);
234 e->vks[i].height = strtol(token[5], NULL, 0);
235 }
236
237 return 0;
238}
239
240int ev_init(void)
241{
242 DIR *dir;
243 struct dirent *de;
244 int fd;
245
246 dir = opendir("/dev/input");
247 if(dir != 0) {
248 while((de = readdir(dir))) {
249// fprintf(stderr,"/dev/input/%s\n", de->d_name);
250 if(strncmp(de->d_name,"event",5)) continue;
251 fd = openat(dirfd(dir), de->d_name, O_RDONLY);
252 if(fd < 0) continue;
253
254 ev_fds[ev_count].fd = fd;
255 ev_fds[ev_count].events = POLLIN;
256 evs[ev_count].fd = &ev_fds[ev_count];
257
258 /* Load virtualkeys if there are any */
259 vk_init(&evs[ev_count]);
260
261 ev_count++;
262 if(ev_count == MAX_DEVICES) break;
263 }
264 }
265
266 return 0;
267}
268
269void ev_exit(void)
270{
271 while (ev_count-- > 0) {
272 if (evs[ev_count].vk_count) {
273 free(evs[ev_count].vks);
274 evs[ev_count].vk_count = 0;
275 }
276 close(ev_fds[ev_count].fd);
277 }
278}
279
280static int vk_inside_display(__s32 value, struct input_absinfo *info, int screen_size)
281{
282 int screen_pos;
283
284 if (info->minimum == info->maximum)
285 return 0;
286
287 screen_pos = (value - info->minimum) * (screen_size - 1) / (info->maximum - info->minimum);
288 return (screen_pos >= 0 && screen_pos < screen_size);
289}
290
Dees_Troy70e11292013-08-07 15:52:20 +0000291static int vk_tp_to_screen(struct position *p, int *x, int *y, int *screen_width, int *screen_height)
Dees_Troy51a0e822012-09-05 15:24:24 -0400292{
293 if (p->xi.minimum == p->xi.maximum || p->yi.minimum == p->yi.maximum)
294 {
295 // In this case, we assume the screen dimensions are the same.
296 *x = p->x;
297 *y = p->y;
298 return 0;
299 }
300
Dees_Troy51a0e822012-09-05 15:24:24 -0400301#ifndef RECOVERY_TOUCHSCREEN_SWAP_XY
Dees_Troy70e11292013-08-07 15:52:20 +0000302 int fb_width = *screen_width;
303 int fb_height = *screen_height;
Dees_Troy51a0e822012-09-05 15:24:24 -0400304#else
305 // We need to swap the scaling sizes, too
Dees_Troy70e11292013-08-07 15:52:20 +0000306 int fb_width = *screen_height;
307 int fb_height = *screen_width;
308#endif
309#ifdef _EVENT_LOGGING
310 printf("EV: p->x=%d x-range=%d,%d fb-width=%d\n", p->x, p->xi.minimum, p->xi.maximum, *screen_width);
Dees_Troy51a0e822012-09-05 15:24:24 -0400311#endif
312
313 *x = (p->x - p->xi.minimum) * (fb_width - 1) / (p->xi.maximum - p->xi.minimum);
314 *y = (p->y - p->yi.minimum) * (fb_height - 1) / (p->yi.maximum - p->yi.minimum);
315
316 if (*x >= 0 && *x < fb_width &&
317 *y >= 0 && *y < fb_height)
318 {
319 return 0;
320 }
321
322 return 1;
323}
324
325/* Translate a virtual key in to a real key event, if needed */
326/* Returns non-zero when the event should be consumed */
Dees_Troy70e11292013-08-07 15:52:20 +0000327static int vk_modify(struct ev *e, struct input_event *ev, int *screen_width, int *screen_height)
Dees_Troy51a0e822012-09-05 15:24:24 -0400328{
329 static int downX = -1, downY = -1;
330 static int discard = 0;
331 static int lastWasSynReport = 0;
332 static int touchReleaseOnNextSynReport = 0;
Dees_Troyd86400b2013-05-13 19:04:35 +0000333 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 -0400334 int i;
335 int x, y;
336
337 // This is used to ditch useless event handlers, like an accelerometer
338 if (e->ignored) return 1;
339
340 if (ev->type == EV_REL && ev->code == REL_Z)
341 {
342 // This appears to be an accelerometer or another strange input device. It's not the touchscreen.
343#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000344 printf("EV: Device disabled due to non-touchscreen messages.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400345#endif
346 e->ignored = 1;
347 return 1;
348 }
349
350#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000351 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 -0400352#endif
353
354 // Handle keyboard events, value of 1 indicates key down, 0 indicates key up
355 if (ev->type == EV_KEY) {
356 return 0;
357 }
358
359 if (ev->type == EV_ABS) {
360 switch (ev->code) {
361
362 case ABS_X: //00
363 e->p.synced |= 0x01;
364 e->p.x = ev->value;
365#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000366 printf("EV: %s => EV_ABS ABS_X %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400367#endif
368 break;
369
370 case ABS_Y: //01
371 e->p.synced |= 0x02;
372 e->p.y = ev->value;
373#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000374 printf("EV: %s => EV_ABS ABS_Y %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400375#endif
376 break;
377
378 case ABS_MT_POSITION: //2a
379 e->mt_p.synced = 0x03;
380 if (ev->value == (1 << 31))
381 {
382 e->mt_p.x = 0;
383 e->mt_p.y = 0;
384 lastWasSynReport = 1;
385 }
386 else
387 {
388 lastWasSynReport = 0;
389 e->mt_p.x = (ev->value & 0x7FFF0000) >> 16;
390 e->mt_p.y = (ev->value & 0xFFFF);
391 }
392 break;
393
394 case ABS_MT_TOUCH_MAJOR: //30
395 if (ev->value == 0)
396 {
397 // We're in a touch release, although some devices will still send positions as well
398 e->mt_p.x = 0;
399 e->mt_p.y = 0;
400 touchReleaseOnNextSynReport = 1;
401 }
402#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000403 printf("EV: %s => EV_ABS ABS_MT_TOUCH_MAJOR %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400404#endif
405 break;
406
407 case ABS_MT_PRESSURE: //3a
408 if (ev->value == 0)
409 {
410 // We're in a touch release, although some devices will still send positions as well
411 e->mt_p.x = 0;
412 e->mt_p.y = 0;
413 touchReleaseOnNextSynReport = 1;
414 }
415#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000416 printf("EV: %s => EV_ABS ABS_MT_PRESSURE %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400417#endif
418 break;
419
420 case ABS_MT_POSITION_X: //35
421 e->mt_p.synced |= 0x01;
422 e->mt_p.x = ev->value;
423#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000424 printf("EV: %s => EV_ABS ABS_MT_POSITION_X %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400425#endif
426 break;
427
428 case ABS_MT_POSITION_Y: //36
429 e->mt_p.synced |= 0x02;
430 e->mt_p.y = ev->value;
431#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000432 printf("EV: %s => EV_ABS ABS_MT_POSITION_Y %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400433#endif
434 break;
435
Dees_Troy51a0e822012-09-05 15:24:24 -0400436 case ABS_MT_TOUCH_MINOR: //31
Dees_Troyd86400b2013-05-13 19:04:35 +0000437#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000438 printf("EV: %s => EV_ABS ABS_MT_TOUCH_MINOR %d\n", e->deviceName, ev->value);
Dees_Troyd86400b2013-05-13 19:04:35 +0000439#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400440 break;
441
442 case ABS_MT_WIDTH_MAJOR: //32
Dees_Troyd86400b2013-05-13 19:04:35 +0000443#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000444 printf("EV: %s => EV_ABS ABS_MT_WIDTH_MAJOR %d\n", e->deviceName, ev->value);
Dees_Troyd86400b2013-05-13 19:04:35 +0000445#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400446 break;
447
448 case ABS_MT_WIDTH_MINOR: //33
Dees_Troyd86400b2013-05-13 19:04:35 +0000449#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000450 printf("EV: %s => EV_ABS ABS_MT_WIDTH_MINOR %d\n", e->deviceName, ev->value);
Dees_Troyd86400b2013-05-13 19:04:35 +0000451#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400452 break;
453
Dees_Troyd86400b2013-05-13 19:04:35 +0000454 case ABS_MT_TRACKING_ID: //39
455 if (ev->value < 0) {
456 e->mt_p.x = 0;
457 e->mt_p.y = 0;
458 touchReleaseOnNextSynReport = 2;
459 use_tracking_id_negative_as_touch_release = 1;
460#ifdef _EVENT_LOGGING
461 if (use_tracking_id_negative_as_touch_release)
462 printf("using ABS_MT_TRACKING_ID value -1 to indicate touch releases\n");
463#endif
464 }
465#ifdef _EVENT_LOGGING
466 printf("EV: %s => EV_ABS ABS_MT_TRACKING_ID %d\n", e->deviceName, ev->value);
467#endif
468 break;
469
470#ifdef _EVENT_LOGGING
471 // These are for touch logging purposes only
Dees_Troy51a0e822012-09-05 15:24:24 -0400472 case ABS_MT_ORIENTATION: //34
Dees_Troy2673cec2013-04-02 20:22:16 +0000473 printf("EV: %s => EV_ABS ABS_MT_ORIENTATION %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400474 return 1;
475 break;
476
477 case ABS_MT_TOOL_TYPE: //37
478 LOGI("EV: %s => EV_ABS ABS_MT_TOOL_TYPE %d\n", e->deviceName, ev->value);
479 return 1;
480 break;
481
482 case ABS_MT_BLOB_ID: //38
Dees_Troy2673cec2013-04-02 20:22:16 +0000483 printf("EV: %s => EV_ABS ABS_MT_BLOB_ID %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400484 return 1;
485 break;
486
Dees_Troy51a0e822012-09-05 15:24:24 -0400487 case ABS_MT_DISTANCE: //3b
Dees_Troy2673cec2013-04-02 20:22:16 +0000488 printf("EV: %s => EV_ABS ABS_MT_DISTANCE %d\n", e->deviceName, ev->value);
Dees_Troy51a0e822012-09-05 15:24:24 -0400489 return 1;
490 break;
491#endif
492
493 default:
494 // This is an unhandled message, just skip it
495 return 1;
496 }
497
498 if (ev->code != ABS_MT_POSITION)
499 {
500 lastWasSynReport = 0;
501 return 1;
502 }
503 }
504
505 // Check if we should ignore the message
506 if (ev->code != ABS_MT_POSITION && (ev->type != EV_SYN || (ev->code != SYN_REPORT && ev->code != SYN_MT_REPORT)))
507 {
508 lastWasSynReport = 0;
509 return 0;
510 }
511
512#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000513 if (ev->type == EV_SYN && ev->code == SYN_REPORT) printf("EV: %s => EV_SYN SYN_REPORT\n", e->deviceName);
514 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 -0400515#endif
516
517 // Discard the MT versions
518 if (ev->code == SYN_MT_REPORT) return 0;
519
Dees_Troyd86400b2013-05-13 19:04:35 +0000520 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 -0400521 {
522 // Reset the value
523 touchReleaseOnNextSynReport = 0;
524
525 // We are a finger-up state
526 if (!discard)
527 {
528 // Report the key up
529 ev->type = EV_ABS;
530 ev->code = 0;
531 ev->value = (downX << 16) | downY;
532 }
533 downX = -1;
534 downY = -1;
535 if (discard)
536 {
537 discard = 0;
538 return 1;
539 }
540 return 0;
541 }
542 lastWasSynReport = 1;
543
544 // Retrieve where the x,y position is
545 if (e->p.synced & 0x03)
546 {
Dees_Troy70e11292013-08-07 15:52:20 +0000547 vk_tp_to_screen(&e->p, &x, &y, screen_width, screen_height);
Dees_Troy51a0e822012-09-05 15:24:24 -0400548 }
549 else if (e->mt_p.synced & 0x03)
550 {
Dees_Troy70e11292013-08-07 15:52:20 +0000551 vk_tp_to_screen(&e->mt_p, &x, &y, screen_width, screen_height);
Dees_Troy51a0e822012-09-05 15:24:24 -0400552 }
553 else
554 {
555 // We don't have useful information to convey
556 return 1;
557 }
558
559#ifdef RECOVERY_TOUCHSCREEN_SWAP_XY
560 x ^= y;
561 y ^= x;
562 x ^= y;
563#endif
564#ifdef RECOVERY_TOUCHSCREEN_FLIP_X
Dees_Troy70e11292013-08-07 15:52:20 +0000565 x = *screen_width - x;
Dees_Troy51a0e822012-09-05 15:24:24 -0400566#endif
567#ifdef RECOVERY_TOUCHSCREEN_FLIP_Y
Dees_Troy70e11292013-08-07 15:52:20 +0000568 y = *screen_height - y;
Dees_Troy51a0e822012-09-05 15:24:24 -0400569#endif
570
571#ifdef _EVENT_LOGGING
Dees_Troy2673cec2013-04-02 20:22:16 +0000572 printf("EV: x: %d y: %d\n", x, y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400573#endif
574
575 // Clear the current sync states
576 e->p.synced = e->mt_p.synced = 0;
577
578 // If we have nothing useful to report, skip it
579 if (x == -1 || y == -1) return 1;
580
581 // On first touch, see if we're at a virtual key
582 if (downX == -1)
583 {
584 // Attempt mapping to virtual key
585 for (i = 0; i < e->vk_count; ++i)
586 {
587 int xd = ABS(e->vks[i].centerx - x);
588 int yd = ABS(e->vks[i].centery - y);
589
590 if (xd < e->vks[i].width/2 && yd < e->vks[i].height/2)
591 {
592 ev->type = EV_KEY;
593 ev->code = e->vks[i].scancode;
594 ev->value = 1;
595
596 vibrate(VIBRATOR_TIME_MS);
597
598 // Mark that all further movement until lift is discard,
599 // and make sure we don't come back into this area
600 discard = 1;
601 downX = 0;
602 return 0;
603 }
604 }
605 }
606
607 // If we were originally a button press, discard this event
608 if (discard)
609 {
610 return 1;
611 }
612
613 // Record where we started the touch for deciding if this is a key or a scroll
614 downX = x;
615 downY = y;
616
617 ev->type = EV_ABS;
618 ev->code = 1;
619 ev->value = (x << 16) | y;
620 return 0;
621}
622
Dees_Troy70e11292013-08-07 15:52:20 +0000623int ev_get(struct input_event *ev, unsigned dont_wait, int *screen_width, int *screen_height)
Dees_Troy51a0e822012-09-05 15:24:24 -0400624{
625 int r;
626 unsigned n;
627
628 do {
629 r = poll(ev_fds, ev_count, dont_wait ? 0 : -1);
630
631 if(r > 0) {
632 for(n = 0; n < ev_count; n++) {
633 if(ev_fds[n].revents & POLLIN) {
634 r = read(ev_fds[n].fd, ev, sizeof(*ev));
635 if(r == sizeof(*ev)) {
Dees_Troy70e11292013-08-07 15:52:20 +0000636 if (!vk_modify(&evs[n], ev, screen_width, screen_height))
Dees_Troy51a0e822012-09-05 15:24:24 -0400637 return 0;
638 }
639 }
640 }
641 }
642 } while(dont_wait == 0);
643
644 return -1;
645}
646
647int ev_wait(int timeout)
648{
649 return -1;
650}
651
652void ev_dispatch(void)
653{
654 return;
655}
656
657int ev_get_input(int fd, short revents, struct input_event *ev)
658{
659 return -1;
660}