summaryrefslogtreecommitdiff
path: root/src/evdev-mt-touchpad-gestures.c
blob: caeb2ddd961160a8519c73868c7f6a8c79a5419c (plain)
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
/*
 * Copyright © 2015 Red Hat, Inc.
 *
 * Permission to use, copy, modify, distribute, and sell this software and
 * its documentation for any purpose is hereby granted without fee, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of the copyright holders not be used in
 * advertising or publicity pertaining to distribution of the software
 * without specific, written prior permission.  The copyright holders make
 * no representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include "config.h"

#include <math.h>
#include <stdbool.h>
#include <limits.h>

#include "evdev-mt-touchpad.h"

#define DEFAULT_GESTURE_SWITCH_TIMEOUT 100 /* ms */
#define DEFAULT_GESTURE_2FG_SCROLL_TIMEOUT 1000 /* ms */

static struct normalized_coords
tp_get_touches_delta(struct tp_dispatch *tp, bool average)
{
	struct tp_touch *t;
	unsigned int i, nchanged = 0;
	struct normalized_coords normalized;
	struct normalized_coords delta = {0.0, 0.0};

	for (i = 0; i < tp->real_touches; i++) {
		t = &tp->touches[i];

		if (tp_touch_active(tp, t) && t->dirty) {
			nchanged++;
			normalized = tp_get_delta(t);

			delta.x += normalized.x;
			delta.y += normalized.y;
		}
	}

	if (!average || nchanged == 0)
		return delta;

	delta.x /= nchanged;
	delta.y /= nchanged;

	return delta;
}

static inline struct normalized_coords
tp_get_combined_touches_delta(struct tp_dispatch *tp)
{
	return tp_get_touches_delta(tp, false);
}

static inline struct normalized_coords
tp_get_average_touches_delta(struct tp_dispatch *tp)
{
	return tp_get_touches_delta(tp, true);
}

static void
tp_gesture_start(struct tp_dispatch *tp, uint64_t time)
{
	struct libinput *libinput = tp->device->base.seat->libinput;

	if (tp->gesture.started)
		return;

	switch (tp->gesture.finger_count) {
	case 2:
		switch (tp->gesture.twofinger_state) {
		case GESTURE_2FG_STATE_NONE:
		case GESTURE_2FG_STATE_UNKNOWN:
			log_bug_libinput(libinput,
				 "%s in unknown gesture mode\n", __func__);
			break;
		case GESTURE_2FG_STATE_SCROLL:
			/* NOP */
			break;
		case GESTURE_2FG_STATE_PINCH:
			gesture_notify_pinch(&tp->device->base, time,
					    LIBINPUT_EVENT_GESTURE_PINCH_START,
					    0, 0, 0, 0, 0, 0);
			break;
		}
		break;
	case 3:
	case 4:
		gesture_notify_swipe(&tp->device->base, time,
				     LIBINPUT_EVENT_GESTURE_SWIPE_START,
				     tp->gesture.finger_count,
				     0, 0, 0, 0);
		break;
	}
	tp->gesture.started = true;
}

static void
tp_gesture_post_pointer_motion(struct tp_dispatch *tp, uint64_t time)
{
	struct normalized_coords delta, unaccel;

	/* When a clickpad is clicked, combine motion of all active touches */
	if (tp->buttons.is_clickpad && tp->buttons.state)
		delta = tp_get_combined_touches_delta(tp);
	else
		delta = tp_get_average_touches_delta(tp);

	tp_filter_motion(tp, &delta.x, &delta.y, &unaccel.x, &unaccel.y, time);

	if (delta.x != 0.0 || delta.y != 0.0 ||
	    unaccel.x != 0.0 || unaccel.y != 0.0) {
		pointer_notify_motion(&tp->device->base, time,
				      &delta, &unaccel);
	}
}

static unsigned int
tp_gesture_get_active_touches(struct tp_dispatch *tp,
			      struct tp_touch **touches,
			      unsigned int count)
{
	unsigned int i, n = 0;
	struct tp_touch *t;

	memset(touches, 0, count * sizeof(struct tp_touch *));

	for (i = 0; i < tp->real_touches; i++) {
		t = &tp->touches[i];
		if (tp_touch_active(tp, t)) {
			touches[n++] = t;
			if (n == count)
				return count;
		}
	}

	/*
	 * This can happen when the user does .e.g:
	 * 1) Put down 1st finger in center (so active)
	 * 2) Put down 2nd finger in a button area (so inactive)
	 * 3) Put down 3th finger somewhere, gets reported as a fake finger,
	 *    so gets same coordinates as 1st -> active
	 *
	 * We could avoid this by looking at all touches, be we really only
	 * want to look at real touches.
	 */
	return n;
}

