Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1 | /* |
| 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 23 | #include <linux/input.h> |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 24 | #include <sys/types.h> |
| 25 | #include <sys/stat.h> |
| 26 | #include <unistd.h> |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 27 | #include <stdio.h> |
| 28 | #include <string.h> |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 29 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 30 | |
| 31 | #include "../common.h" |
| 32 | |
| 33 | #include "minui.h" |
| 34 | |
| 35 | //#define _EVENT_LOGGING |
| 36 | |
Dees_Troy | 3f23d9e | 2013-05-03 21:04:05 +0000 | [diff] [blame] | 37 | #define MAX_DEVICES 32 |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 38 | |
| 39 | #define VIBRATOR_TIMEOUT_FILE "/sys/class/timed_output/vibrator/enable" |
| 40 | #define VIBRATOR_TIME_MS 50 |
| 41 | |
Dees_Troy | f759675 | 2012-09-28 13:21:36 -0400 | [diff] [blame] | 42 | #ifndef SYN_REPORT |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 43 | #define SYN_REPORT 0x00 |
Dees_Troy | f759675 | 2012-09-28 13:21:36 -0400 | [diff] [blame] | 44 | #endif |
| 45 | #ifndef SYN_CONFIG |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 46 | #define SYN_CONFIG 0x01 |
Dees_Troy | f759675 | 2012-09-28 13:21:36 -0400 | [diff] [blame] | 47 | #endif |
| 48 | #ifndef SYN_MT_REPORT |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 49 | #define SYN_MT_REPORT 0x02 |
Dees_Troy | f759675 | 2012-09-28 13:21:36 -0400 | [diff] [blame] | 50 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 51 | |
| 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 | |
| 68 | enum { |
| 69 | DOWN_NOT, |
| 70 | DOWN_SENT, |
| 71 | DOWN_RELEASED, |
| 72 | }; |
| 73 | |
| 74 | struct virtualkey { |
| 75 | int scancode; |
| 76 | int centerx, centery; |
| 77 | int width, height; |
| 78 | }; |
| 79 | |
| 80 | struct position { |
| 81 | int x, y; |
| 82 | int synced; |
| 83 | struct input_absinfo xi, yi; |
| 84 | }; |
| 85 | |
| 86 | struct 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 | |
| 100 | static struct pollfd ev_fds[MAX_DEVICES]; |
| 101 | static struct ev evs[MAX_DEVICES]; |
| 102 | static unsigned ev_count = 0; |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 103 | static struct timeval lastInputStat; |
| 104 | static unsigned long lastInputMTime; |
| 105 | static int has_mouse = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 106 | |
| 107 | static inline int ABS(int x) { |
| 108 | return x<0?-x:x; |
| 109 | } |
| 110 | |
| 111 | int vibrate(int timeout_ms) |
| 112 | { |
| 113 | char str[20]; |
| 114 | int fd; |
| 115 | int ret; |
| 116 | |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 117 | if (timeout_ms > 10000) timeout_ms = 1000; |
| 118 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 119 | 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 */ |
| 134 | static 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 | |
| 151 | static 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 165 | printf("Unable to query event object.\n"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 166 | return -1; |
| 167 | } |
| 168 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 169 | printf("Event object: %s\n", e->deviceName); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 170 | #endif |
| 171 | |
Flemmard | f467461 | 2014-01-10 09:14:44 +0100 | [diff] [blame] | 172 | #ifdef WHITELIST_INPUT |
| 173 | if (strcmp(e->deviceName, EXPAND(WHITELIST_INPUT)) != 0) |
| 174 | { |
| 175 | e->ignored = 1; |
| 176 | } |
| 177 | #else |
Ethan Yonker | 5742a40 | 2014-08-12 14:52:49 -0500 | [diff] [blame] | 178 | #ifndef TW_INPUT_BLACKLIST |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 179 | // Blacklist these "input" devices |
Ethan Yonker | 3c4ac3b | 2014-08-14 11:15:32 -0500 | [diff] [blame] | 180 | if (strcmp(e->deviceName, "bma250") == 0 || strcmp(e->deviceName, "bma150") == 0) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 181 | { |
Ethan Yonker | 5742a40 | 2014-08-12 14:52:49 -0500 | [diff] [blame] | 182 | printf("blacklisting %s input device\n", e->deviceName); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 183 | e->ignored = 1; |
| 184 | } |
Ethan Yonker | 5742a40 | 2014-08-12 14:52:49 -0500 | [diff] [blame] | 185 | #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 |
Flemmard | f467461 | 2014-01-10 09:14:44 +0100 | [diff] [blame] | 198 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 199 | |
| 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 Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 211 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 212 | vks[len] = '\0'; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 213 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 214 | /* 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 223 | printf("minui: %s is %d %% 6\n", vk_path, e->vk_count % 6); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 224 | } |
| 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 236 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 237 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 243 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 244 | #endif |
| 245 | |
| 246 | e->vks = malloc(sizeof(*e->vks) * e->vk_count); |
| 247 | |
| 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 258 | printf("minui: %s: ignoring unknown virtual key type %s\n", vk_path, token[0]); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 259 | 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 Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 272 | #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 Bocek | 971d318 | 2014-02-20 21:43:28 +0100 | [diff] [blame] | 277 | |
| 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 Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 280 | static 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 Bocek | 971d318 | 2014-02-20 21:43:28 +0100 | [diff] [blame] | 289 | if(!test_bit(EV_REL, bit[0]) || !test_bit(EV_KEY, bit[0])) |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 290 | return; |
| 291 | |
| 292 | ioctl(fd, EVIOCGBIT(EV_REL, KEY_MAX), bit[EV_REL]); |
Vojtech Bocek | 971d318 | 2014-02-20 21:43:28 +0100 | [diff] [blame] | 293 | 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 Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | int ev_has_mouse(void) |
| 304 | { |
| 305 | return has_mouse; |
| 306 | } |
| 307 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 308 | int ev_init(void) |
| 309 | { |
| 310 | DIR *dir; |
| 311 | struct dirent *de; |
| 312 | int fd; |
| 313 | |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 314 | has_mouse = 0; |
| 315 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 316 | 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 Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 331 | check_mouse(fd); |
| 332 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 333 | ev_count++; |
| 334 | if(ev_count == MAX_DEVICES) break; |
| 335 | } |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 336 | closedir(dir); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 337 | } |
| 338 | |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 339 | struct stat st; |
| 340 | if(stat("/dev/input", &st) >= 0) |
| 341 | lastInputMTime = st.st_mtime; |
| 342 | gettimeofday(&lastInputStat, NULL); |
| 343 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | void ev_exit(void) |
| 348 | { |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 349 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 355 | } |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 356 | ev_count = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | static 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_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 370 | static int vk_tp_to_screen(struct position *p, int *x, int *y) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 371 | { |
| 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_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 380 | #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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 384 | #ifndef RECOVERY_TOUCHSCREEN_SWAP_XY |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 385 | int fb_width = gr_fb_width(); |
| 386 | int fb_height = gr_fb_height(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 387 | #else |
| 388 | // We need to swap the scaling sizes, too |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 389 | int fb_width = gr_fb_height(); |
| 390 | int fb_height = gr_fb_width(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 391 | #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_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 407 | static int vk_modify(struct ev *e, struct input_event *ev) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 408 | { |
| 409 | static int downX = -1, downY = -1; |
| 410 | static int discard = 0; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 411 | static int last_virt_key = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 412 | static int lastWasSynReport = 0; |
| 413 | static int touchReleaseOnNextSynReport = 0; |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 414 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 415 | 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 425 | printf("EV: Device disabled due to non-touchscreen messages.\n"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 426 | #endif |
| 427 | e->ignored = 1; |
| 428 | return 1; |
| 429 | } |
| 430 | |
| 431 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 432 | printf("EV: %s => type: %x code: %x value: %d\n", e->deviceName, ev->type, ev->code, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 433 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 447 | printf("EV: %s => EV_ABS ABS_X %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 448 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 455 | printf("EV: %s => EV_ABS ABS_Y %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 456 | #endif |
| 457 | break; |
| 458 | |
| 459 | case ABS_MT_POSITION: //2a |
| 460 | e->mt_p.synced = 0x03; |
| 461 | if (ev->value == (1 << 31)) |
| 462 | { |
Ethan Yonker | 32f68a3 | 2014-12-29 08:13:23 -0600 | [diff] [blame] | 463 | #ifndef TW_IGNORE_MT_POSITION_0 |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 464 | e->mt_p.x = 0; |
| 465 | e->mt_p.y = 0; |
| 466 | lastWasSynReport = 1; |
Ethan Yonker | 32f68a3 | 2014-12-29 08:13:23 -0600 | [diff] [blame] | 467 | #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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 475 | } |
| 476 | else |
| 477 | { |
| 478 | lastWasSynReport = 0; |
| 479 | e->mt_p.x = (ev->value & 0x7FFF0000) >> 16; |
| 480 | e->mt_p.y = (ev->value & 0xFFFF); |
Ethan Yonker | 32f68a3 | 2014-12-29 08:13:23 -0600 | [diff] [blame] | 481 | #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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 484 | } |
| 485 | break; |
| 486 | |
| 487 | case ABS_MT_TOUCH_MAJOR: //30 |
| 488 | if (ev->value == 0) |
| 489 | { |
Ibrahim Awwal | 2e9cb01 | 2014-01-04 12:38:26 -0800 | [diff] [blame] | 490 | #ifndef TW_IGNORE_MAJOR_AXIS_0 |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 491 | // 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 Awwal | 2e9cb01 | 2014-01-04 12:38:26 -0800 | [diff] [blame] | 495 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 496 | } |
| 497 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 498 | printf("EV: %s => EV_ABS ABS_MT_TOUCH_MAJOR %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 499 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 511 | printf("EV: %s => EV_ABS ABS_MT_PRESSURE %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 512 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 519 | printf("EV: %s => EV_ABS ABS_MT_POSITION_X %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 520 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 527 | printf("EV: %s => EV_ABS ABS_MT_POSITION_Y %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 528 | #endif |
| 529 | break; |
| 530 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 531 | case ABS_MT_TOUCH_MINOR: //31 |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 532 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 533 | printf("EV: %s => EV_ABS ABS_MT_TOUCH_MINOR %d\n", e->deviceName, ev->value); |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 534 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 535 | break; |
| 536 | |
| 537 | case ABS_MT_WIDTH_MAJOR: //32 |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 538 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 539 | printf("EV: %s => EV_ABS ABS_MT_WIDTH_MAJOR %d\n", e->deviceName, ev->value); |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 540 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 541 | break; |
| 542 | |
| 543 | case ABS_MT_WIDTH_MINOR: //33 |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 544 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 545 | printf("EV: %s => EV_ABS ABS_MT_WIDTH_MINOR %d\n", e->deviceName, ev->value); |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 546 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 547 | break; |
| 548 | |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 549 | case ABS_MT_TRACKING_ID: //39 |
Ethan Yonker | d6821a1 | 2015-08-26 15:29:23 -0500 | [diff] [blame] | 550 | #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_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 556 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 573 | case ABS_MT_ORIENTATION: //34 |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 574 | printf("EV: %s => EV_ABS ABS_MT_ORIENTATION %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 575 | 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 584 | printf("EV: %s => EV_ABS ABS_MT_BLOB_ID %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 585 | return 1; |
| 586 | break; |
| 587 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 588 | case ABS_MT_DISTANCE: //3b |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 589 | printf("EV: %s => EV_ABS ABS_MT_DISTANCE %d\n", e->deviceName, ev->value); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 590 | return 1; |
| 591 | break; |
Ethan Yonker | d6821a1 | 2015-08-26 15:29:23 -0500 | [diff] [blame] | 592 | case ABS_MT_SLOT: |
| 593 | printf("EV: %s => ABS_MT_SLOT %d\n", e->deviceName, ev->value); |
| 594 | return 1; |
| 595 | break; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 596 | #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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 618 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 620 | #endif |
| 621 | |
| 622 | // Discard the MT versions |
| 623 | if (ev->code == SYN_MT_REPORT) return 0; |
| 624 | |
Dees_Troy | d86400b | 2013-05-13 19:04:35 +0000 | [diff] [blame] | 625 | if (((lastWasSynReport == 1 || touchReleaseOnNextSynReport == 1) && !use_tracking_id_negative_as_touch_release) || (use_tracking_id_negative_as_touch_release && touchReleaseOnNextSynReport == 2)) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 626 | { |
| 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 Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 643 | |
| 644 | // Send the keyUp event |
| 645 | ev->type = EV_KEY; |
| 646 | ev->code = last_virt_key; |
| 647 | ev->value = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 648 | } |
| 649 | return 0; |
| 650 | } |
| 651 | lastWasSynReport = 1; |
| 652 | |
| 653 | // Retrieve where the x,y position is |
| 654 | if (e->p.synced & 0x03) |
| 655 | { |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 656 | vk_tp_to_screen(&e->p, &x, &y); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 657 | } |
| 658 | else if (e->mt_p.synced & 0x03) |
| 659 | { |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 660 | vk_tp_to_screen(&e->mt_p, &x, &y); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 661 | } |
| 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_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 674 | x = gr_fb_width() - x; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 675 | #endif |
| 676 | #ifdef RECOVERY_TOUCHSCREEN_FLIP_Y |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 677 | y = gr_fb_height() - y; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 678 | #endif |
| 679 | |
| 680 | #ifdef _EVENT_LOGGING |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 681 | printf("EV: x: %d y: %d\n", x, y); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 682 | #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 Yonker | 96bc6dd | 2015-03-18 11:44:34 -0500 | [diff] [blame] | 690 | // 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 696 | // 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 Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 711 | last_virt_key = e->vks[i].scancode; |
| 712 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 713 | vibrate(VIBRATOR_TIME_MS); |
| 714 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 715 | // Mark that all further movement until lift is discard, |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 716 | // 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 | |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 740 | int ev_get(struct input_event *ev, int timeout_ms) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 741 | { |
| 742 | int r; |
| 743 | unsigned n; |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 744 | struct timeval curr; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 745 | |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 746 | 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 Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 752 | { |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 753 | printf("Reloading input devices\n"); |
| 754 | ev_exit(); |
| 755 | ev_init(); |
| 756 | lastInputMTime = st.st_mtime; |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 757 | } |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 758 | lastInputStat = curr; |
| 759 | } |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 760 | |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 761 | r = poll(ev_fds, ev_count, timeout_ms); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 762 | |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 763 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 770 | } |
| 771 | } |
| 772 | } |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 773 | return -1; |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 774 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 775 | |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 776 | return -2; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | int ev_wait(int timeout) |
| 780 | { |
| 781 | return -1; |
| 782 | } |
| 783 | |
| 784 | void ev_dispatch(void) |
| 785 | { |
| 786 | return; |
| 787 | } |
| 788 | |
| 789 | int ev_get_input(int fd, short revents, struct input_event *ev) |
| 790 | { |
| 791 | return -1; |
| 792 | } |