blob: 6e991e98bb6ffd27714b2db6f6389d4178a0af62 [file] [log] [blame]
Jeff Brown5912f952013-07-01 19:10:31 -07001/*
2 * Copyright (C) 2012 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
17#define LOG_TAG "VelocityControl"
18//#define LOG_NDEBUG 0
19
20// Log debug messages about acceleration.
dingxiaobo70dc8792021-08-23 11:25:30 +080021static constexpr bool DEBUG_ACCELERATION = false;
Jeff Brown5912f952013-07-01 19:10:31 -070022
23#include <math.h>
24#include <limits.h>
25
26#include <input/VelocityControl.h>
27#include <utils/BitSet.h>
28#include <utils/Timers.h>
29
30namespace android {
31
32// --- VelocityControl ---
33
34const nsecs_t VelocityControl::STOP_TIME;
35
36VelocityControl::VelocityControl() {
37 reset();
38}
39
40void VelocityControl::setParameters(const VelocityControlParameters& parameters) {
41 mParameters = parameters;
42 reset();
43}
44
45void VelocityControl::reset() {
46 mLastMovementTime = LLONG_MIN;
Sam Dubey86f72a32022-09-09 05:09:34 +000047 mRawPosition.x = 0;
48 mRawPosition.y = 0;
Jeff Brown5912f952013-07-01 19:10:31 -070049 mVelocityTracker.clear();
50}
51
52void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) {
53 if ((deltaX && *deltaX) || (deltaY && *deltaY)) {
54 if (eventTime >= mLastMovementTime + STOP_TIME) {
dingxiaobo70dc8792021-08-23 11:25:30 +080055 if (DEBUG_ACCELERATION && mLastMovementTime != LLONG_MIN) {
56 ALOGD("VelocityControl: stopped, last movement was %0.3fms ago",
57 (eventTime - mLastMovementTime) * 0.000001f);
58 }
Jeff Brown5912f952013-07-01 19:10:31 -070059 reset();
60 }
61
62 mLastMovementTime = eventTime;
63 if (deltaX) {
Sam Dubey86f72a32022-09-09 05:09:34 +000064 mRawPosition.x += *deltaX;
Jeff Brown5912f952013-07-01 19:10:31 -070065 }
66 if (deltaY) {
Sam Dubey86f72a32022-09-09 05:09:34 +000067 mRawPosition.y += *deltaY;
Jeff Brown5912f952013-07-01 19:10:31 -070068 }
Sam Dubey86f72a32022-09-09 05:09:34 +000069 mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), {mRawPosition});
Jeff Brown5912f952013-07-01 19:10:31 -070070
Sam Dubey86f72a32022-09-09 05:09:34 +000071 float vx, vy;
Jeff Brown5912f952013-07-01 19:10:31 -070072 float scale = mParameters.scale;
Sam Dubey86f72a32022-09-09 05:09:34 +000073 if (mVelocityTracker.getVelocity(0, &vx, &vy)) {
74 float speed = hypotf(vx, vy) * scale;
Jeff Brown5912f952013-07-01 19:10:31 -070075 if (speed >= mParameters.highThreshold) {
76 // Apply full acceleration above the high speed threshold.
77 scale *= mParameters.acceleration;
78 } else if (speed > mParameters.lowThreshold) {
79 // Linearly interpolate the acceleration to apply between the low and high
80 // speed thresholds.
81 scale *= 1 + (speed - mParameters.lowThreshold)
82 / (mParameters.highThreshold - mParameters.lowThreshold)
83 * (mParameters.acceleration - 1);
84 }
85
dingxiaobo70dc8792021-08-23 11:25:30 +080086 if (DEBUG_ACCELERATION) {
87 ALOGD("VelocityControl(%0.3f, %0.3f, %0.3f, %0.3f): "
Sam Dubey86f72a32022-09-09 05:09:34 +000088 "vx=%0.3f, vy=%0.3f, speed=%0.3f, accel=%0.3f",
89 mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold,
90 mParameters.acceleration,
91 vx, vy, speed, scale / mParameters.scale);
dingxiaobo70dc8792021-08-23 11:25:30 +080092 }
93
Jeff Brown5912f952013-07-01 19:10:31 -070094 } else {
dingxiaobo70dc8792021-08-23 11:25:30 +080095 if (DEBUG_ACCELERATION) {
96 ALOGD("VelocityControl(%0.3f, %0.3f, %0.3f, %0.3f): unknown velocity",
97 mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold,
98 mParameters.acceleration);
99 }
Jeff Brown5912f952013-07-01 19:10:31 -0700100 }
101
102 if (deltaX) {
103 *deltaX *= scale;
104 }
105 if (deltaY) {
106 *deltaY *= scale;
107 }
108 }
109}
110
111} // namespace android