blob: ac91d4510a7175bbdde77b57fc19182b002ae04d [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 Wrightfe3de7d2020-07-02 19:05:30 +010017// clang-format off
Prabir Pradhan9244aea2020-02-05 20:31:40 -080018#include "../Macros.h"
Michael Wrightfe3de7d2020-07-02 19:05:30 +010019// clang-format on
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070020
21#include "CursorInputMapper.h"
22
23#include "CursorButtonAccumulator.h"
24#include "CursorScrollAccumulator.h"
Michael Wrightca5bede2020-07-02 00:00:29 +010025#include "PointerControllerInterface.h"
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070026#include "TouchCursorInputMapperCommon.h"
27
28namespace android {
29
30// --- CursorMotionAccumulator ---
31
32CursorMotionAccumulator::CursorMotionAccumulator() {
33 clearRelativeAxes();
34}
35
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -080036void CursorMotionAccumulator::reset(InputDeviceContext& deviceContext) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070037 clearRelativeAxes();
38}
39
40void CursorMotionAccumulator::clearRelativeAxes() {
41 mRelX = 0;
42 mRelY = 0;
43}
44
45void CursorMotionAccumulator::process(const RawEvent* rawEvent) {
46 if (rawEvent->type == EV_REL) {
47 switch (rawEvent->code) {
48 case REL_X:
49 mRelX = rawEvent->value;
50 break;
51 case REL_Y:
52 mRelY = rawEvent->value;
53 break;
54 }
55 }
56}
57
58void CursorMotionAccumulator::finishSync() {
59 clearRelativeAxes();
60}
61
62// --- CursorInputMapper ---
63
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -080064CursorInputMapper::CursorInputMapper(InputDeviceContext& deviceContext)
65 : InputMapper(deviceContext) {}
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070066
67CursorInputMapper::~CursorInputMapper() {}
68
69uint32_t CursorInputMapper::getSources() {
70 return mSource;
71}
72
73void CursorInputMapper::populateDeviceInfo(InputDeviceInfo* info) {
74 InputMapper::populateDeviceInfo(info);
75
76 if (mParameters.mode == Parameters::MODE_POINTER) {
77 float minX, minY, maxX, maxY;
78 if (mPointerController->getBounds(&minX, &minY, &maxX, &maxY)) {
79 info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, minX, maxX, 0.0f, 0.0f, 0.0f);
80 info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, minY, maxY, 0.0f, 0.0f, 0.0f);
81 }
82 } else {
83 info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, -1.0f, 1.0f, 0.0f, mXScale, 0.0f);
84 info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, -1.0f, 1.0f, 0.0f, mYScale, 0.0f);
Nathaniel R. Lewis2e8f2d42019-08-21 04:56:10 +000085 info->addMotionRange(AMOTION_EVENT_AXIS_RELATIVE_X, mSource, -1.0f, 1.0f, 0.0f, mXScale,
86 0.0f);
87 info->addMotionRange(AMOTION_EVENT_AXIS_RELATIVE_Y, mSource, -1.0f, 1.0f, 0.0f, mYScale,
88 0.0f);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070089 }
90 info->addMotionRange(AMOTION_EVENT_AXIS_PRESSURE, mSource, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f);
91
92 if (mCursorScrollAccumulator.haveRelativeVWheel()) {
93 info->addMotionRange(AMOTION_EVENT_AXIS_VSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f);
94 }
95 if (mCursorScrollAccumulator.haveRelativeHWheel()) {
96 info->addMotionRange(AMOTION_EVENT_AXIS_HSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f);
97 }
98}
99
100void CursorInputMapper::dump(std::string& dump) {
101 dump += INDENT2 "Cursor Input Mapper:\n";
102 dumpParameters(dump);
103 dump += StringPrintf(INDENT3 "XScale: %0.3f\n", mXScale);
104 dump += StringPrintf(INDENT3 "YScale: %0.3f\n", mYScale);
105 dump += StringPrintf(INDENT3 "XPrecision: %0.3f\n", mXPrecision);
106 dump += StringPrintf(INDENT3 "YPrecision: %0.3f\n", mYPrecision);
107 dump += StringPrintf(INDENT3 "HaveVWheel: %s\n",
108 toString(mCursorScrollAccumulator.haveRelativeVWheel()));
109 dump += StringPrintf(INDENT3 "HaveHWheel: %s\n",
110 toString(mCursorScrollAccumulator.haveRelativeHWheel()));
111 dump += StringPrintf(INDENT3 "VWheelScale: %0.3f\n", mVWheelScale);
112 dump += StringPrintf(INDENT3 "HWheelScale: %0.3f\n", mHWheelScale);
113 dump += StringPrintf(INDENT3 "Orientation: %d\n", mOrientation);
114 dump += StringPrintf(INDENT3 "ButtonState: 0x%08x\n", mButtonState);
115 dump += StringPrintf(INDENT3 "Down: %s\n", toString(isPointerDown(mButtonState)));
116 dump += StringPrintf(INDENT3 "DownTime: %" PRId64 "\n", mDownTime);
117}
118
119void CursorInputMapper::configure(nsecs_t when, const InputReaderConfiguration* config,
120 uint32_t changes) {
121 InputMapper::configure(when, config, changes);
122
123 if (!changes) { // first time only
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800124 mCursorScrollAccumulator.configure(getDeviceContext());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700125
126 // Configure basic parameters.
127 configureParameters();
128
129 // Configure device mode.
130 switch (mParameters.mode) {
131 case Parameters::MODE_POINTER_RELATIVE:
132 // Should not happen during first time configuration.
133 ALOGE("Cannot start a device in MODE_POINTER_RELATIVE, starting in MODE_POINTER");
134 mParameters.mode = Parameters::MODE_POINTER;
135 [[fallthrough]];
136 case Parameters::MODE_POINTER:
137 mSource = AINPUT_SOURCE_MOUSE;
138 mXPrecision = 1.0f;
139 mYPrecision = 1.0f;
140 mXScale = 1.0f;
141 mYScale = 1.0f;
Prabir Pradhanc7ef27e2020-02-03 19:19:15 -0800142 mPointerController = getContext()->getPointerController(getDeviceId());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700143 break;
144 case Parameters::MODE_NAVIGATION:
145 mSource = AINPUT_SOURCE_TRACKBALL;
146 mXPrecision = TRACKBALL_MOVEMENT_THRESHOLD;
147 mYPrecision = TRACKBALL_MOVEMENT_THRESHOLD;
148 mXScale = 1.0f / TRACKBALL_MOVEMENT_THRESHOLD;
149 mYScale = 1.0f / TRACKBALL_MOVEMENT_THRESHOLD;
150 break;
151 }
152
153 mVWheelScale = 1.0f;
154 mHWheelScale = 1.0f;
155 }
156
157 if ((!changes && config->pointerCapture) ||
158 (changes & InputReaderConfiguration::CHANGE_POINTER_CAPTURE)) {
159 if (config->pointerCapture) {
160 if (mParameters.mode == Parameters::MODE_POINTER) {
161 mParameters.mode = Parameters::MODE_POINTER_RELATIVE;
162 mSource = AINPUT_SOURCE_MOUSE_RELATIVE;
163 // Keep PointerController around in order to preserve the pointer position.
Michael Wrightca5bede2020-07-02 00:00:29 +0100164 mPointerController->fade(PointerControllerInterface::Transition::IMMEDIATE);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700165 } else {
166 ALOGE("Cannot request pointer capture, device is not in MODE_POINTER");
167 }
168 } else {
169 if (mParameters.mode == Parameters::MODE_POINTER_RELATIVE) {
170 mParameters.mode = Parameters::MODE_POINTER;
171 mSource = AINPUT_SOURCE_MOUSE;
172 } else {
173 ALOGE("Cannot release pointer capture, device is not in MODE_POINTER_RELATIVE");
174 }
175 }
176 bumpGeneration();
177 if (changes) {
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000178 NotifyDeviceResetArgs args(getContext()->getNextId(), when, getDeviceId());
179 getListener()->notifyDeviceReset(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700180 }
181 }
182
183 if (!changes || (changes & InputReaderConfiguration::CHANGE_POINTER_SPEED)) {
184 mPointerVelocityControl.setParameters(config->pointerVelocityControlParameters);
185 mWheelXVelocityControl.setParameters(config->wheelVelocityControlParameters);
186 mWheelYVelocityControl.setParameters(config->wheelVelocityControlParameters);
187 }
188
189 if (!changes || (changes & InputReaderConfiguration::CHANGE_DISPLAY_INFO)) {
190 mOrientation = DISPLAY_ORIENTATION_0;
Prabir Pradhand7482e72021-03-09 13:54:55 -0800191 const bool isOrientedDevice =
192 (mParameters.orientationAware && mParameters.hasAssociatedDisplay);
193
194 if (isPerWindowInputRotationEnabled()) {
195 // When per-window input rotation is enabled, InputReader works in the un-rotated
196 // coordinate space, so we don't need to do anything if the device is already
197 // orientation-aware. If the device is not orientation-aware, then we need to apply the
198 // inverse rotation of the display so that when the display rotation is applied later
199 // as a part of the per-window transform, we get the expected screen coordinates.
200 if (!isOrientedDevice) {
201 std::optional<DisplayViewport> internalViewport =
202 config->getDisplayViewportByType(ViewportType::INTERNAL);
203 if (internalViewport) {
204 mOrientation = getInverseRotation(internalViewport->orientation);
205 }
206 }
207 } else {
208 if (isOrientedDevice) {
209 std::optional<DisplayViewport> internalViewport =
210 config->getDisplayViewportByType(ViewportType::INTERNAL);
211 if (internalViewport) {
212 mOrientation = internalViewport->orientation;
213 }
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700214 }
215 }
216
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700217 bumpGeneration();
218 }
219}
220
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700221void CursorInputMapper::configureParameters() {
222 mParameters.mode = Parameters::MODE_POINTER;
223 String8 cursorModeString;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800224 if (getDeviceContext().getConfiguration().tryGetProperty(String8("cursor.mode"),
225 cursorModeString)) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700226 if (cursorModeString == "navigation") {
227 mParameters.mode = Parameters::MODE_NAVIGATION;
228 } else if (cursorModeString != "pointer" && cursorModeString != "default") {
229 ALOGW("Invalid value for cursor.mode: '%s'", cursorModeString.string());
230 }
231 }
232
233 mParameters.orientationAware = false;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800234 getDeviceContext().getConfiguration().tryGetProperty(String8("cursor.orientationAware"),
235 mParameters.orientationAware);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700236
237 mParameters.hasAssociatedDisplay = false;
238 if (mParameters.mode == Parameters::MODE_POINTER || mParameters.orientationAware) {
239 mParameters.hasAssociatedDisplay = true;
240 }
241}
242
243void CursorInputMapper::dumpParameters(std::string& dump) {
244 dump += INDENT3 "Parameters:\n";
245 dump += StringPrintf(INDENT4 "HasAssociatedDisplay: %s\n",
246 toString(mParameters.hasAssociatedDisplay));
247
248 switch (mParameters.mode) {
249 case Parameters::MODE_POINTER:
250 dump += INDENT4 "Mode: pointer\n";
251 break;
252 case Parameters::MODE_POINTER_RELATIVE:
253 dump += INDENT4 "Mode: relative pointer\n";
254 break;
255 case Parameters::MODE_NAVIGATION:
256 dump += INDENT4 "Mode: navigation\n";
257 break;
258 default:
259 ALOG_ASSERT(false);
260 }
261
262 dump += StringPrintf(INDENT4 "OrientationAware: %s\n", toString(mParameters.orientationAware));
263}
264
265void CursorInputMapper::reset(nsecs_t when) {
266 mButtonState = 0;
267 mDownTime = 0;
268
269 mPointerVelocityControl.reset();
270 mWheelXVelocityControl.reset();
271 mWheelYVelocityControl.reset();
272
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800273 mCursorButtonAccumulator.reset(getDeviceContext());
274 mCursorMotionAccumulator.reset(getDeviceContext());
275 mCursorScrollAccumulator.reset(getDeviceContext());
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700276
277 InputMapper::reset(when);
278}
279
280void CursorInputMapper::process(const RawEvent* rawEvent) {
281 mCursorButtonAccumulator.process(rawEvent);
282 mCursorMotionAccumulator.process(rawEvent);
283 mCursorScrollAccumulator.process(rawEvent);
284
285 if (rawEvent->type == EV_SYN && rawEvent->code == SYN_REPORT) {
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000286 sync(rawEvent->when, rawEvent->readTime);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700287 }
288}
289
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000290void CursorInputMapper::sync(nsecs_t when, nsecs_t readTime) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700291 int32_t lastButtonState = mButtonState;
292 int32_t currentButtonState = mCursorButtonAccumulator.getButtonState();
293 mButtonState = currentButtonState;
294
295 bool wasDown = isPointerDown(lastButtonState);
296 bool down = isPointerDown(currentButtonState);
297 bool downChanged;
298 if (!wasDown && down) {
299 mDownTime = when;
300 downChanged = true;
301 } else if (wasDown && !down) {
302 downChanged = true;
303 } else {
304 downChanged = false;
305 }
306 nsecs_t downTime = mDownTime;
307 bool buttonsChanged = currentButtonState != lastButtonState;
308 int32_t buttonsPressed = currentButtonState & ~lastButtonState;
309 int32_t buttonsReleased = lastButtonState & ~currentButtonState;
310
311 float deltaX = mCursorMotionAccumulator.getRelativeX() * mXScale;
312 float deltaY = mCursorMotionAccumulator.getRelativeY() * mYScale;
313 bool moved = deltaX != 0 || deltaY != 0;
314
Prabir Pradhand7482e72021-03-09 13:54:55 -0800315 // Rotate delta according to orientation.
316 rotateDelta(mOrientation, &deltaX, &deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700317
318 // Move the pointer.
319 PointerProperties pointerProperties;
320 pointerProperties.clear();
321 pointerProperties.id = 0;
322 pointerProperties.toolType = AMOTION_EVENT_TOOL_TYPE_MOUSE;
323
324 PointerCoords pointerCoords;
325 pointerCoords.clear();
326
327 float vscroll = mCursorScrollAccumulator.getRelativeVWheel();
328 float hscroll = mCursorScrollAccumulator.getRelativeHWheel();
329 bool scrolled = vscroll != 0 || hscroll != 0;
330
331 mWheelYVelocityControl.move(when, nullptr, &vscroll);
332 mWheelXVelocityControl.move(when, &hscroll, nullptr);
333
334 mPointerVelocityControl.move(when, &deltaX, &deltaY);
335
Chris Ye364fdb52020-08-05 15:07:56 -0700336 int32_t displayId = ADISPLAY_ID_NONE;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700337 float xCursorPosition = AMOTION_EVENT_INVALID_CURSOR_POSITION;
338 float yCursorPosition = AMOTION_EVENT_INVALID_CURSOR_POSITION;
339 if (mSource == AINPUT_SOURCE_MOUSE) {
340 if (moved || scrolled || buttonsChanged) {
Michael Wrightca5bede2020-07-02 00:00:29 +0100341 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700342
343 if (moved) {
Prabir Pradhand7482e72021-03-09 13:54:55 -0800344 float dx = deltaX;
345 float dy = deltaY;
346 if (isPerWindowInputRotationEnabled()) {
347 // Rotate the delta from InputReader's un-rotated coordinate space to
348 // PointerController's rotated coordinate space that is oriented with the
349 // viewport.
350 rotateDelta(getInverseRotation(mOrientation), &dx, &dy);
351 }
352 mPointerController->move(dx, dy);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700353 }
354
355 if (buttonsChanged) {
356 mPointerController->setButtonState(currentButtonState);
357 }
358
Michael Wrightca5bede2020-07-02 00:00:29 +0100359 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700360 }
361
362 mPointerController->getPosition(&xCursorPosition, &yCursorPosition);
363 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_X, xCursorPosition);
364 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, yCursorPosition);
365 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X, deltaX);
366 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y, deltaY);
367 displayId = mPointerController->getDisplayId();
Prabir Pradhanf5334b82021-05-13 14:00:39 -0700368 } else {
369 // Pointer capture and navigation modes
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700370 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_X, deltaX);
371 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, deltaY);
Nathaniel R. Lewis2e8f2d42019-08-21 04:56:10 +0000372 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X, deltaX);
373 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y, deltaY);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700374 }
375
376 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, down ? 1.0f : 0.0f);
377
378 // Moving an external trackball or mouse should wake the device.
379 // We don't do this for internal cursor devices to prevent them from waking up
380 // the device in your pocket.
381 // TODO: Use the input device configuration to control this behavior more finely.
382 uint32_t policyFlags = 0;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800383 if ((buttonsPressed || moved || scrolled) && getDeviceContext().isExternal()) {
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700384 policyFlags |= POLICY_FLAG_WAKE;
385 }
386
387 // Synthesize key down from buttons if needed.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000388 synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_DOWN, when, readTime, getDeviceId(),
389 mSource, displayId, policyFlags, lastButtonState, currentButtonState);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700390
391 // Send motion event.
392 if (downChanged || moved || scrolled || buttonsChanged) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800393 int32_t metaState = getContext()->getGlobalMetaState();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700394 int32_t buttonState = lastButtonState;
395 int32_t motionEventAction;
396 if (downChanged) {
397 motionEventAction = down ? AMOTION_EVENT_ACTION_DOWN : AMOTION_EVENT_ACTION_UP;
398 } else if (down || (mSource != AINPUT_SOURCE_MOUSE)) {
399 motionEventAction = AMOTION_EVENT_ACTION_MOVE;
400 } else {
401 motionEventAction = AMOTION_EVENT_ACTION_HOVER_MOVE;
402 }
403
404 if (buttonsReleased) {
405 BitSet32 released(buttonsReleased);
406 while (!released.isEmpty()) {
407 int32_t actionButton = BitSet32::valueForBit(released.clearFirstMarkedBit());
408 buttonState &= ~actionButton;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000409 NotifyMotionArgs releaseArgs(getContext()->getNextId(), when, readTime,
410 getDeviceId(), mSource, displayId, policyFlags,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000411 AMOTION_EVENT_ACTION_BUTTON_RELEASE, actionButton, 0,
412 metaState, buttonState, MotionClassification::NONE,
413 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &pointerProperties,
414 &pointerCoords, mXPrecision, mYPrecision,
415 xCursorPosition, yCursorPosition, downTime,
416 /* videoFrames */ {});
417 getListener()->notifyMotion(&releaseArgs);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700418 }
419 }
420
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000421 NotifyMotionArgs args(getContext()->getNextId(), when, readTime, getDeviceId(), mSource,
422 displayId, policyFlags, motionEventAction, 0, 0, metaState,
423 currentButtonState, MotionClassification::NONE,
424 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &pointerProperties, &pointerCoords,
425 mXPrecision, mYPrecision, xCursorPosition, yCursorPosition, downTime,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000426 /* videoFrames */ {});
427 getListener()->notifyMotion(&args);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700428
429 if (buttonsPressed) {
430 BitSet32 pressed(buttonsPressed);
431 while (!pressed.isEmpty()) {
432 int32_t actionButton = BitSet32::valueForBit(pressed.clearFirstMarkedBit());
433 buttonState |= actionButton;
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000434 NotifyMotionArgs pressArgs(getContext()->getNextId(), when, readTime, getDeviceId(),
435 mSource, displayId, policyFlags,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700436 AMOTION_EVENT_ACTION_BUTTON_PRESS, actionButton, 0,
437 metaState, buttonState, MotionClassification::NONE,
438 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &pointerProperties,
439 &pointerCoords, mXPrecision, mYPrecision,
440 xCursorPosition, yCursorPosition, downTime,
441 /* videoFrames */ {});
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000442 getListener()->notifyMotion(&pressArgs);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700443 }
444 }
445
446 ALOG_ASSERT(buttonState == currentButtonState);
447
448 // Send hover move after UP to tell the application that the mouse is hovering now.
449 if (motionEventAction == AMOTION_EVENT_ACTION_UP && (mSource == AINPUT_SOURCE_MOUSE)) {
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000450 NotifyMotionArgs hoverArgs(getContext()->getNextId(), when, readTime, getDeviceId(),
451 mSource, displayId, policyFlags,
452 AMOTION_EVENT_ACTION_HOVER_MOVE, 0, 0, metaState,
453 currentButtonState, MotionClassification::NONE,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700454 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &pointerProperties,
455 &pointerCoords, mXPrecision, mYPrecision, xCursorPosition,
456 yCursorPosition, downTime, /* videoFrames */ {});
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000457 getListener()->notifyMotion(&hoverArgs);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700458 }
459
460 // Send scroll events.
461 if (scrolled) {
462 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll);
463 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_HSCROLL, hscroll);
464
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000465 NotifyMotionArgs scrollArgs(getContext()->getNextId(), when, readTime, getDeviceId(),
466 mSource, displayId, policyFlags,
467 AMOTION_EVENT_ACTION_SCROLL, 0, 0, metaState,
468 currentButtonState, MotionClassification::NONE,
Siarhei Vishniakouf2f073b2021-02-09 21:59:56 +0000469 AMOTION_EVENT_EDGE_FLAG_NONE, 1, &pointerProperties,
470 &pointerCoords, mXPrecision, mYPrecision, xCursorPosition,
471 yCursorPosition, downTime, /* videoFrames */ {});
472 getListener()->notifyMotion(&scrollArgs);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700473 }
474 }
475
476 // Synthesize key up from buttons if needed.
Siarhei Vishniakou58ba3d12021-02-11 01:31:07 +0000477 synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_UP, when, readTime, getDeviceId(), mSource,
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700478 displayId, policyFlags, lastButtonState, currentButtonState);
479
480 mCursorMotionAccumulator.finishSync();
481 mCursorScrollAccumulator.finishSync();
482}
483
484int32_t CursorInputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) {
485 if (scanCode >= BTN_MOUSE && scanCode < BTN_JOYSTICK) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800486 return getDeviceContext().getScanCodeState(scanCode);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700487 } else {
488 return AKEY_STATE_UNKNOWN;
489 }
490}
491
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700492std::optional<int32_t> CursorInputMapper::getAssociatedDisplayId() {
493 if (mParameters.hasAssociatedDisplay) {
494 if (mParameters.mode == Parameters::MODE_POINTER) {
495 return std::make_optional(mPointerController->getDisplayId());
496 } else {
497 // If the device is orientationAware and not a mouse,
498 // it expects to dispatch events to any display
499 return std::make_optional(ADISPLAY_ID_NONE);
500 }
501 }
502 return std::nullopt;
503}
504
505} // namespace android