static int
tp_gesture_get_direction(struct tp_dispatch *tp, int touch)
{
	double dx, dy, move_threshold;

	/*
	 * Semi-mt touchpads have somewhat inaccurate coordinates when
	 * 2 fingers are down, so use a slightly larger threshold.
	 */
	if (tp->semi_mt)
		move_threshold = TP_MM_TO_DPI_NORMALIZED(4);
	else
		move_threshold = TP_MM_TO_DPI_NORMALIZED(3);

	dx = tp->gesture.touches[touch]->x -
		tp->gesture.touches[touch]->gesture.initial_x;
	dy = tp->gesture.touches[touch]->y -
		tp->gesture.touches[touch]->gesture.initial_y;
	tp_normalize_delta(tp, &dx, &dy);
	if (hypot(dx, dy) < move_threshold)
		return UNDEFINED_DIRECTION;

	return vector_get_direction(dx, dy);
}

static void
tp_gesture_get_pinch_info(struct tp_dispatch *tp,
			  double *distance,
			  double *angle,
			  double *center_x,
			  double *center_y)
{
	double dx, dy;

	dx = tp->gesture.touches[0]->x - tp->gesture.touches[1]->x;
	dy = tp->gesture.touches[0]->y - tp->gesture.touches[1]->y;
	tp_normalize_delta(tp, &dx, &dy);

	*distance = hypot(dx, dy);
	if (!tp->semi_mt)
		*angle = atan2(dy, dx) * 180.0 / M_PI;
	else
		*angle = 0.0;

	*center_x = (tp->gesture.touches[0]->x + tp->gesture.touches[1]->x) / 2;
	*center_y = (tp->gesture.touches[0]->y + tp->gesture.touches[1]->y) / 2;
}

static void
tp_gesture_set_scroll_buildup(struct tp_dispatch *tp)
{
	double dx, dy;

	dx = tp->gesture.touches[0]->x -
		tp->gesture.touches[0]->gesture.initial_x;
	dy = tp->gesture.touches[0]->y -
		tp->gesture.touches[0]->gesture.initial_y;
	dx += tp->gesture.touches[1]->x -
		tp->gesture.touches[1]->gesture.initial_x;
	dy += tp->gesture.touches[1]->y -
		tp->gesture.touches[1]->gesture.initial_y;

	tp->device->scroll.buildup_horizontal = dx / 2.0;
	tp->device->scroll.buildup_vertical = dy / 2.0;
}

static void
tp_gesture_twofinger_state_none(struct tp_dispatch *tp, uint64_t time)
{
	if (tp_gesture_get_active_touches(tp, tp->gesture.touches, 2) != 2)
		return;

	tp->gesture.initial_time = time;
	tp->gesture.touches[0]->gesture.initial_x =
		tp->gesture.touches[0]->x;
	tp->gesture.touches[0]->gesture.initial_y =
		tp->gesture.touches[0]->y;
	tp->gesture.touches[1]->gesture.initial_x =
		tp->gesture.touches[1]->x;
	tp->gesture.touches[1]->gesture.initial_y =
		tp->gesture.touches[1]->y;

	tp->gesture.twofinger_state = GESTURE_2FG_STATE_UNKNOWN;
}

static void
tp_gesture_twofinger_state_unknown(struct tp_dispatch *tp, uint64_t time)
{
	double dx, dy;
	int dir0, dir1;

	dx = tp->gesture.touches[0]->x - tp->gesture.touches[1]->x;
	dy = tp->gesture.touches[0]->y - tp->gesture.touches[1]->y;
	tp_normalize_delta(tp, &dx, &dy);

	/* If fingers are further than 3 cm apart assume pinch */
	if (hypot(dx, dy) > TP_MM_TO_DPI_NORMALIZED(30)) {
		tp->gesture.twofinger_state = GESTURE_2FG_STATE_PINCH;
		tp_gesture_get_pinch_info(tp,
					  &tp->gesture.distance,
					  &tp->gesture.angle,
					  &tp->gesture.center_x,
					  &tp->gesture.center_y);
		return;
	}

	/* Elif fingers have been close together for a while, scroll */
	if (time > (tp->gesture.initial_time + DEFAULT_GESTURE_2FG_SCROLL_TIMEOUT)) {
		tp->gesture.twofinger_state = GESTURE_2FG_STATE_SCROLL;
		tp_gesture_set_scroll_buildup(tp);
		return;
	}

	/* Else wait for both fingers to have moved */
	dir0 = tp_gesture_get_direction(tp, 0);
	dir1 = tp_gesture_get_direction(tp, 1);
	if (dir0 == UNDEFINED_DIRECTION || dir1 == UNDEFINED_DIRECTION)
		return;

	/*
	 * If both touches are moving in the same direction assume scroll.
	 *
	 * In some cases (semi-mt touchpads) We may seen one finger move
	 * e.g. N/NE and the other W/NW so we not only check for overlapping
	 * directions, but also for neighboring bits being set.
	 * The ((dira & 0x80) && (dirb & 0x01)) checks are to check for bit 0
	 * and 7 being set as they also represent neighboring directions.
	 */
	if (((dir0 | (dir0 >> 1)) & dir1) ||
	    ((dir1 | (dir1 >> 1)) & dir0) ||
	    ((dir0 & 0x80) && (dir1 & 0x01)) ||
	    ((dir1 & 0x80) && (dir0 & 0x01))) {
		tp->gesture.twofinger_state = GESTURE_2FG_STATE_SCROLL;
		tp_gesture_set_scroll_buildup(tp);
	} else {
		tp->gesture.twofinger_state = GESTURE_2FG_STATE_PINCH;
		tp_gesture_get_pinch_info(tp,
					  &tp->gesture.distance,
					  &tp->gesture.angle,
					  &tp->gesture.center_x,
					  &tp->gesture.center_y);
	}
}

