blob: 4bef1f2e4505769f21c6fa1c996e6f03f8b2beb5 [file] [log] [blame]
reed@google.com52f57e12011-03-16 12:10:02 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@google.com52f57e12011-03-16 12:10:02 +00006 */
7
liyuqiane46e4f02016-05-20 07:32:19 -07008#include <algorithm>
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkMatrix.h"
11#include "include/core/SkTime.h"
12#include "tools/viewer/TouchGesture.h"
reed@google.com52f57e12011-03-16 12:10:02 +000013
14#define DISCRETIZE_TRANSLATE_TO_AVOID_FLICKER true
15
robertphillips@google.com59f46b82012-07-10 17:30:58 +000016static const SkScalar MAX_FLING_SPEED = SkIntToScalar(1500);
reed@google.com52f57e12011-03-16 12:10:02 +000017
robertphillips@google.com59f46b82012-07-10 17:30:58 +000018static SkScalar pin_max_fling(SkScalar speed) {
reed@google.com52f57e12011-03-16 12:10:02 +000019 if (speed > MAX_FLING_SPEED) {
20 speed = MAX_FLING_SPEED;
21 }
22 return speed;
23}
24
25static double getseconds() {
26 return SkTime::GetMSecs() * 0.001;
27}
28
29// returns +1 or -1, depending on the sign of x
bsalomon@google.com647a8042011-08-23 14:39:01 +000030// returns +1 if z is zero
31static SkScalar SkScalarSignNonZero(SkScalar x) {
reed@google.com52f57e12011-03-16 12:10:02 +000032 SkScalar sign = SK_Scalar1;
33 if (x < 0) {
34 sign = -sign;
35 }
36 return sign;
37}
38
39static void unit_axis_align(SkVector* unit) {
40 const SkScalar TOLERANCE = SkDoubleToScalar(0.15);
41 if (SkScalarAbs(unit->fX) < TOLERANCE) {
42 unit->fX = 0;
bsalomon@google.com647a8042011-08-23 14:39:01 +000043 unit->fY = SkScalarSignNonZero(unit->fY);
reed@google.com52f57e12011-03-16 12:10:02 +000044 } else if (SkScalarAbs(unit->fY) < TOLERANCE) {
bsalomon@google.com647a8042011-08-23 14:39:01 +000045 unit->fX = SkScalarSignNonZero(unit->fX);
reed@google.com52f57e12011-03-16 12:10:02 +000046 unit->fY = 0;
47 }
48}
49
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040050void TouchGesture::FlingState::reset(float sx, float sy) {
reed@google.com52f57e12011-03-16 12:10:02 +000051 fActive = true;
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000052 fDirection.set(sx, sy);
reed@google.com52f57e12011-03-16 12:10:02 +000053 fSpeed0 = SkPoint::Normalize(&fDirection);
54 fSpeed0 = pin_max_fling(fSpeed0);
55 fTime0 = getseconds();
56
57 unit_axis_align(&fDirection);
58// printf("---- speed %g dir %g %g\n", fSpeed0, fDirection.fX, fDirection.fY);
59}
60
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040061bool TouchGesture::FlingState::evaluateMatrix(SkMatrix* matrix) {
reed@google.com52f57e12011-03-16 12:10:02 +000062 if (!fActive) {
63 return false;
64 }
65
reed@google.comc31a9d62011-03-18 20:53:44 +000066 const float t = (float)(getseconds() - fTime0);
reed@google.com52f57e12011-03-16 12:10:02 +000067 const float MIN_SPEED = 2;
reed@google.comc31a9d62011-03-18 20:53:44 +000068 const float K0 = 5;
69 const float K1 = 0.02f;
reed@google.com52f57e12011-03-16 12:10:02 +000070 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
71 if (speed <= MIN_SPEED) {
72 fActive = false;
73 return false;
74 }
75 float dist = (fSpeed0 - speed) / K0;
76
77// printf("---- time %g speed %g dist %g\n", t, speed, dist);
78 float tx = fDirection.fX * dist;
79 float ty = fDirection.fY * dist;
80 if (DISCRETIZE_TRANSLATE_TO_AVOID_FLICKER) {
reed@google.comc31a9d62011-03-18 20:53:44 +000081 tx = (float)sk_float_round2int(tx);
82 ty = (float)sk_float_round2int(ty);
reed@google.com52f57e12011-03-16 12:10:02 +000083 }
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000084 matrix->setTranslate(tx, ty);
reed@google.com52f57e12011-03-16 12:10:02 +000085// printf("---- evaluate (%g %g)\n", tx, ty);
86
87 return true;
88}
89
90///////////////////////////////////////////////////////////////////////////////
91
92static const SkMSec MAX_DBL_TAP_INTERVAL = 300;
93static const float MAX_DBL_TAP_DISTANCE = 100;
94static const float MAX_JITTER_RADIUS = 2;
95
96// if true, then ignore the touch-move, 'cause its probably just jitter
97static bool close_enough_for_jitter(float x0, float y0, float x1, float y1) {
98 return sk_float_abs(x0 - x1) <= MAX_JITTER_RADIUS &&
99 sk_float_abs(y0 - y1) <= MAX_JITTER_RADIUS;
100}
101
102///////////////////////////////////////////////////////////////////////////////
103
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400104TouchGesture::TouchGesture() {
reed@google.com52f57e12011-03-16 12:10:02 +0000105 this->reset();
106}
107
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400108TouchGesture::~TouchGesture() {
reed@google.com52f57e12011-03-16 12:10:02 +0000109}
110
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400111void TouchGesture::resetTouchState() {
liyuqiane46e4f02016-05-20 07:32:19 -0700112 fIsTransLimited = false;
reed@google.com52f57e12011-03-16 12:10:02 +0000113 fTouches.reset();
114 fState = kEmpty_State;
115 fLocalM.reset();
reed@google.com52f57e12011-03-16 12:10:02 +0000116
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700117 fLastUpMillis = SkTime::GetMSecs() - 2*MAX_DBL_TAP_INTERVAL;
reed@google.com52f57e12011-03-16 12:10:02 +0000118 fLastUpP.set(0, 0);
119}
120
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400121void TouchGesture::reset() {
Brian Salomon88d99df2018-01-05 11:58:16 -0500122 fGlobalM.reset();
123 this->resetTouchState();
124}
125
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400126void TouchGesture::flushLocalM() {
reed@google.com52f57e12011-03-16 12:10:02 +0000127 fGlobalM.postConcat(fLocalM);
128 fLocalM.reset();
129}
130
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400131const SkMatrix& TouchGesture::localM() {
reed@google.com52f57e12011-03-16 12:10:02 +0000132 if (fFlinger.isActive()) {
133 if (!fFlinger.evaluateMatrix(&fLocalM)) {
134 this->flushLocalM();
135 }
136 }
137 return fLocalM;
138}
139
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400140void TouchGesture::appendNewRec(void* owner, float x, float y) {
reed@google.com52f57e12011-03-16 12:10:02 +0000141 Rec* rec = fTouches.append();
142 rec->fOwner = owner;
143 rec->fStartX = rec->fPrevX = rec->fLastX = x;
144 rec->fStartY = rec->fPrevY = rec->fLastY = y;
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700145 rec->fLastT = rec->fPrevT = static_cast<float>(SkTime::GetSecs());
reed@google.com52f57e12011-03-16 12:10:02 +0000146}
147
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400148void TouchGesture::touchBegin(void* owner, float x, float y) {
tfarina38406c82014-10-31 07:11:12 -0700149// SkDebugf("--- %d touchBegin %p %g %g\n", fTouches.count(), owner, x, y);
reed@google.com52f57e12011-03-16 12:10:02 +0000150
151 int index = this->findRec(owner);
152 if (index >= 0) {
153 this->flushLocalM();
154 fTouches.removeShuffle(index);
155 SkDebugf("---- already exists, removing\n");
156 }
157
158 if (fTouches.count() == 2) {
159 return;
160 }
161
162 this->flushLocalM();
163 fFlinger.stop();
164
165 this->appendNewRec(owner, x, y);
166
167 switch (fTouches.count()) {
168 case 1:
169 fState = kTranslate_State;
170 break;
171 case 2:
Jim Van Verthd0cf5da2019-09-09 16:53:39 -0400172 this->startZoom();
reed@google.com52f57e12011-03-16 12:10:02 +0000173 break;
174 default:
175 break;
176 }
177}
178
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400179int TouchGesture::findRec(void* owner) const {
reed@google.com52f57e12011-03-16 12:10:02 +0000180 for (int i = 0; i < fTouches.count(); i++) {
181 if (owner == fTouches[i].fOwner) {
182 return i;
183 }
184 }
185 return -1;
186}
187
robertphillips@google.com59f46b82012-07-10 17:30:58 +0000188static SkScalar center(float pos0, float pos1) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000189 return (pos0 + pos1) * 0.5f;
reed@google.com52f57e12011-03-16 12:10:02 +0000190}
191
192static const float MAX_ZOOM_SCALE = 4;
193static const float MIN_ZOOM_SCALE = 0.25f;
194
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400195float TouchGesture::limitTotalZoom(float scale) const {
reed@google.com52f57e12011-03-16 12:10:02 +0000196 // this query works 'cause we know that we're square-scale w/ no skew/rotation
robertphillips@google.com59f46b82012-07-10 17:30:58 +0000197 const float curr = SkScalarToFloat(fGlobalM[0]);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000198
reed@google.com52f57e12011-03-16 12:10:02 +0000199 if (scale > 1 && curr * scale > MAX_ZOOM_SCALE) {
200 scale = MAX_ZOOM_SCALE / curr;
201 } else if (scale < 1 && curr * scale < MIN_ZOOM_SCALE) {
202 scale = MIN_ZOOM_SCALE / curr;
203 }
204 return scale;
205}
206
Jim Van Verthd0cf5da2019-09-09 16:53:39 -0400207void TouchGesture::startZoom() {
208 fState = kZoom_State;
209}
210
211void TouchGesture::updateZoom(float scale, float startX, float startY, float lastX, float lastY) {
212 scale = this->limitTotalZoom(scale);
213
214 fLocalM.setTranslate(-startX, -startY);
215 fLocalM.postScale(scale, scale);
216 fLocalM.postTranslate(lastX, lastY);
217}
218
219void TouchGesture::endZoom() {
220 this->flushLocalM();
221 SkASSERT(kZoom_State == fState);
222 fState = kEmpty_State;
223}
224
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400225void TouchGesture::touchMoved(void* owner, float x, float y) {
tfarina38406c82014-10-31 07:11:12 -0700226// SkDebugf("--- %d touchMoved %p %g %g\n", fTouches.count(), owner, x, y);
reed@google.com52f57e12011-03-16 12:10:02 +0000227
caryclark936b7342014-07-11 12:14:51 -0700228 if (kEmpty_State == fState) {
229 return;
230 }
reed@google.com52f57e12011-03-16 12:10:02 +0000231
232 int index = this->findRec(owner);
233 if (index < 0) {
Brian Osmanb53f48c2017-06-07 10:00:30 -0400234 SkDebugf("---- ignoring move without begin\n");
235 return;
reed@google.com52f57e12011-03-16 12:10:02 +0000236 }
237
238 Rec& rec = fTouches[index];
239
240 // not sure how valuable this is
241 if (fTouches.count() == 2) {
242 if (close_enough_for_jitter(rec.fLastX, rec.fLastY, x, y)) {
Brian Osmanb53f48c2017-06-07 10:00:30 -0400243// SkDebugf("--- drop touchMove, within jitter tolerance %g %g\n", rec.fLastX - x, rec.fLastY - y);
reed@google.com52f57e12011-03-16 12:10:02 +0000244 return;
245 }
246 }
247
248 rec.fPrevX = rec.fLastX; rec.fLastX = x;
249 rec.fPrevY = rec.fLastY; rec.fLastY = y;
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700250 rec.fPrevT = rec.fLastT;
251 rec.fLastT = static_cast<float>(SkTime::GetSecs());
reed@google.com52f57e12011-03-16 12:10:02 +0000252
253 switch (fTouches.count()) {
254 case 1: {
255 float dx = rec.fLastX - rec.fStartX;
256 float dy = rec.fLastY - rec.fStartY;
257 dx = (float)sk_float_round2int(dx);
258 dy = (float)sk_float_round2int(dy);
259 fLocalM.setTranslate(dx, dy);
260 } break;
261 case 2: {
262 SkASSERT(kZoom_State == fState);
263 const Rec& rec0 = fTouches[0];
264 const Rec& rec1 = fTouches[1];
rmistry@google.comd6176b02012-08-23 18:14:13 +0000265
reed@google.com52f57e12011-03-16 12:10:02 +0000266 float scale = this->computePinch(rec0, rec1);
Jim Van Verthd0cf5da2019-09-09 16:53:39 -0400267 this->updateZoom(scale,
268 center(rec0.fStartX, rec1.fStartX),
269 center(rec0.fStartY, rec1.fStartY),
270 center(rec0.fLastX, rec1.fLastX),
271 center(rec0.fLastY, rec1.fLastY));
reed@google.com52f57e12011-03-16 12:10:02 +0000272 } break;
273 default:
274 break;
275 }
276}
277
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400278void TouchGesture::touchEnd(void* owner) {
tfarina38406c82014-10-31 07:11:12 -0700279// SkDebugf("--- %d touchEnd %p\n", fTouches.count(), owner);
reed@google.com52f57e12011-03-16 12:10:02 +0000280
281 int index = this->findRec(owner);
282 if (index < 0) {
283 SkDebugf("--- not found\n");
284 return;
285 }
286
287 const Rec& rec = fTouches[index];
288 if (this->handleDblTap(rec.fLastX, rec.fLastY)) {
289 return;
290 }
291
292 // count() reflects the number before we removed the owner
293 switch (fTouches.count()) {
294 case 1: {
295 this->flushLocalM();
296 float dx = rec.fLastX - rec.fPrevX;
297 float dy = rec.fLastY - rec.fPrevY;
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700298 float dur = rec.fLastT - rec.fPrevT;
reed@google.com52f57e12011-03-16 12:10:02 +0000299 if (dur > 0) {
300 fFlinger.reset(dx / dur, dy / dur);
301 }
302 fState = kEmpty_State;
303 } break;
304 case 2:
Jim Van Verthd0cf5da2019-09-09 16:53:39 -0400305 this->endZoom();
reed@google.com52f57e12011-03-16 12:10:02 +0000306 break;
307 default:
308 SkASSERT(kZoom_State == fState);
309 break;
310 }
311
312 fTouches.removeShuffle(index);
liyuqiane46e4f02016-05-20 07:32:19 -0700313
314 limitTrans();
reed@google.com52f57e12011-03-16 12:10:02 +0000315}
316
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400317bool TouchGesture::isFling(SkPoint* dir) {
Jim Van Verth234e5a22018-07-23 13:46:01 -0400318 if (fFlinger.isActive()) {
319 SkScalar speed;
320 fFlinger.get(dir, &speed);
321 if (speed > 1000) {
322 return true;
323 }
324 }
325 return false;
326}
327
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400328float TouchGesture::computePinch(const Rec& rec0, const Rec& rec1) {
reed@google.com52f57e12011-03-16 12:10:02 +0000329 double dx = rec0.fStartX - rec1.fStartX;
330 double dy = rec0.fStartY - rec1.fStartY;
331 double dist0 = sqrt(dx*dx + dy*dy);
332
333 dx = rec0.fLastX - rec1.fLastX;
334 dy = rec0.fLastY - rec1.fLastY;
335 double dist1 = sqrt(dx*dx + dy*dy);
336
337 double scale = dist1 / dist0;
338 return (float)scale;
339}
340
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400341bool TouchGesture::handleDblTap(float x, float y) {
reed@google.com52f57e12011-03-16 12:10:02 +0000342 bool found = false;
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700343 double now = SkTime::GetMSecs();
344 if (now - fLastUpMillis <= MAX_DBL_TAP_INTERVAL) {
reed@google.com52f57e12011-03-16 12:10:02 +0000345 if (SkPoint::Length(fLastUpP.fX - x,
346 fLastUpP.fY - y) <= MAX_DBL_TAP_DISTANCE) {
347 fFlinger.stop();
348 fLocalM.reset();
349 fGlobalM.reset();
350 fTouches.reset();
351 fState = kEmpty_State;
352 found = true;
353 }
354 }
355
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700356 fLastUpMillis = now;
reed@google.com52f57e12011-03-16 12:10:02 +0000357 fLastUpP.set(x, y);
358 return found;
359}
liyuqiane46e4f02016-05-20 07:32:19 -0700360
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400361void TouchGesture::setTransLimit(const SkRect& contentRect, const SkRect& windowRect,
Brian Osman42bb6ac2017-06-05 08:46:04 -0400362 const SkMatrix& preTouchMatrix) {
liyuqiane46e4f02016-05-20 07:32:19 -0700363 fIsTransLimited = true;
364 fContentRect = contentRect;
365 fWindowRect = windowRect;
Brian Osman42bb6ac2017-06-05 08:46:04 -0400366 fPreTouchM = preTouchMatrix;
liyuqiane46e4f02016-05-20 07:32:19 -0700367}
368
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400369void TouchGesture::limitTrans() {
liyuqiane46e4f02016-05-20 07:32:19 -0700370 if (!fIsTransLimited) {
371 return;
372 }
373
374 SkRect scaledContent = fContentRect;
Brian Osman42bb6ac2017-06-05 08:46:04 -0400375 fPreTouchM.mapRect(&scaledContent);
liyuqiane46e4f02016-05-20 07:32:19 -0700376 fGlobalM.mapRect(&scaledContent);
377 const SkScalar ZERO = 0;
378
379 fGlobalM.postTranslate(ZERO, std::min(ZERO, fWindowRect.fBottom - scaledContent.fTop));
380 fGlobalM.postTranslate(ZERO, std::max(ZERO, fWindowRect.fTop - scaledContent.fBottom));
381 fGlobalM.postTranslate(std::min(ZERO, fWindowRect.fRight - scaledContent.fLeft), ZERO);
382 fGlobalM.postTranslate(std::max(ZERO, fWindowRect.fLeft - scaledContent.fRight), ZERO);
383}