blob: 428fe10156c161609bf7fbc95294e80776cd01fd [file] [log] [blame]
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001/*
2 * Copyright (C) 2019 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
Michael Wright227c5542020-07-02 18:30:52 +010017// clang-format off
Prabir Pradhan9244aea2020-02-05 20:31:40 -080018#include "../Macros.h"
Michael Wright227c5542020-07-02 18:30:52 +010019// clang-format on
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070020
21#include "TouchInputMapper.h"
22
Dominik Laskowski75788452021-02-09 18:51:25 -080023#include <ftl/enum.h>
24
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070025#include "CursorButtonAccumulator.h"
26#include "CursorScrollAccumulator.h"
27#include "TouchButtonAccumulator.h"
28#include "TouchCursorInputMapperCommon.h"
29
30namespace android {
31
32// --- Constants ---
33
34// Maximum amount of latency to add to touch events while waiting for data from an
35// external stylus.
36static constexpr nsecs_t EXTERNAL_STYLUS_DATA_TIMEOUT = ms2ns(72);
37
38// Maximum amount of time to wait on touch data before pushing out new pressure data.
39static constexpr nsecs_t TOUCH_DATA_TIMEOUT = ms2ns(20);
40
41// Artificial latency on synthetic events created from stylus data without corresponding touch
42// data.
43static constexpr nsecs_t STYLUS_DATA_LATENCY = ms2ns(10);
44
45// --- Static Definitions ---
46
Prabir Pradhanf670dad2022-08-05 22:32:11 +000047static const DisplayViewport kUninitializedViewport;
48
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070049template <typename T>
50inline static void swap(T& a, T& b) {
51 T temp = a;
52 a = b;
53 b = temp;
54}
55
56static float calculateCommonVector(float a, float b) {
57 if (a > 0 && b > 0) {
58 return a < b ? a : b;
59 } else if (a < 0 && b < 0) {
60 return a > b ? a : b;
61 } else {
62 return 0;
63 }
64}
65
66inline static float distance(float x1, float y1, float x2, float y2) {
67 return hypotf(x1 - x2, y1 - y2);
68}
69
70inline static int32_t signExtendNybble(int32_t value) {
71 return value >= 8 ? value - 16 : value;
72}
73
74// --- RawPointerAxes ---
75
76RawPointerAxes::RawPointerAxes() {
77 clear();
78}
79
80void RawPointerAxes::clear() {
81 x.clear();
82 y.clear();
83 pressure.clear();
84 touchMajor.clear();
85 touchMinor.clear();
86 toolMajor.clear();
87 toolMinor.clear();
88 orientation.clear();
89 distance.clear();
90 tiltX.clear();
91 tiltY.clear();
92 trackingId.clear();
93 slot.clear();
94}
95
96// --- RawPointerData ---
97
98RawPointerData::RawPointerData() {
99 clear();
100}
101
102void RawPointerData::clear() {
103 pointerCount = 0;
104 clearIdBits();
105}
106
107void RawPointerData::copyFrom(const RawPointerData& other) {
108 pointerCount = other.pointerCount;
109 hoveringIdBits = other.hoveringIdBits;
110 touchingIdBits = other.touchingIdBits;
arthurhungcc7f9802020-04-30 17:55:40 +0800111 canceledIdBits = other.canceledIdBits;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700112
113 for (uint32_t i = 0; i < pointerCount; i++) {
114 pointers[i] = other.pointers[i];
115
116 int id = pointers[i].id;
117 idToIndex[id] = other.idToIndex[id];
118 }
119}
120
121void RawPointerData::getCentroidOfTouchingPointers(float* outX, float* outY) const {
122 float x = 0, y = 0;
123 uint32_t count = touchingIdBits.count();
124 if (count) {
125 for (BitSet32 idBits(touchingIdBits); !idBits.isEmpty();) {
126 uint32_t id = idBits.clearFirstMarkedBit();
127 const Pointer& pointer = pointerForId(id);
128 x += pointer.x;
129 y += pointer.y;
130 }
131 x /= count;
132 y /= count;
133 }
134 *outX = x;
135 *outY = y;
136}
137
138// --- CookedPointerData ---
139
140CookedPointerData::CookedPointerData() {
141 clear();
142}
143
144void CookedPointerData::clear() {
145 pointerCount = 0;
146 hoveringIdBits.clear();
147 touchingIdBits.clear();
arthurhungcc7f9802020-04-30 17:55:40 +0800148 canceledIdBits.clear();
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +0000149 validIdBits.clear();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700150}
151
152void CookedPointerData::copyFrom(const CookedPointerData& other) {
153 pointerCount = other.pointerCount;
154 hoveringIdBits = other.hoveringIdBits;
155 touchingIdBits = other.touchingIdBits;
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +0000156 validIdBits = other.validIdBits;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700157
158 for (uint32_t i = 0; i < pointerCount; i++) {
159 pointerProperties[i].copyFrom(other.pointerProperties[i]);
160 pointerCoords[i].copyFrom(other.pointerCoords[i]);
161
162 int id = pointerProperties[i].id;
163 idToIndex[id] = other.idToIndex[id];
164 }
165}
166
167// --- TouchInputMapper ---
168
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800169TouchInputMapper::TouchInputMapper(InputDeviceContext& deviceContext)
170 : InputMapper(deviceContext),
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700171 mSource(0),
Michael Wright227c5542020-07-02 18:30:52 +0100172 mDeviceMode(DeviceMode::DISABLED),
Prabir Pradhan1728b212021-10-19 16:00:03 -0700173 mDisplayWidth(-1),
174 mDisplayHeight(-1),
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700175 mPhysicalWidth(-1),
176 mPhysicalHeight(-1),
177 mPhysicalLeft(0),
178 mPhysicalTop(0),
Prabir Pradhan1728b212021-10-19 16:00:03 -0700179 mInputDeviceOrientation(DISPLAY_ORIENTATION_0) {}
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700180
181TouchInputMapper::~TouchInputMapper() {}
182
Philip Junker4af3b3d2021-12-14 10:36:55 +0100183uint32_t TouchInputMapper::getSources() const {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700184 return mSource;
185}
186
187void TouchInputMapper::populateDeviceInfo(InputDeviceInfo* info) {
188 InputMapper::populateDeviceInfo(info);
189
Michael Wright227c5542020-07-02 18:30:52 +0100190 if (mDeviceMode != DeviceMode::DISABLED) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700191 info->addMotionRange(mOrientedRanges.x);
192 info->addMotionRange(mOrientedRanges.y);
193 info->addMotionRange(mOrientedRanges.pressure);
194
Chris Yef74dc422020-09-02 22:41:50 -0700195 if (mDeviceMode == DeviceMode::UNSCALED && mSource == AINPUT_SOURCE_TOUCHPAD) {
Chris Ye8fa17282020-09-15 17:17:34 -0700196 // Populate RELATIVE_X and RELATIVE_Y motion ranges for touchpad capture mode.
197 //
198 // RELATIVE_X and RELATIVE_Y motion ranges should be the largest possible relative
199 // motion, i.e. the hardware dimensions, as the finger could move completely across the
200 // touchpad in one sample cycle.
Chris Yef74dc422020-09-02 22:41:50 -0700201 const InputDeviceInfo::MotionRange& x = mOrientedRanges.x;
202 const InputDeviceInfo::MotionRange& y = mOrientedRanges.y;
203 info->addMotionRange(AMOTION_EVENT_AXIS_RELATIVE_X, mSource, -x.max, x.max, x.flat,
204 x.fuzz, x.resolution);
205 info->addMotionRange(AMOTION_EVENT_AXIS_RELATIVE_Y, mSource, -y.max, y.max, y.flat,
206 y.fuzz, y.resolution);
207 }
208
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700209 if (mOrientedRanges.haveSize) {
210 info->addMotionRange(mOrientedRanges.size);
211 }
212
213 if (mOrientedRanges.haveTouchSize) {
214 info->addMotionRange(mOrientedRanges.touchMajor);
215 info->addMotionRange(mOrientedRanges.touchMinor);
216 }
217
218 if (mOrientedRanges.haveToolSize) {
219 info->addMotionRange(mOrientedRanges.toolMajor);
220 info->addMotionRange(mOrientedRanges.toolMinor);
221 }
222
223 if (mOrientedRanges.haveOrientation) {
224 info->addMotionRange(mOrientedRanges.orientation);
225 }
226
227 if (mOrientedRanges.haveDistance) {
228 info->addMotionRange(mOrientedRanges.distance);
229 }
230
231 if (mOrientedRanges.haveTilt) {
232 info->addMotionRange(mOrientedRanges.tilt);
233 }
234
235 if (mCursorScrollAccumulator.haveRelativeVWheel()) {
236 info->addMotionRange(AMOTION_EVENT_AXIS_VSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f,
237 0.0f);
238 }
239 if (mCursorScrollAccumulator.haveRelativeHWheel()) {
240 info->addMotionRange(AMOTION_EVENT_AXIS_HSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f,
241 0.0f);
242 }
Michael Wright227c5542020-07-02 18:30:52 +0100243 if (mCalibration.coverageCalibration == Calibration::CoverageCalibration::BOX) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700244 const InputDeviceInfo::MotionRange& x = mOrientedRanges.x;
245 const InputDeviceInfo::MotionRange& y = mOrientedRanges.y;
246 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_1, mSource, x.min, x.max, x.flat,
247 x.fuzz, x.resolution);
248 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_2, mSource, y.min, y.max, y.flat,
249 y.fuzz, y.resolution);
250 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_3, mSource, x.min, x.max, x.flat,
251 x.fuzz, x.resolution);
252 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_4, mSource, y.min, y.max, y.flat,
253 y.fuzz, y.resolution);
254 }
255 info->setButtonUnderPad(mParameters.hasButtonUnderPad);
256 }
257}
258
259void TouchInputMapper::dump(std::string& dump) {
Chris Yea03dd232020-09-08 19:21:09 -0700260 dump += StringPrintf(INDENT2 "Touch Input Mapper (mode - %s):\n",
Dominik Laskowski75788452021-02-09 18:51:25 -0800261 ftl::enum_string(mDeviceMode).c_str());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700262 dumpParameters(dump);
263 dumpVirtualKeys(dump);
264 dumpRawPointerAxes(dump);
265 dumpCalibration(dump);
266 dumpAffineTransformation(dump);
Prabir Pradhan1728b212021-10-19 16:00:03 -0700267 dumpDisplay(dump);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700268
269 dump += StringPrintf(INDENT3 "Translation and Scaling Factors:\n");
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700270 dump += StringPrintf(INDENT4 "XScale: %0.3f\n", mXScale);
271 dump += StringPrintf(INDENT4 "YScale: %0.3f\n", mYScale);
272 dump += StringPrintf(INDENT4 "XPrecision: %0.3f\n", mXPrecision);
273 dump += StringPrintf(INDENT4 "YPrecision: %0.3f\n", mYPrecision);
274 dump += StringPrintf(INDENT4 "GeometricScale: %0.3f\n", mGeometricScale);
275 dump += StringPrintf(INDENT4 "PressureScale: %0.3f\n", mPressureScale);
276 dump += StringPrintf(INDENT4 "SizeScale: %0.3f\n", mSizeScale);
277 dump += StringPrintf(INDENT4 "OrientationScale: %0.3f\n", mOrientationScale);
278 dump += StringPrintf(INDENT4 "DistanceScale: %0.3f\n", mDistanceScale);
279 dump += StringPrintf(INDENT4 "HaveTilt: %s\n", toString(mHaveTilt));
280 dump += StringPrintf(INDENT4 "TiltXCenter: %0.3f\n", mTiltXCenter);
281 dump += StringPrintf(INDENT4 "TiltXScale: %0.3f\n", mTiltXScale);
282 dump += StringPrintf(INDENT4 "TiltYCenter: %0.3f\n", mTiltYCenter);
283 dump += StringPrintf(INDENT4 "TiltYScale: %0.3f\n", mTiltYScale);
284
285 dump += StringPrintf(INDENT3 "Last Raw Button State: 0x%08x\n", mLastRawState.buttonState);
286 dump += StringPrintf(INDENT3 "Last Raw Touch: pointerCount=%d\n",
287 mLastRawState.rawPointerData.pointerCount);
288 for (uint32_t i = 0; i < mLastRawState.rawPointerData.pointerCount; i++) {
289 const RawPointerData::Pointer& pointer = mLastRawState.rawPointerData.pointers[i];
290 dump += StringPrintf(INDENT4 "[%d]: id=%d, x=%d, y=%d, pressure=%d, "
291 "touchMajor=%d, touchMinor=%d, toolMajor=%d, toolMinor=%d, "
292 "orientation=%d, tiltX=%d, tiltY=%d, distance=%d, "
293 "toolType=%d, isHovering=%s\n",
294 i, pointer.id, pointer.x, pointer.y, pointer.pressure,
295 pointer.touchMajor, pointer.touchMinor, pointer.toolMajor,
296 pointer.toolMinor, pointer.orientation, pointer.tiltX, pointer.tiltY,
297 pointer.distance, pointer.toolType, toString(pointer.isHovering));
298 }
299
300 dump += StringPrintf(INDENT3 "Last Cooked Button State: 0x%08x\n",
301 mLastCookedState.buttonState);
302 dump += StringPrintf(INDENT3 "Last Cooked Touch: pointerCount=%d\n",
303 mLastCookedState.cookedPointerData.pointerCount);
304 for (uint32_t i = 0; i < mLastCookedState.cookedPointerData.pointerCount; i++) {
305 const PointerProperties& pointerProperties =
306 mLastCookedState.cookedPointerData.pointerProperties[i];
307 const PointerCoords& pointerCoords = mLastCookedState.cookedPointerData.pointerCoords[i];
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +0000308 dump += StringPrintf(INDENT4 "[%d]: id=%d, x=%0.3f, y=%0.3f, dx=%0.3f, dy=%0.3f, "
309 "pressure=%0.3f, touchMajor=%0.3f, touchMinor=%0.3f, "
310 "toolMajor=%0.3f, toolMinor=%0.3f, "
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700311 "orientation=%0.3f, tilt=%0.3f, distance=%0.3f, "
312 "toolType=%d, isHovering=%s\n",
313 i, pointerProperties.id, pointerCoords.getX(), pointerCoords.getY(),
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +0000314 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X),
315 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y),
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700316 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
317 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
318 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
319 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
320 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
321 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION),
322 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TILT),
323 pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_DISTANCE),
324 pointerProperties.toolType,
325 toString(mLastCookedState.cookedPointerData.isHovering(i)));
326 }
327
328 dump += INDENT3 "Stylus Fusion:\n";
329 dump += StringPrintf(INDENT4 "ExternalStylusConnected: %s\n",
330 toString(mExternalStylusConnected));
331 dump += StringPrintf(INDENT4 "External Stylus ID: %" PRId64 "\n", mExternalStylusId);
332 dump += StringPrintf(INDENT4 "External Stylus Data Timeout: %" PRId64 "\n",
333 mExternalStylusFusionTimeout);
334 dump += INDENT3 "External Stylus State:\n";
335 dumpStylusState(dump, mExternalStylusState);
336
Michael Wright227c5542020-07-02 18:30:52 +0100337 if (mDeviceMode == DeviceMode::POINTER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700338 dump += StringPrintf(INDENT3 "Pointer Gesture Detector:\n");
339 dump += StringPrintf(INDENT4 "XMovementScale: %0.3f\n", mPointerXMovementScale);
340 dump += StringPrintf(INDENT4 "YMovementScale: %0.3f\n", mPointerYMovementScale);
341 dump += StringPrintf(INDENT4 "XZoomScale: %0.3f\n", mPointerXZoomScale);
342 dump += StringPrintf(INDENT4 "YZoomScale: %0.3f\n", mPointerYZoomScale);
343 dump += StringPrintf(INDENT4 "MaxSwipeWidth: %f\n", mPointerGestureMaxSwipeWidth);
344 }
345}
346
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700347void TouchInputMapper::configure(nsecs_t when, const InputReaderConfiguration* config,
348 uint32_t changes) {
349 InputMapper::configure(when, config, changes);
350
351 mConfig = *config;
352
353 if (!changes) { // first time only
354 // Configure basic parameters.
355 configureParameters();
356
357 // Configure common accumulators.
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800358 mCursorScrollAccumulator.configure(getDeviceContext());
359 mTouchButtonAccumulator.configure(getDeviceContext());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700360
361 // Configure absolute axis information.
362 configureRawPointerAxes();
363
364 // Prepare input device calibration.
365 parseCalibration();
366 resolveCalibration();
367 }
368
369 if (!changes || (changes & InputReaderConfiguration::CHANGE_TOUCH_AFFINE_TRANSFORMATION)) {
370 // Update location calibration to reflect current settings
371 updateAffineTransformation();
372 }
373
374 if (!changes || (changes & InputReaderConfiguration::CHANGE_POINTER_SPEED)) {
375 // Update pointer speed.
376 mPointerVelocityControl.setParameters(mConfig.pointerVelocityControlParameters);
377 mWheelXVelocityControl.setParameters(mConfig.wheelVelocityControlParameters);
378 mWheelYVelocityControl.setParameters(mConfig.wheelVelocityControlParameters);
379 }
380
381 bool resetNeeded = false;
382 if (!changes ||
383 (changes &
384 (InputReaderConfiguration::CHANGE_DISPLAY_INFO |
Nathaniel R. Lewisd5665332018-02-22 13:31:42 -0800385 InputReaderConfiguration::CHANGE_POINTER_CAPTURE |
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700386 InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT |
387 InputReaderConfiguration::CHANGE_SHOW_TOUCHES |
388 InputReaderConfiguration::CHANGE_EXTERNAL_STYLUS_PRESENCE))) {
Prabir Pradhan1728b212021-10-19 16:00:03 -0700389 // Configure device sources, display dimensions, orientation and
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700390 // scaling factors.
Prabir Pradhan1728b212021-10-19 16:00:03 -0700391 configureInputDevice(when, &resetNeeded);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700392 }
393
394 if (changes && resetNeeded) {
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000395 // If the device needs to be reset, cancel any ongoing gestures and reset the state.
396 cancelTouch(when, when);
397 reset(when);
398
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700399 // Send reset, unless this is the first time the device has been configured,
400 // in which case the reader will call reset itself after all mappers are ready.
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000401 NotifyDeviceResetArgs args(getContext()->getNextId(), when, getDeviceId());
Siarhei Vishniakou18050092021-09-01 13:32:49 -0700402 getListener().notifyDeviceReset(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700403 }
404}
405
406void TouchInputMapper::resolveExternalStylusPresence() {
407 std::vector<InputDeviceInfo> devices;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800408 getContext()->getExternalStylusDevices(devices);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700409 mExternalStylusConnected = !devices.empty();
410
411 if (!mExternalStylusConnected) {
412 resetExternalStylus();
413 }
414}
415
416void TouchInputMapper::configureParameters() {
417 // Use the pointer presentation mode for devices that do not support distinct
418 // multitouch. The spot-based presentation relies on being able to accurately
419 // locate two or more fingers on the touch pad.
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800420 mParameters.gestureMode = getDeviceContext().hasInputProperty(INPUT_PROP_SEMI_MT)
Michael Wright227c5542020-07-02 18:30:52 +0100421 ? Parameters::GestureMode::SINGLE_TOUCH
422 : Parameters::GestureMode::MULTI_TOUCH;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700423
424 String8 gestureModeString;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800425 if (getDeviceContext().getConfiguration().tryGetProperty(String8("touch.gestureMode"),
426 gestureModeString)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700427 if (gestureModeString == "single-touch") {
Michael Wright227c5542020-07-02 18:30:52 +0100428 mParameters.gestureMode = Parameters::GestureMode::SINGLE_TOUCH;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700429 } else if (gestureModeString == "multi-touch") {
Michael Wright227c5542020-07-02 18:30:52 +0100430 mParameters.gestureMode = Parameters::GestureMode::MULTI_TOUCH;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700431 } else if (gestureModeString != "default") {
432 ALOGW("Invalid value for touch.gestureMode: '%s'", gestureModeString.string());
433 }
434 }
435
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800436 if (getDeviceContext().hasInputProperty(INPUT_PROP_DIRECT)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700437 // The device is a touch screen.
Michael Wright227c5542020-07-02 18:30:52 +0100438 mParameters.deviceType = Parameters::DeviceType::TOUCH_SCREEN;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800439 } else if (getDeviceContext().hasInputProperty(INPUT_PROP_POINTER)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700440 // The device is a pointing device like a track pad.
Michael Wright227c5542020-07-02 18:30:52 +0100441 mParameters.deviceType = Parameters::DeviceType::POINTER;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800442 } else if (getDeviceContext().hasRelativeAxis(REL_X) ||
443 getDeviceContext().hasRelativeAxis(REL_Y)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700444 // The device is a cursor device with a touch pad attached.
445 // By default don't use the touch pad to move the pointer.
Michael Wright227c5542020-07-02 18:30:52 +0100446 mParameters.deviceType = Parameters::DeviceType::TOUCH_PAD;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700447 } else {
448 // The device is a touch pad of unknown purpose.
Michael Wright227c5542020-07-02 18:30:52 +0100449 mParameters.deviceType = Parameters::DeviceType::POINTER;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700450 }
451
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800452 mParameters.hasButtonUnderPad = getDeviceContext().hasInputProperty(INPUT_PROP_BUTTONPAD);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700453
454 String8 deviceTypeString;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800455 if (getDeviceContext().getConfiguration().tryGetProperty(String8("touch.deviceType"),
456 deviceTypeString)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700457 if (deviceTypeString == "touchScreen") {
Michael Wright227c5542020-07-02 18:30:52 +0100458 mParameters.deviceType = Parameters::DeviceType::TOUCH_SCREEN;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700459 } else if (deviceTypeString == "touchPad") {
Michael Wright227c5542020-07-02 18:30:52 +0100460 mParameters.deviceType = Parameters::DeviceType::TOUCH_PAD;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700461 } else if (deviceTypeString == "touchNavigation") {
Michael Wright227c5542020-07-02 18:30:52 +0100462 mParameters.deviceType = Parameters::DeviceType::TOUCH_NAVIGATION;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700463 } else if (deviceTypeString == "pointer") {
Michael Wright227c5542020-07-02 18:30:52 +0100464 mParameters.deviceType = Parameters::DeviceType::POINTER;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700465 } else if (deviceTypeString != "default") {
466 ALOGW("Invalid value for touch.deviceType: '%s'", deviceTypeString.string());
467 }
468 }
469
Michael Wright227c5542020-07-02 18:30:52 +0100470 mParameters.orientationAware = mParameters.deviceType == Parameters::DeviceType::TOUCH_SCREEN;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800471 getDeviceContext().getConfiguration().tryGetProperty(String8("touch.orientationAware"),
472 mParameters.orientationAware);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700473
Prabir Pradhanac1c74f2021-08-20 16:09:32 -0700474 mParameters.orientation = Parameters::Orientation::ORIENTATION_0;
475 String8 orientationString;
476 if (getDeviceContext().getConfiguration().tryGetProperty(String8("touch.orientation"),
477 orientationString)) {
478 if (mParameters.deviceType != Parameters::DeviceType::TOUCH_SCREEN) {
479 ALOGW("The configuration 'touch.orientation' is only supported for touchscreens.");
480 } else if (orientationString == "ORIENTATION_90") {
481 mParameters.orientation = Parameters::Orientation::ORIENTATION_90;
482 } else if (orientationString == "ORIENTATION_180") {
483 mParameters.orientation = Parameters::Orientation::ORIENTATION_180;
484 } else if (orientationString == "ORIENTATION_270") {
485 mParameters.orientation = Parameters::Orientation::ORIENTATION_270;
486 } else if (orientationString != "ORIENTATION_0") {
487 ALOGW("Invalid value for touch.orientation: '%s'", orientationString.string());
488 }
489 }
490
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700491 mParameters.hasAssociatedDisplay = false;
492 mParameters.associatedDisplayIsExternal = false;
493 if (mParameters.orientationAware ||
Michael Wright227c5542020-07-02 18:30:52 +0100494 mParameters.deviceType == Parameters::DeviceType::TOUCH_SCREEN ||
495 mParameters.deviceType == Parameters::DeviceType::POINTER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700496 mParameters.hasAssociatedDisplay = true;
Michael Wright227c5542020-07-02 18:30:52 +0100497 if (mParameters.deviceType == Parameters::DeviceType::TOUCH_SCREEN) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800498 mParameters.associatedDisplayIsExternal = getDeviceContext().isExternal();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700499 String8 uniqueDisplayId;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800500 getDeviceContext().getConfiguration().tryGetProperty(String8("touch.displayId"),
501 uniqueDisplayId);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700502 mParameters.uniqueDisplayId = uniqueDisplayId.c_str();
503 }
504 }
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800505 if (getDeviceContext().getAssociatedDisplayPort()) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700506 mParameters.hasAssociatedDisplay = true;
507 }
508
509 // Initial downs on external touch devices should wake the device.
510 // Normally we don't do this for internal touch screens to prevent them from waking
511 // up in your pocket but you can enable it using the input device configuration.
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800512 mParameters.wake = getDeviceContext().isExternal();
513 getDeviceContext().getConfiguration().tryGetProperty(String8("touch.wake"), mParameters.wake);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700514}
515
516void TouchInputMapper::dumpParameters(std::string& dump) {
517 dump += INDENT3 "Parameters:\n";
518
Dominik Laskowski75788452021-02-09 18:51:25 -0800519 dump += INDENT4 "GestureMode: " + ftl::enum_string(mParameters.gestureMode) + "\n";
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700520
Dominik Laskowski75788452021-02-09 18:51:25 -0800521 dump += INDENT4 "DeviceType: " + ftl::enum_string(mParameters.deviceType) + "\n";
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700522
523 dump += StringPrintf(INDENT4 "AssociatedDisplay: hasAssociatedDisplay=%s, isExternal=%s, "
524 "displayId='%s'\n",
525 toString(mParameters.hasAssociatedDisplay),
526 toString(mParameters.associatedDisplayIsExternal),
527 mParameters.uniqueDisplayId.c_str());
528 dump += StringPrintf(INDENT4 "OrientationAware: %s\n", toString(mParameters.orientationAware));
Dominik Laskowski75788452021-02-09 18:51:25 -0800529 dump += INDENT4 "Orientation: " + ftl::enum_string(mParameters.orientation) + "\n";
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700530}
531
532void TouchInputMapper::configureRawPointerAxes() {
533 mRawPointerAxes.clear();
534}
535
536void TouchInputMapper::dumpRawPointerAxes(std::string& dump) {
537 dump += INDENT3 "Raw Touch Axes:\n";
538 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.x, "X");
539 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.y, "Y");
540 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.pressure, "Pressure");
541 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMajor, "TouchMajor");
542 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMinor, "TouchMinor");
543 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.toolMajor, "ToolMajor");
544 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.toolMinor, "ToolMinor");
545 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.orientation, "Orientation");
546 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.distance, "Distance");
547 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.tiltX, "TiltX");
548 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.tiltY, "TiltY");
549 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.trackingId, "TrackingId");
550 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.slot, "Slot");
551}
552
553bool TouchInputMapper::hasExternalStylus() const {
554 return mExternalStylusConnected;
555}
556
557/**
558 * Determine which DisplayViewport to use.
Arthur Hung6d5b4b22022-01-21 07:21:10 +0000559 * 1. If a device has associated display, get the matching viewport.
Garfield Tan888a6a42020-01-09 11:39:16 -0800560 * 2. Always use the suggested viewport from WindowManagerService for pointers.
Arthur Hung6d5b4b22022-01-21 07:21:10 +0000561 * 3. Get the matching viewport by either unique id in idc file or by the display type
562 * (internal or external).
Garfield Tan888a6a42020-01-09 11:39:16 -0800563 * 4. Otherwise, use a non-display viewport.
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700564 */
565std::optional<DisplayViewport> TouchInputMapper::findViewport() {
Nathaniel R. Lewisd5665332018-02-22 13:31:42 -0800566 if (mParameters.hasAssociatedDisplay && mDeviceMode != DeviceMode::UNSCALED) {
Arthur Hung6d5b4b22022-01-21 07:21:10 +0000567 if (getDeviceContext().getAssociatedViewport()) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800568 return getDeviceContext().getAssociatedViewport();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700569 }
570
Christine Franks2a2293c2022-01-18 11:51:16 -0800571 const std::optional<std::string> associatedDisplayUniqueId =
572 getDeviceContext().getAssociatedDisplayUniqueId();
573 if (associatedDisplayUniqueId) {
574 return getDeviceContext().getAssociatedViewport();
575 }
576
Michael Wright227c5542020-07-02 18:30:52 +0100577 if (mDeviceMode == DeviceMode::POINTER) {
Garfield Tan888a6a42020-01-09 11:39:16 -0800578 std::optional<DisplayViewport> viewport =
579 mConfig.getDisplayViewportById(mConfig.defaultPointerDisplayId);
580 if (viewport) {
581 return viewport;
582 } else {
583 ALOGW("Can't find designated display viewport with ID %" PRId32 " for pointers.",
584 mConfig.defaultPointerDisplayId);
585 }
586 }
587
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700588 // Check if uniqueDisplayId is specified in idc file.
589 if (!mParameters.uniqueDisplayId.empty()) {
590 return mConfig.getDisplayViewportByUniqueId(mParameters.uniqueDisplayId);
591 }
592
593 ViewportType viewportTypeToUse;
594 if (mParameters.associatedDisplayIsExternal) {
Michael Wrightfe3de7d2020-07-02 19:05:30 +0100595 viewportTypeToUse = ViewportType::EXTERNAL;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700596 } else {
Michael Wrightfe3de7d2020-07-02 19:05:30 +0100597 viewportTypeToUse = ViewportType::INTERNAL;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700598 }
599
600 std::optional<DisplayViewport> viewport =
601 mConfig.getDisplayViewportByType(viewportTypeToUse);
Michael Wrightfe3de7d2020-07-02 19:05:30 +0100602 if (!viewport && viewportTypeToUse == ViewportType::EXTERNAL) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700603 ALOGW("Input device %s should be associated with external display, "
604 "fallback to internal one for the external viewport is not found.",
605 getDeviceName().c_str());
Michael Wrightfe3de7d2020-07-02 19:05:30 +0100606 viewport = mConfig.getDisplayViewportByType(ViewportType::INTERNAL);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700607 }
608
609 return viewport;
610 }
611
612 // No associated display, return a non-display viewport.
613 DisplayViewport newViewport;
614 // Raw width and height in the natural orientation.
615 int32_t rawWidth = mRawPointerAxes.getRawWidth();
616 int32_t rawHeight = mRawPointerAxes.getRawHeight();
617 newViewport.setNonDisplayViewport(rawWidth, rawHeight);
618 return std::make_optional(newViewport);
619}
620
Siarhei Vishniakou12c0fcb2021-12-17 13:40:44 -0800621int32_t TouchInputMapper::clampResolution(const char* axisName, int32_t resolution) const {
622 if (resolution < 0) {
623 ALOGE("Invalid %s resolution %" PRId32 " for device %s", axisName, resolution,
624 getDeviceName().c_str());
625 return 0;
626 }
627 return resolution;
628}
629
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -0800630void TouchInputMapper::initializeSizeRanges() {
631 if (mCalibration.sizeCalibration == Calibration::SizeCalibration::NONE) {
632 mSizeScale = 0.0f;
633 return;
634 }
635
636 // Size of diagonal axis.
637 const float diagonalSize = hypotf(mDisplayWidth, mDisplayHeight);
638
639 // Size factors.
640 if (mRawPointerAxes.touchMajor.valid && mRawPointerAxes.touchMajor.maxValue != 0) {
641 mSizeScale = 1.0f / mRawPointerAxes.touchMajor.maxValue;
642 } else if (mRawPointerAxes.toolMajor.valid && mRawPointerAxes.toolMajor.maxValue != 0) {
643 mSizeScale = 1.0f / mRawPointerAxes.toolMajor.maxValue;
644 } else {
645 mSizeScale = 0.0f;
646 }
647
648 mOrientedRanges.haveTouchSize = true;
649 mOrientedRanges.haveToolSize = true;
650 mOrientedRanges.haveSize = true;
651
652 mOrientedRanges.touchMajor.axis = AMOTION_EVENT_AXIS_TOUCH_MAJOR;
653 mOrientedRanges.touchMajor.source = mSource;
654 mOrientedRanges.touchMajor.min = 0;
655 mOrientedRanges.touchMajor.max = diagonalSize;
656 mOrientedRanges.touchMajor.flat = 0;
657 mOrientedRanges.touchMajor.fuzz = 0;
658 mOrientedRanges.touchMajor.resolution = 0;
Siarhei Vishniakou12c0fcb2021-12-17 13:40:44 -0800659 if (mRawPointerAxes.touchMajor.valid) {
660 mRawPointerAxes.touchMajor.resolution =
661 clampResolution("touchMajor", mRawPointerAxes.touchMajor.resolution);
662 mOrientedRanges.touchMajor.resolution = mRawPointerAxes.touchMajor.resolution;
663 }
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -0800664
665 mOrientedRanges.touchMinor = mOrientedRanges.touchMajor;
666 mOrientedRanges.touchMinor.axis = AMOTION_EVENT_AXIS_TOUCH_MINOR;
Siarhei Vishniakou12c0fcb2021-12-17 13:40:44 -0800667 if (mRawPointerAxes.touchMinor.valid) {
668 mRawPointerAxes.touchMinor.resolution =
669 clampResolution("touchMinor", mRawPointerAxes.touchMinor.resolution);
670 mOrientedRanges.touchMinor.resolution = mRawPointerAxes.touchMinor.resolution;
671 }
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -0800672
673 mOrientedRanges.toolMajor.axis = AMOTION_EVENT_AXIS_TOOL_MAJOR;
674 mOrientedRanges.toolMajor.source = mSource;
675 mOrientedRanges.toolMajor.min = 0;
676 mOrientedRanges.toolMajor.max = diagonalSize;
677 mOrientedRanges.toolMajor.flat = 0;
678 mOrientedRanges.toolMajor.fuzz = 0;
679 mOrientedRanges.toolMajor.resolution = 0;
Siarhei Vishniakou12c0fcb2021-12-17 13:40:44 -0800680 if (mRawPointerAxes.toolMajor.valid) {
681 mRawPointerAxes.toolMajor.resolution =
682 clampResolution("toolMajor", mRawPointerAxes.toolMajor.resolution);
683 mOrientedRanges.toolMajor.resolution = mRawPointerAxes.toolMajor.resolution;
684 }
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -0800685
686 mOrientedRanges.toolMinor = mOrientedRanges.toolMajor;
687 mOrientedRanges.toolMinor.axis = AMOTION_EVENT_AXIS_TOOL_MINOR;
Siarhei Vishniakou12c0fcb2021-12-17 13:40:44 -0800688 if (mRawPointerAxes.toolMinor.valid) {
689 mRawPointerAxes.toolMinor.resolution =
690 clampResolution("toolMinor", mRawPointerAxes.toolMinor.resolution);
691 mOrientedRanges.toolMinor.resolution = mRawPointerAxes.toolMinor.resolution;
692 }
693
694 if (mCalibration.sizeCalibration == Calibration::SizeCalibration::GEOMETRIC) {
695 mOrientedRanges.touchMajor.resolution *= mGeometricScale;
696 mOrientedRanges.touchMinor.resolution *= mGeometricScale;
697 mOrientedRanges.toolMajor.resolution *= mGeometricScale;
698 mOrientedRanges.toolMinor.resolution *= mGeometricScale;
699 } else {
700 // Support for other calibrations can be added here.
701 ALOGW("%s calibration is not supported for size ranges at the moment. "
702 "Using raw resolution instead",
703 ftl::enum_string(mCalibration.sizeCalibration).c_str());
704 }
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -0800705
706 mOrientedRanges.size.axis = AMOTION_EVENT_AXIS_SIZE;
707 mOrientedRanges.size.source = mSource;
708 mOrientedRanges.size.min = 0;
709 mOrientedRanges.size.max = 1.0;
710 mOrientedRanges.size.flat = 0;
711 mOrientedRanges.size.fuzz = 0;
712 mOrientedRanges.size.resolution = 0;
713}
714
715void TouchInputMapper::initializeOrientedRanges() {
716 // Configure X and Y factors.
717 mXScale = float(mDisplayWidth) / mRawPointerAxes.getRawWidth();
718 mYScale = float(mDisplayHeight) / mRawPointerAxes.getRawHeight();
719 mXPrecision = 1.0f / mXScale;
720 mYPrecision = 1.0f / mYScale;
721
722 mOrientedRanges.x.axis = AMOTION_EVENT_AXIS_X;
723 mOrientedRanges.x.source = mSource;
724 mOrientedRanges.y.axis = AMOTION_EVENT_AXIS_Y;
725 mOrientedRanges.y.source = mSource;
726
727 // Scale factor for terms that are not oriented in a particular axis.
728 // If the pixels are square then xScale == yScale otherwise we fake it
729 // by choosing an average.
730 mGeometricScale = avg(mXScale, mYScale);
731
732 initializeSizeRanges();
733
734 // Pressure factors.
735 mPressureScale = 0;
736 float pressureMax = 1.0;
737 if (mCalibration.pressureCalibration == Calibration::PressureCalibration::PHYSICAL ||
738 mCalibration.pressureCalibration == Calibration::PressureCalibration::AMPLITUDE) {
739 if (mCalibration.havePressureScale) {
740 mPressureScale = mCalibration.pressureScale;
741 pressureMax = mPressureScale * mRawPointerAxes.pressure.maxValue;
742 } else if (mRawPointerAxes.pressure.valid && mRawPointerAxes.pressure.maxValue != 0) {
743 mPressureScale = 1.0f / mRawPointerAxes.pressure.maxValue;
744 }
745 }
746
747 mOrientedRanges.pressure.axis = AMOTION_EVENT_AXIS_PRESSURE;
748 mOrientedRanges.pressure.source = mSource;
749 mOrientedRanges.pressure.min = 0;
750 mOrientedRanges.pressure.max = pressureMax;
751 mOrientedRanges.pressure.flat = 0;
752 mOrientedRanges.pressure.fuzz = 0;
753 mOrientedRanges.pressure.resolution = 0;
754
755 // Tilt
756 mTiltXCenter = 0;
757 mTiltXScale = 0;
758 mTiltYCenter = 0;
759 mTiltYScale = 0;
760 mHaveTilt = mRawPointerAxes.tiltX.valid && mRawPointerAxes.tiltY.valid;
761 if (mHaveTilt) {
762 mTiltXCenter = avg(mRawPointerAxes.tiltX.minValue, mRawPointerAxes.tiltX.maxValue);
763 mTiltYCenter = avg(mRawPointerAxes.tiltY.minValue, mRawPointerAxes.tiltY.maxValue);
764 mTiltXScale = M_PI / 180;
765 mTiltYScale = M_PI / 180;
766
767 if (mRawPointerAxes.tiltX.resolution) {
768 mTiltXScale = 1.0 / mRawPointerAxes.tiltX.resolution;
769 }
770 if (mRawPointerAxes.tiltY.resolution) {
771 mTiltYScale = 1.0 / mRawPointerAxes.tiltY.resolution;
772 }
773
774 mOrientedRanges.haveTilt = true;
775
776 mOrientedRanges.tilt.axis = AMOTION_EVENT_AXIS_TILT;
777 mOrientedRanges.tilt.source = mSource;
778 mOrientedRanges.tilt.min = 0;
779 mOrientedRanges.tilt.max = M_PI_2;
780 mOrientedRanges.tilt.flat = 0;
781 mOrientedRanges.tilt.fuzz = 0;
782 mOrientedRanges.tilt.resolution = 0;
783 }
784
785 // Orientation
786 mOrientationScale = 0;
787 if (mHaveTilt) {
788 mOrientedRanges.haveOrientation = true;
789
790 mOrientedRanges.orientation.axis = AMOTION_EVENT_AXIS_ORIENTATION;
791 mOrientedRanges.orientation.source = mSource;
792 mOrientedRanges.orientation.min = -M_PI;
793 mOrientedRanges.orientation.max = M_PI;
794 mOrientedRanges.orientation.flat = 0;
795 mOrientedRanges.orientation.fuzz = 0;
796 mOrientedRanges.orientation.resolution = 0;
797 } else if (mCalibration.orientationCalibration != Calibration::OrientationCalibration::NONE) {
798 if (mCalibration.orientationCalibration ==
799 Calibration::OrientationCalibration::INTERPOLATED) {
800 if (mRawPointerAxes.orientation.valid) {
801 if (mRawPointerAxes.orientation.maxValue > 0) {
802 mOrientationScale = M_PI_2 / mRawPointerAxes.orientation.maxValue;
803 } else if (mRawPointerAxes.orientation.minValue < 0) {
804 mOrientationScale = -M_PI_2 / mRawPointerAxes.orientation.minValue;
805 } else {
806 mOrientationScale = 0;
807 }
808 }
809 }
810
811 mOrientedRanges.haveOrientation = true;
812
813 mOrientedRanges.orientation.axis = AMOTION_EVENT_AXIS_ORIENTATION;
814 mOrientedRanges.orientation.source = mSource;
815 mOrientedRanges.orientation.min = -M_PI_2;
816 mOrientedRanges.orientation.max = M_PI_2;
817 mOrientedRanges.orientation.flat = 0;
818 mOrientedRanges.orientation.fuzz = 0;
819 mOrientedRanges.orientation.resolution = 0;
820 }
821
822 // Distance
823 mDistanceScale = 0;
824 if (mCalibration.distanceCalibration != Calibration::DistanceCalibration::NONE) {
825 if (mCalibration.distanceCalibration == Calibration::DistanceCalibration::SCALED) {
826 if (mCalibration.haveDistanceScale) {
827 mDistanceScale = mCalibration.distanceScale;
828 } else {
829 mDistanceScale = 1.0f;
830 }
831 }
832
833 mOrientedRanges.haveDistance = true;
834
835 mOrientedRanges.distance.axis = AMOTION_EVENT_AXIS_DISTANCE;
836 mOrientedRanges.distance.source = mSource;
837 mOrientedRanges.distance.min = mRawPointerAxes.distance.minValue * mDistanceScale;
838 mOrientedRanges.distance.max = mRawPointerAxes.distance.maxValue * mDistanceScale;
839 mOrientedRanges.distance.flat = 0;
840 mOrientedRanges.distance.fuzz = mRawPointerAxes.distance.fuzz * mDistanceScale;
841 mOrientedRanges.distance.resolution = 0;
842 }
843
844 // Compute oriented precision, scales and ranges.
845 // Note that the maximum value reported is an inclusive maximum value so it is one
846 // unit less than the total width or height of the display.
847 switch (mInputDeviceOrientation) {
848 case DISPLAY_ORIENTATION_90:
849 case DISPLAY_ORIENTATION_270:
850 mOrientedXPrecision = mYPrecision;
851 mOrientedYPrecision = mXPrecision;
852
853 mOrientedRanges.x.min = 0;
854 mOrientedRanges.x.max = mDisplayHeight - 1;
855 mOrientedRanges.x.flat = 0;
856 mOrientedRanges.x.fuzz = 0;
857 mOrientedRanges.x.resolution = mRawPointerAxes.y.resolution * mYScale;
858
859 mOrientedRanges.y.min = 0;
860 mOrientedRanges.y.max = mDisplayWidth - 1;
861 mOrientedRanges.y.flat = 0;
862 mOrientedRanges.y.fuzz = 0;
863 mOrientedRanges.y.resolution = mRawPointerAxes.x.resolution * mXScale;
864 break;
865
866 default:
867 mOrientedXPrecision = mXPrecision;
868 mOrientedYPrecision = mYPrecision;
869
870 mOrientedRanges.x.min = 0;
871 mOrientedRanges.x.max = mDisplayWidth - 1;
872 mOrientedRanges.x.flat = 0;
873 mOrientedRanges.x.fuzz = 0;
874 mOrientedRanges.x.resolution = mRawPointerAxes.x.resolution * mXScale;
875
876 mOrientedRanges.y.min = 0;
877 mOrientedRanges.y.max = mDisplayHeight - 1;
878 mOrientedRanges.y.flat = 0;
879 mOrientedRanges.y.fuzz = 0;
880 mOrientedRanges.y.resolution = mRawPointerAxes.y.resolution * mYScale;
881 break;
882 }
883}
884
Prabir Pradhan1728b212021-10-19 16:00:03 -0700885void TouchInputMapper::configureInputDevice(nsecs_t when, bool* outResetNeeded) {
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000886 const DeviceMode oldDeviceMode = mDeviceMode;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700887
888 resolveExternalStylusPresence();
889
890 // Determine device mode.
Michael Wright227c5542020-07-02 18:30:52 +0100891 if (mParameters.deviceType == Parameters::DeviceType::POINTER &&
Prabir Pradhan5cc1a692021-08-06 14:01:18 +0000892 mConfig.pointerGesturesEnabled && !mConfig.pointerCaptureRequest.enable) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700893 mSource = AINPUT_SOURCE_MOUSE;
Michael Wright227c5542020-07-02 18:30:52 +0100894 mDeviceMode = DeviceMode::POINTER;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700895 if (hasStylus()) {
896 mSource |= AINPUT_SOURCE_STYLUS;
897 }
Garfield Tanc734e4f2021-01-15 20:01:39 -0800898 } else if (isTouchScreen()) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700899 mSource = AINPUT_SOURCE_TOUCHSCREEN;
Michael Wright227c5542020-07-02 18:30:52 +0100900 mDeviceMode = DeviceMode::DIRECT;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700901 if (hasStylus()) {
902 mSource |= AINPUT_SOURCE_STYLUS;
903 }
904 if (hasExternalStylus()) {
905 mSource |= AINPUT_SOURCE_BLUETOOTH_STYLUS;
906 }
Michael Wright227c5542020-07-02 18:30:52 +0100907 } else if (mParameters.deviceType == Parameters::DeviceType::TOUCH_NAVIGATION) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700908 mSource = AINPUT_SOURCE_TOUCH_NAVIGATION;
Michael Wright227c5542020-07-02 18:30:52 +0100909 mDeviceMode = DeviceMode::NAVIGATION;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700910 } else {
911 mSource = AINPUT_SOURCE_TOUCHPAD;
Michael Wright227c5542020-07-02 18:30:52 +0100912 mDeviceMode = DeviceMode::UNSCALED;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700913 }
914
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000915 const std::optional<DisplayViewport> newViewportOpt = findViewport();
916
917 // Ensure the device is valid and can be used.
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700918 if (!mRawPointerAxes.x.valid || !mRawPointerAxes.y.valid) {
919 ALOGW("Touch device '%s' did not report support for X or Y axis! "
920 "The device will be inoperable.",
921 getDeviceName().c_str());
Michael Wright227c5542020-07-02 18:30:52 +0100922 mDeviceMode = DeviceMode::DISABLED;
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000923 } else if (!newViewportOpt) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700924 ALOGI("Touch device '%s' could not query the properties of its associated "
925 "display. The device will be inoperable until the display size "
926 "becomes available.",
927 getDeviceName().c_str());
Michael Wright227c5542020-07-02 18:30:52 +0100928 mDeviceMode = DeviceMode::DISABLED;
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000929 } else if (!newViewportOpt->isActive) {
Siarhei Vishniakou6f778462020-12-09 23:39:07 +0000930 ALOGI("Disabling %s (device %i) because the associated viewport is not active",
931 getDeviceName().c_str(), getDeviceId());
932 mDeviceMode = DeviceMode::DISABLED;
Siarhei Vishniakou6f778462020-12-09 23:39:07 +0000933 }
934
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700935 // Raw width and height in the natural orientation.
Prabir Pradhan1728b212021-10-19 16:00:03 -0700936 const int32_t rawWidth = mRawPointerAxes.getRawWidth();
937 const int32_t rawHeight = mRawPointerAxes.getRawHeight();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700938
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000939 const DisplayViewport& newViewport = newViewportOpt.value_or(kUninitializedViewport);
940 const bool viewportChanged = mViewport != newViewport;
Prabir Pradhan93a0f912021-04-21 13:47:42 -0700941 bool skipViewportUpdate = false;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700942 if (viewportChanged) {
Prabir Pradhanf670dad2022-08-05 22:32:11 +0000943 const bool viewportOrientationChanged = mViewport.orientation != newViewport.orientation;
944 const bool viewportDisplayIdChanged = mViewport.displayId != newViewport.displayId;
945 mViewport = newViewport;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700946
Michael Wright227c5542020-07-02 18:30:52 +0100947 if (mDeviceMode == DeviceMode::DIRECT || mDeviceMode == DeviceMode::POINTER) {
Prabir Pradhan1728b212021-10-19 16:00:03 -0700948 // Convert rotated viewport to the natural orientation.
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700949 int32_t naturalPhysicalWidth, naturalPhysicalHeight;
950 int32_t naturalPhysicalLeft, naturalPhysicalTop;
951 int32_t naturalDeviceWidth, naturalDeviceHeight;
Prabir Pradhanac1c74f2021-08-20 16:09:32 -0700952
Prabir Pradhan1728b212021-10-19 16:00:03 -0700953 // Apply the inverse of the input device orientation so that the input device is
954 // configured in the same orientation as the viewport. The input device orientation will
955 // be re-applied by mInputDeviceOrientation.
956 const int32_t naturalDeviceOrientation =
Prabir Pradhanac1c74f2021-08-20 16:09:32 -0700957 (mViewport.orientation - static_cast<int32_t>(mParameters.orientation) + 4) % 4;
Prabir Pradhan1728b212021-10-19 16:00:03 -0700958 switch (naturalDeviceOrientation) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700959 case DISPLAY_ORIENTATION_90:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700960 naturalPhysicalWidth = mViewport.physicalBottom - mViewport.physicalTop;
961 naturalPhysicalHeight = mViewport.physicalRight - mViewport.physicalLeft;
Arthur Hung4197f6b2020-03-16 15:39:59 +0800962 naturalPhysicalLeft = mViewport.deviceHeight - mViewport.physicalBottom;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700963 naturalPhysicalTop = mViewport.physicalLeft;
964 naturalDeviceWidth = mViewport.deviceHeight;
965 naturalDeviceHeight = mViewport.deviceWidth;
966 break;
967 case DISPLAY_ORIENTATION_180:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700968 naturalPhysicalWidth = mViewport.physicalRight - mViewport.physicalLeft;
969 naturalPhysicalHeight = mViewport.physicalBottom - mViewport.physicalTop;
970 naturalPhysicalLeft = mViewport.deviceWidth - mViewport.physicalRight;
971 naturalPhysicalTop = mViewport.deviceHeight - mViewport.physicalBottom;
972 naturalDeviceWidth = mViewport.deviceWidth;
973 naturalDeviceHeight = mViewport.deviceHeight;
974 break;
975 case DISPLAY_ORIENTATION_270:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700976 naturalPhysicalWidth = mViewport.physicalBottom - mViewport.physicalTop;
977 naturalPhysicalHeight = mViewport.physicalRight - mViewport.physicalLeft;
978 naturalPhysicalLeft = mViewport.physicalTop;
Arthur Hung4197f6b2020-03-16 15:39:59 +0800979 naturalPhysicalTop = mViewport.deviceWidth - mViewport.physicalRight;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700980 naturalDeviceWidth = mViewport.deviceHeight;
981 naturalDeviceHeight = mViewport.deviceWidth;
982 break;
983 case DISPLAY_ORIENTATION_0:
984 default:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700985 naturalPhysicalWidth = mViewport.physicalRight - mViewport.physicalLeft;
986 naturalPhysicalHeight = mViewport.physicalBottom - mViewport.physicalTop;
987 naturalPhysicalLeft = mViewport.physicalLeft;
988 naturalPhysicalTop = mViewport.physicalTop;
989 naturalDeviceWidth = mViewport.deviceWidth;
990 naturalDeviceHeight = mViewport.deviceHeight;
991 break;
992 }
993
994 if (naturalPhysicalHeight == 0 || naturalPhysicalWidth == 0) {
995 ALOGE("Viewport is not set properly: %s", mViewport.toString().c_str());
996 naturalPhysicalHeight = naturalPhysicalHeight == 0 ? 1 : naturalPhysicalHeight;
997 naturalPhysicalWidth = naturalPhysicalWidth == 0 ? 1 : naturalPhysicalWidth;
998 }
999
1000 mPhysicalWidth = naturalPhysicalWidth;
1001 mPhysicalHeight = naturalPhysicalHeight;
1002 mPhysicalLeft = naturalPhysicalLeft;
1003 mPhysicalTop = naturalPhysicalTop;
1004
Prabir Pradhan1728b212021-10-19 16:00:03 -07001005 const int32_t oldDisplayWidth = mDisplayWidth;
1006 const int32_t oldDisplayHeight = mDisplayHeight;
1007 mDisplayWidth = naturalDeviceWidth;
1008 mDisplayHeight = naturalDeviceHeight;
Prabir Pradhan5632d622021-09-06 07:57:20 -07001009
Prabir Pradhan8b89c2f2021-07-29 16:30:14 +00001010 // InputReader works in the un-rotated display coordinate space, so we don't need to do
1011 // anything if the device is already orientation-aware. If the device is not
1012 // orientation-aware, then we need to apply the inverse rotation of the display so that
1013 // when the display rotation is applied later as a part of the per-window transform, we
1014 // get the expected screen coordinates.
Prabir Pradhan1728b212021-10-19 16:00:03 -07001015 mInputDeviceOrientation = mParameters.orientationAware
Prabir Pradhan8b89c2f2021-07-29 16:30:14 +00001016 ? DISPLAY_ORIENTATION_0
1017 : getInverseRotation(mViewport.orientation);
1018 // For orientation-aware devices that work in the un-rotated coordinate space, the
1019 // viewport update should be skipped if it is only a change in the orientation.
lilinnane74b35f2022-07-19 16:00:50 +08001020 skipViewportUpdate = !viewportDisplayIdChanged && mParameters.orientationAware &&
1021 mDisplayWidth == oldDisplayWidth && mDisplayHeight == oldDisplayHeight &&
1022 viewportOrientationChanged;
Prabir Pradhanac1c74f2021-08-20 16:09:32 -07001023
1024 // Apply the input device orientation for the device.
Prabir Pradhan1728b212021-10-19 16:00:03 -07001025 mInputDeviceOrientation =
1026 (mInputDeviceOrientation + static_cast<int32_t>(mParameters.orientation)) % 4;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001027 } else {
1028 mPhysicalWidth = rawWidth;
1029 mPhysicalHeight = rawHeight;
1030 mPhysicalLeft = 0;
1031 mPhysicalTop = 0;
1032
Prabir Pradhan1728b212021-10-19 16:00:03 -07001033 mDisplayWidth = rawWidth;
1034 mDisplayHeight = rawHeight;
1035 mInputDeviceOrientation = DISPLAY_ORIENTATION_0;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001036 }
1037 }
1038
1039 // If moving between pointer modes, need to reset some state.
1040 bool deviceModeChanged = mDeviceMode != oldDeviceMode;
1041 if (deviceModeChanged) {
1042 mOrientedRanges.clear();
1043 }
1044
Prabir Pradhan59ecc3b2020-11-20 13:11:47 -08001045 // Create pointer controller if needed, and keep it around if Pointer Capture is enabled to
1046 // preserve the cursor position.
Michael Wright227c5542020-07-02 18:30:52 +01001047 if (mDeviceMode == DeviceMode::POINTER ||
Prabir Pradhan59ecc3b2020-11-20 13:11:47 -08001048 (mDeviceMode == DeviceMode::DIRECT && mConfig.showTouches) ||
Prabir Pradhan5cc1a692021-08-06 14:01:18 +00001049 (mParameters.deviceType == Parameters::DeviceType::POINTER &&
1050 mConfig.pointerCaptureRequest.enable)) {
Prabir Pradhanc7ef27e2020-02-03 19:19:15 -08001051 if (mPointerController == nullptr) {
1052 mPointerController = getContext()->getPointerController(getDeviceId());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001053 }
Prabir Pradhan5cc1a692021-08-06 14:01:18 +00001054 if (mConfig.pointerCaptureRequest.enable) {
Prabir Pradhan59ecc3b2020-11-20 13:11:47 -08001055 mPointerController->fade(PointerControllerInterface::Transition::IMMEDIATE);
1056 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001057 } else {
Michael Wright17db18e2020-06-26 20:51:44 +01001058 mPointerController.reset();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001059 }
1060
Prabir Pradhan93a0f912021-04-21 13:47:42 -07001061 if ((viewportChanged && !skipViewportUpdate) || deviceModeChanged) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001062 ALOGI("Device reconfigured: id=%d, name='%s', size %dx%d, orientation %d, mode %d, "
1063 "display id %d",
Prabir Pradhan1728b212021-10-19 16:00:03 -07001064 getDeviceId(), getDeviceName().c_str(), mDisplayWidth, mDisplayHeight,
1065 mInputDeviceOrientation, mDeviceMode, mViewport.displayId);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001066
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001067 configureVirtualKeys();
1068
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -08001069 initializeOrientedRanges();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001070
1071 // Location
1072 updateAffineTransformation();
1073
Michael Wright227c5542020-07-02 18:30:52 +01001074 if (mDeviceMode == DeviceMode::POINTER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001075 // Compute pointer gesture detection parameters.
1076 float rawDiagonal = hypotf(rawWidth, rawHeight);
Prabir Pradhan1728b212021-10-19 16:00:03 -07001077 float displayDiagonal = hypotf(mDisplayWidth, mDisplayHeight);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001078
1079 // Scale movements such that one whole swipe of the touch pad covers a
1080 // given area relative to the diagonal size of the display when no acceleration
1081 // is applied.
1082 // Assume that the touch pad has a square aspect ratio such that movements in
1083 // X and Y of the same number of raw units cover the same physical distance.
1084 mPointerXMovementScale =
1085 mConfig.pointerGestureMovementSpeedRatio * displayDiagonal / rawDiagonal;
1086 mPointerYMovementScale = mPointerXMovementScale;
1087
1088 // Scale zooms to cover a smaller range of the display than movements do.
1089 // This value determines the area around the pointer that is affected by freeform
1090 // pointer gestures.
1091 mPointerXZoomScale =
1092 mConfig.pointerGestureZoomSpeedRatio * displayDiagonal / rawDiagonal;
1093 mPointerYZoomScale = mPointerXZoomScale;
1094
1095 // Max width between pointers to detect a swipe gesture is more than some fraction
1096 // of the diagonal axis of the touch pad. Touches that are wider than this are
1097 // translated into freeform gestures.
1098 mPointerGestureMaxSwipeWidth = mConfig.pointerGestureSwipeMaxWidthRatio * rawDiagonal;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001099 }
1100
1101 // Inform the dispatcher about the changes.
1102 *outResetNeeded = true;
1103 bumpGeneration();
1104 }
1105}
1106
Prabir Pradhan1728b212021-10-19 16:00:03 -07001107void TouchInputMapper::dumpDisplay(std::string& dump) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001108 dump += StringPrintf(INDENT3 "%s\n", mViewport.toString().c_str());
Prabir Pradhan1728b212021-10-19 16:00:03 -07001109 dump += StringPrintf(INDENT3 "DisplayWidth: %dpx\n", mDisplayWidth);
1110 dump += StringPrintf(INDENT3 "DisplayHeight: %dpx\n", mDisplayHeight);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001111 dump += StringPrintf(INDENT3 "PhysicalWidth: %dpx\n", mPhysicalWidth);
1112 dump += StringPrintf(INDENT3 "PhysicalHeight: %dpx\n", mPhysicalHeight);
1113 dump += StringPrintf(INDENT3 "PhysicalLeft: %d\n", mPhysicalLeft);
1114 dump += StringPrintf(INDENT3 "PhysicalTop: %d\n", mPhysicalTop);
Prabir Pradhan1728b212021-10-19 16:00:03 -07001115 dump += StringPrintf(INDENT3 "InputDeviceOrientation: %d\n", mInputDeviceOrientation);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001116}
1117
1118void TouchInputMapper::configureVirtualKeys() {
1119 std::vector<VirtualKeyDefinition> virtualKeyDefinitions;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001120 getDeviceContext().getVirtualKeyDefinitions(virtualKeyDefinitions);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001121
1122 mVirtualKeys.clear();
1123
1124 if (virtualKeyDefinitions.size() == 0) {
1125 return;
1126 }
1127
1128 int32_t touchScreenLeft = mRawPointerAxes.x.minValue;
1129 int32_t touchScreenTop = mRawPointerAxes.y.minValue;
1130 int32_t touchScreenWidth = mRawPointerAxes.getRawWidth();
1131 int32_t touchScreenHeight = mRawPointerAxes.getRawHeight();
1132
1133 for (const VirtualKeyDefinition& virtualKeyDefinition : virtualKeyDefinitions) {
1134 VirtualKey virtualKey;
1135
1136 virtualKey.scanCode = virtualKeyDefinition.scanCode;
1137 int32_t keyCode;
1138 int32_t dummyKeyMetaState;
1139 uint32_t flags;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001140 if (getDeviceContext().mapKey(virtualKey.scanCode, 0, 0, &keyCode, &dummyKeyMetaState,
1141 &flags)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001142 ALOGW(INDENT "VirtualKey %d: could not obtain key code, ignoring", virtualKey.scanCode);
1143 continue; // drop the key
1144 }
1145
1146 virtualKey.keyCode = keyCode;
1147 virtualKey.flags = flags;
1148
1149 // convert the key definition's display coordinates into touch coordinates for a hit box
1150 int32_t halfWidth = virtualKeyDefinition.width / 2;
1151 int32_t halfHeight = virtualKeyDefinition.height / 2;
1152
1153 virtualKey.hitLeft =
Prabir Pradhan1728b212021-10-19 16:00:03 -07001154 (virtualKeyDefinition.centerX - halfWidth) * touchScreenWidth / mDisplayWidth +
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001155 touchScreenLeft;
1156 virtualKey.hitRight =
Prabir Pradhan1728b212021-10-19 16:00:03 -07001157 (virtualKeyDefinition.centerX + halfWidth) * touchScreenWidth / mDisplayWidth +
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001158 touchScreenLeft;
Prabir Pradhan1728b212021-10-19 16:00:03 -07001159 virtualKey.hitTop =
1160 (virtualKeyDefinition.centerY - halfHeight) * touchScreenHeight / mDisplayHeight +
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001161 touchScreenTop;
Prabir Pradhan1728b212021-10-19 16:00:03 -07001162 virtualKey.hitBottom =
1163 (virtualKeyDefinition.centerY + halfHeight) * touchScreenHeight / mDisplayHeight +
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001164 touchScreenTop;
1165 mVirtualKeys.push_back(virtualKey);
1166 }
1167}
1168
1169void TouchInputMapper::dumpVirtualKeys(std::string& dump) {
1170 if (!mVirtualKeys.empty()) {
1171 dump += INDENT3 "Virtual Keys:\n";
1172
1173 for (size_t i = 0; i < mVirtualKeys.size(); i++) {
1174 const VirtualKey& virtualKey = mVirtualKeys[i];
1175 dump += StringPrintf(INDENT4 "%zu: scanCode=%d, keyCode=%d, "
1176 "hitLeft=%d, hitRight=%d, hitTop=%d, hitBottom=%d\n",
1177 i, virtualKey.scanCode, virtualKey.keyCode, virtualKey.hitLeft,
1178 virtualKey.hitRight, virtualKey.hitTop, virtualKey.hitBottom);
1179 }
1180 }
1181}
1182
1183void TouchInputMapper::parseCalibration() {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001184 const PropertyMap& in = getDeviceContext().getConfiguration();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001185 Calibration& out = mCalibration;
1186
1187 // Size
Michael Wright227c5542020-07-02 18:30:52 +01001188 out.sizeCalibration = Calibration::SizeCalibration::DEFAULT;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001189 String8 sizeCalibrationString;
1190 if (in.tryGetProperty(String8("touch.size.calibration"), sizeCalibrationString)) {
1191 if (sizeCalibrationString == "none") {
Michael Wright227c5542020-07-02 18:30:52 +01001192 out.sizeCalibration = Calibration::SizeCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001193 } else if (sizeCalibrationString == "geometric") {
Michael Wright227c5542020-07-02 18:30:52 +01001194 out.sizeCalibration = Calibration::SizeCalibration::GEOMETRIC;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001195 } else if (sizeCalibrationString == "diameter") {
Michael Wright227c5542020-07-02 18:30:52 +01001196 out.sizeCalibration = Calibration::SizeCalibration::DIAMETER;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001197 } else if (sizeCalibrationString == "box") {
Michael Wright227c5542020-07-02 18:30:52 +01001198 out.sizeCalibration = Calibration::SizeCalibration::BOX;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001199 } else if (sizeCalibrationString == "area") {
Michael Wright227c5542020-07-02 18:30:52 +01001200 out.sizeCalibration = Calibration::SizeCalibration::AREA;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001201 } else if (sizeCalibrationString != "default") {
1202 ALOGW("Invalid value for touch.size.calibration: '%s'", sizeCalibrationString.string());
1203 }
1204 }
1205
1206 out.haveSizeScale = in.tryGetProperty(String8("touch.size.scale"), out.sizeScale);
1207 out.haveSizeBias = in.tryGetProperty(String8("touch.size.bias"), out.sizeBias);
1208 out.haveSizeIsSummed = in.tryGetProperty(String8("touch.size.isSummed"), out.sizeIsSummed);
1209
1210 // Pressure
Michael Wright227c5542020-07-02 18:30:52 +01001211 out.pressureCalibration = Calibration::PressureCalibration::DEFAULT;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001212 String8 pressureCalibrationString;
1213 if (in.tryGetProperty(String8("touch.pressure.calibration"), pressureCalibrationString)) {
1214 if (pressureCalibrationString == "none") {
Michael Wright227c5542020-07-02 18:30:52 +01001215 out.pressureCalibration = Calibration::PressureCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001216 } else if (pressureCalibrationString == "physical") {
Michael Wright227c5542020-07-02 18:30:52 +01001217 out.pressureCalibration = Calibration::PressureCalibration::PHYSICAL;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001218 } else if (pressureCalibrationString == "amplitude") {
Michael Wright227c5542020-07-02 18:30:52 +01001219 out.pressureCalibration = Calibration::PressureCalibration::AMPLITUDE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001220 } else if (pressureCalibrationString != "default") {
1221 ALOGW("Invalid value for touch.pressure.calibration: '%s'",
1222 pressureCalibrationString.string());
1223 }
1224 }
1225
1226 out.havePressureScale = in.tryGetProperty(String8("touch.pressure.scale"), out.pressureScale);
1227
1228 // Orientation
Michael Wright227c5542020-07-02 18:30:52 +01001229 out.orientationCalibration = Calibration::OrientationCalibration::DEFAULT;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001230 String8 orientationCalibrationString;
1231 if (in.tryGetProperty(String8("touch.orientation.calibration"), orientationCalibrationString)) {
1232 if (orientationCalibrationString == "none") {
Michael Wright227c5542020-07-02 18:30:52 +01001233 out.orientationCalibration = Calibration::OrientationCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001234 } else if (orientationCalibrationString == "interpolated") {
Michael Wright227c5542020-07-02 18:30:52 +01001235 out.orientationCalibration = Calibration::OrientationCalibration::INTERPOLATED;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001236 } else if (orientationCalibrationString == "vector") {
Michael Wright227c5542020-07-02 18:30:52 +01001237 out.orientationCalibration = Calibration::OrientationCalibration::VECTOR;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001238 } else if (orientationCalibrationString != "default") {
1239 ALOGW("Invalid value for touch.orientation.calibration: '%s'",
1240 orientationCalibrationString.string());
1241 }
1242 }
1243
1244 // Distance
Michael Wright227c5542020-07-02 18:30:52 +01001245 out.distanceCalibration = Calibration::DistanceCalibration::DEFAULT;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001246 String8 distanceCalibrationString;
1247 if (in.tryGetProperty(String8("touch.distance.calibration"), distanceCalibrationString)) {
1248 if (distanceCalibrationString == "none") {
Michael Wright227c5542020-07-02 18:30:52 +01001249 out.distanceCalibration = Calibration::DistanceCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001250 } else if (distanceCalibrationString == "scaled") {
Michael Wright227c5542020-07-02 18:30:52 +01001251 out.distanceCalibration = Calibration::DistanceCalibration::SCALED;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001252 } else if (distanceCalibrationString != "default") {
1253 ALOGW("Invalid value for touch.distance.calibration: '%s'",
1254 distanceCalibrationString.string());
1255 }
1256 }
1257
1258 out.haveDistanceScale = in.tryGetProperty(String8("touch.distance.scale"), out.distanceScale);
1259
Michael Wright227c5542020-07-02 18:30:52 +01001260 out.coverageCalibration = Calibration::CoverageCalibration::DEFAULT;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001261 String8 coverageCalibrationString;
1262 if (in.tryGetProperty(String8("touch.coverage.calibration"), coverageCalibrationString)) {
1263 if (coverageCalibrationString == "none") {
Michael Wright227c5542020-07-02 18:30:52 +01001264 out.coverageCalibration = Calibration::CoverageCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001265 } else if (coverageCalibrationString == "box") {
Michael Wright227c5542020-07-02 18:30:52 +01001266 out.coverageCalibration = Calibration::CoverageCalibration::BOX;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001267 } else if (coverageCalibrationString != "default") {
1268 ALOGW("Invalid value for touch.coverage.calibration: '%s'",
1269 coverageCalibrationString.string());
1270 }
1271 }
1272}
1273
1274void TouchInputMapper::resolveCalibration() {
1275 // Size
1276 if (mRawPointerAxes.touchMajor.valid || mRawPointerAxes.toolMajor.valid) {
Michael Wright227c5542020-07-02 18:30:52 +01001277 if (mCalibration.sizeCalibration == Calibration::SizeCalibration::DEFAULT) {
1278 mCalibration.sizeCalibration = Calibration::SizeCalibration::GEOMETRIC;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001279 }
1280 } else {
Michael Wright227c5542020-07-02 18:30:52 +01001281 mCalibration.sizeCalibration = Calibration::SizeCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001282 }
1283
1284 // Pressure
1285 if (mRawPointerAxes.pressure.valid) {
Michael Wright227c5542020-07-02 18:30:52 +01001286 if (mCalibration.pressureCalibration == Calibration::PressureCalibration::DEFAULT) {
1287 mCalibration.pressureCalibration = Calibration::PressureCalibration::PHYSICAL;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001288 }
1289 } else {
Michael Wright227c5542020-07-02 18:30:52 +01001290 mCalibration.pressureCalibration = Calibration::PressureCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001291 }
1292
1293 // Orientation
1294 if (mRawPointerAxes.orientation.valid) {
Michael Wright227c5542020-07-02 18:30:52 +01001295 if (mCalibration.orientationCalibration == Calibration::OrientationCalibration::DEFAULT) {
1296 mCalibration.orientationCalibration = Calibration::OrientationCalibration::INTERPOLATED;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001297 }
1298 } else {
Michael Wright227c5542020-07-02 18:30:52 +01001299 mCalibration.orientationCalibration = Calibration::OrientationCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001300 }
1301
1302 // Distance
1303 if (mRawPointerAxes.distance.valid) {
Michael Wright227c5542020-07-02 18:30:52 +01001304 if (mCalibration.distanceCalibration == Calibration::DistanceCalibration::DEFAULT) {
1305 mCalibration.distanceCalibration = Calibration::DistanceCalibration::SCALED;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001306 }
1307 } else {
Michael Wright227c5542020-07-02 18:30:52 +01001308 mCalibration.distanceCalibration = Calibration::DistanceCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001309 }
1310
1311 // Coverage
Michael Wright227c5542020-07-02 18:30:52 +01001312 if (mCalibration.coverageCalibration == Calibration::CoverageCalibration::DEFAULT) {
1313 mCalibration.coverageCalibration = Calibration::CoverageCalibration::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001314 }
1315}
1316
1317void TouchInputMapper::dumpCalibration(std::string& dump) {
1318 dump += INDENT3 "Calibration:\n";
1319
Siarhei Vishniakou4e837cc2021-12-20 23:24:33 -08001320 dump += INDENT4 "touch.size.calibration: ";
1321 dump += ftl::enum_string(mCalibration.sizeCalibration) + "\n";
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001322
1323 if (mCalibration.haveSizeScale) {
1324 dump += StringPrintf(INDENT4 "touch.size.scale: %0.3f\n", mCalibration.sizeScale);
1325 }
1326
1327 if (mCalibration.haveSizeBias) {
1328 dump += StringPrintf(INDENT4 "touch.size.bias: %0.3f\n", mCalibration.sizeBias);
1329 }
1330
1331 if (mCalibration.haveSizeIsSummed) {
1332 dump += StringPrintf(INDENT4 "touch.size.isSummed: %s\n",
1333 toString(mCalibration.sizeIsSummed));
1334 }
1335
1336 // Pressure
1337 switch (mCalibration.pressureCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01001338 case Calibration::PressureCalibration::NONE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001339 dump += INDENT4 "touch.pressure.calibration: none\n";
1340 break;
Michael Wright227c5542020-07-02 18:30:52 +01001341 case Calibration::PressureCalibration::PHYSICAL:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001342 dump += INDENT4 "touch.pressure.calibration: physical\n";
1343 break;
Michael Wright227c5542020-07-02 18:30:52 +01001344 case Calibration::PressureCalibration::AMPLITUDE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001345 dump += INDENT4 "touch.pressure.calibration: amplitude\n";
1346 break;
1347 default:
1348 ALOG_ASSERT(false);
1349 }
1350
1351 if (mCalibration.havePressureScale) {
1352 dump += StringPrintf(INDENT4 "touch.pressure.scale: %0.3f\n", mCalibration.pressureScale);
1353 }
1354
1355 // Orientation
1356 switch (mCalibration.orientationCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01001357 case Calibration::OrientationCalibration::NONE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001358 dump += INDENT4 "touch.orientation.calibration: none\n";
1359 break;
Michael Wright227c5542020-07-02 18:30:52 +01001360 case Calibration::OrientationCalibration::INTERPOLATED:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001361 dump += INDENT4 "touch.orientation.calibration: interpolated\n";
1362 break;
Michael Wright227c5542020-07-02 18:30:52 +01001363 case Calibration::OrientationCalibration::VECTOR:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001364 dump += INDENT4 "touch.orientation.calibration: vector\n";
1365 break;
1366 default:
1367 ALOG_ASSERT(false);
1368 }
1369
1370 // Distance
1371 switch (mCalibration.distanceCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01001372 case Calibration::DistanceCalibration::NONE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001373 dump += INDENT4 "touch.distance.calibration: none\n";
1374 break;
Michael Wright227c5542020-07-02 18:30:52 +01001375 case Calibration::DistanceCalibration::SCALED:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001376 dump += INDENT4 "touch.distance.calibration: scaled\n";
1377 break;
1378 default:
1379 ALOG_ASSERT(false);
1380 }
1381
1382 if (mCalibration.haveDistanceScale) {
1383 dump += StringPrintf(INDENT4 "touch.distance.scale: %0.3f\n", mCalibration.distanceScale);
1384 }
1385
1386 switch (mCalibration.coverageCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01001387 case Calibration::CoverageCalibration::NONE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001388 dump += INDENT4 "touch.coverage.calibration: none\n";
1389 break;
Michael Wright227c5542020-07-02 18:30:52 +01001390 case Calibration::CoverageCalibration::BOX:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001391 dump += INDENT4 "touch.coverage.calibration: box\n";
1392 break;
1393 default:
1394 ALOG_ASSERT(false);
1395 }
1396}
1397
1398void TouchInputMapper::dumpAffineTransformation(std::string& dump) {
1399 dump += INDENT3 "Affine Transformation:\n";
1400
1401 dump += StringPrintf(INDENT4 "X scale: %0.3f\n", mAffineTransform.x_scale);
1402 dump += StringPrintf(INDENT4 "X ymix: %0.3f\n", mAffineTransform.x_ymix);
1403 dump += StringPrintf(INDENT4 "X offset: %0.3f\n", mAffineTransform.x_offset);
1404 dump += StringPrintf(INDENT4 "Y xmix: %0.3f\n", mAffineTransform.y_xmix);
1405 dump += StringPrintf(INDENT4 "Y scale: %0.3f\n", mAffineTransform.y_scale);
1406 dump += StringPrintf(INDENT4 "Y offset: %0.3f\n", mAffineTransform.y_offset);
1407}
1408
1409void TouchInputMapper::updateAffineTransformation() {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001410 mAffineTransform = getPolicy()->getTouchAffineTransformation(getDeviceContext().getDescriptor(),
Prabir Pradhan1728b212021-10-19 16:00:03 -07001411 mInputDeviceOrientation);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001412}
1413
1414void TouchInputMapper::reset(nsecs_t when) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001415 mCursorButtonAccumulator.reset(getDeviceContext());
1416 mCursorScrollAccumulator.reset(getDeviceContext());
1417 mTouchButtonAccumulator.reset(getDeviceContext());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001418
1419 mPointerVelocityControl.reset();
1420 mWheelXVelocityControl.reset();
1421 mWheelYVelocityControl.reset();
1422
1423 mRawStatesPending.clear();
1424 mCurrentRawState.clear();
1425 mCurrentCookedState.clear();
1426 mLastRawState.clear();
1427 mLastCookedState.clear();
Michael Wright227c5542020-07-02 18:30:52 +01001428 mPointerUsage = PointerUsage::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001429 mSentHoverEnter = false;
1430 mHavePointerIds = false;
1431 mCurrentMotionAborted = false;
1432 mDownTime = 0;
1433
1434 mCurrentVirtualKey.down = false;
1435
1436 mPointerGesture.reset();
1437 mPointerSimple.reset();
1438 resetExternalStylus();
1439
1440 if (mPointerController != nullptr) {
Michael Wrightca5bede2020-07-02 00:00:29 +01001441 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001442 mPointerController->clearSpots();
1443 }
1444
1445 InputMapper::reset(when);
1446}
1447
1448void TouchInputMapper::resetExternalStylus() {
1449 mExternalStylusState.clear();
1450 mExternalStylusId = -1;
1451 mExternalStylusFusionTimeout = LLONG_MAX;
1452 mExternalStylusDataPending = false;
1453}
1454
1455void TouchInputMapper::clearStylusDataPendingFlags() {
1456 mExternalStylusDataPending = false;
1457 mExternalStylusFusionTimeout = LLONG_MAX;
1458}
1459
1460void TouchInputMapper::process(const RawEvent* rawEvent) {
1461 mCursorButtonAccumulator.process(rawEvent);
1462 mCursorScrollAccumulator.process(rawEvent);
1463 mTouchButtonAccumulator.process(rawEvent);
1464
1465 if (rawEvent->type == EV_SYN && rawEvent->code == SYN_REPORT) {
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001466 sync(rawEvent->when, rawEvent->readTime);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001467 }
1468}
1469
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001470void TouchInputMapper::sync(nsecs_t when, nsecs_t readTime) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001471 // Push a new state.
1472 mRawStatesPending.emplace_back();
1473
Siarhei Vishniakou57479982021-03-03 01:32:21 +00001474 RawState& next = mRawStatesPending.back();
1475 next.clear();
1476 next.when = when;
1477 next.readTime = readTime;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001478
1479 // Sync button state.
Siarhei Vishniakou57479982021-03-03 01:32:21 +00001480 next.buttonState =
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001481 mTouchButtonAccumulator.getButtonState() | mCursorButtonAccumulator.getButtonState();
1482
1483 // Sync scroll
Siarhei Vishniakou57479982021-03-03 01:32:21 +00001484 next.rawVScroll = mCursorScrollAccumulator.getRelativeVWheel();
1485 next.rawHScroll = mCursorScrollAccumulator.getRelativeHWheel();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001486 mCursorScrollAccumulator.finishSync();
1487
1488 // Sync touch
Siarhei Vishniakou57479982021-03-03 01:32:21 +00001489 syncTouch(when, &next);
1490
1491 // The last RawState is the actually second to last, since we just added a new state
1492 const RawState& last =
1493 mRawStatesPending.size() == 1 ? mCurrentRawState : mRawStatesPending.rbegin()[1];
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001494
1495 // Assign pointer ids.
1496 if (!mHavePointerIds) {
1497 assignPointerIds(last, next);
1498 }
1499
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001500 if (DEBUG_RAW_EVENTS) {
1501 ALOGD("syncTouch: pointerCount %d -> %d, touching ids 0x%08x -> 0x%08x, "
1502 "hovering ids 0x%08x -> 0x%08x, canceled ids 0x%08x",
1503 last.rawPointerData.pointerCount, next.rawPointerData.pointerCount,
1504 last.rawPointerData.touchingIdBits.value, next.rawPointerData.touchingIdBits.value,
1505 last.rawPointerData.hoveringIdBits.value, next.rawPointerData.hoveringIdBits.value,
1506 next.rawPointerData.canceledIdBits.value);
1507 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001508
Arthur Hung9ad18942021-06-19 02:04:46 +00001509 if (!next.rawPointerData.touchingIdBits.isEmpty() &&
1510 !next.rawPointerData.hoveringIdBits.isEmpty() &&
1511 last.rawPointerData.hoveringIdBits != next.rawPointerData.hoveringIdBits) {
1512 ALOGI("Multi-touch contains some hovering ids 0x%08x",
1513 next.rawPointerData.hoveringIdBits.value);
1514 }
1515
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001516 processRawTouches(false /*timeout*/);
1517}
1518
1519void TouchInputMapper::processRawTouches(bool timeout) {
Michael Wright227c5542020-07-02 18:30:52 +01001520 if (mDeviceMode == DeviceMode::DISABLED) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001521 // Drop all input if the device is disabled.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001522 cancelTouch(mCurrentRawState.when, mCurrentRawState.readTime);
Garfield Tanc734e4f2021-01-15 20:01:39 -08001523 mCurrentCookedState.clear();
1524 updateTouchSpots();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001525 return;
1526 }
1527
1528 // Drain any pending touch states. The invariant here is that the mCurrentRawState is always
1529 // valid and must go through the full cook and dispatch cycle. This ensures that anything
1530 // touching the current state will only observe the events that have been dispatched to the
1531 // rest of the pipeline.
1532 const size_t N = mRawStatesPending.size();
1533 size_t count;
1534 for (count = 0; count < N; count++) {
1535 const RawState& next = mRawStatesPending[count];
1536
1537 // A failure to assign the stylus id means that we're waiting on stylus data
1538 // and so should defer the rest of the pipeline.
1539 if (assignExternalStylusId(next, timeout)) {
1540 break;
1541 }
1542
1543 // All ready to go.
1544 clearStylusDataPendingFlags();
1545 mCurrentRawState.copyFrom(next);
1546 if (mCurrentRawState.when < mLastRawState.when) {
1547 mCurrentRawState.when = mLastRawState.when;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001548 mCurrentRawState.readTime = mLastRawState.readTime;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001549 }
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001550 cookAndDispatch(mCurrentRawState.when, mCurrentRawState.readTime);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001551 }
1552 if (count != 0) {
1553 mRawStatesPending.erase(mRawStatesPending.begin(), mRawStatesPending.begin() + count);
1554 }
1555
1556 if (mExternalStylusDataPending) {
1557 if (timeout) {
1558 nsecs_t when = mExternalStylusFusionTimeout - STYLUS_DATA_LATENCY;
1559 clearStylusDataPendingFlags();
1560 mCurrentRawState.copyFrom(mLastRawState);
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001561 if (DEBUG_STYLUS_FUSION) {
1562 ALOGD("Timeout expired, synthesizing event with new stylus data");
1563 }
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001564 const nsecs_t readTime = when; // consider this synthetic event to be zero latency
1565 cookAndDispatch(when, readTime);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001566 } else if (mExternalStylusFusionTimeout == LLONG_MAX) {
1567 mExternalStylusFusionTimeout = mExternalStylusState.when + TOUCH_DATA_TIMEOUT;
1568 getContext()->requestTimeoutAtTime(mExternalStylusFusionTimeout);
1569 }
1570 }
1571}
1572
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001573void TouchInputMapper::cookAndDispatch(nsecs_t when, nsecs_t readTime) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001574 // Always start with a clean state.
1575 mCurrentCookedState.clear();
1576
1577 // Apply stylus buttons to current raw state.
1578 applyExternalStylusButtonState(when);
1579
1580 // Handle policy on initial down or hover events.
1581 bool initialDown = mLastRawState.rawPointerData.pointerCount == 0 &&
1582 mCurrentRawState.rawPointerData.pointerCount != 0;
1583
1584 uint32_t policyFlags = 0;
1585 bool buttonsPressed = mCurrentRawState.buttonState & ~mLastRawState.buttonState;
1586 if (initialDown || buttonsPressed) {
1587 // If this is a touch screen, hide the pointer on an initial down.
Michael Wright227c5542020-07-02 18:30:52 +01001588 if (mDeviceMode == DeviceMode::DIRECT) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001589 getContext()->fadePointer();
1590 }
1591
1592 if (mParameters.wake) {
1593 policyFlags |= POLICY_FLAG_WAKE;
1594 }
1595 }
1596
1597 // Consume raw off-screen touches before cooking pointer data.
1598 // If touches are consumed, subsequent code will not receive any pointer data.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001599 if (consumeRawTouches(when, readTime, policyFlags)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001600 mCurrentRawState.rawPointerData.clear();
1601 }
1602
1603 // Cook pointer data. This call populates the mCurrentCookedState.cookedPointerData structure
1604 // with cooked pointer data that has the same ids and indices as the raw data.
1605 // The following code can use either the raw or cooked data, as needed.
1606 cookPointerData();
1607
1608 // Apply stylus pressure to current cooked state.
1609 applyExternalStylusTouchState(when);
1610
1611 // Synthesize key down from raw buttons if needed.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001612 synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_DOWN, when, readTime, getDeviceId(),
1613 mSource, mViewport.displayId, policyFlags, mLastCookedState.buttonState,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001614 mCurrentCookedState.buttonState);
1615
1616 // Dispatch the touches either directly or by translation through a pointer on screen.
Michael Wright227c5542020-07-02 18:30:52 +01001617 if (mDeviceMode == DeviceMode::POINTER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001618 for (BitSet32 idBits(mCurrentRawState.rawPointerData.touchingIdBits); !idBits.isEmpty();) {
1619 uint32_t id = idBits.clearFirstMarkedBit();
1620 const RawPointerData::Pointer& pointer =
1621 mCurrentRawState.rawPointerData.pointerForId(id);
1622 if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_STYLUS ||
1623 pointer.toolType == AMOTION_EVENT_TOOL_TYPE_ERASER) {
1624 mCurrentCookedState.stylusIdBits.markBit(id);
1625 } else if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_FINGER ||
1626 pointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) {
1627 mCurrentCookedState.fingerIdBits.markBit(id);
1628 } else if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_MOUSE) {
1629 mCurrentCookedState.mouseIdBits.markBit(id);
1630 }
1631 }
1632 for (BitSet32 idBits(mCurrentRawState.rawPointerData.hoveringIdBits); !idBits.isEmpty();) {
1633 uint32_t id = idBits.clearFirstMarkedBit();
1634 const RawPointerData::Pointer& pointer =
1635 mCurrentRawState.rawPointerData.pointerForId(id);
1636 if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_STYLUS ||
1637 pointer.toolType == AMOTION_EVENT_TOOL_TYPE_ERASER) {
1638 mCurrentCookedState.stylusIdBits.markBit(id);
1639 }
1640 }
1641
1642 // Stylus takes precedence over all tools, then mouse, then finger.
1643 PointerUsage pointerUsage = mPointerUsage;
1644 if (!mCurrentCookedState.stylusIdBits.isEmpty()) {
1645 mCurrentCookedState.mouseIdBits.clear();
1646 mCurrentCookedState.fingerIdBits.clear();
Michael Wright227c5542020-07-02 18:30:52 +01001647 pointerUsage = PointerUsage::STYLUS;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001648 } else if (!mCurrentCookedState.mouseIdBits.isEmpty()) {
1649 mCurrentCookedState.fingerIdBits.clear();
Michael Wright227c5542020-07-02 18:30:52 +01001650 pointerUsage = PointerUsage::MOUSE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001651 } else if (!mCurrentCookedState.fingerIdBits.isEmpty() ||
1652 isPointerDown(mCurrentRawState.buttonState)) {
Michael Wright227c5542020-07-02 18:30:52 +01001653 pointerUsage = PointerUsage::GESTURES;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001654 }
1655
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001656 dispatchPointerUsage(when, readTime, policyFlags, pointerUsage);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001657 } else {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001658 if (!mCurrentMotionAborted) {
Prabir Pradhand4206712022-04-27 13:19:15 +00001659 updateTouchSpots();
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001660 dispatchButtonRelease(when, readTime, policyFlags);
1661 dispatchHoverExit(when, readTime, policyFlags);
1662 dispatchTouches(when, readTime, policyFlags);
1663 dispatchHoverEnterAndMove(when, readTime, policyFlags);
1664 dispatchButtonPress(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001665 }
1666
1667 if (mCurrentCookedState.cookedPointerData.pointerCount == 0) {
1668 mCurrentMotionAborted = false;
1669 }
1670 }
1671
1672 // Synthesize key up from raw buttons if needed.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001673 synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_UP, when, readTime, getDeviceId(), mSource,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001674 mViewport.displayId, policyFlags, mLastCookedState.buttonState,
1675 mCurrentCookedState.buttonState);
1676
1677 // Clear some transient state.
1678 mCurrentRawState.rawVScroll = 0;
1679 mCurrentRawState.rawHScroll = 0;
1680
1681 // Copy current touch to last touch in preparation for the next cycle.
1682 mLastRawState.copyFrom(mCurrentRawState);
1683 mLastCookedState.copyFrom(mCurrentCookedState);
1684}
1685
Garfield Tanc734e4f2021-01-15 20:01:39 -08001686void TouchInputMapper::updateTouchSpots() {
1687 if (!mConfig.showTouches || mPointerController == nullptr) {
1688 return;
1689 }
1690
1691 // Update touch spots when this is a touchscreen even when it's not enabled so that we can
1692 // clear touch spots.
1693 if (mDeviceMode != DeviceMode::DIRECT &&
1694 (mDeviceMode != DeviceMode::DISABLED || !isTouchScreen())) {
1695 return;
1696 }
1697
1698 mPointerController->setPresentation(PointerControllerInterface::Presentation::SPOT);
1699 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL);
1700
1701 mPointerController->setButtonState(mCurrentRawState.buttonState);
Prabir Pradhande69f8a2021-11-18 16:40:34 +00001702 mPointerController->setSpots(mCurrentCookedState.cookedPointerData.pointerCoords,
1703 mCurrentCookedState.cookedPointerData.idToIndex,
1704 mCurrentCookedState.cookedPointerData.touchingIdBits,
1705 mViewport.displayId);
Garfield Tanc734e4f2021-01-15 20:01:39 -08001706}
1707
1708bool TouchInputMapper::isTouchScreen() {
1709 return mParameters.deviceType == Parameters::DeviceType::TOUCH_SCREEN &&
1710 mParameters.hasAssociatedDisplay;
1711}
1712
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001713void TouchInputMapper::applyExternalStylusButtonState(nsecs_t when) {
Michael Wright227c5542020-07-02 18:30:52 +01001714 if (mDeviceMode == DeviceMode::DIRECT && hasExternalStylus() && mExternalStylusId != -1) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001715 mCurrentRawState.buttonState |= mExternalStylusState.buttons;
1716 }
1717}
1718
1719void TouchInputMapper::applyExternalStylusTouchState(nsecs_t when) {
1720 CookedPointerData& currentPointerData = mCurrentCookedState.cookedPointerData;
1721 const CookedPointerData& lastPointerData = mLastCookedState.cookedPointerData;
1722
1723 if (mExternalStylusId != -1 && currentPointerData.isTouching(mExternalStylusId)) {
1724 float pressure = mExternalStylusState.pressure;
1725 if (pressure == 0.0f && lastPointerData.isTouching(mExternalStylusId)) {
1726 const PointerCoords& coords = lastPointerData.pointerCoordsForId(mExternalStylusId);
1727 pressure = coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE);
1728 }
1729 PointerCoords& coords = currentPointerData.editPointerCoordsWithId(mExternalStylusId);
1730 coords.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pressure);
1731
1732 PointerProperties& properties =
1733 currentPointerData.editPointerPropertiesWithId(mExternalStylusId);
1734 if (mExternalStylusState.toolType != AMOTION_EVENT_TOOL_TYPE_UNKNOWN) {
1735 properties.toolType = mExternalStylusState.toolType;
1736 }
1737 }
1738}
1739
1740bool TouchInputMapper::assignExternalStylusId(const RawState& state, bool timeout) {
Michael Wright227c5542020-07-02 18:30:52 +01001741 if (mDeviceMode != DeviceMode::DIRECT || !hasExternalStylus()) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001742 return false;
1743 }
1744
1745 const bool initialDown = mLastRawState.rawPointerData.pointerCount == 0 &&
1746 state.rawPointerData.pointerCount != 0;
1747 if (initialDown) {
1748 if (mExternalStylusState.pressure != 0.0f) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001749 if (DEBUG_STYLUS_FUSION) {
1750 ALOGD("Have both stylus and touch data, beginning fusion");
1751 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001752 mExternalStylusId = state.rawPointerData.touchingIdBits.firstMarkedBit();
1753 } else if (timeout) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001754 if (DEBUG_STYLUS_FUSION) {
1755 ALOGD("Timeout expired, assuming touch is not a stylus.");
1756 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001757 resetExternalStylus();
1758 } else {
1759 if (mExternalStylusFusionTimeout == LLONG_MAX) {
1760 mExternalStylusFusionTimeout = state.when + EXTERNAL_STYLUS_DATA_TIMEOUT;
1761 }
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001762 if (DEBUG_STYLUS_FUSION) {
1763 ALOGD("No stylus data but stylus is connected, requesting timeout "
1764 "(%" PRId64 "ms)",
1765 mExternalStylusFusionTimeout);
1766 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001767 getContext()->requestTimeoutAtTime(mExternalStylusFusionTimeout);
1768 return true;
1769 }
1770 }
1771
1772 // Check if the stylus pointer has gone up.
1773 if (mExternalStylusId != -1 && !state.rawPointerData.touchingIdBits.hasBit(mExternalStylusId)) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001774 if (DEBUG_STYLUS_FUSION) {
1775 ALOGD("Stylus pointer is going up");
1776 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001777 mExternalStylusId = -1;
1778 }
1779
1780 return false;
1781}
1782
1783void TouchInputMapper::timeoutExpired(nsecs_t when) {
Michael Wright227c5542020-07-02 18:30:52 +01001784 if (mDeviceMode == DeviceMode::POINTER) {
1785 if (mPointerUsage == PointerUsage::GESTURES) {
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001786 // Since this is a synthetic event, we can consider its latency to be zero
1787 const nsecs_t readTime = when;
1788 dispatchPointerGestures(when, readTime, 0 /*policyFlags*/, true /*isTimeout*/);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001789 }
Michael Wright227c5542020-07-02 18:30:52 +01001790 } else if (mDeviceMode == DeviceMode::DIRECT) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001791 if (mExternalStylusFusionTimeout < when) {
1792 processRawTouches(true /*timeout*/);
1793 } else if (mExternalStylusFusionTimeout != LLONG_MAX) {
1794 getContext()->requestTimeoutAtTime(mExternalStylusFusionTimeout);
1795 }
1796 }
1797}
1798
1799void TouchInputMapper::updateExternalStylusState(const StylusState& state) {
1800 mExternalStylusState.copyFrom(state);
1801 if (mExternalStylusId != -1 || mExternalStylusFusionTimeout != LLONG_MAX) {
1802 // We're either in the middle of a fused stream of data or we're waiting on data before
1803 // dispatching the initial down, so go ahead and dispatch now that we have fresh stylus
1804 // data.
1805 mExternalStylusDataPending = true;
1806 processRawTouches(false /*timeout*/);
1807 }
1808}
1809
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001810bool TouchInputMapper::consumeRawTouches(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001811 // Check for release of a virtual key.
1812 if (mCurrentVirtualKey.down) {
1813 if (mCurrentRawState.rawPointerData.touchingIdBits.isEmpty()) {
1814 // Pointer went up while virtual key was down.
1815 mCurrentVirtualKey.down = false;
1816 if (!mCurrentVirtualKey.ignored) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001817 if (DEBUG_VIRTUAL_KEYS) {
1818 ALOGD("VirtualKeys: Generating key up: keyCode=%d, scanCode=%d",
1819 mCurrentVirtualKey.keyCode, mCurrentVirtualKey.scanCode);
1820 }
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001821 dispatchVirtualKey(when, readTime, policyFlags, AKEY_EVENT_ACTION_UP,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001822 AKEY_EVENT_FLAG_FROM_SYSTEM | AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY);
1823 }
1824 return true;
1825 }
1826
1827 if (mCurrentRawState.rawPointerData.touchingIdBits.count() == 1) {
1828 uint32_t id = mCurrentRawState.rawPointerData.touchingIdBits.firstMarkedBit();
1829 const RawPointerData::Pointer& pointer =
1830 mCurrentRawState.rawPointerData.pointerForId(id);
1831 const VirtualKey* virtualKey = findVirtualKeyHit(pointer.x, pointer.y);
1832 if (virtualKey && virtualKey->keyCode == mCurrentVirtualKey.keyCode) {
1833 // Pointer is still within the space of the virtual key.
1834 return true;
1835 }
1836 }
1837
1838 // Pointer left virtual key area or another pointer also went down.
1839 // Send key cancellation but do not consume the touch yet.
1840 // This is useful when the user swipes through from the virtual key area
1841 // into the main display surface.
1842 mCurrentVirtualKey.down = false;
1843 if (!mCurrentVirtualKey.ignored) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001844 if (DEBUG_VIRTUAL_KEYS) {
1845 ALOGD("VirtualKeys: Canceling key: keyCode=%d, scanCode=%d",
1846 mCurrentVirtualKey.keyCode, mCurrentVirtualKey.scanCode);
1847 }
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001848 dispatchVirtualKey(when, readTime, policyFlags, AKEY_EVENT_ACTION_UP,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001849 AKEY_EVENT_FLAG_FROM_SYSTEM | AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY |
1850 AKEY_EVENT_FLAG_CANCELED);
1851 }
1852 }
1853
1854 if (mLastRawState.rawPointerData.touchingIdBits.isEmpty() &&
1855 !mCurrentRawState.rawPointerData.touchingIdBits.isEmpty()) {
1856 // Pointer just went down. Check for virtual key press or off-screen touches.
1857 uint32_t id = mCurrentRawState.rawPointerData.touchingIdBits.firstMarkedBit();
1858 const RawPointerData::Pointer& pointer = mCurrentRawState.rawPointerData.pointerForId(id);
Prabir Pradhan1728b212021-10-19 16:00:03 -07001859 // Skip checking whether the pointer is inside the physical frame if the device is in
1860 // unscaled mode.
1861 if (!isPointInsidePhysicalFrame(pointer.x, pointer.y) &&
1862 mDeviceMode != DeviceMode::UNSCALED) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001863 // If exactly one pointer went down, check for virtual key hit.
1864 // Otherwise we will drop the entire stroke.
1865 if (mCurrentRawState.rawPointerData.touchingIdBits.count() == 1) {
1866 const VirtualKey* virtualKey = findVirtualKeyHit(pointer.x, pointer.y);
1867 if (virtualKey) {
1868 mCurrentVirtualKey.down = true;
1869 mCurrentVirtualKey.downTime = when;
1870 mCurrentVirtualKey.keyCode = virtualKey->keyCode;
1871 mCurrentVirtualKey.scanCode = virtualKey->scanCode;
1872 mCurrentVirtualKey.ignored =
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001873 getContext()->shouldDropVirtualKey(when, virtualKey->keyCode,
1874 virtualKey->scanCode);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001875
1876 if (!mCurrentVirtualKey.ignored) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08001877 if (DEBUG_VIRTUAL_KEYS) {
1878 ALOGD("VirtualKeys: Generating key down: keyCode=%d, scanCode=%d",
1879 mCurrentVirtualKey.keyCode, mCurrentVirtualKey.scanCode);
1880 }
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001881 dispatchVirtualKey(when, readTime, policyFlags, AKEY_EVENT_ACTION_DOWN,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001882 AKEY_EVENT_FLAG_FROM_SYSTEM |
1883 AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY);
1884 }
1885 }
1886 }
1887 return true;
1888 }
1889 }
1890
1891 // Disable all virtual key touches that happen within a short time interval of the
1892 // most recent touch within the screen area. The idea is to filter out stray
1893 // virtual key presses when interacting with the touch screen.
1894 //
1895 // Problems we're trying to solve:
1896 //
1897 // 1. While scrolling a list or dragging the window shade, the user swipes down into a
1898 // virtual key area that is implemented by a separate touch panel and accidentally
1899 // triggers a virtual key.
1900 //
1901 // 2. While typing in the on screen keyboard, the user taps slightly outside the screen
1902 // area and accidentally triggers a virtual key. This often happens when virtual keys
1903 // are layed out below the screen near to where the on screen keyboard's space bar
1904 // is displayed.
1905 if (mConfig.virtualKeyQuietTime > 0 &&
1906 !mCurrentRawState.rawPointerData.touchingIdBits.isEmpty()) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001907 getContext()->disableVirtualKeysUntil(when + mConfig.virtualKeyQuietTime);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001908 }
1909 return false;
1910}
1911
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001912void TouchInputMapper::dispatchVirtualKey(nsecs_t when, nsecs_t readTime, uint32_t policyFlags,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001913 int32_t keyEventAction, int32_t keyEventFlags) {
1914 int32_t keyCode = mCurrentVirtualKey.keyCode;
1915 int32_t scanCode = mCurrentVirtualKey.scanCode;
1916 nsecs_t downTime = mCurrentVirtualKey.downTime;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08001917 int32_t metaState = getContext()->getGlobalMetaState();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001918 policyFlags |= POLICY_FLAG_VIRTUAL;
1919
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001920 NotifyKeyArgs args(getContext()->getNextId(), when, readTime, getDeviceId(),
1921 AINPUT_SOURCE_KEYBOARD, mViewport.displayId, policyFlags, keyEventAction,
1922 keyEventFlags, keyCode, scanCode, metaState, downTime);
Siarhei Vishniakou18050092021-09-01 13:32:49 -07001923 getListener().notifyKey(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001924}
1925
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001926void TouchInputMapper::abortTouches(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
lilinnane74b35f2022-07-19 16:00:50 +08001927 if (mCurrentMotionAborted) {
1928 // Current motion event was already aborted.
1929 return;
1930 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001931 BitSet32 currentIdBits = mCurrentCookedState.cookedPointerData.touchingIdBits;
1932 if (!currentIdBits.isEmpty()) {
1933 int32_t metaState = getContext()->getGlobalMetaState();
1934 int32_t buttonState = mCurrentCookedState.buttonState;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001935 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_CANCEL, 0, 0,
1936 metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001937 mCurrentCookedState.cookedPointerData.pointerProperties,
1938 mCurrentCookedState.cookedPointerData.pointerCoords,
1939 mCurrentCookedState.cookedPointerData.idToIndex, currentIdBits, -1,
1940 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
1941 mCurrentMotionAborted = true;
1942 }
1943}
1944
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001945void TouchInputMapper::dispatchTouches(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001946 BitSet32 currentIdBits = mCurrentCookedState.cookedPointerData.touchingIdBits;
1947 BitSet32 lastIdBits = mLastCookedState.cookedPointerData.touchingIdBits;
1948 int32_t metaState = getContext()->getGlobalMetaState();
1949 int32_t buttonState = mCurrentCookedState.buttonState;
1950
1951 if (currentIdBits == lastIdBits) {
1952 if (!currentIdBits.isEmpty()) {
1953 // No pointer id changes so this is a move event.
1954 // The listener takes care of batching moves so we don't have to deal with that here.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001955 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_MOVE, 0, 0,
1956 metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001957 mCurrentCookedState.cookedPointerData.pointerProperties,
1958 mCurrentCookedState.cookedPointerData.pointerCoords,
1959 mCurrentCookedState.cookedPointerData.idToIndex, currentIdBits, -1,
1960 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
1961 }
1962 } else {
1963 // There may be pointers going up and pointers going down and pointers moving
1964 // all at the same time.
1965 BitSet32 upIdBits(lastIdBits.value & ~currentIdBits.value);
1966 BitSet32 downIdBits(currentIdBits.value & ~lastIdBits.value);
1967 BitSet32 moveIdBits(lastIdBits.value & currentIdBits.value);
1968 BitSet32 dispatchedIdBits(lastIdBits.value);
1969
1970 // Update last coordinates of pointers that have moved so that we observe the new
1971 // pointer positions at the same time as other pointers that have just gone up.
1972 bool moveNeeded =
1973 updateMovedPointers(mCurrentCookedState.cookedPointerData.pointerProperties,
1974 mCurrentCookedState.cookedPointerData.pointerCoords,
1975 mCurrentCookedState.cookedPointerData.idToIndex,
1976 mLastCookedState.cookedPointerData.pointerProperties,
1977 mLastCookedState.cookedPointerData.pointerCoords,
1978 mLastCookedState.cookedPointerData.idToIndex, moveIdBits);
1979 if (buttonState != mLastCookedState.buttonState) {
1980 moveNeeded = true;
1981 }
1982
1983 // Dispatch pointer up events.
1984 while (!upIdBits.isEmpty()) {
1985 uint32_t upId = upIdBits.clearFirstMarkedBit();
arthurhungcc7f9802020-04-30 17:55:40 +08001986 bool isCanceled = mCurrentCookedState.cookedPointerData.canceledIdBits.hasBit(upId);
arthurhung17d64842021-01-21 16:01:27 +08001987 if (isCanceled) {
1988 ALOGI("Canceling pointer %d for the palm event was detected.", upId);
1989 }
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00001990 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_POINTER_UP, 0,
arthurhungcc7f9802020-04-30 17:55:40 +08001991 isCanceled ? AMOTION_EVENT_FLAG_CANCELED : 0, metaState, buttonState, 0,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001992 mLastCookedState.cookedPointerData.pointerProperties,
1993 mLastCookedState.cookedPointerData.pointerCoords,
1994 mLastCookedState.cookedPointerData.idToIndex, dispatchedIdBits, upId,
1995 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
1996 dispatchedIdBits.clearBit(upId);
arthurhungcc7f9802020-04-30 17:55:40 +08001997 mCurrentCookedState.cookedPointerData.canceledIdBits.clearBit(upId);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001998 }
1999
2000 // Dispatch move events if any of the remaining pointers moved from their old locations.
2001 // Although applications receive new locations as part of individual pointer up
2002 // events, they do not generally handle them except when presented in a move event.
2003 if (moveNeeded && !moveIdBits.isEmpty()) {
2004 ALOG_ASSERT(moveIdBits.value == dispatchedIdBits.value);
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002005 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_MOVE, 0, 0,
2006 metaState, buttonState, 0,
2007 mCurrentCookedState.cookedPointerData.pointerProperties,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002008 mCurrentCookedState.cookedPointerData.pointerCoords,
2009 mCurrentCookedState.cookedPointerData.idToIndex, dispatchedIdBits, -1,
2010 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
2011 }
2012
2013 // Dispatch pointer down events using the new pointer locations.
2014 while (!downIdBits.isEmpty()) {
2015 uint32_t downId = downIdBits.clearFirstMarkedBit();
2016 dispatchedIdBits.markBit(downId);
2017
2018 if (dispatchedIdBits.count() == 1) {
2019 // First pointer is going down. Set down time.
2020 mDownTime = when;
2021 }
2022
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002023 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_POINTER_DOWN,
2024 0, 0, metaState, buttonState, 0,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002025 mCurrentCookedState.cookedPointerData.pointerProperties,
2026 mCurrentCookedState.cookedPointerData.pointerCoords,
2027 mCurrentCookedState.cookedPointerData.idToIndex, dispatchedIdBits,
2028 downId, mOrientedXPrecision, mOrientedYPrecision, mDownTime);
2029 }
2030 }
2031}
2032
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002033void TouchInputMapper::dispatchHoverExit(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002034 if (mSentHoverEnter &&
2035 (mCurrentCookedState.cookedPointerData.hoveringIdBits.isEmpty() ||
2036 !mCurrentCookedState.cookedPointerData.touchingIdBits.isEmpty())) {
2037 int32_t metaState = getContext()->getGlobalMetaState();
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002038 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_HOVER_EXIT, 0, 0,
2039 metaState, mLastCookedState.buttonState, 0,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002040 mLastCookedState.cookedPointerData.pointerProperties,
2041 mLastCookedState.cookedPointerData.pointerCoords,
2042 mLastCookedState.cookedPointerData.idToIndex,
2043 mLastCookedState.cookedPointerData.hoveringIdBits, -1, mOrientedXPrecision,
2044 mOrientedYPrecision, mDownTime);
2045 mSentHoverEnter = false;
2046 }
2047}
2048
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002049void TouchInputMapper::dispatchHoverEnterAndMove(nsecs_t when, nsecs_t readTime,
2050 uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002051 if (mCurrentCookedState.cookedPointerData.touchingIdBits.isEmpty() &&
2052 !mCurrentCookedState.cookedPointerData.hoveringIdBits.isEmpty()) {
2053 int32_t metaState = getContext()->getGlobalMetaState();
2054 if (!mSentHoverEnter) {
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002055 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_HOVER_ENTER,
2056 0, 0, metaState, mCurrentRawState.buttonState, 0,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002057 mCurrentCookedState.cookedPointerData.pointerProperties,
2058 mCurrentCookedState.cookedPointerData.pointerCoords,
2059 mCurrentCookedState.cookedPointerData.idToIndex,
2060 mCurrentCookedState.cookedPointerData.hoveringIdBits, -1,
2061 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
2062 mSentHoverEnter = true;
2063 }
2064
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002065 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_HOVER_MOVE, 0, 0,
2066 metaState, mCurrentRawState.buttonState, 0,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002067 mCurrentCookedState.cookedPointerData.pointerProperties,
2068 mCurrentCookedState.cookedPointerData.pointerCoords,
2069 mCurrentCookedState.cookedPointerData.idToIndex,
2070 mCurrentCookedState.cookedPointerData.hoveringIdBits, -1,
2071 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
2072 }
2073}
2074
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002075void TouchInputMapper::dispatchButtonRelease(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002076 BitSet32 releasedButtons(mLastCookedState.buttonState & ~mCurrentCookedState.buttonState);
2077 const BitSet32& idBits = findActiveIdBits(mLastCookedState.cookedPointerData);
2078 const int32_t metaState = getContext()->getGlobalMetaState();
2079 int32_t buttonState = mLastCookedState.buttonState;
2080 while (!releasedButtons.isEmpty()) {
2081 int32_t actionButton = BitSet32::valueForBit(releasedButtons.clearFirstMarkedBit());
2082 buttonState &= ~actionButton;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002083 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_BUTTON_RELEASE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002084 actionButton, 0, metaState, buttonState, 0,
2085 mCurrentCookedState.cookedPointerData.pointerProperties,
2086 mCurrentCookedState.cookedPointerData.pointerCoords,
2087 mCurrentCookedState.cookedPointerData.idToIndex, idBits, -1,
2088 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
2089 }
2090}
2091
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002092void TouchInputMapper::dispatchButtonPress(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002093 BitSet32 pressedButtons(mCurrentCookedState.buttonState & ~mLastCookedState.buttonState);
2094 const BitSet32& idBits = findActiveIdBits(mCurrentCookedState.cookedPointerData);
2095 const int32_t metaState = getContext()->getGlobalMetaState();
2096 int32_t buttonState = mLastCookedState.buttonState;
2097 while (!pressedButtons.isEmpty()) {
2098 int32_t actionButton = BitSet32::valueForBit(pressedButtons.clearFirstMarkedBit());
2099 buttonState |= actionButton;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002100 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_BUTTON_PRESS,
2101 actionButton, 0, metaState, buttonState, 0,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002102 mCurrentCookedState.cookedPointerData.pointerProperties,
2103 mCurrentCookedState.cookedPointerData.pointerCoords,
2104 mCurrentCookedState.cookedPointerData.idToIndex, idBits, -1,
2105 mOrientedXPrecision, mOrientedYPrecision, mDownTime);
2106 }
2107}
2108
2109const BitSet32& TouchInputMapper::findActiveIdBits(const CookedPointerData& cookedPointerData) {
2110 if (!cookedPointerData.touchingIdBits.isEmpty()) {
2111 return cookedPointerData.touchingIdBits;
2112 }
2113 return cookedPointerData.hoveringIdBits;
2114}
2115
2116void TouchInputMapper::cookPointerData() {
2117 uint32_t currentPointerCount = mCurrentRawState.rawPointerData.pointerCount;
2118
2119 mCurrentCookedState.cookedPointerData.clear();
2120 mCurrentCookedState.cookedPointerData.pointerCount = currentPointerCount;
2121 mCurrentCookedState.cookedPointerData.hoveringIdBits =
2122 mCurrentRawState.rawPointerData.hoveringIdBits;
2123 mCurrentCookedState.cookedPointerData.touchingIdBits =
2124 mCurrentRawState.rawPointerData.touchingIdBits;
arthurhungcc7f9802020-04-30 17:55:40 +08002125 mCurrentCookedState.cookedPointerData.canceledIdBits =
2126 mCurrentRawState.rawPointerData.canceledIdBits;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002127
2128 if (mCurrentCookedState.cookedPointerData.pointerCount == 0) {
2129 mCurrentCookedState.buttonState = 0;
2130 } else {
2131 mCurrentCookedState.buttonState = mCurrentRawState.buttonState;
2132 }
2133
2134 // Walk through the the active pointers and map device coordinates onto
Prabir Pradhan1728b212021-10-19 16:00:03 -07002135 // display coordinates and adjust for display orientation.
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002136 for (uint32_t i = 0; i < currentPointerCount; i++) {
2137 const RawPointerData::Pointer& in = mCurrentRawState.rawPointerData.pointers[i];
2138
2139 // Size
2140 float touchMajor, touchMinor, toolMajor, toolMinor, size;
2141 switch (mCalibration.sizeCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01002142 case Calibration::SizeCalibration::GEOMETRIC:
2143 case Calibration::SizeCalibration::DIAMETER:
2144 case Calibration::SizeCalibration::BOX:
2145 case Calibration::SizeCalibration::AREA:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002146 if (mRawPointerAxes.touchMajor.valid && mRawPointerAxes.toolMajor.valid) {
2147 touchMajor = in.touchMajor;
2148 touchMinor = mRawPointerAxes.touchMinor.valid ? in.touchMinor : in.touchMajor;
2149 toolMajor = in.toolMajor;
2150 toolMinor = mRawPointerAxes.toolMinor.valid ? in.toolMinor : in.toolMajor;
2151 size = mRawPointerAxes.touchMinor.valid ? avg(in.touchMajor, in.touchMinor)
2152 : in.touchMajor;
2153 } else if (mRawPointerAxes.touchMajor.valid) {
2154 toolMajor = touchMajor = in.touchMajor;
2155 toolMinor = touchMinor =
2156 mRawPointerAxes.touchMinor.valid ? in.touchMinor : in.touchMajor;
2157 size = mRawPointerAxes.touchMinor.valid ? avg(in.touchMajor, in.touchMinor)
2158 : in.touchMajor;
2159 } else if (mRawPointerAxes.toolMajor.valid) {
2160 touchMajor = toolMajor = in.toolMajor;
2161 touchMinor = toolMinor =
2162 mRawPointerAxes.toolMinor.valid ? in.toolMinor : in.toolMajor;
2163 size = mRawPointerAxes.toolMinor.valid ? avg(in.toolMajor, in.toolMinor)
2164 : in.toolMajor;
2165 } else {
2166 ALOG_ASSERT(false,
2167 "No touch or tool axes. "
2168 "Size calibration should have been resolved to NONE.");
2169 touchMajor = 0;
2170 touchMinor = 0;
2171 toolMajor = 0;
2172 toolMinor = 0;
2173 size = 0;
2174 }
2175
2176 if (mCalibration.haveSizeIsSummed && mCalibration.sizeIsSummed) {
2177 uint32_t touchingCount = mCurrentRawState.rawPointerData.touchingIdBits.count();
2178 if (touchingCount > 1) {
2179 touchMajor /= touchingCount;
2180 touchMinor /= touchingCount;
2181 toolMajor /= touchingCount;
2182 toolMinor /= touchingCount;
2183 size /= touchingCount;
2184 }
2185 }
2186
Michael Wright227c5542020-07-02 18:30:52 +01002187 if (mCalibration.sizeCalibration == Calibration::SizeCalibration::GEOMETRIC) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002188 touchMajor *= mGeometricScale;
2189 touchMinor *= mGeometricScale;
2190 toolMajor *= mGeometricScale;
2191 toolMinor *= mGeometricScale;
Michael Wright227c5542020-07-02 18:30:52 +01002192 } else if (mCalibration.sizeCalibration == Calibration::SizeCalibration::AREA) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002193 touchMajor = touchMajor > 0 ? sqrtf(touchMajor) : 0;
2194 touchMinor = touchMajor;
2195 toolMajor = toolMajor > 0 ? sqrtf(toolMajor) : 0;
2196 toolMinor = toolMajor;
Michael Wright227c5542020-07-02 18:30:52 +01002197 } else if (mCalibration.sizeCalibration == Calibration::SizeCalibration::DIAMETER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002198 touchMinor = touchMajor;
2199 toolMinor = toolMajor;
2200 }
2201
2202 mCalibration.applySizeScaleAndBias(&touchMajor);
2203 mCalibration.applySizeScaleAndBias(&touchMinor);
2204 mCalibration.applySizeScaleAndBias(&toolMajor);
2205 mCalibration.applySizeScaleAndBias(&toolMinor);
2206 size *= mSizeScale;
2207 break;
2208 default:
2209 touchMajor = 0;
2210 touchMinor = 0;
2211 toolMajor = 0;
2212 toolMinor = 0;
2213 size = 0;
2214 break;
2215 }
2216
2217 // Pressure
2218 float pressure;
2219 switch (mCalibration.pressureCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01002220 case Calibration::PressureCalibration::PHYSICAL:
2221 case Calibration::PressureCalibration::AMPLITUDE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002222 pressure = in.pressure * mPressureScale;
2223 break;
2224 default:
2225 pressure = in.isHovering ? 0 : 1;
2226 break;
2227 }
2228
2229 // Tilt and Orientation
2230 float tilt;
2231 float orientation;
2232 if (mHaveTilt) {
2233 float tiltXAngle = (in.tiltX - mTiltXCenter) * mTiltXScale;
2234 float tiltYAngle = (in.tiltY - mTiltYCenter) * mTiltYScale;
2235 orientation = atan2f(-sinf(tiltXAngle), sinf(tiltYAngle));
2236 tilt = acosf(cosf(tiltXAngle) * cosf(tiltYAngle));
2237 } else {
2238 tilt = 0;
2239
2240 switch (mCalibration.orientationCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01002241 case Calibration::OrientationCalibration::INTERPOLATED:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002242 orientation = in.orientation * mOrientationScale;
2243 break;
Michael Wright227c5542020-07-02 18:30:52 +01002244 case Calibration::OrientationCalibration::VECTOR: {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002245 int32_t c1 = signExtendNybble((in.orientation & 0xf0) >> 4);
2246 int32_t c2 = signExtendNybble(in.orientation & 0x0f);
2247 if (c1 != 0 || c2 != 0) {
2248 orientation = atan2f(c1, c2) * 0.5f;
2249 float confidence = hypotf(c1, c2);
2250 float scale = 1.0f + confidence / 16.0f;
2251 touchMajor *= scale;
2252 touchMinor /= scale;
2253 toolMajor *= scale;
2254 toolMinor /= scale;
2255 } else {
2256 orientation = 0;
2257 }
2258 break;
2259 }
2260 default:
2261 orientation = 0;
2262 }
2263 }
2264
2265 // Distance
2266 float distance;
2267 switch (mCalibration.distanceCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01002268 case Calibration::DistanceCalibration::SCALED:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002269 distance = in.distance * mDistanceScale;
2270 break;
2271 default:
2272 distance = 0;
2273 }
2274
2275 // Coverage
2276 int32_t rawLeft, rawTop, rawRight, rawBottom;
2277 switch (mCalibration.coverageCalibration) {
Michael Wright227c5542020-07-02 18:30:52 +01002278 case Calibration::CoverageCalibration::BOX:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002279 rawLeft = (in.toolMinor & 0xffff0000) >> 16;
2280 rawRight = in.toolMinor & 0x0000ffff;
2281 rawBottom = in.toolMajor & 0x0000ffff;
2282 rawTop = (in.toolMajor & 0xffff0000) >> 16;
2283 break;
2284 default:
2285 rawLeft = rawTop = rawRight = rawBottom = 0;
2286 break;
2287 }
2288
2289 // Adjust X,Y coords for device calibration
2290 // TODO: Adjust coverage coords?
2291 float xTransformed = in.x, yTransformed = in.y;
2292 mAffineTransform.applyTo(xTransformed, yTransformed);
Arthur Hung05de5772019-09-26 18:31:26 +08002293 rotateAndScale(xTransformed, yTransformed);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002294
Prabir Pradhan1728b212021-10-19 16:00:03 -07002295 // Adjust X, Y, and coverage coords for input device orientation.
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002296 float left, top, right, bottom;
2297
Prabir Pradhan1728b212021-10-19 16:00:03 -07002298 switch (mInputDeviceOrientation) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002299 case DISPLAY_ORIENTATION_90:
Prabir Pradhan1728b212021-10-19 16:00:03 -07002300 left = float(rawTop - mRawPointerAxes.y.minValue) * mYScale;
2301 right = float(rawBottom - mRawPointerAxes.y.minValue) * mYScale;
2302 bottom = float(mRawPointerAxes.x.maxValue - rawLeft) * mXScale;
2303 top = float(mRawPointerAxes.x.maxValue - rawRight) * mXScale;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002304 orientation -= M_PI_2;
2305 if (mOrientedRanges.haveOrientation &&
2306 orientation < mOrientedRanges.orientation.min) {
2307 orientation +=
2308 (mOrientedRanges.orientation.max - mOrientedRanges.orientation.min);
2309 }
2310 break;
2311 case DISPLAY_ORIENTATION_180:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002312 left = float(mRawPointerAxes.x.maxValue - rawRight) * mXScale;
2313 right = float(mRawPointerAxes.x.maxValue - rawLeft) * mXScale;
Prabir Pradhan1728b212021-10-19 16:00:03 -07002314 bottom = float(mRawPointerAxes.y.maxValue - rawTop) * mYScale;
2315 top = float(mRawPointerAxes.y.maxValue - rawBottom) * mYScale;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002316 orientation -= M_PI;
2317 if (mOrientedRanges.haveOrientation &&
2318 orientation < mOrientedRanges.orientation.min) {
2319 orientation +=
2320 (mOrientedRanges.orientation.max - mOrientedRanges.orientation.min);
2321 }
2322 break;
2323 case DISPLAY_ORIENTATION_270:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002324 left = float(mRawPointerAxes.y.maxValue - rawBottom) * mYScale;
2325 right = float(mRawPointerAxes.y.maxValue - rawTop) * mYScale;
Prabir Pradhan1728b212021-10-19 16:00:03 -07002326 bottom = float(rawRight - mRawPointerAxes.x.minValue) * mXScale;
2327 top = float(rawLeft - mRawPointerAxes.x.minValue) * mXScale;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002328 orientation += M_PI_2;
2329 if (mOrientedRanges.haveOrientation &&
2330 orientation > mOrientedRanges.orientation.max) {
2331 orientation -=
2332 (mOrientedRanges.orientation.max - mOrientedRanges.orientation.min);
2333 }
2334 break;
2335 default:
Prabir Pradhan1728b212021-10-19 16:00:03 -07002336 left = float(rawLeft - mRawPointerAxes.x.minValue) * mXScale;
2337 right = float(rawRight - mRawPointerAxes.x.minValue) * mXScale;
2338 bottom = float(rawBottom - mRawPointerAxes.y.minValue) * mYScale;
2339 top = float(rawTop - mRawPointerAxes.y.minValue) * mYScale;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002340 break;
2341 }
2342
2343 // Write output coords.
2344 PointerCoords& out = mCurrentCookedState.cookedPointerData.pointerCoords[i];
2345 out.clear();
Arthur Hung4197f6b2020-03-16 15:39:59 +08002346 out.setAxisValue(AMOTION_EVENT_AXIS_X, xTransformed);
2347 out.setAxisValue(AMOTION_EVENT_AXIS_Y, yTransformed);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002348 out.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pressure);
2349 out.setAxisValue(AMOTION_EVENT_AXIS_SIZE, size);
2350 out.setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, touchMajor);
2351 out.setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, touchMinor);
2352 out.setAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, orientation);
2353 out.setAxisValue(AMOTION_EVENT_AXIS_TILT, tilt);
2354 out.setAxisValue(AMOTION_EVENT_AXIS_DISTANCE, distance);
Michael Wright227c5542020-07-02 18:30:52 +01002355 if (mCalibration.coverageCalibration == Calibration::CoverageCalibration::BOX) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002356 out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_1, left);
2357 out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_2, top);
2358 out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_3, right);
2359 out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_4, bottom);
2360 } else {
2361 out.setAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, toolMajor);
2362 out.setAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, toolMinor);
2363 }
2364
Chris Ye364fdb52020-08-05 15:07:56 -07002365 // Write output relative fields if applicable.
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +00002366 uint32_t id = in.id;
2367 if (mSource == AINPUT_SOURCE_TOUCHPAD &&
2368 mLastCookedState.cookedPointerData.hasPointerCoordsForId(id)) {
2369 const PointerCoords& p = mLastCookedState.cookedPointerData.pointerCoordsForId(id);
2370 float dx = xTransformed - p.getAxisValue(AMOTION_EVENT_AXIS_X);
2371 float dy = yTransformed - p.getAxisValue(AMOTION_EVENT_AXIS_Y);
2372 out.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X, dx);
2373 out.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y, dy);
2374 }
2375
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002376 // Write output properties.
2377 PointerProperties& properties = mCurrentCookedState.cookedPointerData.pointerProperties[i];
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002378 properties.clear();
2379 properties.id = id;
2380 properties.toolType = in.toolType;
2381
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +00002382 // Write id index and mark id as valid.
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002383 mCurrentCookedState.cookedPointerData.idToIndex[id] = i;
Nathaniel R. Lewisadb58ea2019-08-21 04:46:29 +00002384 mCurrentCookedState.cookedPointerData.validIdBits.markBit(id);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002385 }
2386}
2387
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002388void TouchInputMapper::dispatchPointerUsage(nsecs_t when, nsecs_t readTime, uint32_t policyFlags,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002389 PointerUsage pointerUsage) {
2390 if (pointerUsage != mPointerUsage) {
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002391 abortPointerUsage(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002392 mPointerUsage = pointerUsage;
2393 }
2394
2395 switch (mPointerUsage) {
Michael Wright227c5542020-07-02 18:30:52 +01002396 case PointerUsage::GESTURES:
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002397 dispatchPointerGestures(when, readTime, policyFlags, false /*isTimeout*/);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002398 break;
Michael Wright227c5542020-07-02 18:30:52 +01002399 case PointerUsage::STYLUS:
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002400 dispatchPointerStylus(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002401 break;
Michael Wright227c5542020-07-02 18:30:52 +01002402 case PointerUsage::MOUSE:
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002403 dispatchPointerMouse(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002404 break;
Michael Wright227c5542020-07-02 18:30:52 +01002405 case PointerUsage::NONE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002406 break;
2407 }
2408}
2409
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002410void TouchInputMapper::abortPointerUsage(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002411 switch (mPointerUsage) {
Michael Wright227c5542020-07-02 18:30:52 +01002412 case PointerUsage::GESTURES:
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002413 abortPointerGestures(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002414 break;
Michael Wright227c5542020-07-02 18:30:52 +01002415 case PointerUsage::STYLUS:
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002416 abortPointerStylus(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002417 break;
Michael Wright227c5542020-07-02 18:30:52 +01002418 case PointerUsage::MOUSE:
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002419 abortPointerMouse(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002420 break;
Michael Wright227c5542020-07-02 18:30:52 +01002421 case PointerUsage::NONE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002422 break;
2423 }
2424
Michael Wright227c5542020-07-02 18:30:52 +01002425 mPointerUsage = PointerUsage::NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002426}
2427
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002428void TouchInputMapper::dispatchPointerGestures(nsecs_t when, nsecs_t readTime, uint32_t policyFlags,
2429 bool isTimeout) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002430 // Update current gesture coordinates.
2431 bool cancelPreviousGesture, finishPreviousGesture;
2432 bool sendEvents =
2433 preparePointerGestures(when, &cancelPreviousGesture, &finishPreviousGesture, isTimeout);
2434 if (!sendEvents) {
2435 return;
2436 }
2437 if (finishPreviousGesture) {
2438 cancelPreviousGesture = false;
2439 }
2440
2441 // Update the pointer presentation and spots.
Michael Wright227c5542020-07-02 18:30:52 +01002442 if (mParameters.gestureMode == Parameters::GestureMode::MULTI_TOUCH) {
Michael Wrightca5bede2020-07-02 00:00:29 +01002443 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002444 if (finishPreviousGesture || cancelPreviousGesture) {
2445 mPointerController->clearSpots();
2446 }
2447
Michael Wright227c5542020-07-02 18:30:52 +01002448 if (mPointerGesture.currentGestureMode == PointerGesture::Mode::FREEFORM) {
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002449 mPointerController->setSpots(mPointerGesture.currentGestureCoords,
2450 mPointerGesture.currentGestureIdToIndex,
2451 mPointerGesture.currentGestureIdBits,
2452 mPointerController->getDisplayId());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002453 }
2454 } else {
Michael Wrightca5bede2020-07-02 00:00:29 +01002455 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002456 }
2457
2458 // Show or hide the pointer if needed.
2459 switch (mPointerGesture.currentGestureMode) {
Michael Wright227c5542020-07-02 18:30:52 +01002460 case PointerGesture::Mode::NEUTRAL:
2461 case PointerGesture::Mode::QUIET:
2462 if (mParameters.gestureMode == Parameters::GestureMode::MULTI_TOUCH &&
2463 mPointerGesture.lastGestureMode == PointerGesture::Mode::FREEFORM) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002464 // Remind the user of where the pointer is after finishing a gesture with spots.
Michael Wrightca5bede2020-07-02 00:00:29 +01002465 mPointerController->unfade(PointerControllerInterface::Transition::GRADUAL);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002466 }
2467 break;
Michael Wright227c5542020-07-02 18:30:52 +01002468 case PointerGesture::Mode::TAP:
2469 case PointerGesture::Mode::TAP_DRAG:
2470 case PointerGesture::Mode::BUTTON_CLICK_OR_DRAG:
2471 case PointerGesture::Mode::HOVER:
2472 case PointerGesture::Mode::PRESS:
2473 case PointerGesture::Mode::SWIPE:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002474 // Unfade the pointer when the current gesture manipulates the
2475 // area directly under the pointer.
Michael Wrightca5bede2020-07-02 00:00:29 +01002476 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002477 break;
Michael Wright227c5542020-07-02 18:30:52 +01002478 case PointerGesture::Mode::FREEFORM:
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002479 // Fade the pointer when the current gesture manipulates a different
2480 // area and there are spots to guide the user experience.
Michael Wright227c5542020-07-02 18:30:52 +01002481 if (mParameters.gestureMode == Parameters::GestureMode::MULTI_TOUCH) {
Michael Wrightca5bede2020-07-02 00:00:29 +01002482 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002483 } else {
Michael Wrightca5bede2020-07-02 00:00:29 +01002484 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002485 }
2486 break;
2487 }
2488
2489 // Send events!
2490 int32_t metaState = getContext()->getGlobalMetaState();
2491 int32_t buttonState = mCurrentCookedState.buttonState;
2492
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002493 uint32_t flags = 0;
2494
2495 if (!PointerGesture::canGestureAffectWindowFocus(mPointerGesture.currentGestureMode)) {
2496 flags |= AMOTION_EVENT_FLAG_NO_FOCUS_CHANGE;
2497 }
2498
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002499 // Update last coordinates of pointers that have moved so that we observe the new
2500 // pointer positions at the same time as other pointers that have just gone up.
Michael Wright227c5542020-07-02 18:30:52 +01002501 bool down = mPointerGesture.currentGestureMode == PointerGesture::Mode::TAP ||
2502 mPointerGesture.currentGestureMode == PointerGesture::Mode::TAP_DRAG ||
2503 mPointerGesture.currentGestureMode == PointerGesture::Mode::BUTTON_CLICK_OR_DRAG ||
2504 mPointerGesture.currentGestureMode == PointerGesture::Mode::PRESS ||
2505 mPointerGesture.currentGestureMode == PointerGesture::Mode::SWIPE ||
2506 mPointerGesture.currentGestureMode == PointerGesture::Mode::FREEFORM;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002507 bool moveNeeded = false;
2508 if (down && !cancelPreviousGesture && !finishPreviousGesture &&
2509 !mPointerGesture.lastGestureIdBits.isEmpty() &&
2510 !mPointerGesture.currentGestureIdBits.isEmpty()) {
2511 BitSet32 movedGestureIdBits(mPointerGesture.currentGestureIdBits.value &
2512 mPointerGesture.lastGestureIdBits.value);
2513 moveNeeded = updateMovedPointers(mPointerGesture.currentGestureProperties,
2514 mPointerGesture.currentGestureCoords,
2515 mPointerGesture.currentGestureIdToIndex,
2516 mPointerGesture.lastGestureProperties,
2517 mPointerGesture.lastGestureCoords,
2518 mPointerGesture.lastGestureIdToIndex, movedGestureIdBits);
2519 if (buttonState != mLastCookedState.buttonState) {
2520 moveNeeded = true;
2521 }
2522 }
2523
2524 // Send motion events for all pointers that went up or were canceled.
2525 BitSet32 dispatchedGestureIdBits(mPointerGesture.lastGestureIdBits);
2526 if (!dispatchedGestureIdBits.isEmpty()) {
2527 if (cancelPreviousGesture) {
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002528 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_CANCEL, 0,
2529 flags, metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002530 mPointerGesture.lastGestureProperties, mPointerGesture.lastGestureCoords,
2531 mPointerGesture.lastGestureIdToIndex, dispatchedGestureIdBits, -1, 0, 0,
2532 mPointerGesture.downTime);
2533
2534 dispatchedGestureIdBits.clear();
2535 } else {
2536 BitSet32 upGestureIdBits;
2537 if (finishPreviousGesture) {
2538 upGestureIdBits = dispatchedGestureIdBits;
2539 } else {
2540 upGestureIdBits.value =
2541 dispatchedGestureIdBits.value & ~mPointerGesture.currentGestureIdBits.value;
2542 }
2543 while (!upGestureIdBits.isEmpty()) {
2544 uint32_t id = upGestureIdBits.clearFirstMarkedBit();
2545
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002546 dispatchMotion(when, readTime, policyFlags, mSource,
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002547 AMOTION_EVENT_ACTION_POINTER_UP, 0, flags, metaState, buttonState,
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002548 AMOTION_EVENT_EDGE_FLAG_NONE, mPointerGesture.lastGestureProperties,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002549 mPointerGesture.lastGestureCoords,
2550 mPointerGesture.lastGestureIdToIndex, dispatchedGestureIdBits, id, 0,
2551 0, mPointerGesture.downTime);
2552
2553 dispatchedGestureIdBits.clearBit(id);
2554 }
2555 }
2556 }
2557
2558 // Send motion events for all pointers that moved.
2559 if (moveNeeded) {
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002560 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_MOVE, 0, flags,
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002561 metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002562 mPointerGesture.currentGestureProperties,
2563 mPointerGesture.currentGestureCoords,
2564 mPointerGesture.currentGestureIdToIndex, dispatchedGestureIdBits, -1, 0, 0,
2565 mPointerGesture.downTime);
2566 }
2567
2568 // Send motion events for all pointers that went down.
2569 if (down) {
2570 BitSet32 downGestureIdBits(mPointerGesture.currentGestureIdBits.value &
2571 ~dispatchedGestureIdBits.value);
2572 while (!downGestureIdBits.isEmpty()) {
2573 uint32_t id = downGestureIdBits.clearFirstMarkedBit();
2574 dispatchedGestureIdBits.markBit(id);
2575
2576 if (dispatchedGestureIdBits.count() == 1) {
2577 mPointerGesture.downTime = when;
2578 }
2579
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002580 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_POINTER_DOWN,
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002581 0, flags, metaState, buttonState, 0,
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002582 mPointerGesture.currentGestureProperties,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002583 mPointerGesture.currentGestureCoords,
2584 mPointerGesture.currentGestureIdToIndex, dispatchedGestureIdBits, id, 0,
2585 0, mPointerGesture.downTime);
2586 }
2587 }
2588
2589 // Send motion events for hover.
Michael Wright227c5542020-07-02 18:30:52 +01002590 if (mPointerGesture.currentGestureMode == PointerGesture::Mode::HOVER) {
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002591 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_HOVER_MOVE, 0,
2592 flags, metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002593 mPointerGesture.currentGestureProperties,
2594 mPointerGesture.currentGestureCoords,
2595 mPointerGesture.currentGestureIdToIndex,
2596 mPointerGesture.currentGestureIdBits, -1, 0, 0, mPointerGesture.downTime);
2597 } else if (dispatchedGestureIdBits.isEmpty() && !mPointerGesture.lastGestureIdBits.isEmpty()) {
2598 // Synthesize a hover move event after all pointers go up to indicate that
2599 // the pointer is hovering again even if the user is not currently touching
2600 // the touch pad. This ensures that a view will receive a fresh hover enter
2601 // event after a tap.
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002602 float x, y;
2603 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002604
2605 PointerProperties pointerProperties;
2606 pointerProperties.clear();
2607 pointerProperties.id = 0;
2608 pointerProperties.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER;
2609
2610 PointerCoords pointerCoords;
2611 pointerCoords.clear();
2612 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x);
2613 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y);
2614
2615 const int32_t displayId = mPointerController->getDisplayId();
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002616 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
Prabir Pradhan47cf0a02021-03-11 20:30:57 -08002617 displayId, policyFlags, AMOTION_EVENT_ACTION_HOVER_MOVE, 0, flags,
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002618 metaState, buttonState, MotionClassification::NONE,
2619 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &pointerProperties, &pointerCoords,
2620 0, 0, x, y, mPointerGesture.downTime, /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07002621 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002622 }
2623
2624 // Update state.
2625 mPointerGesture.lastGestureMode = mPointerGesture.currentGestureMode;
2626 if (!down) {
2627 mPointerGesture.lastGestureIdBits.clear();
2628 } else {
2629 mPointerGesture.lastGestureIdBits = mPointerGesture.currentGestureIdBits;
2630 for (BitSet32 idBits(mPointerGesture.currentGestureIdBits); !idBits.isEmpty();) {
2631 uint32_t id = idBits.clearFirstMarkedBit();
2632 uint32_t index = mPointerGesture.currentGestureIdToIndex[id];
2633 mPointerGesture.lastGestureProperties[index].copyFrom(
2634 mPointerGesture.currentGestureProperties[index]);
2635 mPointerGesture.lastGestureCoords[index].copyFrom(
2636 mPointerGesture.currentGestureCoords[index]);
2637 mPointerGesture.lastGestureIdToIndex[id] = index;
2638 }
2639 }
2640}
2641
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002642void TouchInputMapper::abortPointerGestures(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002643 // Cancel previously dispatches pointers.
2644 if (!mPointerGesture.lastGestureIdBits.isEmpty()) {
2645 int32_t metaState = getContext()->getGlobalMetaState();
2646 int32_t buttonState = mCurrentRawState.buttonState;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00002647 dispatchMotion(when, readTime, policyFlags, mSource, AMOTION_EVENT_ACTION_CANCEL, 0, 0,
2648 metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002649 mPointerGesture.lastGestureProperties, mPointerGesture.lastGestureCoords,
2650 mPointerGesture.lastGestureIdToIndex, mPointerGesture.lastGestureIdBits, -1,
2651 0, 0, mPointerGesture.downTime);
2652 }
2653
2654 // Reset the current pointer gesture.
2655 mPointerGesture.reset();
2656 mPointerVelocityControl.reset();
2657
2658 // Remove any current spots.
2659 if (mPointerController != nullptr) {
Michael Wrightca5bede2020-07-02 00:00:29 +01002660 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002661 mPointerController->clearSpots();
2662 }
2663}
2664
2665bool TouchInputMapper::preparePointerGestures(nsecs_t when, bool* outCancelPreviousGesture,
2666 bool* outFinishPreviousGesture, bool isTimeout) {
2667 *outCancelPreviousGesture = false;
2668 *outFinishPreviousGesture = false;
2669
2670 // Handle TAP timeout.
2671 if (isTimeout) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002672 if (DEBUG_GESTURES) {
2673 ALOGD("Gestures: Processing timeout");
2674 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002675
Michael Wright227c5542020-07-02 18:30:52 +01002676 if (mPointerGesture.lastGestureMode == PointerGesture::Mode::TAP) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002677 if (when <= mPointerGesture.tapUpTime + mConfig.pointerGestureTapDragInterval) {
2678 // The tap/drag timeout has not yet expired.
2679 getContext()->requestTimeoutAtTime(mPointerGesture.tapUpTime +
2680 mConfig.pointerGestureTapDragInterval);
2681 } else {
2682 // The tap is finished.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002683 if (DEBUG_GESTURES) {
2684 ALOGD("Gestures: TAP finished");
2685 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002686 *outFinishPreviousGesture = true;
2687
2688 mPointerGesture.activeGestureId = -1;
Michael Wright227c5542020-07-02 18:30:52 +01002689 mPointerGesture.currentGestureMode = PointerGesture::Mode::NEUTRAL;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002690 mPointerGesture.currentGestureIdBits.clear();
2691
2692 mPointerVelocityControl.reset();
2693 return true;
2694 }
2695 }
2696
2697 // We did not handle this timeout.
2698 return false;
2699 }
2700
2701 const uint32_t currentFingerCount = mCurrentCookedState.fingerIdBits.count();
2702 const uint32_t lastFingerCount = mLastCookedState.fingerIdBits.count();
2703
2704 // Update the velocity tracker.
2705 {
Siarhei Vishniakouae0f9902020-09-14 19:23:31 -05002706 std::vector<VelocityTracker::Position> positions;
2707 for (BitSet32 idBits(mCurrentCookedState.fingerIdBits); !idBits.isEmpty();) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002708 uint32_t id = idBits.clearFirstMarkedBit();
2709 const RawPointerData::Pointer& pointer =
2710 mCurrentRawState.rawPointerData.pointerForId(id);
Siarhei Vishniakouae0f9902020-09-14 19:23:31 -05002711 float x = pointer.x * mPointerXMovementScale;
2712 float y = pointer.y * mPointerYMovementScale;
2713 positions.push_back({x, y});
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002714 }
2715 mPointerGesture.velocityTracker.addMovement(when, mCurrentCookedState.fingerIdBits,
2716 positions);
2717 }
2718
2719 // If the gesture ever enters a mode other than TAP, HOVER or TAP_DRAG, without first returning
2720 // to NEUTRAL, then we should not generate tap event.
Michael Wright227c5542020-07-02 18:30:52 +01002721 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::HOVER &&
2722 mPointerGesture.lastGestureMode != PointerGesture::Mode::TAP &&
2723 mPointerGesture.lastGestureMode != PointerGesture::Mode::TAP_DRAG) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002724 mPointerGesture.resetTap();
2725 }
2726
2727 // Pick a new active touch id if needed.
2728 // Choose an arbitrary pointer that just went down, if there is one.
2729 // Otherwise choose an arbitrary remaining pointer.
2730 // This guarantees we always have an active touch id when there is at least one pointer.
2731 // We keep the same active touch id for as long as possible.
2732 int32_t lastActiveTouchId = mPointerGesture.activeTouchId;
2733 int32_t activeTouchId = lastActiveTouchId;
2734 if (activeTouchId < 0) {
2735 if (!mCurrentCookedState.fingerIdBits.isEmpty()) {
2736 activeTouchId = mPointerGesture.activeTouchId =
2737 mCurrentCookedState.fingerIdBits.firstMarkedBit();
2738 mPointerGesture.firstTouchTime = when;
2739 }
2740 } else if (!mCurrentCookedState.fingerIdBits.hasBit(activeTouchId)) {
2741 if (!mCurrentCookedState.fingerIdBits.isEmpty()) {
2742 activeTouchId = mPointerGesture.activeTouchId =
2743 mCurrentCookedState.fingerIdBits.firstMarkedBit();
2744 } else {
2745 activeTouchId = mPointerGesture.activeTouchId = -1;
2746 }
2747 }
2748
2749 // Determine whether we are in quiet time.
2750 bool isQuietTime = false;
2751 if (activeTouchId < 0) {
2752 mPointerGesture.resetQuietTime();
2753 } else {
2754 isQuietTime = when < mPointerGesture.quietTime + mConfig.pointerGestureQuietInterval;
2755 if (!isQuietTime) {
Michael Wright227c5542020-07-02 18:30:52 +01002756 if ((mPointerGesture.lastGestureMode == PointerGesture::Mode::PRESS ||
2757 mPointerGesture.lastGestureMode == PointerGesture::Mode::SWIPE ||
2758 mPointerGesture.lastGestureMode == PointerGesture::Mode::FREEFORM) &&
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002759 currentFingerCount < 2) {
2760 // Enter quiet time when exiting swipe or freeform state.
2761 // This is to prevent accidentally entering the hover state and flinging the
2762 // pointer when finishing a swipe and there is still one pointer left onscreen.
2763 isQuietTime = true;
Michael Wright227c5542020-07-02 18:30:52 +01002764 } else if (mPointerGesture.lastGestureMode ==
2765 PointerGesture::Mode::BUTTON_CLICK_OR_DRAG &&
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002766 currentFingerCount >= 2 && !isPointerDown(mCurrentRawState.buttonState)) {
2767 // Enter quiet time when releasing the button and there are still two or more
2768 // fingers down. This may indicate that one finger was used to press the button
2769 // but it has not gone up yet.
2770 isQuietTime = true;
2771 }
2772 if (isQuietTime) {
2773 mPointerGesture.quietTime = when;
2774 }
2775 }
2776 }
2777
2778 // Switch states based on button and pointer state.
2779 if (isQuietTime) {
2780 // Case 1: Quiet time. (QUIET)
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002781 if (DEBUG_GESTURES) {
2782 ALOGD("Gestures: QUIET for next %0.3fms",
2783 (mPointerGesture.quietTime + mConfig.pointerGestureQuietInterval - when) *
2784 0.000001f);
2785 }
Michael Wright227c5542020-07-02 18:30:52 +01002786 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::QUIET) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002787 *outFinishPreviousGesture = true;
2788 }
2789
2790 mPointerGesture.activeGestureId = -1;
Michael Wright227c5542020-07-02 18:30:52 +01002791 mPointerGesture.currentGestureMode = PointerGesture::Mode::QUIET;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002792 mPointerGesture.currentGestureIdBits.clear();
2793
2794 mPointerVelocityControl.reset();
2795 } else if (isPointerDown(mCurrentRawState.buttonState)) {
2796 // Case 2: Button is pressed. (BUTTON_CLICK_OR_DRAG)
2797 // The pointer follows the active touch point.
2798 // Emit DOWN, MOVE, UP events at the pointer location.
2799 //
2800 // Only the active touch matters; other fingers are ignored. This policy helps
2801 // to handle the case where the user places a second finger on the touch pad
2802 // to apply the necessary force to depress an integrated button below the surface.
2803 // We don't want the second finger to be delivered to applications.
2804 //
2805 // For this to work well, we need to make sure to track the pointer that is really
2806 // active. If the user first puts one finger down to click then adds another
2807 // finger to drag then the active pointer should switch to the finger that is
2808 // being dragged.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002809 if (DEBUG_GESTURES) {
2810 ALOGD("Gestures: BUTTON_CLICK_OR_DRAG activeTouchId=%d, "
2811 "currentFingerCount=%d",
2812 activeTouchId, currentFingerCount);
2813 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002814 // Reset state when just starting.
Michael Wright227c5542020-07-02 18:30:52 +01002815 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::BUTTON_CLICK_OR_DRAG) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002816 *outFinishPreviousGesture = true;
2817 mPointerGesture.activeGestureId = 0;
2818 }
2819
2820 // Switch pointers if needed.
2821 // Find the fastest pointer and follow it.
2822 if (activeTouchId >= 0 && currentFingerCount > 1) {
2823 int32_t bestId = -1;
2824 float bestSpeed = mConfig.pointerGestureDragMinSwitchSpeed;
2825 for (BitSet32 idBits(mCurrentCookedState.fingerIdBits); !idBits.isEmpty();) {
2826 uint32_t id = idBits.clearFirstMarkedBit();
2827 float vx, vy;
2828 if (mPointerGesture.velocityTracker.getVelocity(id, &vx, &vy)) {
2829 float speed = hypotf(vx, vy);
2830 if (speed > bestSpeed) {
2831 bestId = id;
2832 bestSpeed = speed;
2833 }
2834 }
2835 }
2836 if (bestId >= 0 && bestId != activeTouchId) {
2837 mPointerGesture.activeTouchId = activeTouchId = bestId;
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002838 if (DEBUG_GESTURES) {
2839 ALOGD("Gestures: BUTTON_CLICK_OR_DRAG switched pointers, "
2840 "bestId=%d, bestSpeed=%0.3f",
2841 bestId, bestSpeed);
2842 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002843 }
2844 }
2845
2846 float deltaX = 0, deltaY = 0;
2847 if (activeTouchId >= 0 && mLastCookedState.fingerIdBits.hasBit(activeTouchId)) {
2848 const RawPointerData::Pointer& currentPointer =
2849 mCurrentRawState.rawPointerData.pointerForId(activeTouchId);
2850 const RawPointerData::Pointer& lastPointer =
2851 mLastRawState.rawPointerData.pointerForId(activeTouchId);
2852 deltaX = (currentPointer.x - lastPointer.x) * mPointerXMovementScale;
2853 deltaY = (currentPointer.y - lastPointer.y) * mPointerYMovementScale;
2854
Prabir Pradhan1728b212021-10-19 16:00:03 -07002855 rotateDelta(mInputDeviceOrientation, &deltaX, &deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002856 mPointerVelocityControl.move(when, &deltaX, &deltaY);
2857
2858 // Move the pointer using a relative motion.
2859 // When using spots, the click will occur at the position of the anchor
2860 // spot and all other spots will move there.
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002861 mPointerController->move(deltaX, deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002862 } else {
2863 mPointerVelocityControl.reset();
2864 }
2865
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002866 float x, y;
2867 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002868
Michael Wright227c5542020-07-02 18:30:52 +01002869 mPointerGesture.currentGestureMode = PointerGesture::Mode::BUTTON_CLICK_OR_DRAG;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002870 mPointerGesture.currentGestureIdBits.clear();
2871 mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId);
2872 mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0;
2873 mPointerGesture.currentGestureProperties[0].clear();
2874 mPointerGesture.currentGestureProperties[0].id = mPointerGesture.activeGestureId;
2875 mPointerGesture.currentGestureProperties[0].toolType = AMOTION_EVENT_TOOL_TYPE_FINGER;
2876 mPointerGesture.currentGestureCoords[0].clear();
2877 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, x);
2878 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, y);
2879 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, 1.0f);
2880 } else if (currentFingerCount == 0) {
2881 // Case 3. No fingers down and button is not pressed. (NEUTRAL)
Michael Wright227c5542020-07-02 18:30:52 +01002882 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::NEUTRAL) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002883 *outFinishPreviousGesture = true;
2884 }
2885
2886 // Watch for taps coming out of HOVER or TAP_DRAG mode.
2887 // Checking for taps after TAP_DRAG allows us to detect double-taps.
2888 bool tapped = false;
Michael Wright227c5542020-07-02 18:30:52 +01002889 if ((mPointerGesture.lastGestureMode == PointerGesture::Mode::HOVER ||
2890 mPointerGesture.lastGestureMode == PointerGesture::Mode::TAP_DRAG) &&
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002891 lastFingerCount == 1) {
2892 if (when <= mPointerGesture.tapDownTime + mConfig.pointerGestureTapInterval) {
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002893 float x, y;
2894 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002895 if (fabs(x - mPointerGesture.tapX) <= mConfig.pointerGestureTapSlop &&
2896 fabs(y - mPointerGesture.tapY) <= mConfig.pointerGestureTapSlop) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002897 if (DEBUG_GESTURES) {
2898 ALOGD("Gestures: TAP");
2899 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002900
2901 mPointerGesture.tapUpTime = when;
2902 getContext()->requestTimeoutAtTime(when +
2903 mConfig.pointerGestureTapDragInterval);
2904
2905 mPointerGesture.activeGestureId = 0;
Michael Wright227c5542020-07-02 18:30:52 +01002906 mPointerGesture.currentGestureMode = PointerGesture::Mode::TAP;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002907 mPointerGesture.currentGestureIdBits.clear();
2908 mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId);
2909 mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0;
2910 mPointerGesture.currentGestureProperties[0].clear();
2911 mPointerGesture.currentGestureProperties[0].id =
2912 mPointerGesture.activeGestureId;
2913 mPointerGesture.currentGestureProperties[0].toolType =
2914 AMOTION_EVENT_TOOL_TYPE_FINGER;
2915 mPointerGesture.currentGestureCoords[0].clear();
2916 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X,
2917 mPointerGesture.tapX);
2918 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y,
2919 mPointerGesture.tapY);
2920 mPointerGesture.currentGestureCoords[0]
2921 .setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, 1.0f);
2922
2923 tapped = true;
2924 } else {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002925 if (DEBUG_GESTURES) {
2926 ALOGD("Gestures: Not a TAP, deltaX=%f, deltaY=%f", x - mPointerGesture.tapX,
2927 y - mPointerGesture.tapY);
2928 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002929 }
2930 } else {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002931 if (DEBUG_GESTURES) {
2932 if (mPointerGesture.tapDownTime != LLONG_MIN) {
2933 ALOGD("Gestures: Not a TAP, %0.3fms since down",
2934 (when - mPointerGesture.tapDownTime) * 0.000001f);
2935 } else {
2936 ALOGD("Gestures: Not a TAP, incompatible mode transitions");
2937 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002938 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002939 }
2940 }
2941
2942 mPointerVelocityControl.reset();
2943
2944 if (!tapped) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002945 if (DEBUG_GESTURES) {
2946 ALOGD("Gestures: NEUTRAL");
2947 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002948 mPointerGesture.activeGestureId = -1;
Michael Wright227c5542020-07-02 18:30:52 +01002949 mPointerGesture.currentGestureMode = PointerGesture::Mode::NEUTRAL;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002950 mPointerGesture.currentGestureIdBits.clear();
2951 }
2952 } else if (currentFingerCount == 1) {
2953 // Case 4. Exactly one finger down, button is not pressed. (HOVER or TAP_DRAG)
2954 // The pointer follows the active touch point.
2955 // When in HOVER, emit HOVER_MOVE events at the pointer location.
2956 // When in TAP_DRAG, emit MOVE events at the pointer location.
2957 ALOG_ASSERT(activeTouchId >= 0);
2958
Michael Wright227c5542020-07-02 18:30:52 +01002959 mPointerGesture.currentGestureMode = PointerGesture::Mode::HOVER;
2960 if (mPointerGesture.lastGestureMode == PointerGesture::Mode::TAP) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002961 if (when <= mPointerGesture.tapUpTime + mConfig.pointerGestureTapDragInterval) {
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002962 float x, y;
2963 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002964 if (fabs(x - mPointerGesture.tapX) <= mConfig.pointerGestureTapSlop &&
2965 fabs(y - mPointerGesture.tapY) <= mConfig.pointerGestureTapSlop) {
Michael Wright227c5542020-07-02 18:30:52 +01002966 mPointerGesture.currentGestureMode = PointerGesture::Mode::TAP_DRAG;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002967 } else {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002968 if (DEBUG_GESTURES) {
2969 ALOGD("Gestures: Not a TAP_DRAG, deltaX=%f, deltaY=%f",
2970 x - mPointerGesture.tapX, y - mPointerGesture.tapY);
2971 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002972 }
2973 } else {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08002974 if (DEBUG_GESTURES) {
2975 ALOGD("Gestures: Not a TAP_DRAG, %0.3fms time since up",
2976 (when - mPointerGesture.tapUpTime) * 0.000001f);
2977 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002978 }
Michael Wright227c5542020-07-02 18:30:52 +01002979 } else if (mPointerGesture.lastGestureMode == PointerGesture::Mode::TAP_DRAG) {
2980 mPointerGesture.currentGestureMode = PointerGesture::Mode::TAP_DRAG;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002981 }
2982
2983 float deltaX = 0, deltaY = 0;
2984 if (mLastCookedState.fingerIdBits.hasBit(activeTouchId)) {
2985 const RawPointerData::Pointer& currentPointer =
2986 mCurrentRawState.rawPointerData.pointerForId(activeTouchId);
2987 const RawPointerData::Pointer& lastPointer =
2988 mLastRawState.rawPointerData.pointerForId(activeTouchId);
2989 deltaX = (currentPointer.x - lastPointer.x) * mPointerXMovementScale;
2990 deltaY = (currentPointer.y - lastPointer.y) * mPointerYMovementScale;
2991
Prabir Pradhan1728b212021-10-19 16:00:03 -07002992 rotateDelta(mInputDeviceOrientation, &deltaX, &deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002993 mPointerVelocityControl.move(when, &deltaX, &deltaY);
2994
2995 // Move the pointer using a relative motion.
2996 // When using spots, the hover or drag will occur at the position of the anchor spot.
Prabir Pradhande69f8a2021-11-18 16:40:34 +00002997 mPointerController->move(deltaX, deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07002998 } else {
2999 mPointerVelocityControl.reset();
3000 }
3001
3002 bool down;
Michael Wright227c5542020-07-02 18:30:52 +01003003 if (mPointerGesture.currentGestureMode == PointerGesture::Mode::TAP_DRAG) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003004 if (DEBUG_GESTURES) {
3005 ALOGD("Gestures: TAP_DRAG");
3006 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003007 down = true;
3008 } else {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003009 if (DEBUG_GESTURES) {
3010 ALOGD("Gestures: HOVER");
3011 }
Michael Wright227c5542020-07-02 18:30:52 +01003012 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::HOVER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003013 *outFinishPreviousGesture = true;
3014 }
3015 mPointerGesture.activeGestureId = 0;
3016 down = false;
3017 }
3018
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003019 float x, y;
3020 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003021
3022 mPointerGesture.currentGestureIdBits.clear();
3023 mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId);
3024 mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0;
3025 mPointerGesture.currentGestureProperties[0].clear();
3026 mPointerGesture.currentGestureProperties[0].id = mPointerGesture.activeGestureId;
3027 mPointerGesture.currentGestureProperties[0].toolType = AMOTION_EVENT_TOOL_TYPE_FINGER;
3028 mPointerGesture.currentGestureCoords[0].clear();
3029 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, x);
3030 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, y);
3031 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE,
3032 down ? 1.0f : 0.0f);
3033
3034 if (lastFingerCount == 0 && currentFingerCount != 0) {
3035 mPointerGesture.resetTap();
3036 mPointerGesture.tapDownTime = when;
3037 mPointerGesture.tapX = x;
3038 mPointerGesture.tapY = y;
3039 }
3040 } else {
3041 // Case 5. At least two fingers down, button is not pressed. (PRESS, SWIPE or FREEFORM)
3042 // We need to provide feedback for each finger that goes down so we cannot wait
3043 // for the fingers to move before deciding what to do.
3044 //
3045 // The ambiguous case is deciding what to do when there are two fingers down but they
3046 // have not moved enough to determine whether they are part of a drag or part of a
3047 // freeform gesture, or just a press or long-press at the pointer location.
3048 //
3049 // When there are two fingers we start with the PRESS hypothesis and we generate a
3050 // down at the pointer location.
3051 //
3052 // When the two fingers move enough or when additional fingers are added, we make
3053 // a decision to transition into SWIPE or FREEFORM mode accordingly.
3054 ALOG_ASSERT(activeTouchId >= 0);
3055
3056 bool settled = when >=
3057 mPointerGesture.firstTouchTime + mConfig.pointerGestureMultitouchSettleInterval;
Michael Wright227c5542020-07-02 18:30:52 +01003058 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::PRESS &&
3059 mPointerGesture.lastGestureMode != PointerGesture::Mode::SWIPE &&
3060 mPointerGesture.lastGestureMode != PointerGesture::Mode::FREEFORM) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003061 *outFinishPreviousGesture = true;
3062 } else if (!settled && currentFingerCount > lastFingerCount) {
3063 // Additional pointers have gone down but not yet settled.
3064 // Reset the gesture.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003065 if (DEBUG_GESTURES) {
3066 ALOGD("Gestures: Resetting gesture since additional pointers went down for "
3067 "MULTITOUCH, settle time remaining %0.3fms",
3068 (mPointerGesture.firstTouchTime +
3069 mConfig.pointerGestureMultitouchSettleInterval - when) *
3070 0.000001f);
3071 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003072 *outCancelPreviousGesture = true;
3073 } else {
3074 // Continue previous gesture.
3075 mPointerGesture.currentGestureMode = mPointerGesture.lastGestureMode;
3076 }
3077
3078 if (*outFinishPreviousGesture || *outCancelPreviousGesture) {
Michael Wright227c5542020-07-02 18:30:52 +01003079 mPointerGesture.currentGestureMode = PointerGesture::Mode::PRESS;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003080 mPointerGesture.activeGestureId = 0;
3081 mPointerGesture.referenceIdBits.clear();
3082 mPointerVelocityControl.reset();
3083
3084 // Use the centroid and pointer location as the reference points for the gesture.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003085 if (DEBUG_GESTURES) {
3086 ALOGD("Gestures: Using centroid as reference for MULTITOUCH, "
3087 "settle time remaining %0.3fms",
3088 (mPointerGesture.firstTouchTime +
3089 mConfig.pointerGestureMultitouchSettleInterval - when) *
3090 0.000001f);
3091 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003092 mCurrentRawState.rawPointerData
3093 .getCentroidOfTouchingPointers(&mPointerGesture.referenceTouchX,
3094 &mPointerGesture.referenceTouchY);
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003095 mPointerController->getPosition(&mPointerGesture.referenceGestureX,
3096 &mPointerGesture.referenceGestureY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003097 }
3098
3099 // Clear the reference deltas for fingers not yet included in the reference calculation.
3100 for (BitSet32 idBits(mCurrentCookedState.fingerIdBits.value &
3101 ~mPointerGesture.referenceIdBits.value);
3102 !idBits.isEmpty();) {
3103 uint32_t id = idBits.clearFirstMarkedBit();
3104 mPointerGesture.referenceDeltas[id].dx = 0;
3105 mPointerGesture.referenceDeltas[id].dy = 0;
3106 }
3107 mPointerGesture.referenceIdBits = mCurrentCookedState.fingerIdBits;
3108
3109 // Add delta for all fingers and calculate a common movement delta.
3110 float commonDeltaX = 0, commonDeltaY = 0;
3111 BitSet32 commonIdBits(mLastCookedState.fingerIdBits.value &
3112 mCurrentCookedState.fingerIdBits.value);
3113 for (BitSet32 idBits(commonIdBits); !idBits.isEmpty();) {
3114 bool first = (idBits == commonIdBits);
3115 uint32_t id = idBits.clearFirstMarkedBit();
3116 const RawPointerData::Pointer& cpd = mCurrentRawState.rawPointerData.pointerForId(id);
3117 const RawPointerData::Pointer& lpd = mLastRawState.rawPointerData.pointerForId(id);
3118 PointerGesture::Delta& delta = mPointerGesture.referenceDeltas[id];
3119 delta.dx += cpd.x - lpd.x;
3120 delta.dy += cpd.y - lpd.y;
3121
3122 if (first) {
3123 commonDeltaX = delta.dx;
3124 commonDeltaY = delta.dy;
3125 } else {
3126 commonDeltaX = calculateCommonVector(commonDeltaX, delta.dx);
3127 commonDeltaY = calculateCommonVector(commonDeltaY, delta.dy);
3128 }
3129 }
3130
3131 // Consider transitions from PRESS to SWIPE or MULTITOUCH.
Michael Wright227c5542020-07-02 18:30:52 +01003132 if (mPointerGesture.currentGestureMode == PointerGesture::Mode::PRESS) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003133 float dist[MAX_POINTER_ID + 1];
3134 int32_t distOverThreshold = 0;
3135 for (BitSet32 idBits(mPointerGesture.referenceIdBits); !idBits.isEmpty();) {
3136 uint32_t id = idBits.clearFirstMarkedBit();
3137 PointerGesture::Delta& delta = mPointerGesture.referenceDeltas[id];
3138 dist[id] = hypotf(delta.dx * mPointerXZoomScale, delta.dy * mPointerYZoomScale);
3139 if (dist[id] > mConfig.pointerGestureMultitouchMinDistance) {
3140 distOverThreshold += 1;
3141 }
3142 }
3143
3144 // Only transition when at least two pointers have moved further than
3145 // the minimum distance threshold.
3146 if (distOverThreshold >= 2) {
3147 if (currentFingerCount > 2) {
3148 // There are more than two pointers, switch to FREEFORM.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003149 if (DEBUG_GESTURES) {
3150 ALOGD("Gestures: PRESS transitioned to FREEFORM, number of pointers %d > 2",
3151 currentFingerCount);
3152 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003153 *outCancelPreviousGesture = true;
Michael Wright227c5542020-07-02 18:30:52 +01003154 mPointerGesture.currentGestureMode = PointerGesture::Mode::FREEFORM;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003155 } else {
3156 // There are exactly two pointers.
3157 BitSet32 idBits(mCurrentCookedState.fingerIdBits);
3158 uint32_t id1 = idBits.clearFirstMarkedBit();
3159 uint32_t id2 = idBits.firstMarkedBit();
3160 const RawPointerData::Pointer& p1 =
3161 mCurrentRawState.rawPointerData.pointerForId(id1);
3162 const RawPointerData::Pointer& p2 =
3163 mCurrentRawState.rawPointerData.pointerForId(id2);
3164 float mutualDistance = distance(p1.x, p1.y, p2.x, p2.y);
3165 if (mutualDistance > mPointerGestureMaxSwipeWidth) {
3166 // There are two pointers but they are too far apart for a SWIPE,
3167 // switch to FREEFORM.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003168 if (DEBUG_GESTURES) {
3169 ALOGD("Gestures: PRESS transitioned to FREEFORM, distance %0.3f > "
3170 "%0.3f",
3171 mutualDistance, mPointerGestureMaxSwipeWidth);
3172 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003173 *outCancelPreviousGesture = true;
Michael Wright227c5542020-07-02 18:30:52 +01003174 mPointerGesture.currentGestureMode = PointerGesture::Mode::FREEFORM;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003175 } else {
3176 // There are two pointers. Wait for both pointers to start moving
3177 // before deciding whether this is a SWIPE or FREEFORM gesture.
3178 float dist1 = dist[id1];
3179 float dist2 = dist[id2];
3180 if (dist1 >= mConfig.pointerGestureMultitouchMinDistance &&
3181 dist2 >= mConfig.pointerGestureMultitouchMinDistance) {
3182 // Calculate the dot product of the displacement vectors.
3183 // When the vectors are oriented in approximately the same direction,
3184 // the angle betweeen them is near zero and the cosine of the angle
3185 // approches 1.0. Recall that dot(v1, v2) = cos(angle) * mag(v1) *
3186 // mag(v2).
3187 PointerGesture::Delta& delta1 = mPointerGesture.referenceDeltas[id1];
3188 PointerGesture::Delta& delta2 = mPointerGesture.referenceDeltas[id2];
3189 float dx1 = delta1.dx * mPointerXZoomScale;
3190 float dy1 = delta1.dy * mPointerYZoomScale;
3191 float dx2 = delta2.dx * mPointerXZoomScale;
3192 float dy2 = delta2.dy * mPointerYZoomScale;
3193 float dot = dx1 * dx2 + dy1 * dy2;
3194 float cosine = dot / (dist1 * dist2); // denominator always > 0
3195 if (cosine >= mConfig.pointerGestureSwipeTransitionAngleCosine) {
3196 // Pointers are moving in the same direction. Switch to SWIPE.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003197 if (DEBUG_GESTURES) {
3198 ALOGD("Gestures: PRESS transitioned to SWIPE, "
3199 "dist1 %0.3f >= %0.3f, dist2 %0.3f >= %0.3f, "
3200 "cosine %0.3f >= %0.3f",
3201 dist1, mConfig.pointerGestureMultitouchMinDistance, dist2,
3202 mConfig.pointerGestureMultitouchMinDistance, cosine,
3203 mConfig.pointerGestureSwipeTransitionAngleCosine);
3204 }
Michael Wright227c5542020-07-02 18:30:52 +01003205 mPointerGesture.currentGestureMode = PointerGesture::Mode::SWIPE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003206 } else {
3207 // Pointers are moving in different directions. Switch to FREEFORM.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003208 if (DEBUG_GESTURES) {
3209 ALOGD("Gestures: PRESS transitioned to FREEFORM, "
3210 "dist1 %0.3f >= %0.3f, dist2 %0.3f >= %0.3f, "
3211 "cosine %0.3f < %0.3f",
3212 dist1, mConfig.pointerGestureMultitouchMinDistance, dist2,
3213 mConfig.pointerGestureMultitouchMinDistance, cosine,
3214 mConfig.pointerGestureSwipeTransitionAngleCosine);
3215 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003216 *outCancelPreviousGesture = true;
Michael Wright227c5542020-07-02 18:30:52 +01003217 mPointerGesture.currentGestureMode = PointerGesture::Mode::FREEFORM;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003218 }
3219 }
3220 }
3221 }
3222 }
Michael Wright227c5542020-07-02 18:30:52 +01003223 } else if (mPointerGesture.currentGestureMode == PointerGesture::Mode::SWIPE) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003224 // Switch from SWIPE to FREEFORM if additional pointers go down.
3225 // Cancel previous gesture.
3226 if (currentFingerCount > 2) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003227 if (DEBUG_GESTURES) {
3228 ALOGD("Gestures: SWIPE transitioned to FREEFORM, number of pointers %d > 2",
3229 currentFingerCount);
3230 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003231 *outCancelPreviousGesture = true;
Michael Wright227c5542020-07-02 18:30:52 +01003232 mPointerGesture.currentGestureMode = PointerGesture::Mode::FREEFORM;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003233 }
3234 }
3235
3236 // Move the reference points based on the overall group motion of the fingers
3237 // except in PRESS mode while waiting for a transition to occur.
Michael Wright227c5542020-07-02 18:30:52 +01003238 if (mPointerGesture.currentGestureMode != PointerGesture::Mode::PRESS &&
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003239 (commonDeltaX || commonDeltaY)) {
3240 for (BitSet32 idBits(mPointerGesture.referenceIdBits); !idBits.isEmpty();) {
3241 uint32_t id = idBits.clearFirstMarkedBit();
3242 PointerGesture::Delta& delta = mPointerGesture.referenceDeltas[id];
3243 delta.dx = 0;
3244 delta.dy = 0;
3245 }
3246
3247 mPointerGesture.referenceTouchX += commonDeltaX;
3248 mPointerGesture.referenceTouchY += commonDeltaY;
3249
3250 commonDeltaX *= mPointerXMovementScale;
3251 commonDeltaY *= mPointerYMovementScale;
3252
Prabir Pradhan1728b212021-10-19 16:00:03 -07003253 rotateDelta(mInputDeviceOrientation, &commonDeltaX, &commonDeltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003254 mPointerVelocityControl.move(when, &commonDeltaX, &commonDeltaY);
3255
3256 mPointerGesture.referenceGestureX += commonDeltaX;
3257 mPointerGesture.referenceGestureY += commonDeltaY;
3258 }
3259
3260 // Report gestures.
Michael Wright227c5542020-07-02 18:30:52 +01003261 if (mPointerGesture.currentGestureMode == PointerGesture::Mode::PRESS ||
3262 mPointerGesture.currentGestureMode == PointerGesture::Mode::SWIPE) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003263 // PRESS or SWIPE mode.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003264 if (DEBUG_GESTURES) {
3265 ALOGD("Gestures: PRESS or SWIPE activeTouchId=%d,"
3266 "activeGestureId=%d, currentTouchPointerCount=%d",
3267 activeTouchId, mPointerGesture.activeGestureId, currentFingerCount);
3268 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003269 ALOG_ASSERT(mPointerGesture.activeGestureId >= 0);
3270
3271 mPointerGesture.currentGestureIdBits.clear();
3272 mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId);
3273 mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0;
3274 mPointerGesture.currentGestureProperties[0].clear();
3275 mPointerGesture.currentGestureProperties[0].id = mPointerGesture.activeGestureId;
3276 mPointerGesture.currentGestureProperties[0].toolType = AMOTION_EVENT_TOOL_TYPE_FINGER;
3277 mPointerGesture.currentGestureCoords[0].clear();
3278 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X,
3279 mPointerGesture.referenceGestureX);
3280 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y,
3281 mPointerGesture.referenceGestureY);
3282 mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, 1.0f);
Michael Wright227c5542020-07-02 18:30:52 +01003283 } else if (mPointerGesture.currentGestureMode == PointerGesture::Mode::FREEFORM) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003284 // FREEFORM mode.
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003285 if (DEBUG_GESTURES) {
3286 ALOGD("Gestures: FREEFORM activeTouchId=%d,"
3287 "activeGestureId=%d, currentTouchPointerCount=%d",
3288 activeTouchId, mPointerGesture.activeGestureId, currentFingerCount);
3289 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003290 ALOG_ASSERT(mPointerGesture.activeGestureId >= 0);
3291
3292 mPointerGesture.currentGestureIdBits.clear();
3293
3294 BitSet32 mappedTouchIdBits;
3295 BitSet32 usedGestureIdBits;
Michael Wright227c5542020-07-02 18:30:52 +01003296 if (mPointerGesture.lastGestureMode != PointerGesture::Mode::FREEFORM) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003297 // Initially, assign the active gesture id to the active touch point
3298 // if there is one. No other touch id bits are mapped yet.
3299 if (!*outCancelPreviousGesture) {
3300 mappedTouchIdBits.markBit(activeTouchId);
3301 usedGestureIdBits.markBit(mPointerGesture.activeGestureId);
3302 mPointerGesture.freeformTouchToGestureIdMap[activeTouchId] =
3303 mPointerGesture.activeGestureId;
3304 } else {
3305 mPointerGesture.activeGestureId = -1;
3306 }
3307 } else {
3308 // Otherwise, assume we mapped all touches from the previous frame.
3309 // Reuse all mappings that are still applicable.
3310 mappedTouchIdBits.value = mLastCookedState.fingerIdBits.value &
3311 mCurrentCookedState.fingerIdBits.value;
3312 usedGestureIdBits = mPointerGesture.lastGestureIdBits;
3313
3314 // Check whether we need to choose a new active gesture id because the
3315 // current went went up.
3316 for (BitSet32 upTouchIdBits(mLastCookedState.fingerIdBits.value &
3317 ~mCurrentCookedState.fingerIdBits.value);
3318 !upTouchIdBits.isEmpty();) {
3319 uint32_t upTouchId = upTouchIdBits.clearFirstMarkedBit();
3320 uint32_t upGestureId = mPointerGesture.freeformTouchToGestureIdMap[upTouchId];
3321 if (upGestureId == uint32_t(mPointerGesture.activeGestureId)) {
3322 mPointerGesture.activeGestureId = -1;
3323 break;
3324 }
3325 }
3326 }
3327
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003328 if (DEBUG_GESTURES) {
3329 ALOGD("Gestures: FREEFORM follow up "
3330 "mappedTouchIdBits=0x%08x, usedGestureIdBits=0x%08x, "
3331 "activeGestureId=%d",
3332 mappedTouchIdBits.value, usedGestureIdBits.value,
3333 mPointerGesture.activeGestureId);
3334 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003335
3336 BitSet32 idBits(mCurrentCookedState.fingerIdBits);
3337 for (uint32_t i = 0; i < currentFingerCount; i++) {
3338 uint32_t touchId = idBits.clearFirstMarkedBit();
3339 uint32_t gestureId;
3340 if (!mappedTouchIdBits.hasBit(touchId)) {
3341 gestureId = usedGestureIdBits.markFirstUnmarkedBit();
3342 mPointerGesture.freeformTouchToGestureIdMap[touchId] = gestureId;
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003343 if (DEBUG_GESTURES) {
3344 ALOGD("Gestures: FREEFORM "
3345 "new mapping for touch id %d -> gesture id %d",
3346 touchId, gestureId);
3347 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003348 } else {
3349 gestureId = mPointerGesture.freeformTouchToGestureIdMap[touchId];
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003350 if (DEBUG_GESTURES) {
3351 ALOGD("Gestures: FREEFORM "
3352 "existing mapping for touch id %d -> gesture id %d",
3353 touchId, gestureId);
3354 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003355 }
3356 mPointerGesture.currentGestureIdBits.markBit(gestureId);
3357 mPointerGesture.currentGestureIdToIndex[gestureId] = i;
3358
3359 const RawPointerData::Pointer& pointer =
3360 mCurrentRawState.rawPointerData.pointerForId(touchId);
3361 float deltaX = (pointer.x - mPointerGesture.referenceTouchX) * mPointerXZoomScale;
3362 float deltaY = (pointer.y - mPointerGesture.referenceTouchY) * mPointerYZoomScale;
Prabir Pradhan1728b212021-10-19 16:00:03 -07003363 rotateDelta(mInputDeviceOrientation, &deltaX, &deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003364
3365 mPointerGesture.currentGestureProperties[i].clear();
3366 mPointerGesture.currentGestureProperties[i].id = gestureId;
3367 mPointerGesture.currentGestureProperties[i].toolType =
3368 AMOTION_EVENT_TOOL_TYPE_FINGER;
3369 mPointerGesture.currentGestureCoords[i].clear();
3370 mPointerGesture.currentGestureCoords[i]
3371 .setAxisValue(AMOTION_EVENT_AXIS_X,
3372 mPointerGesture.referenceGestureX + deltaX);
3373 mPointerGesture.currentGestureCoords[i]
3374 .setAxisValue(AMOTION_EVENT_AXIS_Y,
3375 mPointerGesture.referenceGestureY + deltaY);
3376 mPointerGesture.currentGestureCoords[i].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE,
3377 1.0f);
3378 }
3379
3380 if (mPointerGesture.activeGestureId < 0) {
3381 mPointerGesture.activeGestureId =
3382 mPointerGesture.currentGestureIdBits.firstMarkedBit();
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003383 if (DEBUG_GESTURES) {
3384 ALOGD("Gestures: FREEFORM new activeGestureId=%d",
3385 mPointerGesture.activeGestureId);
3386 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003387 }
3388 }
3389 }
3390
3391 mPointerController->setButtonState(mCurrentRawState.buttonState);
3392
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003393 if (DEBUG_GESTURES) {
3394 ALOGD("Gestures: finishPreviousGesture=%s, cancelPreviousGesture=%s, "
3395 "currentGestureMode=%d, currentGestureIdBits=0x%08x, "
3396 "lastGestureMode=%d, lastGestureIdBits=0x%08x",
3397 toString(*outFinishPreviousGesture), toString(*outCancelPreviousGesture),
3398 mPointerGesture.currentGestureMode, mPointerGesture.currentGestureIdBits.value,
3399 mPointerGesture.lastGestureMode, mPointerGesture.lastGestureIdBits.value);
3400 for (BitSet32 idBits = mPointerGesture.currentGestureIdBits; !idBits.isEmpty();) {
3401 uint32_t id = idBits.clearFirstMarkedBit();
3402 uint32_t index = mPointerGesture.currentGestureIdToIndex[id];
3403 const PointerProperties& properties = mPointerGesture.currentGestureProperties[index];
3404 const PointerCoords& coords = mPointerGesture.currentGestureCoords[index];
3405 ALOGD(" currentGesture[%d]: index=%d, toolType=%d, "
3406 "x=%0.3f, y=%0.3f, pressure=%0.3f",
3407 id, index, properties.toolType, coords.getAxisValue(AMOTION_EVENT_AXIS_X),
3408 coords.getAxisValue(AMOTION_EVENT_AXIS_Y),
3409 coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE));
3410 }
3411 for (BitSet32 idBits = mPointerGesture.lastGestureIdBits; !idBits.isEmpty();) {
3412 uint32_t id = idBits.clearFirstMarkedBit();
3413 uint32_t index = mPointerGesture.lastGestureIdToIndex[id];
3414 const PointerProperties& properties = mPointerGesture.lastGestureProperties[index];
3415 const PointerCoords& coords = mPointerGesture.lastGestureCoords[index];
3416 ALOGD(" lastGesture[%d]: index=%d, toolType=%d, "
3417 "x=%0.3f, y=%0.3f, pressure=%0.3f",
3418 id, index, properties.toolType, coords.getAxisValue(AMOTION_EVENT_AXIS_X),
3419 coords.getAxisValue(AMOTION_EVENT_AXIS_Y),
3420 coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE));
3421 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003422 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003423 return true;
3424}
3425
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003426void TouchInputMapper::dispatchPointerStylus(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003427 mPointerSimple.currentCoords.clear();
3428 mPointerSimple.currentProperties.clear();
3429
3430 bool down, hovering;
3431 if (!mCurrentCookedState.stylusIdBits.isEmpty()) {
3432 uint32_t id = mCurrentCookedState.stylusIdBits.firstMarkedBit();
3433 uint32_t index = mCurrentCookedState.cookedPointerData.idToIndex[id];
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003434 mPointerController
3435 ->setPosition(mCurrentCookedState.cookedPointerData.pointerCoords[index].getX(),
3436 mCurrentCookedState.cookedPointerData.pointerCoords[index].getY());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003437
3438 hovering = mCurrentCookedState.cookedPointerData.hoveringIdBits.hasBit(id);
3439 down = !hovering;
3440
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003441 float x, y;
3442 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003443 mPointerSimple.currentCoords.copyFrom(
3444 mCurrentCookedState.cookedPointerData.pointerCoords[index]);
3445 mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x);
3446 mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y);
3447 mPointerSimple.currentProperties.id = 0;
3448 mPointerSimple.currentProperties.toolType =
3449 mCurrentCookedState.cookedPointerData.pointerProperties[index].toolType;
3450 } else {
3451 down = false;
3452 hovering = false;
3453 }
3454
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003455 dispatchPointerSimple(when, readTime, policyFlags, down, hovering);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003456}
3457
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003458void TouchInputMapper::abortPointerStylus(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
3459 abortPointerSimple(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003460}
3461
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003462void TouchInputMapper::dispatchPointerMouse(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003463 mPointerSimple.currentCoords.clear();
3464 mPointerSimple.currentProperties.clear();
3465
3466 bool down, hovering;
3467 if (!mCurrentCookedState.mouseIdBits.isEmpty()) {
3468 uint32_t id = mCurrentCookedState.mouseIdBits.firstMarkedBit();
3469 uint32_t currentIndex = mCurrentRawState.rawPointerData.idToIndex[id];
3470 float deltaX = 0, deltaY = 0;
3471 if (mLastCookedState.mouseIdBits.hasBit(id)) {
3472 uint32_t lastIndex = mCurrentRawState.rawPointerData.idToIndex[id];
3473 deltaX = (mCurrentRawState.rawPointerData.pointers[currentIndex].x -
3474 mLastRawState.rawPointerData.pointers[lastIndex].x) *
3475 mPointerXMovementScale;
3476 deltaY = (mCurrentRawState.rawPointerData.pointers[currentIndex].y -
3477 mLastRawState.rawPointerData.pointers[lastIndex].y) *
3478 mPointerYMovementScale;
3479
Prabir Pradhan1728b212021-10-19 16:00:03 -07003480 rotateDelta(mInputDeviceOrientation, &deltaX, &deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003481 mPointerVelocityControl.move(when, &deltaX, &deltaY);
3482
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003483 mPointerController->move(deltaX, deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003484 } else {
3485 mPointerVelocityControl.reset();
3486 }
3487
3488 down = isPointerDown(mCurrentRawState.buttonState);
3489 hovering = !down;
3490
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003491 float x, y;
3492 mPointerController->getPosition(&x, &y);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003493 mPointerSimple.currentCoords.copyFrom(
3494 mCurrentCookedState.cookedPointerData.pointerCoords[currentIndex]);
3495 mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x);
3496 mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y);
3497 mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE,
3498 hovering ? 0.0f : 1.0f);
3499 mPointerSimple.currentProperties.id = 0;
3500 mPointerSimple.currentProperties.toolType =
3501 mCurrentCookedState.cookedPointerData.pointerProperties[currentIndex].toolType;
3502 } else {
3503 mPointerVelocityControl.reset();
3504
3505 down = false;
3506 hovering = false;
3507 }
3508
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003509 dispatchPointerSimple(when, readTime, policyFlags, down, hovering);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003510}
3511
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003512void TouchInputMapper::abortPointerMouse(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
3513 abortPointerSimple(when, readTime, policyFlags);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003514
3515 mPointerVelocityControl.reset();
3516}
3517
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003518void TouchInputMapper::dispatchPointerSimple(nsecs_t when, nsecs_t readTime, uint32_t policyFlags,
3519 bool down, bool hovering) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003520 int32_t metaState = getContext()->getGlobalMetaState();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003521
3522 if (down || hovering) {
Michael Wrightca5bede2020-07-02 00:00:29 +01003523 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003524 mPointerController->clearSpots();
3525 mPointerController->setButtonState(mCurrentRawState.buttonState);
Michael Wrightca5bede2020-07-02 00:00:29 +01003526 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003527 } else if (!down && !hovering && (mPointerSimple.down || mPointerSimple.hovering)) {
Michael Wrightca5bede2020-07-02 00:00:29 +01003528 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003529 }
Garfield Tan9514d782020-11-10 16:37:23 -08003530 int32_t displayId = mPointerController->getDisplayId();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003531
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003532 float xCursorPosition, yCursorPosition;
3533 mPointerController->getPosition(&xCursorPosition, &yCursorPosition);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003534
3535 if (mPointerSimple.down && !down) {
3536 mPointerSimple.down = false;
3537
3538 // Send up.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003539 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
3540 displayId, policyFlags, AMOTION_EVENT_ACTION_UP, 0, 0, metaState,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003541 mLastRawState.buttonState, MotionClassification::NONE,
3542 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &mPointerSimple.lastProperties,
3543 &mPointerSimple.lastCoords, mOrientedXPrecision, mOrientedYPrecision,
3544 xCursorPosition, yCursorPosition, mPointerSimple.downTime,
3545 /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003546 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003547 }
3548
3549 if (mPointerSimple.hovering && !hovering) {
3550 mPointerSimple.hovering = false;
3551
3552 // Send hover exit.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003553 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
3554 displayId, policyFlags, AMOTION_EVENT_ACTION_HOVER_EXIT, 0, 0,
3555 metaState, mLastRawState.buttonState, MotionClassification::NONE,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003556 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &mPointerSimple.lastProperties,
3557 &mPointerSimple.lastCoords, mOrientedXPrecision, mOrientedYPrecision,
3558 xCursorPosition, yCursorPosition, mPointerSimple.downTime,
3559 /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003560 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003561 }
3562
3563 if (down) {
3564 if (!mPointerSimple.down) {
3565 mPointerSimple.down = true;
3566 mPointerSimple.downTime = when;
3567
3568 // Send down.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003569 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003570 displayId, policyFlags, AMOTION_EVENT_ACTION_DOWN, 0, 0,
3571 metaState, mCurrentRawState.buttonState,
3572 MotionClassification::NONE, AMOTION_EVENT_EDGE_FLAG_NONE, 1,
3573 &mPointerSimple.currentProperties, &mPointerSimple.currentCoords,
3574 mOrientedXPrecision, mOrientedYPrecision, xCursorPosition,
3575 yCursorPosition, mPointerSimple.downTime, /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003576 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003577 }
3578
3579 // Send move.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003580 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
3581 displayId, policyFlags, AMOTION_EVENT_ACTION_MOVE, 0, 0, metaState,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003582 mCurrentRawState.buttonState, MotionClassification::NONE,
3583 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &mPointerSimple.currentProperties,
3584 &mPointerSimple.currentCoords, mOrientedXPrecision,
3585 mOrientedYPrecision, xCursorPosition, yCursorPosition,
3586 mPointerSimple.downTime, /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003587 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003588 }
3589
3590 if (hovering) {
3591 if (!mPointerSimple.hovering) {
3592 mPointerSimple.hovering = true;
3593
3594 // Send hover enter.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003595 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003596 displayId, policyFlags, AMOTION_EVENT_ACTION_HOVER_ENTER, 0, 0,
3597 metaState, mCurrentRawState.buttonState,
3598 MotionClassification::NONE, AMOTION_EVENT_EDGE_FLAG_NONE, 1,
3599 &mPointerSimple.currentProperties, &mPointerSimple.currentCoords,
3600 mOrientedXPrecision, mOrientedYPrecision, xCursorPosition,
3601 yCursorPosition, mPointerSimple.downTime, /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003602 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003603 }
3604
3605 // Send hover move.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003606 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
3607 displayId, policyFlags, AMOTION_EVENT_ACTION_HOVER_MOVE, 0, 0,
3608 metaState, mCurrentRawState.buttonState, MotionClassification::NONE,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003609 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &mPointerSimple.currentProperties,
3610 &mPointerSimple.currentCoords, mOrientedXPrecision,
3611 mOrientedYPrecision, xCursorPosition, yCursorPosition,
3612 mPointerSimple.downTime, /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003613 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003614 }
3615
3616 if (mCurrentRawState.rawVScroll || mCurrentRawState.rawHScroll) {
3617 float vscroll = mCurrentRawState.rawVScroll;
3618 float hscroll = mCurrentRawState.rawHScroll;
3619 mWheelYVelocityControl.move(when, nullptr, &vscroll);
3620 mWheelXVelocityControl.move(when, &hscroll, nullptr);
3621
3622 // Send scroll.
3623 PointerCoords pointerCoords;
3624 pointerCoords.copyFrom(mPointerSimple.currentCoords);
3625 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll);
3626 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_HSCROLL, hscroll);
3627
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003628 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
3629 displayId, policyFlags, AMOTION_EVENT_ACTION_SCROLL, 0, 0, metaState,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003630 mCurrentRawState.buttonState, MotionClassification::NONE,
3631 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &mPointerSimple.currentProperties,
3632 &pointerCoords, mOrientedXPrecision, mOrientedYPrecision,
3633 xCursorPosition, yCursorPosition, mPointerSimple.downTime,
3634 /* videoFrames */ {});
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003635 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003636 }
3637
3638 // Save state.
3639 if (down || hovering) {
3640 mPointerSimple.lastCoords.copyFrom(mPointerSimple.currentCoords);
3641 mPointerSimple.lastProperties.copyFrom(mPointerSimple.currentProperties);
3642 } else {
3643 mPointerSimple.reset();
3644 }
3645}
3646
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003647void TouchInputMapper::abortPointerSimple(nsecs_t when, nsecs_t readTime, uint32_t policyFlags) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003648 mPointerSimple.currentCoords.clear();
3649 mPointerSimple.currentProperties.clear();
3650
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003651 dispatchPointerSimple(when, readTime, policyFlags, false, false);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003652}
3653
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003654void TouchInputMapper::dispatchMotion(nsecs_t when, nsecs_t readTime, uint32_t policyFlags,
3655 uint32_t source, int32_t action, int32_t actionButton,
3656 int32_t flags, int32_t metaState, int32_t buttonState,
3657 int32_t edgeFlags, const PointerProperties* properties,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003658 const PointerCoords* coords, const uint32_t* idToIndex,
3659 BitSet32 idBits, int32_t changedId, float xPrecision,
3660 float yPrecision, nsecs_t downTime) {
3661 PointerCoords pointerCoords[MAX_POINTERS];
3662 PointerProperties pointerProperties[MAX_POINTERS];
3663 uint32_t pointerCount = 0;
3664 while (!idBits.isEmpty()) {
3665 uint32_t id = idBits.clearFirstMarkedBit();
3666 uint32_t index = idToIndex[id];
3667 pointerProperties[pointerCount].copyFrom(properties[index]);
3668 pointerCoords[pointerCount].copyFrom(coords[index]);
3669
3670 if (changedId >= 0 && id == uint32_t(changedId)) {
3671 action |= pointerCount << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
3672 }
3673
3674 pointerCount += 1;
3675 }
3676
3677 ALOG_ASSERT(pointerCount != 0);
3678
3679 if (changedId >= 0 && pointerCount == 1) {
3680 // Replace initial down and final up action.
3681 // We can compare the action without masking off the changed pointer index
3682 // because we know the index is 0.
3683 if (action == AMOTION_EVENT_ACTION_POINTER_DOWN) {
3684 action = AMOTION_EVENT_ACTION_DOWN;
3685 } else if (action == AMOTION_EVENT_ACTION_POINTER_UP) {
arthurhungcc7f9802020-04-30 17:55:40 +08003686 if ((flags & AMOTION_EVENT_FLAG_CANCELED) != 0) {
3687 action = AMOTION_EVENT_ACTION_CANCEL;
3688 } else {
3689 action = AMOTION_EVENT_ACTION_UP;
3690 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003691 } else {
3692 // Can't happen.
3693 ALOG_ASSERT(false);
3694 }
3695 }
3696 float xCursorPosition = AMOTION_EVENT_INVALID_CURSOR_POSITION;
3697 float yCursorPosition = AMOTION_EVENT_INVALID_CURSOR_POSITION;
Michael Wright227c5542020-07-02 18:30:52 +01003698 if (mDeviceMode == DeviceMode::POINTER) {
Prabir Pradhande69f8a2021-11-18 16:40:34 +00003699 mPointerController->getPosition(&xCursorPosition, &yCursorPosition);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003700 }
3701 const int32_t displayId = getAssociatedDisplayId().value_or(ADISPLAY_ID_NONE);
3702 const int32_t deviceId = getDeviceId();
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -08003703 std::vector<TouchVideoFrame> frames = getDeviceContext().getVideoFrames();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003704 std::for_each(frames.begin(), frames.end(),
Prabir Pradhan1728b212021-10-19 16:00:03 -07003705 [this](TouchVideoFrame& frame) { frame.rotate(this->mInputDeviceOrientation); });
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003706 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, deviceId, source, displayId,
3707 policyFlags, action, actionButton, flags, metaState, buttonState,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +00003708 MotionClassification::NONE, edgeFlags, pointerCount, pointerProperties,
3709 pointerCoords, xPrecision, yPrecision, xCursorPosition, yCursorPosition,
3710 downTime, std::move(frames));
Siarhei Vishniakou18050092021-09-01 13:32:49 -07003711 getListener().notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003712}
3713
3714bool TouchInputMapper::updateMovedPointers(const PointerProperties* inProperties,
3715 const PointerCoords* inCoords,
3716 const uint32_t* inIdToIndex,
3717 PointerProperties* outProperties,
3718 PointerCoords* outCoords, const uint32_t* outIdToIndex,
3719 BitSet32 idBits) const {
3720 bool changed = false;
3721 while (!idBits.isEmpty()) {
3722 uint32_t id = idBits.clearFirstMarkedBit();
3723 uint32_t inIndex = inIdToIndex[id];
3724 uint32_t outIndex = outIdToIndex[id];
3725
3726 const PointerProperties& curInProperties = inProperties[inIndex];
3727 const PointerCoords& curInCoords = inCoords[inIndex];
3728 PointerProperties& curOutProperties = outProperties[outIndex];
3729 PointerCoords& curOutCoords = outCoords[outIndex];
3730
3731 if (curInProperties != curOutProperties) {
3732 curOutProperties.copyFrom(curInProperties);
3733 changed = true;
3734 }
3735
3736 if (curInCoords != curOutCoords) {
3737 curOutCoords.copyFrom(curInCoords);
3738 changed = true;
3739 }
3740 }
3741 return changed;
3742}
3743
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +00003744void TouchInputMapper::cancelTouch(nsecs_t when, nsecs_t readTime) {
3745 abortPointerUsage(when, readTime, 0 /*policyFlags*/);
3746 abortTouches(when, readTime, 0 /* policyFlags*/);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003747}
3748
Prabir Pradhan1728b212021-10-19 16:00:03 -07003749// Transform input device coordinates to display panel coordinates.
3750void TouchInputMapper::rotateAndScale(float& x, float& y) const {
Arthur Hung4197f6b2020-03-16 15:39:59 +08003751 const float xScaled = float(x - mRawPointerAxes.x.minValue) * mXScale;
3752 const float yScaled = float(y - mRawPointerAxes.y.minValue) * mYScale;
3753
arthurhunga36b28e2020-12-29 20:28:15 +08003754 const float xScaledMax = float(mRawPointerAxes.x.maxValue - x) * mXScale;
3755 const float yScaledMax = float(mRawPointerAxes.y.maxValue - y) * mYScale;
3756
Prabir Pradhan1728b212021-10-19 16:00:03 -07003757 // Rotate to display coordinate.
Arthur Hung4197f6b2020-03-16 15:39:59 +08003758 // 0 - no swap and reverse.
3759 // 90 - swap x/y and reverse y.
3760 // 180 - reverse x, y.
3761 // 270 - swap x/y and reverse x.
Prabir Pradhan1728b212021-10-19 16:00:03 -07003762 switch (mInputDeviceOrientation) {
Arthur Hung4197f6b2020-03-16 15:39:59 +08003763 case DISPLAY_ORIENTATION_0:
Prabir Pradhan1728b212021-10-19 16:00:03 -07003764 x = xScaled;
3765 y = yScaled;
Arthur Hung4197f6b2020-03-16 15:39:59 +08003766 break;
Arthur Hung05de5772019-09-26 18:31:26 +08003767 case DISPLAY_ORIENTATION_90:
Prabir Pradhan1728b212021-10-19 16:00:03 -07003768 y = xScaledMax;
3769 x = yScaled;
Arthur Hung05de5772019-09-26 18:31:26 +08003770 break;
3771 case DISPLAY_ORIENTATION_180:
Prabir Pradhan1728b212021-10-19 16:00:03 -07003772 x = xScaledMax;
3773 y = yScaledMax;
Arthur Hung05de5772019-09-26 18:31:26 +08003774 break;
3775 case DISPLAY_ORIENTATION_270:
Prabir Pradhan1728b212021-10-19 16:00:03 -07003776 y = xScaled;
3777 x = yScaledMax;
Arthur Hung05de5772019-09-26 18:31:26 +08003778 break;
3779 default:
Arthur Hung4197f6b2020-03-16 15:39:59 +08003780 assert(false);
Arthur Hung05de5772019-09-26 18:31:26 +08003781 }
3782}
3783
Prabir Pradhan1728b212021-10-19 16:00:03 -07003784bool TouchInputMapper::isPointInsidePhysicalFrame(int32_t x, int32_t y) const {
Arthur Hung4197f6b2020-03-16 15:39:59 +08003785 const float xScaled = (x - mRawPointerAxes.x.minValue) * mXScale;
3786 const float yScaled = (y - mRawPointerAxes.y.minValue) * mYScale;
3787
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003788 return x >= mRawPointerAxes.x.minValue && x <= mRawPointerAxes.x.maxValue &&
Prabir Pradhan8b89c2f2021-07-29 16:30:14 +00003789 xScaled >= mPhysicalLeft && xScaled <= (mPhysicalLeft + mPhysicalWidth) &&
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003790 y >= mRawPointerAxes.y.minValue && y <= mRawPointerAxes.y.maxValue &&
Prabir Pradhan8b89c2f2021-07-29 16:30:14 +00003791 yScaled >= mPhysicalTop && yScaled <= (mPhysicalTop + mPhysicalHeight);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003792}
3793
3794const TouchInputMapper::VirtualKey* TouchInputMapper::findVirtualKeyHit(int32_t x, int32_t y) {
3795 for (const VirtualKey& virtualKey : mVirtualKeys) {
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003796 if (DEBUG_VIRTUAL_KEYS) {
3797 ALOGD("VirtualKeys: Hit test (%d, %d): keyCode=%d, scanCode=%d, "
3798 "left=%d, top=%d, right=%d, bottom=%d",
3799 x, y, virtualKey.keyCode, virtualKey.scanCode, virtualKey.hitLeft,
3800 virtualKey.hitTop, virtualKey.hitRight, virtualKey.hitBottom);
3801 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003802
3803 if (virtualKey.isHit(x, y)) {
3804 return &virtualKey;
3805 }
3806 }
3807
3808 return nullptr;
3809}
3810
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003811void TouchInputMapper::assignPointerIds(const RawState& last, RawState& current) {
3812 uint32_t currentPointerCount = current.rawPointerData.pointerCount;
3813 uint32_t lastPointerCount = last.rawPointerData.pointerCount;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003814
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003815 current.rawPointerData.clearIdBits();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003816
3817 if (currentPointerCount == 0) {
3818 // No pointers to assign.
3819 return;
3820 }
3821
3822 if (lastPointerCount == 0) {
3823 // All pointers are new.
3824 for (uint32_t i = 0; i < currentPointerCount; i++) {
3825 uint32_t id = i;
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003826 current.rawPointerData.pointers[i].id = id;
3827 current.rawPointerData.idToIndex[id] = i;
3828 current.rawPointerData.markIdBit(id, current.rawPointerData.isHovering(i));
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003829 }
3830 return;
3831 }
3832
3833 if (currentPointerCount == 1 && lastPointerCount == 1 &&
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003834 current.rawPointerData.pointers[0].toolType == last.rawPointerData.pointers[0].toolType) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003835 // Only one pointer and no change in count so it must have the same id as before.
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003836 uint32_t id = last.rawPointerData.pointers[0].id;
3837 current.rawPointerData.pointers[0].id = id;
3838 current.rawPointerData.idToIndex[id] = 0;
3839 current.rawPointerData.markIdBit(id, current.rawPointerData.isHovering(0));
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003840 return;
3841 }
3842
3843 // General case.
3844 // We build a heap of squared euclidean distances between current and last pointers
3845 // associated with the current and last pointer indices. Then, we find the best
3846 // match (by distance) for each current pointer.
3847 // The pointers must have the same tool type but it is possible for them to
3848 // transition from hovering to touching or vice-versa while retaining the same id.
3849 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS];
3850
3851 uint32_t heapSize = 0;
3852 for (uint32_t currentPointerIndex = 0; currentPointerIndex < currentPointerCount;
3853 currentPointerIndex++) {
3854 for (uint32_t lastPointerIndex = 0; lastPointerIndex < lastPointerCount;
3855 lastPointerIndex++) {
3856 const RawPointerData::Pointer& currentPointer =
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003857 current.rawPointerData.pointers[currentPointerIndex];
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003858 const RawPointerData::Pointer& lastPointer =
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003859 last.rawPointerData.pointers[lastPointerIndex];
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003860 if (currentPointer.toolType == lastPointer.toolType) {
3861 int64_t deltaX = currentPointer.x - lastPointer.x;
3862 int64_t deltaY = currentPointer.y - lastPointer.y;
3863
3864 uint64_t distance = uint64_t(deltaX * deltaX + deltaY * deltaY);
3865
3866 // Insert new element into the heap (sift up).
3867 heap[heapSize].currentPointerIndex = currentPointerIndex;
3868 heap[heapSize].lastPointerIndex = lastPointerIndex;
3869 heap[heapSize].distance = distance;
3870 heapSize += 1;
3871 }
3872 }
3873 }
3874
3875 // Heapify
3876 for (uint32_t startIndex = heapSize / 2; startIndex != 0;) {
3877 startIndex -= 1;
3878 for (uint32_t parentIndex = startIndex;;) {
3879 uint32_t childIndex = parentIndex * 2 + 1;
3880 if (childIndex >= heapSize) {
3881 break;
3882 }
3883
3884 if (childIndex + 1 < heapSize &&
3885 heap[childIndex + 1].distance < heap[childIndex].distance) {
3886 childIndex += 1;
3887 }
3888
3889 if (heap[parentIndex].distance <= heap[childIndex].distance) {
3890 break;
3891 }
3892
3893 swap(heap[parentIndex], heap[childIndex]);
3894 parentIndex = childIndex;
3895 }
3896 }
3897
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003898 if (DEBUG_POINTER_ASSIGNMENT) {
3899 ALOGD("assignPointerIds - initial distance min-heap: size=%d", heapSize);
3900 for (size_t i = 0; i < heapSize; i++) {
3901 ALOGD(" heap[%zu]: cur=%" PRIu32 ", last=%" PRIu32 ", distance=%" PRIu64, i,
3902 heap[i].currentPointerIndex, heap[i].lastPointerIndex, heap[i].distance);
3903 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003904 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003905
3906 // Pull matches out by increasing order of distance.
3907 // To avoid reassigning pointers that have already been matched, the loop keeps track
3908 // of which last and current pointers have been matched using the matchedXXXBits variables.
3909 // It also tracks the used pointer id bits.
3910 BitSet32 matchedLastBits(0);
3911 BitSet32 matchedCurrentBits(0);
3912 BitSet32 usedIdBits(0);
3913 bool first = true;
3914 for (uint32_t i = min(currentPointerCount, lastPointerCount); heapSize > 0 && i > 0; i--) {
3915 while (heapSize > 0) {
3916 if (first) {
3917 // The first time through the loop, we just consume the root element of
3918 // the heap (the one with smallest distance).
3919 first = false;
3920 } else {
3921 // Previous iterations consumed the root element of the heap.
3922 // Pop root element off of the heap (sift down).
3923 heap[0] = heap[heapSize];
3924 for (uint32_t parentIndex = 0;;) {
3925 uint32_t childIndex = parentIndex * 2 + 1;
3926 if (childIndex >= heapSize) {
3927 break;
3928 }
3929
3930 if (childIndex + 1 < heapSize &&
3931 heap[childIndex + 1].distance < heap[childIndex].distance) {
3932 childIndex += 1;
3933 }
3934
3935 if (heap[parentIndex].distance <= heap[childIndex].distance) {
3936 break;
3937 }
3938
3939 swap(heap[parentIndex], heap[childIndex]);
3940 parentIndex = childIndex;
3941 }
3942
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003943 if (DEBUG_POINTER_ASSIGNMENT) {
3944 ALOGD("assignPointerIds - reduced distance min-heap: size=%d", heapSize);
3945 for (size_t j = 0; j < heapSize; j++) {
3946 ALOGD(" heap[%zu]: cur=%" PRIu32 ", last=%" PRIu32 ", distance=%" PRIu64,
3947 j, heap[j].currentPointerIndex, heap[j].lastPointerIndex,
3948 heap[j].distance);
3949 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003950 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003951 }
3952
3953 heapSize -= 1;
3954
3955 uint32_t currentPointerIndex = heap[0].currentPointerIndex;
3956 if (matchedCurrentBits.hasBit(currentPointerIndex)) continue; // already matched
3957
3958 uint32_t lastPointerIndex = heap[0].lastPointerIndex;
3959 if (matchedLastBits.hasBit(lastPointerIndex)) continue; // already matched
3960
3961 matchedCurrentBits.markBit(currentPointerIndex);
3962 matchedLastBits.markBit(lastPointerIndex);
3963
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003964 uint32_t id = last.rawPointerData.pointers[lastPointerIndex].id;
3965 current.rawPointerData.pointers[currentPointerIndex].id = id;
3966 current.rawPointerData.idToIndex[id] = currentPointerIndex;
3967 current.rawPointerData.markIdBit(id,
3968 current.rawPointerData.isHovering(
3969 currentPointerIndex));
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003970 usedIdBits.markBit(id);
3971
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003972 if (DEBUG_POINTER_ASSIGNMENT) {
3973 ALOGD("assignPointerIds - matched: cur=%" PRIu32 ", last=%" PRIu32 ", id=%" PRIu32
3974 ", distance=%" PRIu64,
3975 lastPointerIndex, currentPointerIndex, id, heap[0].distance);
3976 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003977 break;
3978 }
3979 }
3980
3981 // Assign fresh ids to pointers that were not matched in the process.
3982 for (uint32_t i = currentPointerCount - matchedCurrentBits.count(); i != 0; i--) {
3983 uint32_t currentPointerIndex = matchedCurrentBits.markFirstUnmarkedBit();
3984 uint32_t id = usedIdBits.markFirstUnmarkedBit();
3985
Siarhei Vishniakou57479982021-03-03 01:32:21 +00003986 current.rawPointerData.pointers[currentPointerIndex].id = id;
3987 current.rawPointerData.idToIndex[id] = currentPointerIndex;
3988 current.rawPointerData.markIdBit(id,
3989 current.rawPointerData.isHovering(currentPointerIndex));
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003990
Siarhei Vishniakou465e1c02021-12-09 10:47:29 -08003991 if (DEBUG_POINTER_ASSIGNMENT) {
3992 ALOGD("assignPointerIds - assigned: cur=%" PRIu32 ", id=%" PRIu32, currentPointerIndex,
3993 id);
3994 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07003995 }
3996}
3997
3998int32_t TouchInputMapper::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) {
3999 if (mCurrentVirtualKey.down && mCurrentVirtualKey.keyCode == keyCode) {
4000 return AKEY_STATE_VIRTUAL;
4001 }
4002
4003 for (const VirtualKey& virtualKey : mVirtualKeys) {
4004 if (virtualKey.keyCode == keyCode) {
4005 return AKEY_STATE_UP;
4006 }
4007 }
4008
4009 return AKEY_STATE_UNKNOWN;
4010}
4011
4012int32_t TouchInputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) {
4013 if (mCurrentVirtualKey.down && mCurrentVirtualKey.scanCode == scanCode) {
4014 return AKEY_STATE_VIRTUAL;
4015 }
4016
4017 for (const VirtualKey& virtualKey : mVirtualKeys) {
4018 if (virtualKey.scanCode == scanCode) {
4019 return AKEY_STATE_UP;
4020 }
4021 }
4022
4023 return AKEY_STATE_UNKNOWN;
4024}
4025
4026bool TouchInputMapper::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes,
4027 const int32_t* keyCodes, uint8_t* outFlags) {
4028 for (const VirtualKey& virtualKey : mVirtualKeys) {
4029 for (size_t i = 0; i < numCodes; i++) {
4030 if (virtualKey.keyCode == keyCodes[i]) {
4031 outFlags[i] = 1;
4032 }
4033 }
4034 }
4035
4036 return true;
4037}
4038
4039std::optional<int32_t> TouchInputMapper::getAssociatedDisplayId() {
4040 if (mParameters.hasAssociatedDisplay) {
Michael Wright227c5542020-07-02 18:30:52 +01004041 if (mDeviceMode == DeviceMode::POINTER) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07004042 return std::make_optional(mPointerController->getDisplayId());
4043 } else {
4044 return std::make_optional(mViewport.displayId);
4045 }
4046 }
4047 return std::nullopt;
4048}
4049
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07004050} // namespace android