static void
tp_gesture_twofinger_state_scroll(struct tp_dispatch *tp, uint64_t time)
{
	struct normalized_coords delta;

	delta = tp_get_average_touches_delta(tp);
	tp_filter_motion(tp, &delta.x, &delta.y, NULL, NULL, time);

	if (delta.x == 0.0 && delta.y == 0.0)
		return;

	tp_gesture_start(tp, time);
	evdev_post_scroll(tp->device,
			  time,
			  LIBINPUT_POINTER_AXIS_SOURCE_FINGER,
			  &delta);
}

static void
tp_gesture_twofinger_state_pinch(struct tp_dispatch *tp, uint64_t time)
{
	double dx, dy, distance, angle, center_x, center_y, delta;
	double dx_unaccel, dy_unaccel;

	tp_gesture_get_pinch_info(tp, &distance, &angle,
				  &center_x, &center_y);

	delta = distance - tp->gesture.distance;
	tp->gesture.distance = distance;
	distance = delta;

	delta = angle - tp->gesture.angle;
	if (delta > 180.0)
		delta -= 360.0;
	else if (delta < -180.0)
		delta += 360.0;
	tp->gesture.angle = angle;
	angle = delta;

	dx = center_x - tp->gesture.center_x;
	dy = center_y - tp->gesture.center_y;
	tp->gesture.center_x = center_x;
	tp->gesture.center_y = center_y;
	tp_normalize_delta(tp, &dx, &dy);
	tp_filter_motion(tp, &dx, &dy, &dx_unaccel, &dy_unaccel, time);

	if (dx == 0.0 && dy == 0.0 &&
	    dx_unaccel == 0.0 && dy_unaccel == 0.0 && 
	    distance == 0.0 && angle == 0.0)
		return;

	tp_gesture_start(tp, time);
	gesture_notify_pinch(&tp->device->base, time,
			     LIBINPUT_EVENT_GESTURE_PINCH_UPDATE,
			     dx, dy, dx_unaccel, dy_unaccel,
			     distance, angle);
}

static void
tp_gesture_post_twofinger(struct tp_dispatch *tp, uint64_t time)
{
	switch (tp->gesture.twofinger_state) {
	case GESTURE_2FG_STATE_NONE:
		tp_gesture_twofinger_state_none(tp, time);
		if (tp->gesture.twofinger_state != GESTURE_2FG_STATE_UNKNOWN)
			break;
		/* fall through */
	case GESTURE_2FG_STATE_UNKNOWN:
		tp_gesture_twofinger_state_unknown(tp, time);
		if (tp->gesture.twofinger_state != GESTURE_2FG_STATE_SCROLL)
			break;
		/* fall through */
	case GESTURE_2FG_STATE_SCROLL:
		tp_gesture_twofinger_state_scroll(tp, time);
		break;
	case GESTURE_2FG_STATE_PINCH:
		tp_gesture_twofinger_state_pinch(tp, time);
		break;
	}
}

static void
tp_gesture_post_swipe(struct tp_dispatch *tp, uint64_t time)
{
	double dx, dy, dx_unaccel, dy_unaccel;

	tp_get_average_touches_delta(tp, &dx, &dy);
	tp_filter_motion(tp, &dx, &dy, &dx_unaccel, &dy_unaccel, time);

	if (dx != 0.0 || dy != 0.0 || dx_unaccel != 0.0 || dy_unaccel != 0.0) {
		tp_gesture_start(tp, time);
		gesture_notify_swipe(&tp->device->base, time,
				     LIBINPUT_EVENT_GESTURE_SWIPE_UPDATE,
				     tp->gesture.finger_count,
				     dx, dy, dx_unaccel, dy_unaccel);
	}
}

