-
Notifications
You must be signed in to change notification settings - Fork 0
/
multitouch.c
554 lines (450 loc) · 15.5 KB
/
multitouch.c
1
2
3
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
/**
* @file multitouch.c
*
* Mode Control Entity - Tracking for evdev based multitouch devices
*
* <p>
*
* Copyright (C) 2015 Jolla Ltd.
*
* <p>
*
* @author Simo Piiroinen <[email protected]>
*
* mce is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* mce is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with mce. If not, see <http://www.gnu.org/licenses/>.
*/
#include "multitouch.h"
#include <stdlib.h>
#include <string.h>
/* ========================================================================= *
* TYPES & FUNCTIONS
* ========================================================================= */
/* ------------------------------------------------------------------------- *
* TOUCH_POINT
* ------------------------------------------------------------------------- */
/** Value to use for invalid touch point id */
#define MT_POINT_ID_INVAL -1
/** Value to use for touch point id when protocol does not provide ids */
#define MT_POINT_ID_DUMMY 0
/** Value to use for invalid touch point x & y coordinates */
#define MT_POINT_XY_INVAL -1
typedef struct mt_point_t mt_point_t;
/** Data for one touch point */
struct mt_point_t
{
/** Touch point id from ABS_MT_TRACKING_ID event */
int mtp_id;
/** Touch point x-coordinate from ABS_MT_POSITION_X event */
int mtp_x;
/** Touch point y-coordinate from ABS_MT_POSITION_Y event */
int mtp_y;
};
static void mt_point_invalidate (mt_point_t *self);
static int mt_point_distance2 (const mt_point_t *a, const mt_point_t *b);
/* ------------------------------------------------------------------------- *
* TOUCH_VECTOR
* ------------------------------------------------------------------------- */
typedef struct mt_touch_t mt_touch_t;
/** Tracking data for start and end position of one touch sequence */
struct mt_touch_t
{
/* Coordinate where first finger was detected on screen */
mt_point_t mtt_beg_point;
/* Coordinate where last finger was lifted from screen */
mt_point_t mtt_end_point;
/* Timestamp for: Touch started */
int64_t mtt_beg_tick;
/* Timestamp for: Touch ended */
int64_t mtt_end_tick;
/* Maximum number of fingers seen during the touch */
size_t mtt_max_fingers;
};
/** Maximum jitter allowed in double tap (pixel) coordinates */
#define MT_TOUCH_DBLTAP_DIST_MAX 100
/** Maximum delay between double tap presses and releases [ms] */
#define MT_TOUCH_DBLTAP_DELAY_MAX 500
/** Minimum delay between double tap presses and releases [ms] */
#define MT_TOUCH_DBLTAP_DELAY_MIN 1
static bool mt_touch_is_single_tap(const mt_touch_t *self);
static bool mt_touch_is_double_tap(const mt_touch_t *self, const mt_touch_t *prev);
/* ------------------------------------------------------------------------- *
* TOUCH_STATE
* ------------------------------------------------------------------------- */
/** Maximum number of simultaneous touch points to support */
#define MT_STATE_POINTS_MAX 16
typedef struct mt_state_t mt_state_t;
/** Tracking data for one multitouch/mouse input device */
struct mt_state_t
{
/** Touch point constructed from MT protocol A events */
mt_point_t mts_accum;
/** Touch point constructed from mouse events (in SDK emulator) */
mt_point_t mts_mouse;
/** Array of touch points */
mt_point_t mts_point_array[MT_STATE_POINTS_MAX];
/** Index to currently constructed touch point
*
* MT protocol B uses explicit ABS_MT_SLOT events while
* on protocol A increment on SYN_MT_REPORT / reset on
* SYN_REPORT event is used. */
size_t mts_point_slot;
/** Number of currently active touch points */
size_t mts_point_count;
/** Currently tracked primary touch point */
mt_point_t mts_point_tracked;
/** Stats for the last 3 taps, used for double tap detection */
mt_touch_t mts_tap_arr[3];
/** Device type / protocol specific input event handler function */
void (*mts_event_handler_cb)(mt_state_t *, const struct input_event *);
/** Timestamp from latest evdev input event */
struct timeval mts_event_time;
};
static void mt_state_reset (mt_state_t *self);
static bool mt_state_update (mt_state_t *self);
static void mt_state_handle_event_a (mt_state_t *self, const struct input_event *ev);
static void mt_state_handle_event_b (mt_state_t *self, const struct input_event *ev);
mt_state_t *mt_state_create (bool protocol_b);
void mt_state_delete (mt_state_t *self);
bool mt_state_handle_event (mt_state_t *self, const struct input_event *ev);
bool mt_state_touching (const mt_state_t *self);
/* ========================================================================= *
* TOUCH_POINT
* ========================================================================= */
/** Reset multi touch point to invalid state
*
* @param self Multi touch point object
*/
static void
mt_point_invalidate(mt_point_t *self)
{
self->mtp_id = MT_POINT_ID_INVAL;
self->mtp_x = MT_POINT_XY_INVAL;
self->mtp_y = MT_POINT_XY_INVAL;
}
/** Squared distance between two multi touch point objects
*
* @param a 1st multi touch point object
* @param b 2nd multi touch point object
*
* @return Distance between the two points, squared.
*/
static int mt_point_distance2(const mt_point_t *a, const mt_point_t *b)
{
int x = b->mtp_x - a->mtp_x;
int y = b->mtp_y - a->mtp_y;
return x*x + y*y;
}
/* ========================================================================= *
* TOUCH_VECTOR
* ========================================================================= */
/** Predicate for: Touch vector represents a single tap
*
* @param self Touch vector object
*
* @return true if touch vector is tap, false otherwise
*/
static bool mt_touch_is_single_tap(const mt_touch_t *self)
{
bool is_single_tap = false;
if( !self )
goto EXIT;
/* A tap is done using one finger */
if( self->mtt_max_fingers != 1 )
goto EXIT;
/* Touch release must happen close to the point of initial contact */
int d2 = mt_point_distance2(&self->mtt_beg_point, &self->mtt_end_point);
if( d2 > MT_TOUCH_DBLTAP_DIST_MAX * MT_TOUCH_DBLTAP_DIST_MAX )
goto EXIT;
/* The touch duration must not be too short or too long */
int64_t t = self->mtt_end_tick - self->mtt_beg_tick;
if( t < MT_TOUCH_DBLTAP_DELAY_MIN || t > MT_TOUCH_DBLTAP_DELAY_MAX )
goto EXIT;
is_single_tap = true;
EXIT:
return is_single_tap;
}
/** Predicate for: Two touch vectors represent a double tap
*
* @param self Current touch vector object
* @param prev Previous touch vector object
*
* @return true if touch vector is double tap, false otherwise
*/
static bool mt_touch_is_double_tap(const mt_touch_t *self, const mt_touch_t *prev)
{
bool is_double_tap = false;
/* Both touch vectors must classify as single taps */
if( !mt_touch_is_single_tap(self) || !mt_touch_is_single_tap(prev) )
goto EXIT;
/* The second tap must start near to the end point of the 1st one */
int d2 = mt_point_distance2(&self->mtt_beg_point, &prev->mtt_end_point);
if( d2 > MT_TOUCH_DBLTAP_DIST_MAX * MT_TOUCH_DBLTAP_DIST_MAX )
goto EXIT;
/* The delay between the taps must be sufficiently small too */
int64_t t = self->mtt_beg_tick - prev->mtt_end_tick;
if( t < MT_TOUCH_DBLTAP_DELAY_MIN || t > MT_TOUCH_DBLTAP_DELAY_MAX )
goto EXIT;
is_double_tap = true;
EXIT:
return is_double_tap;
}
/* ========================================================================= *
* TOUCH_STATE
* ========================================================================= */
/** Reset all tracked multitouch points back to invalid state
*
* @param self Multitouch state object
*/
static void
mt_state_reset(mt_state_t *self)
{
mt_point_invalidate(&self->mts_accum);
for( size_t i = 0; i < MT_STATE_POINTS_MAX; ++i )
mt_point_invalidate(self->mts_point_array + i);
self->mts_point_slot = 0;
}
/** Update touch position tracking state
*
* @param self Multitouch state object
*
* @return true if a double tap was just detected, false otherwise
*/
static bool
mt_state_update(mt_state_t *self)
{
bool dbltap_seen = false;
size_t finger_count = 0;
/* Count fingers on screen and update position of one finger touch */
for( size_t i = 0; i < MT_STATE_POINTS_MAX; ++i ) {
if( self->mts_point_array[i].mtp_id == MT_POINT_ID_INVAL )
continue;
if( ++finger_count == 1 )
self->mts_point_tracked = self->mts_point_array[i];
}
/* Treat mouse device in SDK simulation as one finger */
if( self->mts_mouse.mtp_id != MT_POINT_ID_INVAL ) {
if( ++finger_count == 1 )
self->mts_point_tracked = self->mts_mouse;
}
/* Skip the rest if the number of fingers on screen does not change */
if( self->mts_point_count == finger_count )
goto EXIT;
/* Convert timestamp from input event to 1ms accurate tick counter */
int64_t tick = self->mts_event_time.tv_sec * 1000LL + self->mts_event_time.tv_usec / 1000;
/* When initial touch is detected, update the history buffer to reflect
* the current state of affairs */
if( self->mts_point_count == 0 ) {
memmove(self->mts_tap_arr+1, self->mts_tap_arr+0,
sizeof self->mts_tap_arr - sizeof *self->mts_tap_arr);
self->mts_tap_arr[0].mtt_max_fingers = finger_count;
self->mts_tap_arr[0].mtt_beg_point = self->mts_point_tracked;
self->mts_tap_arr[0].mtt_beg_tick = tick;
}
/* Maintain maximum number of fingers seen on screen */
if( self->mts_tap_arr[0].mtt_max_fingers < finger_count )
self->mts_tap_arr[0].mtt_max_fingers = finger_count;
/* Update touch end position and time */
self->mts_tap_arr[0].mtt_end_point = self->mts_point_tracked;
self->mts_tap_arr[0].mtt_end_tick = tick;
/* When final finger is lifted, check if the history buffer content
* looks like a double tap */
if( finger_count == 0 ) {
if( mt_touch_is_double_tap(self->mts_tap_arr+0, self->mts_tap_arr+1) ) {
if( ! mt_touch_is_double_tap(self->mts_tap_arr+1, self->mts_tap_arr+2) )
dbltap_seen = true;
}
}
self->mts_point_count = finger_count;
EXIT:
return dbltap_seen;
}
/** Handle multitouch protocol A event stream
*
* Also used for handling event streams from mouse devices
*
* @param self Multitouch state object
* @param ev Input event
*/
static void
mt_state_handle_event_a(mt_state_t *self, const struct input_event *ev)
{
switch( ev->type ) {
case EV_KEY:
switch( ev->code ) {
case BTN_TOUCH:
if( ev->value == 0 )
mt_state_reset(self);
break;
case BTN_MOUSE:
if( ev->value > 0 )
self->mts_mouse.mtp_id = MT_POINT_ID_DUMMY;
else
self->mts_mouse.mtp_id = MT_POINT_ID_INVAL;
break;
default:
break;
}
break;
case EV_REL:
switch( ev->code ) {
case REL_X:
self->mts_mouse.mtp_x += ev->value;
break;
case REL_Y:
self->mts_mouse.mtp_y += ev->value;
break;
default:
break;
}
break;
case EV_ABS:
switch( ev->code ) {
case ABS_X:
self->mts_mouse.mtp_x = ev->value;
break;
case ABS_Y:
self->mts_mouse.mtp_y = ev->value;
break;
case ABS_MT_POSITION_X:
self->mts_accum.mtp_x = ev->value;
break;
case ABS_MT_POSITION_Y:
self->mts_accum.mtp_y = ev->value;
break;
case ABS_MT_TRACKING_ID:
self->mts_accum.mtp_id = ev->value;
break;
default:
break;
}
break;
case EV_SYN:
switch( ev->code ) {
case SYN_MT_REPORT:
if( self->mts_point_slot < MT_STATE_POINTS_MAX &&
self->mts_accum.mtp_x != MT_POINT_XY_INVAL &&
self->mts_accum.mtp_y != MT_POINT_XY_INVAL ) {
if( self->mts_accum.mtp_id == MT_POINT_ID_INVAL )
self->mts_accum.mtp_id = MT_POINT_ID_DUMMY;
self->mts_point_array[self->mts_point_slot++] = self->mts_accum;
}
mt_point_invalidate(&self->mts_accum);
break;
case SYN_REPORT:
for( size_t i = self->mts_point_slot; i < MT_STATE_POINTS_MAX; ++i )
mt_point_invalidate(self->mts_point_array + i);
self->mts_point_slot = 0;
break;
default:
break;
}
break;
default:
break;
}
}
/** Handle multitouch protocol B event stream
*
* @param self Multitouch state object
* @param ev Input event
*/
static void
mt_state_handle_event_b(mt_state_t *self, const struct input_event *ev)
{
switch( ev->type ) {
case EV_ABS:
switch( ev->code ) {
case ABS_MT_SLOT:
self->mts_point_slot = ev->value;
if( self->mts_point_slot >= MT_STATE_POINTS_MAX )
self->mts_point_slot = MT_STATE_POINTS_MAX - 1;
break;
case ABS_MT_TRACKING_ID:
self->mts_point_array[self->mts_point_slot].mtp_id = ev->value;
break;
case ABS_MT_POSITION_X:
self->mts_point_array[self->mts_point_slot].mtp_x = ev->value;
break;
case ABS_MT_POSITION_Y:
self->mts_point_array[self->mts_point_slot].mtp_y = ev->value;
break;
default:
break;
}
break;
default:
break;
}
}
/** Handle input event
*
* @param self Multitouch state object
* @param ev Input event
*/
bool
mt_state_handle_event(mt_state_t *self, const struct input_event *ev)
{
bool dbltap = false;
self->mts_event_time = ev->time;
self->mts_event_handler_cb(self, ev);
if( ev->type == EV_SYN && ev->code == SYN_REPORT )
dbltap = mt_state_update(self);
return dbltap;
}
/** Check if there is at least one finger on screen at the momement
*
* @param self Multitouch state object
*
* @return true if fingers are on screen, false otherwise
*/
bool
mt_state_touching (const mt_state_t *self)
{
return self && self->mts_point_count > 0;
}
/** Release multitouch state object
*
* @param self Multitouch state object, or NULL
*/
void
mt_state_delete(mt_state_t *self)
{
if( !self )
goto EXIT;
free(self);
EXIT:
return;
}
/** Allocate multitouch state object
*
* @param protocol_b true if used for tracking multitouch protocol B device
*
* @return multitouch state object
*/
mt_state_t *
mt_state_create(bool protocol_b)
{
mt_state_t *self = calloc(1, sizeof *self);
if( !self )
goto EXIT;
self->mts_point_count = 0;
mt_state_reset(self);
mt_point_invalidate(&self->mts_mouse);
mt_point_invalidate(&self->mts_point_tracked);
if( protocol_b )
self->mts_event_handler_cb = mt_state_handle_event_b;
else
self->mts_event_handler_cb = mt_state_handle_event_a;
EXIT:
return self;
}