void
tp_gesture_post_events(struct tp_dispatch *tp, uint64_t time)
{
	if (tp->gesture.finger_count == 0)
		return;

	/* When tap-and-dragging, or a clickpad is clicked force 1fg mode */
	if (tp_tap_dragging(tp) || (tp->buttons.is_clickpad && tp->buttons.state)) {
		tp_gesture_stop(tp, time);
		tp->gesture.finger_count = 1;
		tp->gesture.finger_count_pending = 0;
	}

	/* Don't send events when we're unsure in which mode we are */
	if (tp->gesture.finger_count_pending)
		return;

	switch (tp->gesture.finger_count) {
	case 1:
		tp_gesture_post_pointer_motion(tp, time);
		break;
	case 2:
		tp_gesture_post_twofinger(tp, time);
		break;
	case 3:
	case 4:
		tp_gesture_post_swipe(tp, time);
		break;
	}
}

void
tp_gesture_stop_twofinger_scroll(struct tp_dispatch *tp, uint64_t time)
{
	evdev_stop_scroll(tp->device,
			  time,
			  LIBINPUT_POINTER_AXIS_SOURCE_FINGER);
}

void
tp_gesture_stop(struct tp_dispatch *tp, uint64_t time)
{
	struct libinput *libinput = tp->device->base.seat->libinput;
	enum tp_gesture_2fg_state twofinger_state = tp->gesture.twofinger_state;

	tp->gesture.twofinger_state = GESTURE_2FG_STATE_NONE;

	if (!tp->gesture.started)
		return;

	switch (tp->gesture.finger_count) {
	case 2:
		switch (twofinger_state) {
		case GESTURE_2FG_STATE_NONE:
		case GESTURE_2FG_STATE_UNKNOWN:
			log_bug_libinput(libinput,
				 "%s in unknown gesture mode\n", __func__);
			break;
		case GESTURE_2FG_STATE_SCROLL:
			tp_gesture_stop_twofinger_scroll(tp, time);
			break;
		case GESTURE_2FG_STATE_PINCH:
			gesture_notify_pinch(&tp->device->base, time,
					    LIBINPUT_EVENT_GESTURE_PINCH_END,
					    0, 0, 0, 0, 0, 0);
			break;
		}
		break;
	case 3:
	case 4:
		gesture_notify_swipe(&tp->device->base, time,
				     LIBINPUT_EVENT_GESTURE_SWIPE_END,
				     tp->gesture.finger_count,
				     0, 0, 0, 0);
		break;
	}
	tp->gesture.started = false;
}

static void
tp_gesture_finger_count_switch_timeout(uint64_t now, void *data)
{
	struct tp_dispatch *tp = data;

	if (!tp->gesture.finger_count_pending)
		return;

	tp_gesture_stop(tp, now); /* End current gesture */
	tp->gesture.finger_count = tp->gesture.finger_count_pending;
	tp->gesture.finger_count_pending = 0;
}

void
tp_gesture_handle_state(struct tp_dispatch *tp, uint64_t time)
{
	unsigned int active_touches = 0;
	struct tp_touch *t;

	tp_for_each_touch(tp, t)
		if (tp_touch_active(tp, t))
			active_touches++;

	if (active_touches != tp->gesture.finger_count) {
		/* If all fingers are lifted immediately end the gesture */
		if (active_touches == 0) {
			tp_gesture_stop(tp, time);
			tp->gesture.finger_count = 0;
			tp->gesture.finger_count_pending = 0;
		/* Immediately switch to new mode to avoid initial latency */
		} else if (!tp->gesture.started) {
			tp->gesture.finger_count = active_touches;
			tp->gesture.finger_count_pending = 0;
		/* Else debounce finger changes */
		} else if (active_touches != tp->gesture.finger_count_pending) {
			tp->gesture.finger_count_pending = active_touches;
			libinput_timer_set(&tp->gesture.finger_count_switch_timer,
				time + DEFAULT_GESTURE_SWITCH_TIMEOUT);
		}
	} else {
		 tp->gesture.finger_count_pending = 0;
	}
}

int
tp_init_gesture(struct tp_dispatch *tp)
{
	tp->gesture.twofinger_state = GESTURE_2FG_STATE_NONE;

	libinput_timer_init(&tp->gesture.finger_count_switch_timer,
			    tp->device->base.seat->libinput,
			    tp_gesture_finger_count_switch_timeout, tp);
	return 0;
}

void
tp_remove_gesture(struct tp_dispatch *tp)
{
	libinput_timer_cancel(&tp->gesture.finger_count_switch_timer);
}