Jeff Brown | b4ff35d | 2011-01-02 16:37:43 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 17 | #define LOG_TAG "InputReader" |
| 18 | |
| 19 | //#define LOG_NDEBUG 0 |
| 20 | |
| 21 | // Log debug messages for each raw event received from the EventHub. |
| 22 | #define DEBUG_RAW_EVENTS 0 |
| 23 | |
| 24 | // Log debug messages about touch screen filtering hacks. |
Jeff Brown | 349703e | 2010-06-22 01:27:15 -0700 | [diff] [blame] | 25 | #define DEBUG_HACKS 0 |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 26 | |
| 27 | // Log debug messages about virtual key processing. |
Jeff Brown | 349703e | 2010-06-22 01:27:15 -0700 | [diff] [blame] | 28 | #define DEBUG_VIRTUAL_KEYS 0 |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 29 | |
| 30 | // Log debug messages about pointers. |
Jeff Brown | 9f2106f | 2011-05-24 14:40:35 -0700 | [diff] [blame] | 31 | #define DEBUG_POINTERS 0 |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 32 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 33 | // Log debug messages about pointer assignment calculations. |
| 34 | #define DEBUG_POINTER_ASSIGNMENT 0 |
| 35 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 36 | // Log debug messages about gesture detection. |
| 37 | #define DEBUG_GESTURES 0 |
| 38 | |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 39 | // Log debug messages about the vibrator. |
| 40 | #define DEBUG_VIBRATOR 0 |
| 41 | |
Jeff Brown | b4ff35d | 2011-01-02 16:37:43 -0800 | [diff] [blame] | 42 | #include "InputReader.h" |
| 43 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 44 | #include <cutils/log.h> |
Jeff Brown | 9d3b1a4 | 2013-07-01 19:07:15 -0700 | [diff] [blame] | 45 | #include <input/Keyboard.h> |
| 46 | #include <input/VirtualKeyMap.h> |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 47 | |
| 48 | #include <stddef.h> |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 49 | #include <stdlib.h> |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 50 | #include <unistd.h> |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 51 | #include <errno.h> |
| 52 | #include <limits.h> |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 53 | #include <math.h> |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 54 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 55 | #define INDENT " " |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 56 | #define INDENT2 " " |
| 57 | #define INDENT3 " " |
| 58 | #define INDENT4 " " |
Jeff Brown | aba321a | 2011-06-28 20:34:40 -0700 | [diff] [blame] | 59 | #define INDENT5 " " |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 60 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 61 | namespace android { |
| 62 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 63 | // --- Constants --- |
| 64 | |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 65 | // Maximum number of slots supported when using the slot-based Multitouch Protocol B. |
| 66 | static const size_t MAX_SLOTS = 32; |
| 67 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 68 | // --- Static Functions --- |
| 69 | |
| 70 | template<typename T> |
| 71 | inline static T abs(const T& value) { |
| 72 | return value < 0 ? - value : value; |
| 73 | } |
| 74 | |
| 75 | template<typename T> |
| 76 | inline static T min(const T& a, const T& b) { |
| 77 | return a < b ? a : b; |
| 78 | } |
| 79 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 80 | template<typename T> |
| 81 | inline static void swap(T& a, T& b) { |
| 82 | T temp = a; |
| 83 | a = b; |
| 84 | b = temp; |
| 85 | } |
| 86 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 87 | inline static float avg(float x, float y) { |
| 88 | return (x + y) / 2; |
| 89 | } |
| 90 | |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 91 | inline static float distance(float x1, float y1, float x2, float y2) { |
| 92 | return hypotf(x1 - x2, y1 - y2); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 93 | } |
| 94 | |
Jeff Brown | 517bb4c | 2011-01-14 19:09:23 -0800 | [diff] [blame] | 95 | inline static int32_t signExtendNybble(int32_t value) { |
| 96 | return value >= 8 ? value - 16 : value; |
| 97 | } |
| 98 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 99 | static inline const char* toString(bool value) { |
| 100 | return value ? "true" : "false"; |
| 101 | } |
| 102 | |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 103 | static int32_t rotateValueUsingRotationMap(int32_t value, int32_t orientation, |
| 104 | const int32_t map[][4], size_t mapSize) { |
| 105 | if (orientation != DISPLAY_ORIENTATION_0) { |
| 106 | for (size_t i = 0; i < mapSize; i++) { |
| 107 | if (value == map[i][0]) { |
| 108 | return map[i][orientation]; |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | return value; |
| 113 | } |
| 114 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 115 | static const int32_t keyCodeRotationMap[][4] = { |
| 116 | // key codes enumerated counter-clockwise with the original (unrotated) key first |
| 117 | // no rotation, 90 degree rotation, 180 degree rotation, 270 degree rotation |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 118 | { AKEYCODE_DPAD_DOWN, AKEYCODE_DPAD_RIGHT, AKEYCODE_DPAD_UP, AKEYCODE_DPAD_LEFT }, |
| 119 | { AKEYCODE_DPAD_RIGHT, AKEYCODE_DPAD_UP, AKEYCODE_DPAD_LEFT, AKEYCODE_DPAD_DOWN }, |
| 120 | { AKEYCODE_DPAD_UP, AKEYCODE_DPAD_LEFT, AKEYCODE_DPAD_DOWN, AKEYCODE_DPAD_RIGHT }, |
| 121 | { AKEYCODE_DPAD_LEFT, AKEYCODE_DPAD_DOWN, AKEYCODE_DPAD_RIGHT, AKEYCODE_DPAD_UP }, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 122 | }; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 123 | static const size_t keyCodeRotationMapSize = |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 124 | sizeof(keyCodeRotationMap) / sizeof(keyCodeRotationMap[0]); |
| 125 | |
Jeff Brown | 6069139 | 2011-07-15 19:08:26 -0700 | [diff] [blame] | 126 | static int32_t rotateKeyCode(int32_t keyCode, int32_t orientation) { |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 127 | return rotateValueUsingRotationMap(keyCode, orientation, |
| 128 | keyCodeRotationMap, keyCodeRotationMapSize); |
| 129 | } |
| 130 | |
Jeff Brown | 612891e | 2011-07-15 20:44:17 -0700 | [diff] [blame] | 131 | static void rotateDelta(int32_t orientation, float* deltaX, float* deltaY) { |
| 132 | float temp; |
| 133 | switch (orientation) { |
| 134 | case DISPLAY_ORIENTATION_90: |
| 135 | temp = *deltaX; |
| 136 | *deltaX = *deltaY; |
| 137 | *deltaY = -temp; |
| 138 | break; |
| 139 | |
| 140 | case DISPLAY_ORIENTATION_180: |
| 141 | *deltaX = -*deltaX; |
| 142 | *deltaY = -*deltaY; |
| 143 | break; |
| 144 | |
| 145 | case DISPLAY_ORIENTATION_270: |
| 146 | temp = *deltaX; |
| 147 | *deltaX = -*deltaY; |
| 148 | *deltaY = temp; |
| 149 | break; |
| 150 | } |
| 151 | } |
| 152 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 153 | static inline bool sourcesMatchMask(uint32_t sources, uint32_t sourceMask) { |
| 154 | return (sources & sourceMask & ~ AINPUT_SOURCE_CLASS_MASK) != 0; |
| 155 | } |
| 156 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 157 | // Returns true if the pointer should be reported as being down given the specified |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 158 | // button states. This determines whether the event is reported as a touch event. |
| 159 | static bool isPointerDown(int32_t buttonState) { |
| 160 | return buttonState & |
| 161 | (AMOTION_EVENT_BUTTON_PRIMARY | AMOTION_EVENT_BUTTON_SECONDARY |
Jeff Brown | 53ca3f1 | 2011-06-27 18:36:00 -0700 | [diff] [blame] | 162 | | AMOTION_EVENT_BUTTON_TERTIARY); |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 163 | } |
| 164 | |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 165 | static float calculateCommonVector(float a, float b) { |
| 166 | if (a > 0 && b > 0) { |
| 167 | return a < b ? a : b; |
| 168 | } else if (a < 0 && b < 0) { |
| 169 | return a > b ? a : b; |
| 170 | } else { |
| 171 | return 0; |
| 172 | } |
| 173 | } |
| 174 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 175 | static void synthesizeButtonKey(InputReaderContext* context, int32_t action, |
| 176 | nsecs_t when, int32_t deviceId, uint32_t source, |
| 177 | uint32_t policyFlags, int32_t lastButtonState, int32_t currentButtonState, |
| 178 | int32_t buttonState, int32_t keyCode) { |
| 179 | if ( |
| 180 | (action == AKEY_EVENT_ACTION_DOWN |
| 181 | && !(lastButtonState & buttonState) |
| 182 | && (currentButtonState & buttonState)) |
| 183 | || (action == AKEY_EVENT_ACTION_UP |
| 184 | && (lastButtonState & buttonState) |
| 185 | && !(currentButtonState & buttonState))) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 186 | NotifyKeyArgs args(when, deviceId, source, policyFlags, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 187 | action, 0, keyCode, 0, context->getGlobalMetaState(), when); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 188 | context->getListener()->notifyKey(&args); |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
| 192 | static void synthesizeButtonKeys(InputReaderContext* context, int32_t action, |
| 193 | nsecs_t when, int32_t deviceId, uint32_t source, |
| 194 | uint32_t policyFlags, int32_t lastButtonState, int32_t currentButtonState) { |
| 195 | synthesizeButtonKey(context, action, when, deviceId, source, policyFlags, |
| 196 | lastButtonState, currentButtonState, |
| 197 | AMOTION_EVENT_BUTTON_BACK, AKEYCODE_BACK); |
| 198 | synthesizeButtonKey(context, action, when, deviceId, source, policyFlags, |
| 199 | lastButtonState, currentButtonState, |
| 200 | AMOTION_EVENT_BUTTON_FORWARD, AKEYCODE_FORWARD); |
| 201 | } |
| 202 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 203 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 204 | // --- InputReaderConfiguration --- |
| 205 | |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 206 | bool InputReaderConfiguration::getDisplayInfo(bool external, DisplayViewport* outViewport) const { |
| 207 | const DisplayViewport& viewport = external ? mExternalDisplay : mInternalDisplay; |
| 208 | if (viewport.displayId >= 0) { |
| 209 | *outViewport = viewport; |
| 210 | return true; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 211 | } |
| 212 | return false; |
| 213 | } |
| 214 | |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 215 | void InputReaderConfiguration::setDisplayInfo(bool external, const DisplayViewport& viewport) { |
| 216 | DisplayViewport& v = external ? mExternalDisplay : mInternalDisplay; |
| 217 | v = viewport; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 221 | // --- InputReader --- |
| 222 | |
| 223 | InputReader::InputReader(const sp<EventHubInterface>& eventHub, |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 224 | const sp<InputReaderPolicyInterface>& policy, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 225 | const sp<InputListenerInterface>& listener) : |
| 226 | mContext(this), mEventHub(eventHub), mPolicy(policy), |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 227 | mGlobalMetaState(0), mGeneration(1), |
| 228 | mDisableVirtualKeysTimeout(LLONG_MIN), mNextTimeout(LLONG_MAX), |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 229 | mConfigurationChangesToRefresh(0) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 230 | mQueuedListener = new QueuedInputListener(listener); |
| 231 | |
| 232 | { // acquire lock |
| 233 | AutoMutex _l(mLock); |
| 234 | |
| 235 | refreshConfigurationLocked(0); |
| 236 | updateGlobalMetaStateLocked(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 237 | } // release lock |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | InputReader::~InputReader() { |
| 241 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 242 | delete mDevices.valueAt(i); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | void InputReader::loopOnce() { |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 247 | int32_t oldGeneration; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 248 | int32_t timeoutMillis; |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 249 | bool inputDevicesChanged = false; |
| 250 | Vector<InputDeviceInfo> inputDevices; |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 251 | { // acquire lock |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 252 | AutoMutex _l(mLock); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 253 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 254 | oldGeneration = mGeneration; |
| 255 | timeoutMillis = -1; |
| 256 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 257 | uint32_t changes = mConfigurationChangesToRefresh; |
| 258 | if (changes) { |
| 259 | mConfigurationChangesToRefresh = 0; |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 260 | timeoutMillis = 0; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 261 | refreshConfigurationLocked(changes); |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 262 | } else if (mNextTimeout != LLONG_MAX) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 263 | nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); |
| 264 | timeoutMillis = toMillisecondTimeoutDelay(now, mNextTimeout); |
| 265 | } |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 266 | } // release lock |
| 267 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 268 | size_t count = mEventHub->getEvents(timeoutMillis, mEventBuffer, EVENT_BUFFER_SIZE); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 269 | |
| 270 | { // acquire lock |
| 271 | AutoMutex _l(mLock); |
Jeff Brown | 112b5f5 | 2012-01-27 17:32:06 -0800 | [diff] [blame] | 272 | mReaderIsAliveCondition.broadcast(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 273 | |
| 274 | if (count) { |
| 275 | processEventsLocked(mEventBuffer, count); |
| 276 | } |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 277 | |
| 278 | if (mNextTimeout != LLONG_MAX) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 279 | nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); |
Jeff Brown | 112b5f5 | 2012-01-27 17:32:06 -0800 | [diff] [blame] | 280 | if (now >= mNextTimeout) { |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 281 | #if DEBUG_RAW_EVENTS |
Jeff Brown | 112b5f5 | 2012-01-27 17:32:06 -0800 | [diff] [blame] | 282 | ALOGD("Timeout expired, latency=%0.3fms", (now - mNextTimeout) * 0.000001f); |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 283 | #endif |
Jeff Brown | 112b5f5 | 2012-01-27 17:32:06 -0800 | [diff] [blame] | 284 | mNextTimeout = LLONG_MAX; |
| 285 | timeoutExpiredLocked(now); |
| 286 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 287 | } |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 288 | |
| 289 | if (oldGeneration != mGeneration) { |
| 290 | inputDevicesChanged = true; |
| 291 | getInputDevicesLocked(inputDevices); |
| 292 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 293 | } // release lock |
| 294 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 295 | // Send out a message that the describes the changed input devices. |
| 296 | if (inputDevicesChanged) { |
| 297 | mPolicy->notifyInputDevicesChanged(inputDevices); |
| 298 | } |
| 299 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 300 | // Flush queued events out to the listener. |
| 301 | // This must happen outside of the lock because the listener could potentially call |
| 302 | // back into the InputReader's methods, such as getScanCodeState, or become blocked |
| 303 | // on another thread similarly waiting to acquire the InputReader lock thereby |
| 304 | // resulting in a deadlock. This situation is actually quite plausible because the |
| 305 | // listener is actually the input dispatcher, which calls into the window manager, |
| 306 | // which occasionally calls into the input reader. |
| 307 | mQueuedListener->flush(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 310 | void InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) { |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 311 | for (const RawEvent* rawEvent = rawEvents; count;) { |
| 312 | int32_t type = rawEvent->type; |
| 313 | size_t batchSize = 1; |
| 314 | if (type < EventHubInterface::FIRST_SYNTHETIC_EVENT) { |
| 315 | int32_t deviceId = rawEvent->deviceId; |
| 316 | while (batchSize < count) { |
| 317 | if (rawEvent[batchSize].type >= EventHubInterface::FIRST_SYNTHETIC_EVENT |
| 318 | || rawEvent[batchSize].deviceId != deviceId) { |
| 319 | break; |
| 320 | } |
| 321 | batchSize += 1; |
| 322 | } |
| 323 | #if DEBUG_RAW_EVENTS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 324 | ALOGD("BatchSize: %d Count: %d", batchSize, count); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 325 | #endif |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 326 | processEventsForDeviceLocked(deviceId, rawEvent, batchSize); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 327 | } else { |
| 328 | switch (rawEvent->type) { |
| 329 | case EventHubInterface::DEVICE_ADDED: |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 330 | addDeviceLocked(rawEvent->when, rawEvent->deviceId); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 331 | break; |
| 332 | case EventHubInterface::DEVICE_REMOVED: |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 333 | removeDeviceLocked(rawEvent->when, rawEvent->deviceId); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 334 | break; |
| 335 | case EventHubInterface::FINISHED_DEVICE_SCAN: |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 336 | handleConfigurationChangedLocked(rawEvent->when); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 337 | break; |
| 338 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 339 | ALOG_ASSERT(false); // can't happen |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 340 | break; |
| 341 | } |
| 342 | } |
| 343 | count -= batchSize; |
| 344 | rawEvent += batchSize; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 345 | } |
| 346 | } |
| 347 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 348 | void InputReader::addDeviceLocked(nsecs_t when, int32_t deviceId) { |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 349 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
| 350 | if (deviceIndex >= 0) { |
| 351 | ALOGW("Ignoring spurious device added event for deviceId %d.", deviceId); |
| 352 | return; |
| 353 | } |
| 354 | |
Jeff Brown | e38fdfa | 2012-04-06 14:51:01 -0700 | [diff] [blame] | 355 | InputDeviceIdentifier identifier = mEventHub->getDeviceIdentifier(deviceId); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 356 | uint32_t classes = mEventHub->getDeviceClasses(deviceId); |
Michael Wright | ac6c78b | 2013-07-17 13:21:45 -0700 | [diff] [blame] | 357 | int32_t controllerNumber = mEventHub->getDeviceControllerNumber(deviceId); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 358 | |
Michael Wright | ac6c78b | 2013-07-17 13:21:45 -0700 | [diff] [blame] | 359 | InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 360 | device->configure(when, &mConfig, 0); |
| 361 | device->reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 362 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 363 | if (device->isIgnored()) { |
Jeff Brown | e38fdfa | 2012-04-06 14:51:01 -0700 | [diff] [blame] | 364 | ALOGI("Device added: id=%d, name='%s' (ignored non-input device)", deviceId, |
| 365 | identifier.name.string()); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 366 | } else { |
Jeff Brown | e38fdfa | 2012-04-06 14:51:01 -0700 | [diff] [blame] | 367 | ALOGI("Device added: id=%d, name='%s', sources=0x%08x", deviceId, |
| 368 | identifier.name.string(), device->getSources()); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 369 | } |
| 370 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 371 | mDevices.add(deviceId, device); |
| 372 | bumpGenerationLocked(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 375 | void InputReader::removeDeviceLocked(nsecs_t when, int32_t deviceId) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 376 | InputDevice* device = NULL; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 377 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 378 | if (deviceIndex < 0) { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 379 | ALOGW("Ignoring spurious device removed event for deviceId %d.", deviceId); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 380 | return; |
| 381 | } |
| 382 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 383 | device = mDevices.valueAt(deviceIndex); |
| 384 | mDevices.removeItemsAt(deviceIndex, 1); |
| 385 | bumpGenerationLocked(); |
| 386 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 387 | if (device->isIgnored()) { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 388 | ALOGI("Device removed: id=%d, name='%s' (ignored non-input device)", |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 389 | device->getId(), device->getName().string()); |
| 390 | } else { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 391 | ALOGI("Device removed: id=%d, name='%s', sources=0x%08x", |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 392 | device->getId(), device->getName().string(), device->getSources()); |
| 393 | } |
| 394 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 395 | device->reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 396 | delete device; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 397 | } |
| 398 | |
Michael Wright | ac6c78b | 2013-07-17 13:21:45 -0700 | [diff] [blame] | 399 | InputDevice* InputReader::createDeviceLocked(int32_t deviceId, int32_t controllerNumber, |
Jeff Brown | e38fdfa | 2012-04-06 14:51:01 -0700 | [diff] [blame] | 400 | const InputDeviceIdentifier& identifier, uint32_t classes) { |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 401 | InputDevice* device = new InputDevice(&mContext, deviceId, bumpGenerationLocked(), |
Michael Wright | ac6c78b | 2013-07-17 13:21:45 -0700 | [diff] [blame] | 402 | controllerNumber, identifier, classes); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 403 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 404 | // External devices. |
| 405 | if (classes & INPUT_DEVICE_CLASS_EXTERNAL) { |
| 406 | device->setExternal(true); |
| 407 | } |
| 408 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 409 | // Switch-like devices. |
| 410 | if (classes & INPUT_DEVICE_CLASS_SWITCH) { |
| 411 | device->addMapper(new SwitchInputMapper(device)); |
| 412 | } |
| 413 | |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 414 | // Vibrator-like devices. |
| 415 | if (classes & INPUT_DEVICE_CLASS_VIBRATOR) { |
| 416 | device->addMapper(new VibratorInputMapper(device)); |
| 417 | } |
| 418 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 419 | // Keyboard-like devices. |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 420 | uint32_t keyboardSource = 0; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 421 | int32_t keyboardType = AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC; |
| 422 | if (classes & INPUT_DEVICE_CLASS_KEYBOARD) { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 423 | keyboardSource |= AINPUT_SOURCE_KEYBOARD; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 424 | } |
| 425 | if (classes & INPUT_DEVICE_CLASS_ALPHAKEY) { |
| 426 | keyboardType = AINPUT_KEYBOARD_TYPE_ALPHABETIC; |
| 427 | } |
| 428 | if (classes & INPUT_DEVICE_CLASS_DPAD) { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 429 | keyboardSource |= AINPUT_SOURCE_DPAD; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 430 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 431 | if (classes & INPUT_DEVICE_CLASS_GAMEPAD) { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 432 | keyboardSource |= AINPUT_SOURCE_GAMEPAD; |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 433 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 434 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 435 | if (keyboardSource != 0) { |
| 436 | device->addMapper(new KeyboardInputMapper(device, keyboardSource, keyboardType)); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 439 | // Cursor-like devices. |
| 440 | if (classes & INPUT_DEVICE_CLASS_CURSOR) { |
| 441 | device->addMapper(new CursorInputMapper(device)); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 444 | // Touchscreens and touchpad devices. |
| 445 | if (classes & INPUT_DEVICE_CLASS_TOUCH_MT) { |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 446 | device->addMapper(new MultiTouchInputMapper(device)); |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 447 | } else if (classes & INPUT_DEVICE_CLASS_TOUCH) { |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 448 | device->addMapper(new SingleTouchInputMapper(device)); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 451 | // Joystick-like devices. |
| 452 | if (classes & INPUT_DEVICE_CLASS_JOYSTICK) { |
| 453 | device->addMapper(new JoystickInputMapper(device)); |
| 454 | } |
| 455 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 456 | return device; |
| 457 | } |
| 458 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 459 | void InputReader::processEventsForDeviceLocked(int32_t deviceId, |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 460 | const RawEvent* rawEvents, size_t count) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 461 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
| 462 | if (deviceIndex < 0) { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 463 | ALOGW("Discarding event for unknown deviceId %d.", deviceId); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 464 | return; |
| 465 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 466 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 467 | InputDevice* device = mDevices.valueAt(deviceIndex); |
| 468 | if (device->isIgnored()) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 469 | //ALOGD("Discarding event for ignored deviceId %d.", deviceId); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 470 | return; |
| 471 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 472 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 473 | device->process(rawEvents, count); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 476 | void InputReader::timeoutExpiredLocked(nsecs_t when) { |
| 477 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 478 | InputDevice* device = mDevices.valueAt(i); |
| 479 | if (!device->isIgnored()) { |
| 480 | device->timeoutExpired(when); |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 481 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 482 | } |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 483 | } |
| 484 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 485 | void InputReader::handleConfigurationChangedLocked(nsecs_t when) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 486 | // Reset global meta state because it depends on the list of all configured devices. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 487 | updateGlobalMetaStateLocked(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 488 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 489 | // Enqueue configuration changed. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 490 | NotifyConfigurationChangedArgs args(when); |
| 491 | mQueuedListener->notifyConfigurationChanged(&args); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 494 | void InputReader::refreshConfigurationLocked(uint32_t changes) { |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 495 | mPolicy->getReaderConfiguration(&mConfig); |
| 496 | mEventHub->setExcludedDevices(mConfig.excludedDeviceNames); |
| 497 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 498 | if (changes) { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 499 | ALOGI("Reconfiguring input devices. changes=0x%08x", changes); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 500 | nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 501 | |
| 502 | if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) { |
| 503 | mEventHub->requestReopenDevices(); |
| 504 | } else { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 505 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 506 | InputDevice* device = mDevices.valueAt(i); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 507 | device->configure(now, &mConfig, changes); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 508 | } |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 509 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 510 | } |
| 511 | } |
| 512 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 513 | void InputReader::updateGlobalMetaStateLocked() { |
| 514 | mGlobalMetaState = 0; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 515 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 516 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 517 | InputDevice* device = mDevices.valueAt(i); |
| 518 | mGlobalMetaState |= device->getMetaState(); |
| 519 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 522 | int32_t InputReader::getGlobalMetaStateLocked() { |
| 523 | return mGlobalMetaState; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 524 | } |
| 525 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 526 | void InputReader::disableVirtualKeysUntilLocked(nsecs_t time) { |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 527 | mDisableVirtualKeysTimeout = time; |
| 528 | } |
| 529 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 530 | bool InputReader::shouldDropVirtualKeyLocked(nsecs_t now, |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 531 | InputDevice* device, int32_t keyCode, int32_t scanCode) { |
| 532 | if (now < mDisableVirtualKeysTimeout) { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 533 | ALOGI("Dropping virtual key from device %s because virtual keys are " |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 534 | "temporarily disabled for the next %0.3fms. keyCode=%d, scanCode=%d", |
| 535 | device->getName().string(), |
| 536 | (mDisableVirtualKeysTimeout - now) * 0.000001, |
| 537 | keyCode, scanCode); |
| 538 | return true; |
| 539 | } else { |
| 540 | return false; |
| 541 | } |
| 542 | } |
| 543 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 544 | void InputReader::fadePointerLocked() { |
| 545 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 546 | InputDevice* device = mDevices.valueAt(i); |
| 547 | device->fadePointer(); |
| 548 | } |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 549 | } |
| 550 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 551 | void InputReader::requestTimeoutAtTimeLocked(nsecs_t when) { |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 552 | if (when < mNextTimeout) { |
| 553 | mNextTimeout = when; |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 554 | mEventHub->wake(); |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 555 | } |
| 556 | } |
| 557 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 558 | int32_t InputReader::bumpGenerationLocked() { |
| 559 | return ++mGeneration; |
| 560 | } |
| 561 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 562 | void InputReader::getInputDevices(Vector<InputDeviceInfo>& outInputDevices) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 563 | AutoMutex _l(mLock); |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 564 | getInputDevicesLocked(outInputDevices); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 567 | void InputReader::getInputDevicesLocked(Vector<InputDeviceInfo>& outInputDevices) { |
| 568 | outInputDevices.clear(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 569 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 570 | size_t numDevices = mDevices.size(); |
| 571 | for (size_t i = 0; i < numDevices; i++) { |
| 572 | InputDevice* device = mDevices.valueAt(i); |
| 573 | if (!device->isIgnored()) { |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 574 | outInputDevices.push(); |
| 575 | device->getDeviceInfo(&outInputDevices.editTop()); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 576 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 577 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | int32_t InputReader::getKeyCodeState(int32_t deviceId, uint32_t sourceMask, |
| 581 | int32_t keyCode) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 582 | AutoMutex _l(mLock); |
| 583 | |
| 584 | return getStateLocked(deviceId, sourceMask, keyCode, &InputDevice::getKeyCodeState); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | int32_t InputReader::getScanCodeState(int32_t deviceId, uint32_t sourceMask, |
| 588 | int32_t scanCode) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 589 | AutoMutex _l(mLock); |
| 590 | |
| 591 | return getStateLocked(deviceId, sourceMask, scanCode, &InputDevice::getScanCodeState); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | int32_t InputReader::getSwitchState(int32_t deviceId, uint32_t sourceMask, int32_t switchCode) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 595 | AutoMutex _l(mLock); |
| 596 | |
| 597 | return getStateLocked(deviceId, sourceMask, switchCode, &InputDevice::getSwitchState); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 598 | } |
| 599 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 600 | int32_t InputReader::getStateLocked(int32_t deviceId, uint32_t sourceMask, int32_t code, |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 601 | GetStateFunc getStateFunc) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 602 | int32_t result = AKEY_STATE_UNKNOWN; |
| 603 | if (deviceId >= 0) { |
| 604 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
| 605 | if (deviceIndex >= 0) { |
| 606 | InputDevice* device = mDevices.valueAt(deviceIndex); |
| 607 | if (! device->isIgnored() && sourcesMatchMask(device->getSources(), sourceMask)) { |
| 608 | result = (device->*getStateFunc)(sourceMask, code); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 609 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 610 | } |
| 611 | } else { |
| 612 | size_t numDevices = mDevices.size(); |
| 613 | for (size_t i = 0; i < numDevices; i++) { |
| 614 | InputDevice* device = mDevices.valueAt(i); |
| 615 | if (! device->isIgnored() && sourcesMatchMask(device->getSources(), sourceMask)) { |
David Deephanphongs | fbca596 | 2011-11-14 14:50:45 -0800 | [diff] [blame] | 616 | // If any device reports AKEY_STATE_DOWN or AKEY_STATE_VIRTUAL, return that |
| 617 | // value. Otherwise, return AKEY_STATE_UP as long as one device reports it. |
| 618 | int32_t currentResult = (device->*getStateFunc)(sourceMask, code); |
| 619 | if (currentResult >= AKEY_STATE_DOWN) { |
| 620 | return currentResult; |
| 621 | } else if (currentResult == AKEY_STATE_UP) { |
| 622 | result = currentResult; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 623 | } |
| 624 | } |
| 625 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 626 | } |
| 627 | return result; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | bool InputReader::hasKeys(int32_t deviceId, uint32_t sourceMask, |
| 631 | size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 632 | AutoMutex _l(mLock); |
| 633 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 634 | memset(outFlags, 0, numCodes); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 635 | return markSupportedKeyCodesLocked(deviceId, sourceMask, numCodes, keyCodes, outFlags); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 636 | } |
| 637 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 638 | bool InputReader::markSupportedKeyCodesLocked(int32_t deviceId, uint32_t sourceMask, |
| 639 | size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) { |
| 640 | bool result = false; |
| 641 | if (deviceId >= 0) { |
| 642 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
| 643 | if (deviceIndex >= 0) { |
| 644 | InputDevice* device = mDevices.valueAt(deviceIndex); |
| 645 | if (! device->isIgnored() && sourcesMatchMask(device->getSources(), sourceMask)) { |
| 646 | result = device->markSupportedKeyCodes(sourceMask, |
| 647 | numCodes, keyCodes, outFlags); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 648 | } |
| 649 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 650 | } else { |
| 651 | size_t numDevices = mDevices.size(); |
| 652 | for (size_t i = 0; i < numDevices; i++) { |
| 653 | InputDevice* device = mDevices.valueAt(i); |
| 654 | if (! device->isIgnored() && sourcesMatchMask(device->getSources(), sourceMask)) { |
| 655 | result |= device->markSupportedKeyCodes(sourceMask, |
| 656 | numCodes, keyCodes, outFlags); |
| 657 | } |
| 658 | } |
| 659 | } |
| 660 | return result; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 661 | } |
| 662 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 663 | void InputReader::requestRefreshConfiguration(uint32_t changes) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 664 | AutoMutex _l(mLock); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 665 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 666 | if (changes) { |
| 667 | bool needWake = !mConfigurationChangesToRefresh; |
| 668 | mConfigurationChangesToRefresh |= changes; |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 669 | |
| 670 | if (needWake) { |
| 671 | mEventHub->wake(); |
| 672 | } |
| 673 | } |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 676 | void InputReader::vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize, |
| 677 | ssize_t repeat, int32_t token) { |
| 678 | AutoMutex _l(mLock); |
| 679 | |
| 680 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
| 681 | if (deviceIndex >= 0) { |
| 682 | InputDevice* device = mDevices.valueAt(deviceIndex); |
| 683 | device->vibrate(pattern, patternSize, repeat, token); |
| 684 | } |
| 685 | } |
| 686 | |
| 687 | void InputReader::cancelVibrate(int32_t deviceId, int32_t token) { |
| 688 | AutoMutex _l(mLock); |
| 689 | |
| 690 | ssize_t deviceIndex = mDevices.indexOfKey(deviceId); |
| 691 | if (deviceIndex >= 0) { |
| 692 | InputDevice* device = mDevices.valueAt(deviceIndex); |
| 693 | device->cancelVibrate(token); |
| 694 | } |
| 695 | } |
| 696 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 697 | void InputReader::dump(String8& dump) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 698 | AutoMutex _l(mLock); |
| 699 | |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 700 | mEventHub->dump(dump); |
| 701 | dump.append("\n"); |
| 702 | |
| 703 | dump.append("Input Reader State:\n"); |
| 704 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 705 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 706 | mDevices.valueAt(i)->dump(dump); |
| 707 | } |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 708 | |
| 709 | dump.append(INDENT "Configuration:\n"); |
| 710 | dump.append(INDENT2 "ExcludedDeviceNames: ["); |
| 711 | for (size_t i = 0; i < mConfig.excludedDeviceNames.size(); i++) { |
| 712 | if (i != 0) { |
| 713 | dump.append(", "); |
| 714 | } |
| 715 | dump.append(mConfig.excludedDeviceNames.itemAt(i).string()); |
| 716 | } |
| 717 | dump.append("]\n"); |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 718 | dump.appendFormat(INDENT2 "VirtualKeyQuietTime: %0.1fms\n", |
| 719 | mConfig.virtualKeyQuietTime * 0.000001f); |
| 720 | |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 721 | dump.appendFormat(INDENT2 "PointerVelocityControlParameters: " |
| 722 | "scale=%0.3f, lowThreshold=%0.3f, highThreshold=%0.3f, acceleration=%0.3f\n", |
| 723 | mConfig.pointerVelocityControlParameters.scale, |
| 724 | mConfig.pointerVelocityControlParameters.lowThreshold, |
| 725 | mConfig.pointerVelocityControlParameters.highThreshold, |
| 726 | mConfig.pointerVelocityControlParameters.acceleration); |
| 727 | |
| 728 | dump.appendFormat(INDENT2 "WheelVelocityControlParameters: " |
| 729 | "scale=%0.3f, lowThreshold=%0.3f, highThreshold=%0.3f, acceleration=%0.3f\n", |
| 730 | mConfig.wheelVelocityControlParameters.scale, |
| 731 | mConfig.wheelVelocityControlParameters.lowThreshold, |
| 732 | mConfig.wheelVelocityControlParameters.highThreshold, |
| 733 | mConfig.wheelVelocityControlParameters.acceleration); |
| 734 | |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 735 | dump.appendFormat(INDENT2 "PointerGesture:\n"); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 736 | dump.appendFormat(INDENT3 "Enabled: %s\n", |
| 737 | toString(mConfig.pointerGesturesEnabled)); |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 738 | dump.appendFormat(INDENT3 "QuietInterval: %0.1fms\n", |
| 739 | mConfig.pointerGestureQuietInterval * 0.000001f); |
| 740 | dump.appendFormat(INDENT3 "DragMinSwitchSpeed: %0.1fpx/s\n", |
| 741 | mConfig.pointerGestureDragMinSwitchSpeed); |
| 742 | dump.appendFormat(INDENT3 "TapInterval: %0.1fms\n", |
| 743 | mConfig.pointerGestureTapInterval * 0.000001f); |
| 744 | dump.appendFormat(INDENT3 "TapDragInterval: %0.1fms\n", |
| 745 | mConfig.pointerGestureTapDragInterval * 0.000001f); |
| 746 | dump.appendFormat(INDENT3 "TapSlop: %0.1fpx\n", |
| 747 | mConfig.pointerGestureTapSlop); |
| 748 | dump.appendFormat(INDENT3 "MultitouchSettleInterval: %0.1fms\n", |
| 749 | mConfig.pointerGestureMultitouchSettleInterval * 0.000001f); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 750 | dump.appendFormat(INDENT3 "MultitouchMinDistance: %0.1fpx\n", |
| 751 | mConfig.pointerGestureMultitouchMinDistance); |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 752 | dump.appendFormat(INDENT3 "SwipeTransitionAngleCosine: %0.1f\n", |
| 753 | mConfig.pointerGestureSwipeTransitionAngleCosine); |
| 754 | dump.appendFormat(INDENT3 "SwipeMaxWidthRatio: %0.1f\n", |
| 755 | mConfig.pointerGestureSwipeMaxWidthRatio); |
| 756 | dump.appendFormat(INDENT3 "MovementSpeedRatio: %0.1f\n", |
| 757 | mConfig.pointerGestureMovementSpeedRatio); |
| 758 | dump.appendFormat(INDENT3 "ZoomSpeedRatio: %0.1f\n", |
| 759 | mConfig.pointerGestureZoomSpeedRatio); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Jeff Brown | 89ef072 | 2011-08-10 16:25:21 -0700 | [diff] [blame] | 762 | void InputReader::monitor() { |
| 763 | // Acquire and release the lock to ensure that the reader has not deadlocked. |
| 764 | mLock.lock(); |
Jeff Brown | 112b5f5 | 2012-01-27 17:32:06 -0800 | [diff] [blame] | 765 | mEventHub->wake(); |
| 766 | mReaderIsAliveCondition.wait(mLock); |
Jeff Brown | 89ef072 | 2011-08-10 16:25:21 -0700 | [diff] [blame] | 767 | mLock.unlock(); |
| 768 | |
| 769 | // Check the EventHub |
| 770 | mEventHub->monitor(); |
| 771 | } |
| 772 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 773 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 774 | // --- InputReader::ContextImpl --- |
| 775 | |
| 776 | InputReader::ContextImpl::ContextImpl(InputReader* reader) : |
| 777 | mReader(reader) { |
| 778 | } |
| 779 | |
| 780 | void InputReader::ContextImpl::updateGlobalMetaState() { |
| 781 | // lock is already held by the input loop |
| 782 | mReader->updateGlobalMetaStateLocked(); |
| 783 | } |
| 784 | |
| 785 | int32_t InputReader::ContextImpl::getGlobalMetaState() { |
| 786 | // lock is already held by the input loop |
| 787 | return mReader->getGlobalMetaStateLocked(); |
| 788 | } |
| 789 | |
| 790 | void InputReader::ContextImpl::disableVirtualKeysUntil(nsecs_t time) { |
| 791 | // lock is already held by the input loop |
| 792 | mReader->disableVirtualKeysUntilLocked(time); |
| 793 | } |
| 794 | |
| 795 | bool InputReader::ContextImpl::shouldDropVirtualKey(nsecs_t now, |
| 796 | InputDevice* device, int32_t keyCode, int32_t scanCode) { |
| 797 | // lock is already held by the input loop |
| 798 | return mReader->shouldDropVirtualKeyLocked(now, device, keyCode, scanCode); |
| 799 | } |
| 800 | |
| 801 | void InputReader::ContextImpl::fadePointer() { |
| 802 | // lock is already held by the input loop |
| 803 | mReader->fadePointerLocked(); |
| 804 | } |
| 805 | |
| 806 | void InputReader::ContextImpl::requestTimeoutAtTime(nsecs_t when) { |
| 807 | // lock is already held by the input loop |
| 808 | mReader->requestTimeoutAtTimeLocked(when); |
| 809 | } |
| 810 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 811 | int32_t InputReader::ContextImpl::bumpGeneration() { |
| 812 | // lock is already held by the input loop |
| 813 | return mReader->bumpGenerationLocked(); |
| 814 | } |
| 815 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 816 | InputReaderPolicyInterface* InputReader::ContextImpl::getPolicy() { |
| 817 | return mReader->mPolicy.get(); |
| 818 | } |
| 819 | |
| 820 | InputListenerInterface* InputReader::ContextImpl::getListener() { |
| 821 | return mReader->mQueuedListener.get(); |
| 822 | } |
| 823 | |
| 824 | EventHubInterface* InputReader::ContextImpl::getEventHub() { |
| 825 | return mReader->mEventHub.get(); |
| 826 | } |
| 827 | |
| 828 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 829 | // --- InputReaderThread --- |
| 830 | |
| 831 | InputReaderThread::InputReaderThread(const sp<InputReaderInterface>& reader) : |
| 832 | Thread(/*canCallJava*/ true), mReader(reader) { |
| 833 | } |
| 834 | |
| 835 | InputReaderThread::~InputReaderThread() { |
| 836 | } |
| 837 | |
| 838 | bool InputReaderThread::threadLoop() { |
| 839 | mReader->loopOnce(); |
| 840 | return true; |
| 841 | } |
| 842 | |
| 843 | |
| 844 | // --- InputDevice --- |
| 845 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 846 | InputDevice::InputDevice(InputReaderContext* context, int32_t id, int32_t generation, |
Michael Wright | ac6c78b | 2013-07-17 13:21:45 -0700 | [diff] [blame] | 847 | int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) : |
| 848 | mContext(context), mId(id), mGeneration(generation), mControllerNumber(controllerNumber), |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 849 | mIdentifier(identifier), mClasses(classes), |
Jeff Brown | 9ee285a | 2011-08-31 12:56:34 -0700 | [diff] [blame] | 850 | mSources(0), mIsExternal(false), mDropUntilNextSync(false) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | InputDevice::~InputDevice() { |
| 854 | size_t numMappers = mMappers.size(); |
| 855 | for (size_t i = 0; i < numMappers; i++) { |
| 856 | delete mMappers[i]; |
| 857 | } |
| 858 | mMappers.clear(); |
| 859 | } |
| 860 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 861 | void InputDevice::dump(String8& dump) { |
| 862 | InputDeviceInfo deviceInfo; |
| 863 | getDeviceInfo(& deviceInfo); |
| 864 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 865 | dump.appendFormat(INDENT "Device %d: %s\n", deviceInfo.getId(), |
Jeff Brown | 5bbd4b4 | 2012-04-20 19:28:00 -0700 | [diff] [blame] | 866 | deviceInfo.getDisplayName().string()); |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 867 | dump.appendFormat(INDENT2 "Generation: %d\n", mGeneration); |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 868 | dump.appendFormat(INDENT2 "IsExternal: %s\n", toString(mIsExternal)); |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 869 | dump.appendFormat(INDENT2 "Sources: 0x%08x\n", deviceInfo.getSources()); |
| 870 | dump.appendFormat(INDENT2 "KeyboardType: %d\n", deviceInfo.getKeyboardType()); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 871 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 872 | const Vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 873 | if (!ranges.isEmpty()) { |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 874 | dump.append(INDENT2 "Motion Ranges:\n"); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 875 | for (size_t i = 0; i < ranges.size(); i++) { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 876 | const InputDeviceInfo::MotionRange& range = ranges.itemAt(i); |
| 877 | const char* label = getAxisLabel(range.axis); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 878 | char name[32]; |
| 879 | if (label) { |
| 880 | strncpy(name, label, sizeof(name)); |
| 881 | name[sizeof(name) - 1] = '\0'; |
| 882 | } else { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 883 | snprintf(name, sizeof(name), "%d", range.axis); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 884 | } |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 885 | dump.appendFormat(INDENT3 "%s: source=0x%08x, " |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 886 | "min=%0.3f, max=%0.3f, flat=%0.3f, fuzz=%0.3f, resolution=%0.3f\n", |
| 887 | name, range.source, range.min, range.max, range.flat, range.fuzz, |
| 888 | range.resolution); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 889 | } |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | size_t numMappers = mMappers.size(); |
| 893 | for (size_t i = 0; i < numMappers; i++) { |
| 894 | InputMapper* mapper = mMappers[i]; |
| 895 | mapper->dump(dump); |
| 896 | } |
| 897 | } |
| 898 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 899 | void InputDevice::addMapper(InputMapper* mapper) { |
| 900 | mMappers.add(mapper); |
| 901 | } |
| 902 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 903 | void InputDevice::configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 904 | mSources = 0; |
| 905 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 906 | if (!isIgnored()) { |
| 907 | if (!changes) { // first time only |
| 908 | mContext->getEventHub()->getConfiguration(mId, &mConfiguration); |
| 909 | } |
| 910 | |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 911 | if (!changes || (changes & InputReaderConfiguration::CHANGE_KEYBOARD_LAYOUTS)) { |
Jeff Brown | 61c0824 | 2012-04-19 11:14:33 -0700 | [diff] [blame] | 912 | if (!(mClasses & INPUT_DEVICE_CLASS_VIRTUAL)) { |
| 913 | sp<KeyCharacterMap> keyboardLayout = |
RoboErik | ca9eef6 | 2013-12-16 11:27:55 -0800 | [diff] [blame] | 914 | mContext->getPolicy()->getKeyboardLayoutOverlay(mIdentifier); |
Jeff Brown | 61c0824 | 2012-04-19 11:14:33 -0700 | [diff] [blame] | 915 | if (mContext->getEventHub()->setKeyboardLayoutOverlay(mId, keyboardLayout)) { |
| 916 | bumpGeneration(); |
| 917 | } |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 918 | } |
| 919 | } |
| 920 | |
Jeff Brown | 5bbd4b4 | 2012-04-20 19:28:00 -0700 | [diff] [blame] | 921 | if (!changes || (changes & InputReaderConfiguration::CHANGE_DEVICE_ALIAS)) { |
| 922 | if (!(mClasses & INPUT_DEVICE_CLASS_VIRTUAL)) { |
| 923 | String8 alias = mContext->getPolicy()->getDeviceAlias(mIdentifier); |
| 924 | if (mAlias != alias) { |
| 925 | mAlias = alias; |
| 926 | bumpGeneration(); |
| 927 | } |
| 928 | } |
| 929 | } |
| 930 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 931 | size_t numMappers = mMappers.size(); |
| 932 | for (size_t i = 0; i < numMappers; i++) { |
| 933 | InputMapper* mapper = mMappers[i]; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 934 | mapper->configure(when, config, changes); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 935 | mSources |= mapper->getSources(); |
| 936 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 937 | } |
| 938 | } |
| 939 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 940 | void InputDevice::reset(nsecs_t when) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 941 | size_t numMappers = mMappers.size(); |
| 942 | for (size_t i = 0; i < numMappers; i++) { |
| 943 | InputMapper* mapper = mMappers[i]; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 944 | mapper->reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 945 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 946 | |
| 947 | mContext->updateGlobalMetaState(); |
| 948 | |
| 949 | notifyReset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 950 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 951 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 952 | void InputDevice::process(const RawEvent* rawEvents, size_t count) { |
| 953 | // Process all of the events in order for each mapper. |
| 954 | // We cannot simply ask each mapper to process them in bulk because mappers may |
| 955 | // have side-effects that must be interleaved. For example, joystick movement events and |
| 956 | // gamepad button presses are handled by different mappers but they should be dispatched |
| 957 | // in the order received. |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 958 | size_t numMappers = mMappers.size(); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 959 | for (const RawEvent* rawEvent = rawEvents; count--; rawEvent++) { |
| 960 | #if DEBUG_RAW_EVENTS |
Jeff Brown | f33b2b2 | 2012-10-05 17:59:56 -0700 | [diff] [blame] | 961 | ALOGD("Input event: device=%d type=0x%04x code=0x%04x value=0x%08x when=%lld", |
| 962 | rawEvent->deviceId, rawEvent->type, rawEvent->code, rawEvent->value, |
| 963 | rawEvent->when); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 964 | #endif |
| 965 | |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 966 | if (mDropUntilNextSync) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 967 | if (rawEvent->type == EV_SYN && rawEvent->code == SYN_REPORT) { |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 968 | mDropUntilNextSync = false; |
| 969 | #if DEBUG_RAW_EVENTS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 970 | ALOGD("Recovered from input event buffer overrun."); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 971 | #endif |
| 972 | } else { |
| 973 | #if DEBUG_RAW_EVENTS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 974 | ALOGD("Dropped input event while waiting for next input sync."); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 975 | #endif |
| 976 | } |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 977 | } else if (rawEvent->type == EV_SYN && rawEvent->code == SYN_DROPPED) { |
Jeff Brown | e38fdfa | 2012-04-06 14:51:01 -0700 | [diff] [blame] | 978 | ALOGI("Detected input event buffer overrun for device %s.", getName().string()); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 979 | mDropUntilNextSync = true; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 980 | reset(rawEvent->when); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 981 | } else { |
| 982 | for (size_t i = 0; i < numMappers; i++) { |
| 983 | InputMapper* mapper = mMappers[i]; |
| 984 | mapper->process(rawEvent); |
| 985 | } |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 986 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 987 | } |
| 988 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 989 | |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 990 | void InputDevice::timeoutExpired(nsecs_t when) { |
| 991 | size_t numMappers = mMappers.size(); |
| 992 | for (size_t i = 0; i < numMappers; i++) { |
| 993 | InputMapper* mapper = mMappers[i]; |
| 994 | mapper->timeoutExpired(when); |
| 995 | } |
| 996 | } |
| 997 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 998 | void InputDevice::getDeviceInfo(InputDeviceInfo* outDeviceInfo) { |
Michael Wright | ac6c78b | 2013-07-17 13:21:45 -0700 | [diff] [blame] | 999 | outDeviceInfo->initialize(mId, mGeneration, mControllerNumber, mIdentifier, mAlias, |
| 1000 | mIsExternal); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1001 | |
| 1002 | size_t numMappers = mMappers.size(); |
| 1003 | for (size_t i = 0; i < numMappers; i++) { |
| 1004 | InputMapper* mapper = mMappers[i]; |
| 1005 | mapper->populateDeviceInfo(outDeviceInfo); |
| 1006 | } |
| 1007 | } |
| 1008 | |
| 1009 | int32_t InputDevice::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) { |
| 1010 | return getState(sourceMask, keyCode, & InputMapper::getKeyCodeState); |
| 1011 | } |
| 1012 | |
| 1013 | int32_t InputDevice::getScanCodeState(uint32_t sourceMask, int32_t scanCode) { |
| 1014 | return getState(sourceMask, scanCode, & InputMapper::getScanCodeState); |
| 1015 | } |
| 1016 | |
| 1017 | int32_t InputDevice::getSwitchState(uint32_t sourceMask, int32_t switchCode) { |
| 1018 | return getState(sourceMask, switchCode, & InputMapper::getSwitchState); |
| 1019 | } |
| 1020 | |
| 1021 | int32_t InputDevice::getState(uint32_t sourceMask, int32_t code, GetStateFunc getStateFunc) { |
| 1022 | int32_t result = AKEY_STATE_UNKNOWN; |
| 1023 | size_t numMappers = mMappers.size(); |
| 1024 | for (size_t i = 0; i < numMappers; i++) { |
| 1025 | InputMapper* mapper = mMappers[i]; |
| 1026 | if (sourcesMatchMask(mapper->getSources(), sourceMask)) { |
David Deephanphongs | fbca596 | 2011-11-14 14:50:45 -0800 | [diff] [blame] | 1027 | // If any mapper reports AKEY_STATE_DOWN or AKEY_STATE_VIRTUAL, return that |
| 1028 | // value. Otherwise, return AKEY_STATE_UP as long as one mapper reports it. |
| 1029 | int32_t currentResult = (mapper->*getStateFunc)(sourceMask, code); |
| 1030 | if (currentResult >= AKEY_STATE_DOWN) { |
| 1031 | return currentResult; |
| 1032 | } else if (currentResult == AKEY_STATE_UP) { |
| 1033 | result = currentResult; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | } |
| 1037 | return result; |
| 1038 | } |
| 1039 | |
| 1040 | bool InputDevice::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 1041 | const int32_t* keyCodes, uint8_t* outFlags) { |
| 1042 | bool result = false; |
| 1043 | size_t numMappers = mMappers.size(); |
| 1044 | for (size_t i = 0; i < numMappers; i++) { |
| 1045 | InputMapper* mapper = mMappers[i]; |
| 1046 | if (sourcesMatchMask(mapper->getSources(), sourceMask)) { |
| 1047 | result |= mapper->markSupportedKeyCodes(sourceMask, numCodes, keyCodes, outFlags); |
| 1048 | } |
| 1049 | } |
| 1050 | return result; |
| 1051 | } |
| 1052 | |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 1053 | void InputDevice::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, |
| 1054 | int32_t token) { |
| 1055 | size_t numMappers = mMappers.size(); |
| 1056 | for (size_t i = 0; i < numMappers; i++) { |
| 1057 | InputMapper* mapper = mMappers[i]; |
| 1058 | mapper->vibrate(pattern, patternSize, repeat, token); |
| 1059 | } |
| 1060 | } |
| 1061 | |
| 1062 | void InputDevice::cancelVibrate(int32_t token) { |
| 1063 | size_t numMappers = mMappers.size(); |
| 1064 | for (size_t i = 0; i < numMappers; i++) { |
| 1065 | InputMapper* mapper = mMappers[i]; |
| 1066 | mapper->cancelVibrate(token); |
| 1067 | } |
| 1068 | } |
| 1069 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1070 | int32_t InputDevice::getMetaState() { |
| 1071 | int32_t result = 0; |
| 1072 | size_t numMappers = mMappers.size(); |
| 1073 | for (size_t i = 0; i < numMappers; i++) { |
| 1074 | InputMapper* mapper = mMappers[i]; |
| 1075 | result |= mapper->getMetaState(); |
| 1076 | } |
| 1077 | return result; |
| 1078 | } |
| 1079 | |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 1080 | void InputDevice::fadePointer() { |
| 1081 | size_t numMappers = mMappers.size(); |
| 1082 | for (size_t i = 0; i < numMappers; i++) { |
| 1083 | InputMapper* mapper = mMappers[i]; |
| 1084 | mapper->fadePointer(); |
| 1085 | } |
| 1086 | } |
| 1087 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 1088 | void InputDevice::bumpGeneration() { |
| 1089 | mGeneration = mContext->bumpGeneration(); |
| 1090 | } |
| 1091 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1092 | void InputDevice::notifyReset(nsecs_t when) { |
| 1093 | NotifyDeviceResetArgs args(when, mId); |
| 1094 | mContext->getListener()->notifyDeviceReset(&args); |
| 1095 | } |
| 1096 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1097 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1098 | // --- CursorButtonAccumulator --- |
| 1099 | |
| 1100 | CursorButtonAccumulator::CursorButtonAccumulator() { |
| 1101 | clearButtons(); |
| 1102 | } |
| 1103 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1104 | void CursorButtonAccumulator::reset(InputDevice* device) { |
| 1105 | mBtnLeft = device->isKeyPressed(BTN_LEFT); |
| 1106 | mBtnRight = device->isKeyPressed(BTN_RIGHT); |
| 1107 | mBtnMiddle = device->isKeyPressed(BTN_MIDDLE); |
| 1108 | mBtnBack = device->isKeyPressed(BTN_BACK); |
| 1109 | mBtnSide = device->isKeyPressed(BTN_SIDE); |
| 1110 | mBtnForward = device->isKeyPressed(BTN_FORWARD); |
| 1111 | mBtnExtra = device->isKeyPressed(BTN_EXTRA); |
| 1112 | mBtnTask = device->isKeyPressed(BTN_TASK); |
| 1113 | } |
| 1114 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1115 | void CursorButtonAccumulator::clearButtons() { |
| 1116 | mBtnLeft = 0; |
| 1117 | mBtnRight = 0; |
| 1118 | mBtnMiddle = 0; |
| 1119 | mBtnBack = 0; |
| 1120 | mBtnSide = 0; |
| 1121 | mBtnForward = 0; |
| 1122 | mBtnExtra = 0; |
| 1123 | mBtnTask = 0; |
| 1124 | } |
| 1125 | |
| 1126 | void CursorButtonAccumulator::process(const RawEvent* rawEvent) { |
| 1127 | if (rawEvent->type == EV_KEY) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1128 | switch (rawEvent->code) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1129 | case BTN_LEFT: |
| 1130 | mBtnLeft = rawEvent->value; |
| 1131 | break; |
| 1132 | case BTN_RIGHT: |
| 1133 | mBtnRight = rawEvent->value; |
| 1134 | break; |
| 1135 | case BTN_MIDDLE: |
| 1136 | mBtnMiddle = rawEvent->value; |
| 1137 | break; |
| 1138 | case BTN_BACK: |
| 1139 | mBtnBack = rawEvent->value; |
| 1140 | break; |
| 1141 | case BTN_SIDE: |
| 1142 | mBtnSide = rawEvent->value; |
| 1143 | break; |
| 1144 | case BTN_FORWARD: |
| 1145 | mBtnForward = rawEvent->value; |
| 1146 | break; |
| 1147 | case BTN_EXTRA: |
| 1148 | mBtnExtra = rawEvent->value; |
| 1149 | break; |
| 1150 | case BTN_TASK: |
| 1151 | mBtnTask = rawEvent->value; |
| 1152 | break; |
| 1153 | } |
| 1154 | } |
| 1155 | } |
| 1156 | |
| 1157 | uint32_t CursorButtonAccumulator::getButtonState() const { |
| 1158 | uint32_t result = 0; |
| 1159 | if (mBtnLeft) { |
| 1160 | result |= AMOTION_EVENT_BUTTON_PRIMARY; |
| 1161 | } |
| 1162 | if (mBtnRight) { |
| 1163 | result |= AMOTION_EVENT_BUTTON_SECONDARY; |
| 1164 | } |
| 1165 | if (mBtnMiddle) { |
| 1166 | result |= AMOTION_EVENT_BUTTON_TERTIARY; |
| 1167 | } |
| 1168 | if (mBtnBack || mBtnSide) { |
| 1169 | result |= AMOTION_EVENT_BUTTON_BACK; |
| 1170 | } |
| 1171 | if (mBtnForward || mBtnExtra) { |
| 1172 | result |= AMOTION_EVENT_BUTTON_FORWARD; |
| 1173 | } |
| 1174 | return result; |
| 1175 | } |
| 1176 | |
| 1177 | |
| 1178 | // --- CursorMotionAccumulator --- |
| 1179 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1180 | CursorMotionAccumulator::CursorMotionAccumulator() { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1181 | clearRelativeAxes(); |
| 1182 | } |
| 1183 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1184 | void CursorMotionAccumulator::reset(InputDevice* device) { |
| 1185 | clearRelativeAxes(); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1186 | } |
| 1187 | |
| 1188 | void CursorMotionAccumulator::clearRelativeAxes() { |
| 1189 | mRelX = 0; |
| 1190 | mRelY = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
| 1193 | void CursorMotionAccumulator::process(const RawEvent* rawEvent) { |
| 1194 | if (rawEvent->type == EV_REL) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1195 | switch (rawEvent->code) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1196 | case REL_X: |
| 1197 | mRelX = rawEvent->value; |
| 1198 | break; |
| 1199 | case REL_Y: |
| 1200 | mRelY = rawEvent->value; |
| 1201 | break; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1202 | } |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | void CursorMotionAccumulator::finishSync() { |
| 1207 | clearRelativeAxes(); |
| 1208 | } |
| 1209 | |
| 1210 | |
| 1211 | // --- CursorScrollAccumulator --- |
| 1212 | |
| 1213 | CursorScrollAccumulator::CursorScrollAccumulator() : |
| 1214 | mHaveRelWheel(false), mHaveRelHWheel(false) { |
| 1215 | clearRelativeAxes(); |
| 1216 | } |
| 1217 | |
| 1218 | void CursorScrollAccumulator::configure(InputDevice* device) { |
| 1219 | mHaveRelWheel = device->getEventHub()->hasRelativeAxis(device->getId(), REL_WHEEL); |
| 1220 | mHaveRelHWheel = device->getEventHub()->hasRelativeAxis(device->getId(), REL_HWHEEL); |
| 1221 | } |
| 1222 | |
| 1223 | void CursorScrollAccumulator::reset(InputDevice* device) { |
| 1224 | clearRelativeAxes(); |
| 1225 | } |
| 1226 | |
| 1227 | void CursorScrollAccumulator::clearRelativeAxes() { |
| 1228 | mRelWheel = 0; |
| 1229 | mRelHWheel = 0; |
| 1230 | } |
| 1231 | |
| 1232 | void CursorScrollAccumulator::process(const RawEvent* rawEvent) { |
| 1233 | if (rawEvent->type == EV_REL) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1234 | switch (rawEvent->code) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1235 | case REL_WHEEL: |
| 1236 | mRelWheel = rawEvent->value; |
| 1237 | break; |
| 1238 | case REL_HWHEEL: |
| 1239 | mRelHWheel = rawEvent->value; |
| 1240 | break; |
| 1241 | } |
| 1242 | } |
| 1243 | } |
| 1244 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1245 | void CursorScrollAccumulator::finishSync() { |
| 1246 | clearRelativeAxes(); |
| 1247 | } |
| 1248 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1249 | |
| 1250 | // --- TouchButtonAccumulator --- |
| 1251 | |
| 1252 | TouchButtonAccumulator::TouchButtonAccumulator() : |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1253 | mHaveBtnTouch(false), mHaveStylus(false) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1254 | clearButtons(); |
| 1255 | } |
| 1256 | |
| 1257 | void TouchButtonAccumulator::configure(InputDevice* device) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1258 | mHaveBtnTouch = device->hasKey(BTN_TOUCH); |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1259 | mHaveStylus = device->hasKey(BTN_TOOL_PEN) |
| 1260 | || device->hasKey(BTN_TOOL_RUBBER) |
| 1261 | || device->hasKey(BTN_TOOL_BRUSH) |
| 1262 | || device->hasKey(BTN_TOOL_PENCIL) |
| 1263 | || device->hasKey(BTN_TOOL_AIRBRUSH); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | void TouchButtonAccumulator::reset(InputDevice* device) { |
| 1267 | mBtnTouch = device->isKeyPressed(BTN_TOUCH); |
| 1268 | mBtnStylus = device->isKeyPressed(BTN_STYLUS); |
| 1269 | mBtnStylus2 = device->isKeyPressed(BTN_STYLUS); |
| 1270 | mBtnToolFinger = device->isKeyPressed(BTN_TOOL_FINGER); |
| 1271 | mBtnToolPen = device->isKeyPressed(BTN_TOOL_PEN); |
| 1272 | mBtnToolRubber = device->isKeyPressed(BTN_TOOL_RUBBER); |
| 1273 | mBtnToolBrush = device->isKeyPressed(BTN_TOOL_BRUSH); |
| 1274 | mBtnToolPencil = device->isKeyPressed(BTN_TOOL_PENCIL); |
| 1275 | mBtnToolAirbrush = device->isKeyPressed(BTN_TOOL_AIRBRUSH); |
| 1276 | mBtnToolMouse = device->isKeyPressed(BTN_TOOL_MOUSE); |
| 1277 | mBtnToolLens = device->isKeyPressed(BTN_TOOL_LENS); |
Jeff Brown | ea6892e | 2011-08-23 17:31:25 -0700 | [diff] [blame] | 1278 | mBtnToolDoubleTap = device->isKeyPressed(BTN_TOOL_DOUBLETAP); |
| 1279 | mBtnToolTripleTap = device->isKeyPressed(BTN_TOOL_TRIPLETAP); |
| 1280 | mBtnToolQuadTap = device->isKeyPressed(BTN_TOOL_QUADTAP); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | void TouchButtonAccumulator::clearButtons() { |
| 1284 | mBtnTouch = 0; |
| 1285 | mBtnStylus = 0; |
| 1286 | mBtnStylus2 = 0; |
| 1287 | mBtnToolFinger = 0; |
| 1288 | mBtnToolPen = 0; |
| 1289 | mBtnToolRubber = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1290 | mBtnToolBrush = 0; |
| 1291 | mBtnToolPencil = 0; |
| 1292 | mBtnToolAirbrush = 0; |
| 1293 | mBtnToolMouse = 0; |
| 1294 | mBtnToolLens = 0; |
Jeff Brown | ea6892e | 2011-08-23 17:31:25 -0700 | [diff] [blame] | 1295 | mBtnToolDoubleTap = 0; |
| 1296 | mBtnToolTripleTap = 0; |
| 1297 | mBtnToolQuadTap = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1298 | } |
| 1299 | |
| 1300 | void TouchButtonAccumulator::process(const RawEvent* rawEvent) { |
| 1301 | if (rawEvent->type == EV_KEY) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1302 | switch (rawEvent->code) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1303 | case BTN_TOUCH: |
| 1304 | mBtnTouch = rawEvent->value; |
| 1305 | break; |
| 1306 | case BTN_STYLUS: |
| 1307 | mBtnStylus = rawEvent->value; |
| 1308 | break; |
| 1309 | case BTN_STYLUS2: |
| 1310 | mBtnStylus2 = rawEvent->value; |
| 1311 | break; |
| 1312 | case BTN_TOOL_FINGER: |
| 1313 | mBtnToolFinger = rawEvent->value; |
| 1314 | break; |
| 1315 | case BTN_TOOL_PEN: |
| 1316 | mBtnToolPen = rawEvent->value; |
| 1317 | break; |
| 1318 | case BTN_TOOL_RUBBER: |
| 1319 | mBtnToolRubber = rawEvent->value; |
| 1320 | break; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1321 | case BTN_TOOL_BRUSH: |
| 1322 | mBtnToolBrush = rawEvent->value; |
| 1323 | break; |
| 1324 | case BTN_TOOL_PENCIL: |
| 1325 | mBtnToolPencil = rawEvent->value; |
| 1326 | break; |
| 1327 | case BTN_TOOL_AIRBRUSH: |
| 1328 | mBtnToolAirbrush = rawEvent->value; |
| 1329 | break; |
| 1330 | case BTN_TOOL_MOUSE: |
| 1331 | mBtnToolMouse = rawEvent->value; |
| 1332 | break; |
| 1333 | case BTN_TOOL_LENS: |
| 1334 | mBtnToolLens = rawEvent->value; |
| 1335 | break; |
Jeff Brown | ea6892e | 2011-08-23 17:31:25 -0700 | [diff] [blame] | 1336 | case BTN_TOOL_DOUBLETAP: |
| 1337 | mBtnToolDoubleTap = rawEvent->value; |
| 1338 | break; |
| 1339 | case BTN_TOOL_TRIPLETAP: |
| 1340 | mBtnToolTripleTap = rawEvent->value; |
| 1341 | break; |
| 1342 | case BTN_TOOL_QUADTAP: |
| 1343 | mBtnToolQuadTap = rawEvent->value; |
| 1344 | break; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1345 | } |
| 1346 | } |
| 1347 | } |
| 1348 | |
| 1349 | uint32_t TouchButtonAccumulator::getButtonState() const { |
| 1350 | uint32_t result = 0; |
| 1351 | if (mBtnStylus) { |
| 1352 | result |= AMOTION_EVENT_BUTTON_SECONDARY; |
| 1353 | } |
| 1354 | if (mBtnStylus2) { |
| 1355 | result |= AMOTION_EVENT_BUTTON_TERTIARY; |
| 1356 | } |
| 1357 | return result; |
| 1358 | } |
| 1359 | |
| 1360 | int32_t TouchButtonAccumulator::getToolType() const { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1361 | if (mBtnToolMouse || mBtnToolLens) { |
| 1362 | return AMOTION_EVENT_TOOL_TYPE_MOUSE; |
| 1363 | } |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1364 | if (mBtnToolRubber) { |
| 1365 | return AMOTION_EVENT_TOOL_TYPE_ERASER; |
| 1366 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1367 | if (mBtnToolPen || mBtnToolBrush || mBtnToolPencil || mBtnToolAirbrush) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1368 | return AMOTION_EVENT_TOOL_TYPE_STYLUS; |
| 1369 | } |
Jeff Brown | ea6892e | 2011-08-23 17:31:25 -0700 | [diff] [blame] | 1370 | if (mBtnToolFinger || mBtnToolDoubleTap || mBtnToolTripleTap || mBtnToolQuadTap) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1371 | return AMOTION_EVENT_TOOL_TYPE_FINGER; |
| 1372 | } |
| 1373 | return AMOTION_EVENT_TOOL_TYPE_UNKNOWN; |
| 1374 | } |
| 1375 | |
Jeff Brown | d87c6d5 | 2011-08-10 14:55:59 -0700 | [diff] [blame] | 1376 | bool TouchButtonAccumulator::isToolActive() const { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1377 | return mBtnTouch || mBtnToolFinger || mBtnToolPen || mBtnToolRubber |
| 1378 | || mBtnToolBrush || mBtnToolPencil || mBtnToolAirbrush |
Jeff Brown | ea6892e | 2011-08-23 17:31:25 -0700 | [diff] [blame] | 1379 | || mBtnToolMouse || mBtnToolLens |
| 1380 | || mBtnToolDoubleTap || mBtnToolTripleTap || mBtnToolQuadTap; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1381 | } |
| 1382 | |
| 1383 | bool TouchButtonAccumulator::isHovering() const { |
| 1384 | return mHaveBtnTouch && !mBtnTouch; |
| 1385 | } |
| 1386 | |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1387 | bool TouchButtonAccumulator::hasStylus() const { |
| 1388 | return mHaveStylus; |
| 1389 | } |
| 1390 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1391 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1392 | // --- RawPointerAxes --- |
| 1393 | |
| 1394 | RawPointerAxes::RawPointerAxes() { |
| 1395 | clear(); |
| 1396 | } |
| 1397 | |
| 1398 | void RawPointerAxes::clear() { |
| 1399 | x.clear(); |
| 1400 | y.clear(); |
| 1401 | pressure.clear(); |
| 1402 | touchMajor.clear(); |
| 1403 | touchMinor.clear(); |
| 1404 | toolMajor.clear(); |
| 1405 | toolMinor.clear(); |
| 1406 | orientation.clear(); |
| 1407 | distance.clear(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1408 | tiltX.clear(); |
| 1409 | tiltY.clear(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1410 | trackingId.clear(); |
| 1411 | slot.clear(); |
| 1412 | } |
| 1413 | |
| 1414 | |
| 1415 | // --- RawPointerData --- |
| 1416 | |
| 1417 | RawPointerData::RawPointerData() { |
| 1418 | clear(); |
| 1419 | } |
| 1420 | |
| 1421 | void RawPointerData::clear() { |
| 1422 | pointerCount = 0; |
| 1423 | clearIdBits(); |
| 1424 | } |
| 1425 | |
| 1426 | void RawPointerData::copyFrom(const RawPointerData& other) { |
| 1427 | pointerCount = other.pointerCount; |
| 1428 | hoveringIdBits = other.hoveringIdBits; |
| 1429 | touchingIdBits = other.touchingIdBits; |
| 1430 | |
| 1431 | for (uint32_t i = 0; i < pointerCount; i++) { |
| 1432 | pointers[i] = other.pointers[i]; |
| 1433 | |
| 1434 | int id = pointers[i].id; |
| 1435 | idToIndex[id] = other.idToIndex[id]; |
| 1436 | } |
| 1437 | } |
| 1438 | |
| 1439 | void RawPointerData::getCentroidOfTouchingPointers(float* outX, float* outY) const { |
| 1440 | float x = 0, y = 0; |
| 1441 | uint32_t count = touchingIdBits.count(); |
| 1442 | if (count) { |
| 1443 | for (BitSet32 idBits(touchingIdBits); !idBits.isEmpty(); ) { |
| 1444 | uint32_t id = idBits.clearFirstMarkedBit(); |
| 1445 | const Pointer& pointer = pointerForId(id); |
| 1446 | x += pointer.x; |
| 1447 | y += pointer.y; |
| 1448 | } |
| 1449 | x /= count; |
| 1450 | y /= count; |
| 1451 | } |
| 1452 | *outX = x; |
| 1453 | *outY = y; |
| 1454 | } |
| 1455 | |
| 1456 | |
| 1457 | // --- CookedPointerData --- |
| 1458 | |
| 1459 | CookedPointerData::CookedPointerData() { |
| 1460 | clear(); |
| 1461 | } |
| 1462 | |
| 1463 | void CookedPointerData::clear() { |
| 1464 | pointerCount = 0; |
| 1465 | hoveringIdBits.clear(); |
| 1466 | touchingIdBits.clear(); |
| 1467 | } |
| 1468 | |
| 1469 | void CookedPointerData::copyFrom(const CookedPointerData& other) { |
| 1470 | pointerCount = other.pointerCount; |
| 1471 | hoveringIdBits = other.hoveringIdBits; |
| 1472 | touchingIdBits = other.touchingIdBits; |
| 1473 | |
| 1474 | for (uint32_t i = 0; i < pointerCount; i++) { |
| 1475 | pointerProperties[i].copyFrom(other.pointerProperties[i]); |
| 1476 | pointerCoords[i].copyFrom(other.pointerCoords[i]); |
| 1477 | |
| 1478 | int id = pointerProperties[i].id; |
| 1479 | idToIndex[id] = other.idToIndex[id]; |
| 1480 | } |
| 1481 | } |
| 1482 | |
| 1483 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1484 | // --- SingleTouchMotionAccumulator --- |
| 1485 | |
| 1486 | SingleTouchMotionAccumulator::SingleTouchMotionAccumulator() { |
| 1487 | clearAbsoluteAxes(); |
| 1488 | } |
| 1489 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1490 | void SingleTouchMotionAccumulator::reset(InputDevice* device) { |
| 1491 | mAbsX = device->getAbsoluteAxisValue(ABS_X); |
| 1492 | mAbsY = device->getAbsoluteAxisValue(ABS_Y); |
| 1493 | mAbsPressure = device->getAbsoluteAxisValue(ABS_PRESSURE); |
| 1494 | mAbsToolWidth = device->getAbsoluteAxisValue(ABS_TOOL_WIDTH); |
| 1495 | mAbsDistance = device->getAbsoluteAxisValue(ABS_DISTANCE); |
| 1496 | mAbsTiltX = device->getAbsoluteAxisValue(ABS_TILT_X); |
| 1497 | mAbsTiltY = device->getAbsoluteAxisValue(ABS_TILT_Y); |
| 1498 | } |
| 1499 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1500 | void SingleTouchMotionAccumulator::clearAbsoluteAxes() { |
| 1501 | mAbsX = 0; |
| 1502 | mAbsY = 0; |
| 1503 | mAbsPressure = 0; |
| 1504 | mAbsToolWidth = 0; |
| 1505 | mAbsDistance = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1506 | mAbsTiltX = 0; |
| 1507 | mAbsTiltY = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1508 | } |
| 1509 | |
| 1510 | void SingleTouchMotionAccumulator::process(const RawEvent* rawEvent) { |
| 1511 | if (rawEvent->type == EV_ABS) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1512 | switch (rawEvent->code) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1513 | case ABS_X: |
| 1514 | mAbsX = rawEvent->value; |
| 1515 | break; |
| 1516 | case ABS_Y: |
| 1517 | mAbsY = rawEvent->value; |
| 1518 | break; |
| 1519 | case ABS_PRESSURE: |
| 1520 | mAbsPressure = rawEvent->value; |
| 1521 | break; |
| 1522 | case ABS_TOOL_WIDTH: |
| 1523 | mAbsToolWidth = rawEvent->value; |
| 1524 | break; |
| 1525 | case ABS_DISTANCE: |
| 1526 | mAbsDistance = rawEvent->value; |
| 1527 | break; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1528 | case ABS_TILT_X: |
| 1529 | mAbsTiltX = rawEvent->value; |
| 1530 | break; |
| 1531 | case ABS_TILT_Y: |
| 1532 | mAbsTiltY = rawEvent->value; |
| 1533 | break; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1534 | } |
| 1535 | } |
| 1536 | } |
| 1537 | |
| 1538 | |
| 1539 | // --- MultiTouchMotionAccumulator --- |
| 1540 | |
| 1541 | MultiTouchMotionAccumulator::MultiTouchMotionAccumulator() : |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1542 | mCurrentSlot(-1), mSlots(NULL), mSlotCount(0), mUsingSlotsProtocol(false), |
| 1543 | mHaveStylus(false) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1544 | } |
| 1545 | |
| 1546 | MultiTouchMotionAccumulator::~MultiTouchMotionAccumulator() { |
| 1547 | delete[] mSlots; |
| 1548 | } |
| 1549 | |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1550 | void MultiTouchMotionAccumulator::configure(InputDevice* device, |
| 1551 | size_t slotCount, bool usingSlotsProtocol) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1552 | mSlotCount = slotCount; |
| 1553 | mUsingSlotsProtocol = usingSlotsProtocol; |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1554 | mHaveStylus = device->hasAbsoluteAxis(ABS_MT_TOOL_TYPE); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1555 | |
| 1556 | delete[] mSlots; |
| 1557 | mSlots = new Slot[slotCount]; |
| 1558 | } |
| 1559 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1560 | void MultiTouchMotionAccumulator::reset(InputDevice* device) { |
| 1561 | // Unfortunately there is no way to read the initial contents of the slots. |
| 1562 | // So when we reset the accumulator, we must assume they are all zeroes. |
| 1563 | if (mUsingSlotsProtocol) { |
| 1564 | // Query the driver for the current slot index and use it as the initial slot |
| 1565 | // before we start reading events from the device. It is possible that the |
| 1566 | // current slot index will not be the same as it was when the first event was |
| 1567 | // written into the evdev buffer, which means the input mapper could start |
| 1568 | // out of sync with the initial state of the events in the evdev buffer. |
| 1569 | // In the extremely unlikely case that this happens, the data from |
| 1570 | // two slots will be confused until the next ABS_MT_SLOT event is received. |
| 1571 | // This can cause the touch point to "jump", but at least there will be |
| 1572 | // no stuck touches. |
| 1573 | int32_t initialSlot; |
| 1574 | status_t status = device->getEventHub()->getAbsoluteAxisValue(device->getId(), |
| 1575 | ABS_MT_SLOT, &initialSlot); |
| 1576 | if (status) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 1577 | ALOGD("Could not retrieve current multitouch slot index. status=%d", status); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1578 | initialSlot = -1; |
| 1579 | } |
| 1580 | clearSlots(initialSlot); |
| 1581 | } else { |
| 1582 | clearSlots(-1); |
| 1583 | } |
| 1584 | } |
| 1585 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1586 | void MultiTouchMotionAccumulator::clearSlots(int32_t initialSlot) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1587 | if (mSlots) { |
| 1588 | for (size_t i = 0; i < mSlotCount; i++) { |
| 1589 | mSlots[i].clear(); |
| 1590 | } |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1591 | } |
| 1592 | mCurrentSlot = initialSlot; |
| 1593 | } |
| 1594 | |
| 1595 | void MultiTouchMotionAccumulator::process(const RawEvent* rawEvent) { |
| 1596 | if (rawEvent->type == EV_ABS) { |
| 1597 | bool newSlot = false; |
| 1598 | if (mUsingSlotsProtocol) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1599 | if (rawEvent->code == ABS_MT_SLOT) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1600 | mCurrentSlot = rawEvent->value; |
| 1601 | newSlot = true; |
| 1602 | } |
| 1603 | } else if (mCurrentSlot < 0) { |
| 1604 | mCurrentSlot = 0; |
| 1605 | } |
| 1606 | |
| 1607 | if (mCurrentSlot < 0 || size_t(mCurrentSlot) >= mSlotCount) { |
| 1608 | #if DEBUG_POINTERS |
| 1609 | if (newSlot) { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1610 | ALOGW("MultiTouch device emitted invalid slot index %d but it " |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1611 | "should be between 0 and %d; ignoring this slot.", |
| 1612 | mCurrentSlot, mSlotCount - 1); |
| 1613 | } |
| 1614 | #endif |
| 1615 | } else { |
| 1616 | Slot* slot = &mSlots[mCurrentSlot]; |
| 1617 | |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1618 | switch (rawEvent->code) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1619 | case ABS_MT_POSITION_X: |
| 1620 | slot->mInUse = true; |
| 1621 | slot->mAbsMTPositionX = rawEvent->value; |
| 1622 | break; |
| 1623 | case ABS_MT_POSITION_Y: |
| 1624 | slot->mInUse = true; |
| 1625 | slot->mAbsMTPositionY = rawEvent->value; |
| 1626 | break; |
| 1627 | case ABS_MT_TOUCH_MAJOR: |
| 1628 | slot->mInUse = true; |
| 1629 | slot->mAbsMTTouchMajor = rawEvent->value; |
| 1630 | break; |
| 1631 | case ABS_MT_TOUCH_MINOR: |
| 1632 | slot->mInUse = true; |
| 1633 | slot->mAbsMTTouchMinor = rawEvent->value; |
| 1634 | slot->mHaveAbsMTTouchMinor = true; |
| 1635 | break; |
| 1636 | case ABS_MT_WIDTH_MAJOR: |
| 1637 | slot->mInUse = true; |
| 1638 | slot->mAbsMTWidthMajor = rawEvent->value; |
| 1639 | break; |
| 1640 | case ABS_MT_WIDTH_MINOR: |
| 1641 | slot->mInUse = true; |
| 1642 | slot->mAbsMTWidthMinor = rawEvent->value; |
| 1643 | slot->mHaveAbsMTWidthMinor = true; |
| 1644 | break; |
| 1645 | case ABS_MT_ORIENTATION: |
| 1646 | slot->mInUse = true; |
| 1647 | slot->mAbsMTOrientation = rawEvent->value; |
| 1648 | break; |
| 1649 | case ABS_MT_TRACKING_ID: |
| 1650 | if (mUsingSlotsProtocol && rawEvent->value < 0) { |
Jeff Brown | 8bcbbef | 2011-08-11 15:49:09 -0700 | [diff] [blame] | 1651 | // The slot is no longer in use but it retains its previous contents, |
| 1652 | // which may be reused for subsequent touches. |
| 1653 | slot->mInUse = false; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1654 | } else { |
| 1655 | slot->mInUse = true; |
| 1656 | slot->mAbsMTTrackingId = rawEvent->value; |
| 1657 | } |
| 1658 | break; |
| 1659 | case ABS_MT_PRESSURE: |
| 1660 | slot->mInUse = true; |
| 1661 | slot->mAbsMTPressure = rawEvent->value; |
| 1662 | break; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1663 | case ABS_MT_DISTANCE: |
| 1664 | slot->mInUse = true; |
| 1665 | slot->mAbsMTDistance = rawEvent->value; |
| 1666 | break; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1667 | case ABS_MT_TOOL_TYPE: |
| 1668 | slot->mInUse = true; |
| 1669 | slot->mAbsMTToolType = rawEvent->value; |
| 1670 | slot->mHaveAbsMTToolType = true; |
| 1671 | break; |
| 1672 | } |
| 1673 | } |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 1674 | } else if (rawEvent->type == EV_SYN && rawEvent->code == SYN_MT_REPORT) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1675 | // MultiTouch Sync: The driver has returned all data for *one* of the pointers. |
| 1676 | mCurrentSlot += 1; |
| 1677 | } |
| 1678 | } |
| 1679 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1680 | void MultiTouchMotionAccumulator::finishSync() { |
| 1681 | if (!mUsingSlotsProtocol) { |
| 1682 | clearSlots(-1); |
| 1683 | } |
| 1684 | } |
| 1685 | |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 1686 | bool MultiTouchMotionAccumulator::hasStylus() const { |
| 1687 | return mHaveStylus; |
| 1688 | } |
| 1689 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1690 | |
| 1691 | // --- MultiTouchMotionAccumulator::Slot --- |
| 1692 | |
| 1693 | MultiTouchMotionAccumulator::Slot::Slot() { |
| 1694 | clear(); |
| 1695 | } |
| 1696 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1697 | void MultiTouchMotionAccumulator::Slot::clear() { |
| 1698 | mInUse = false; |
| 1699 | mHaveAbsMTTouchMinor = false; |
| 1700 | mHaveAbsMTWidthMinor = false; |
| 1701 | mHaveAbsMTToolType = false; |
| 1702 | mAbsMTPositionX = 0; |
| 1703 | mAbsMTPositionY = 0; |
| 1704 | mAbsMTTouchMajor = 0; |
| 1705 | mAbsMTTouchMinor = 0; |
| 1706 | mAbsMTWidthMajor = 0; |
| 1707 | mAbsMTWidthMinor = 0; |
| 1708 | mAbsMTOrientation = 0; |
| 1709 | mAbsMTTrackingId = -1; |
| 1710 | mAbsMTPressure = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1711 | mAbsMTDistance = 0; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1712 | mAbsMTToolType = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 1713 | } |
| 1714 | |
| 1715 | int32_t MultiTouchMotionAccumulator::Slot::getToolType() const { |
| 1716 | if (mHaveAbsMTToolType) { |
| 1717 | switch (mAbsMTToolType) { |
| 1718 | case MT_TOOL_FINGER: |
| 1719 | return AMOTION_EVENT_TOOL_TYPE_FINGER; |
| 1720 | case MT_TOOL_PEN: |
| 1721 | return AMOTION_EVENT_TOOL_TYPE_STYLUS; |
| 1722 | } |
| 1723 | } |
| 1724 | return AMOTION_EVENT_TOOL_TYPE_UNKNOWN; |
| 1725 | } |
| 1726 | |
| 1727 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1728 | // --- InputMapper --- |
| 1729 | |
| 1730 | InputMapper::InputMapper(InputDevice* device) : |
| 1731 | mDevice(device), mContext(device->getContext()) { |
| 1732 | } |
| 1733 | |
| 1734 | InputMapper::~InputMapper() { |
| 1735 | } |
| 1736 | |
| 1737 | void InputMapper::populateDeviceInfo(InputDeviceInfo* info) { |
| 1738 | info->addSource(getSources()); |
| 1739 | } |
| 1740 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 1741 | void InputMapper::dump(String8& dump) { |
| 1742 | } |
| 1743 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1744 | void InputMapper::configure(nsecs_t when, |
| 1745 | const InputReaderConfiguration* config, uint32_t changes) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1748 | void InputMapper::reset(nsecs_t when) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1749 | } |
| 1750 | |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 1751 | void InputMapper::timeoutExpired(nsecs_t when) { |
| 1752 | } |
| 1753 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1754 | int32_t InputMapper::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) { |
| 1755 | return AKEY_STATE_UNKNOWN; |
| 1756 | } |
| 1757 | |
| 1758 | int32_t InputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) { |
| 1759 | return AKEY_STATE_UNKNOWN; |
| 1760 | } |
| 1761 | |
| 1762 | int32_t InputMapper::getSwitchState(uint32_t sourceMask, int32_t switchCode) { |
| 1763 | return AKEY_STATE_UNKNOWN; |
| 1764 | } |
| 1765 | |
| 1766 | bool InputMapper::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 1767 | const int32_t* keyCodes, uint8_t* outFlags) { |
| 1768 | return false; |
| 1769 | } |
| 1770 | |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 1771 | void InputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, |
| 1772 | int32_t token) { |
| 1773 | } |
| 1774 | |
| 1775 | void InputMapper::cancelVibrate(int32_t token) { |
| 1776 | } |
| 1777 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1778 | int32_t InputMapper::getMetaState() { |
| 1779 | return 0; |
| 1780 | } |
| 1781 | |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 1782 | void InputMapper::fadePointer() { |
| 1783 | } |
| 1784 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1785 | status_t InputMapper::getAbsoluteAxisInfo(int32_t axis, RawAbsoluteAxisInfo* axisInfo) { |
| 1786 | return getEventHub()->getAbsoluteAxisInfo(getDeviceId(), axis, axisInfo); |
| 1787 | } |
| 1788 | |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 1789 | void InputMapper::bumpGeneration() { |
| 1790 | mDevice->bumpGeneration(); |
| 1791 | } |
| 1792 | |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 1793 | void InputMapper::dumpRawAbsoluteAxisInfo(String8& dump, |
| 1794 | const RawAbsoluteAxisInfo& axis, const char* name) { |
| 1795 | if (axis.valid) { |
Jeff Brown | b3a2d13 | 2011-06-12 18:14:50 -0700 | [diff] [blame] | 1796 | dump.appendFormat(INDENT4 "%s: min=%d, max=%d, flat=%d, fuzz=%d, resolution=%d\n", |
| 1797 | name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 1798 | } else { |
| 1799 | dump.appendFormat(INDENT4 "%s: unknown range\n", name); |
| 1800 | } |
| 1801 | } |
| 1802 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1803 | |
| 1804 | // --- SwitchInputMapper --- |
| 1805 | |
| 1806 | SwitchInputMapper::SwitchInputMapper(InputDevice* device) : |
Jeff Brown | bcc046a | 2012-09-27 20:46:43 -0700 | [diff] [blame] | 1807 | InputMapper(device), mUpdatedSwitchValues(0), mUpdatedSwitchMask(0) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | SwitchInputMapper::~SwitchInputMapper() { |
| 1811 | } |
| 1812 | |
| 1813 | uint32_t SwitchInputMapper::getSources() { |
Jeff Brown | 89de57a | 2011-01-19 18:41:38 -0800 | [diff] [blame] | 1814 | return AINPUT_SOURCE_SWITCH; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | void SwitchInputMapper::process(const RawEvent* rawEvent) { |
| 1818 | switch (rawEvent->type) { |
| 1819 | case EV_SW: |
Jeff Brown | bcc046a | 2012-09-27 20:46:43 -0700 | [diff] [blame] | 1820 | processSwitch(rawEvent->code, rawEvent->value); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1821 | break; |
Jeff Brown | bcc046a | 2012-09-27 20:46:43 -0700 | [diff] [blame] | 1822 | |
| 1823 | case EV_SYN: |
| 1824 | if (rawEvent->code == SYN_REPORT) { |
| 1825 | sync(rawEvent->when); |
| 1826 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1827 | } |
| 1828 | } |
| 1829 | |
Jeff Brown | bcc046a | 2012-09-27 20:46:43 -0700 | [diff] [blame] | 1830 | void SwitchInputMapper::processSwitch(int32_t switchCode, int32_t switchValue) { |
| 1831 | if (switchCode >= 0 && switchCode < 32) { |
| 1832 | if (switchValue) { |
| 1833 | mUpdatedSwitchValues |= 1 << switchCode; |
| 1834 | } |
| 1835 | mUpdatedSwitchMask |= 1 << switchCode; |
| 1836 | } |
| 1837 | } |
| 1838 | |
| 1839 | void SwitchInputMapper::sync(nsecs_t when) { |
| 1840 | if (mUpdatedSwitchMask) { |
| 1841 | NotifySwitchArgs args(when, 0, mUpdatedSwitchValues, mUpdatedSwitchMask); |
| 1842 | getListener()->notifySwitch(&args); |
| 1843 | |
| 1844 | mUpdatedSwitchValues = 0; |
| 1845 | mUpdatedSwitchMask = 0; |
| 1846 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1847 | } |
| 1848 | |
| 1849 | int32_t SwitchInputMapper::getSwitchState(uint32_t sourceMask, int32_t switchCode) { |
| 1850 | return getEventHub()->getSwitchState(getDeviceId(), switchCode); |
| 1851 | } |
| 1852 | |
| 1853 | |
Jeff Brown | a47425a | 2012-04-13 04:09:27 -0700 | [diff] [blame] | 1854 | // --- VibratorInputMapper --- |
| 1855 | |
| 1856 | VibratorInputMapper::VibratorInputMapper(InputDevice* device) : |
| 1857 | InputMapper(device), mVibrating(false) { |
| 1858 | } |
| 1859 | |
| 1860 | VibratorInputMapper::~VibratorInputMapper() { |
| 1861 | } |
| 1862 | |
| 1863 | uint32_t VibratorInputMapper::getSources() { |
| 1864 | return 0; |
| 1865 | } |
| 1866 | |
| 1867 | void VibratorInputMapper::populateDeviceInfo(InputDeviceInfo* info) { |
| 1868 | InputMapper::populateDeviceInfo(info); |
| 1869 | |
| 1870 | info->setVibrator(true); |
| 1871 | } |
| 1872 | |
| 1873 | void VibratorInputMapper::process(const RawEvent* rawEvent) { |
| 1874 | // TODO: Handle FF_STATUS, although it does not seem to be widely supported. |
| 1875 | } |
| 1876 | |
| 1877 | void VibratorInputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, |
| 1878 | int32_t token) { |
| 1879 | #if DEBUG_VIBRATOR |
| 1880 | String8 patternStr; |
| 1881 | for (size_t i = 0; i < patternSize; i++) { |
| 1882 | if (i != 0) { |
| 1883 | patternStr.append(", "); |
| 1884 | } |
| 1885 | patternStr.appendFormat("%lld", pattern[i]); |
| 1886 | } |
| 1887 | ALOGD("vibrate: deviceId=%d, pattern=[%s], repeat=%ld, token=%d", |
| 1888 | getDeviceId(), patternStr.string(), repeat, token); |
| 1889 | #endif |
| 1890 | |
| 1891 | mVibrating = true; |
| 1892 | memcpy(mPattern, pattern, patternSize * sizeof(nsecs_t)); |
| 1893 | mPatternSize = patternSize; |
| 1894 | mRepeat = repeat; |
| 1895 | mToken = token; |
| 1896 | mIndex = -1; |
| 1897 | |
| 1898 | nextStep(); |
| 1899 | } |
| 1900 | |
| 1901 | void VibratorInputMapper::cancelVibrate(int32_t token) { |
| 1902 | #if DEBUG_VIBRATOR |
| 1903 | ALOGD("cancelVibrate: deviceId=%d, token=%d", getDeviceId(), token); |
| 1904 | #endif |
| 1905 | |
| 1906 | if (mVibrating && mToken == token) { |
| 1907 | stopVibrating(); |
| 1908 | } |
| 1909 | } |
| 1910 | |
| 1911 | void VibratorInputMapper::timeoutExpired(nsecs_t when) { |
| 1912 | if (mVibrating) { |
| 1913 | if (when >= mNextStepTime) { |
| 1914 | nextStep(); |
| 1915 | } else { |
| 1916 | getContext()->requestTimeoutAtTime(mNextStepTime); |
| 1917 | } |
| 1918 | } |
| 1919 | } |
| 1920 | |
| 1921 | void VibratorInputMapper::nextStep() { |
| 1922 | mIndex += 1; |
| 1923 | if (size_t(mIndex) >= mPatternSize) { |
| 1924 | if (mRepeat < 0) { |
| 1925 | // We are done. |
| 1926 | stopVibrating(); |
| 1927 | return; |
| 1928 | } |
| 1929 | mIndex = mRepeat; |
| 1930 | } |
| 1931 | |
| 1932 | bool vibratorOn = mIndex & 1; |
| 1933 | nsecs_t duration = mPattern[mIndex]; |
| 1934 | if (vibratorOn) { |
| 1935 | #if DEBUG_VIBRATOR |
| 1936 | ALOGD("nextStep: sending vibrate deviceId=%d, duration=%lld", |
| 1937 | getDeviceId(), duration); |
| 1938 | #endif |
| 1939 | getEventHub()->vibrate(getDeviceId(), duration); |
| 1940 | } else { |
| 1941 | #if DEBUG_VIBRATOR |
| 1942 | ALOGD("nextStep: sending cancel vibrate deviceId=%d", getDeviceId()); |
| 1943 | #endif |
| 1944 | getEventHub()->cancelVibrate(getDeviceId()); |
| 1945 | } |
| 1946 | nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); |
| 1947 | mNextStepTime = now + duration; |
| 1948 | getContext()->requestTimeoutAtTime(mNextStepTime); |
| 1949 | #if DEBUG_VIBRATOR |
| 1950 | ALOGD("nextStep: scheduled timeout in %0.3fms", duration * 0.000001f); |
| 1951 | #endif |
| 1952 | } |
| 1953 | |
| 1954 | void VibratorInputMapper::stopVibrating() { |
| 1955 | mVibrating = false; |
| 1956 | #if DEBUG_VIBRATOR |
| 1957 | ALOGD("stopVibrating: sending cancel vibrate deviceId=%d", getDeviceId()); |
| 1958 | #endif |
| 1959 | getEventHub()->cancelVibrate(getDeviceId()); |
| 1960 | } |
| 1961 | |
| 1962 | void VibratorInputMapper::dump(String8& dump) { |
| 1963 | dump.append(INDENT2 "Vibrator Input Mapper:\n"); |
| 1964 | dump.appendFormat(INDENT3 "Vibrating: %s\n", toString(mVibrating)); |
| 1965 | } |
| 1966 | |
| 1967 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1968 | // --- KeyboardInputMapper --- |
| 1969 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 1970 | KeyboardInputMapper::KeyboardInputMapper(InputDevice* device, |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 1971 | uint32_t source, int32_t keyboardType) : |
| 1972 | InputMapper(device), mSource(source), |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1973 | mKeyboardType(keyboardType) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1974 | } |
| 1975 | |
| 1976 | KeyboardInputMapper::~KeyboardInputMapper() { |
| 1977 | } |
| 1978 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1979 | uint32_t KeyboardInputMapper::getSources() { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 1980 | return mSource; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1981 | } |
| 1982 | |
| 1983 | void KeyboardInputMapper::populateDeviceInfo(InputDeviceInfo* info) { |
| 1984 | InputMapper::populateDeviceInfo(info); |
| 1985 | |
| 1986 | info->setKeyboardType(mKeyboardType); |
Jeff Brown | 9f25b7f | 2012-04-10 14:30:49 -0700 | [diff] [blame] | 1987 | info->setKeyCharacterMap(getEventHub()->getKeyCharacterMap(getDeviceId())); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 1988 | } |
| 1989 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 1990 | void KeyboardInputMapper::dump(String8& dump) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1991 | dump.append(INDENT2 "Keyboard Input Mapper:\n"); |
| 1992 | dumpParameters(dump); |
| 1993 | dump.appendFormat(INDENT3 "KeyboardType: %d\n", mKeyboardType); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1994 | dump.appendFormat(INDENT3 "Orientation: %d\n", mOrientation); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 1995 | dump.appendFormat(INDENT3 "KeyDowns: %d keys currently down\n", mKeyDowns.size()); |
| 1996 | dump.appendFormat(INDENT3 "MetaState: 0x%0x\n", mMetaState); |
| 1997 | dump.appendFormat(INDENT3 "DownTime: %lld\n", mDownTime); |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 1998 | } |
| 1999 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2000 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2001 | void KeyboardInputMapper::configure(nsecs_t when, |
| 2002 | const InputReaderConfiguration* config, uint32_t changes) { |
| 2003 | InputMapper::configure(when, config, changes); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2004 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2005 | if (!changes) { // first time only |
| 2006 | // Configure basic parameters. |
| 2007 | configureParameters(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2008 | } |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 2009 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2010 | if (!changes || (changes & InputReaderConfiguration::CHANGE_DISPLAY_INFO)) { |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2011 | if (mParameters.orientationAware && mParameters.hasAssociatedDisplay) { |
| 2012 | DisplayViewport v; |
| 2013 | if (config->getDisplayInfo(false /*external*/, &v)) { |
| 2014 | mOrientation = v.orientation; |
| 2015 | } else { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2016 | mOrientation = DISPLAY_ORIENTATION_0; |
| 2017 | } |
| 2018 | } else { |
| 2019 | mOrientation = DISPLAY_ORIENTATION_0; |
| 2020 | } |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 2021 | } |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | void KeyboardInputMapper::configureParameters() { |
| 2025 | mParameters.orientationAware = false; |
| 2026 | getDevice()->getConfiguration().tryGetProperty(String8("keyboard.orientationAware"), |
| 2027 | mParameters.orientationAware); |
| 2028 | |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2029 | mParameters.hasAssociatedDisplay = false; |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2030 | if (mParameters.orientationAware) { |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2031 | mParameters.hasAssociatedDisplay = true; |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2032 | } |
Michael Wright | 39ca052 | 2014-03-17 13:03:47 -0700 | [diff] [blame] | 2033 | |
| 2034 | mParameters.handlesKeyRepeat = false; |
| 2035 | getDevice()->getConfiguration().tryGetProperty(String8("keyboard.handlesKeyRepeat"), |
| 2036 | mParameters.handlesKeyRepeat); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2037 | } |
| 2038 | |
| 2039 | void KeyboardInputMapper::dumpParameters(String8& dump) { |
| 2040 | dump.append(INDENT3 "Parameters:\n"); |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2041 | dump.appendFormat(INDENT4 "HasAssociatedDisplay: %s\n", |
| 2042 | toString(mParameters.hasAssociatedDisplay)); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2043 | dump.appendFormat(INDENT4 "OrientationAware: %s\n", |
| 2044 | toString(mParameters.orientationAware)); |
Michael Wright | 39ca052 | 2014-03-17 13:03:47 -0700 | [diff] [blame] | 2045 | dump.appendFormat(INDENT4 "HandlesKeyRepeat: %s\n", |
| 2046 | toString(mParameters.handlesKeyRepeat)); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2047 | } |
| 2048 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2049 | void KeyboardInputMapper::reset(nsecs_t when) { |
| 2050 | mMetaState = AMETA_NONE; |
| 2051 | mDownTime = 0; |
| 2052 | mKeyDowns.clear(); |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 2053 | mCurrentHidUsage = 0; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2054 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2055 | resetLedState(); |
| 2056 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2057 | InputMapper::reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2058 | } |
| 2059 | |
| 2060 | void KeyboardInputMapper::process(const RawEvent* rawEvent) { |
| 2061 | switch (rawEvent->type) { |
| 2062 | case EV_KEY: { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 2063 | int32_t scanCode = rawEvent->code; |
| 2064 | int32_t usageCode = mCurrentHidUsage; |
| 2065 | mCurrentHidUsage = 0; |
| 2066 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2067 | if (isKeyboardOrGamepadKey(scanCode)) { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 2068 | int32_t keyCode; |
| 2069 | uint32_t flags; |
| 2070 | if (getEventHub()->mapKey(getDeviceId(), scanCode, usageCode, &keyCode, &flags)) { |
| 2071 | keyCode = AKEYCODE_UNKNOWN; |
| 2072 | flags = 0; |
| 2073 | } |
| 2074 | processKey(rawEvent->when, rawEvent->value != 0, keyCode, scanCode, flags); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2075 | } |
| 2076 | break; |
| 2077 | } |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 2078 | case EV_MSC: { |
| 2079 | if (rawEvent->code == MSC_SCAN) { |
| 2080 | mCurrentHidUsage = rawEvent->value; |
| 2081 | } |
| 2082 | break; |
| 2083 | } |
| 2084 | case EV_SYN: { |
| 2085 | if (rawEvent->code == SYN_REPORT) { |
| 2086 | mCurrentHidUsage = 0; |
| 2087 | } |
| 2088 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2089 | } |
| 2090 | } |
| 2091 | |
| 2092 | bool KeyboardInputMapper::isKeyboardOrGamepadKey(int32_t scanCode) { |
| 2093 | return scanCode < BTN_MOUSE |
| 2094 | || scanCode >= KEY_OK |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 2095 | || (scanCode >= BTN_MISC && scanCode < BTN_MOUSE) |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 2096 | || (scanCode >= BTN_JOYSTICK && scanCode < BTN_DIGI); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2097 | } |
| 2098 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2099 | void KeyboardInputMapper::processKey(nsecs_t when, bool down, int32_t keyCode, |
| 2100 | int32_t scanCode, uint32_t policyFlags) { |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2101 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2102 | if (down) { |
| 2103 | // Rotate key codes according to orientation if needed. |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2104 | if (mParameters.orientationAware && mParameters.hasAssociatedDisplay) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2105 | keyCode = rotateKeyCode(keyCode, mOrientation); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2106 | } |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 2107 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2108 | // Add key down. |
| 2109 | ssize_t keyDownIndex = findKeyDown(scanCode); |
| 2110 | if (keyDownIndex >= 0) { |
| 2111 | // key repeat, be sure to use same keycode as before in case of rotation |
| 2112 | keyCode = mKeyDowns.itemAt(keyDownIndex).keyCode; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2113 | } else { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2114 | // key down |
| 2115 | if ((policyFlags & POLICY_FLAG_VIRTUAL) |
| 2116 | && mContext->shouldDropVirtualKey(when, |
| 2117 | getDevice(), keyCode, scanCode)) { |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2118 | return; |
| 2119 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2120 | |
| 2121 | mKeyDowns.push(); |
| 2122 | KeyDown& keyDown = mKeyDowns.editTop(); |
| 2123 | keyDown.keyCode = keyCode; |
| 2124 | keyDown.scanCode = scanCode; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2125 | } |
| 2126 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2127 | mDownTime = when; |
| 2128 | } else { |
| 2129 | // Remove key down. |
| 2130 | ssize_t keyDownIndex = findKeyDown(scanCode); |
| 2131 | if (keyDownIndex >= 0) { |
| 2132 | // key up, be sure to use same keycode as before in case of rotation |
| 2133 | keyCode = mKeyDowns.itemAt(keyDownIndex).keyCode; |
| 2134 | mKeyDowns.removeAt(size_t(keyDownIndex)); |
| 2135 | } else { |
| 2136 | // key was not actually down |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 2137 | ALOGI("Dropping key up from device %s because the key was not down. " |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2138 | "keyCode=%d, scanCode=%d", |
| 2139 | getDeviceName().string(), keyCode, scanCode); |
| 2140 | return; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2141 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2142 | } |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 2143 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2144 | int32_t oldMetaState = mMetaState; |
| 2145 | int32_t newMetaState = updateMetaState(keyCode, down, oldMetaState); |
Michael Wright | f583d0d | 2013-10-29 13:24:41 -0700 | [diff] [blame] | 2146 | bool metaStateChanged = oldMetaState != newMetaState; |
| 2147 | if (metaStateChanged) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2148 | mMetaState = newMetaState; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2149 | updateLedState(false); |
| 2150 | } |
| 2151 | |
| 2152 | nsecs_t downTime = mDownTime; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2153 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 2154 | // Key down on external an keyboard should wake the device. |
| 2155 | // We don't do this for internal keyboards to prevent them from waking up in your pocket. |
| 2156 | // For internal keyboards, the key layout file should specify the policy flags for |
| 2157 | // each wake key individually. |
| 2158 | // TODO: Use the input device configuration to control this behavior more finely. |
| 2159 | if (down && getDevice()->isExternal() |
| 2160 | && !(policyFlags & (POLICY_FLAG_WAKE | POLICY_FLAG_WAKE_DROPPED))) { |
| 2161 | policyFlags |= POLICY_FLAG_WAKE_DROPPED; |
| 2162 | } |
| 2163 | |
Michael Wright | 39ca052 | 2014-03-17 13:03:47 -0700 | [diff] [blame] | 2164 | if (mParameters.handlesKeyRepeat) { |
| 2165 | policyFlags |= POLICY_FLAG_DISABLE_KEY_REPEAT; |
| 2166 | } |
| 2167 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2168 | if (metaStateChanged) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2169 | getContext()->updateGlobalMetaState(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2170 | } |
| 2171 | |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 2172 | if (down && !isMetaKey(keyCode)) { |
| 2173 | getContext()->fadePointer(); |
| 2174 | } |
| 2175 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2176 | NotifyKeyArgs args(when, getDeviceId(), mSource, policyFlags, |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 2177 | down ? AKEY_EVENT_ACTION_DOWN : AKEY_EVENT_ACTION_UP, |
| 2178 | AKEY_EVENT_FLAG_FROM_SYSTEM, keyCode, scanCode, newMetaState, downTime); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2179 | getListener()->notifyKey(&args); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2180 | } |
| 2181 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2182 | ssize_t KeyboardInputMapper::findKeyDown(int32_t scanCode) { |
| 2183 | size_t n = mKeyDowns.size(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2184 | for (size_t i = 0; i < n; i++) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2185 | if (mKeyDowns[i].scanCode == scanCode) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2186 | return i; |
| 2187 | } |
| 2188 | } |
| 2189 | return -1; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2190 | } |
| 2191 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2192 | int32_t KeyboardInputMapper::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) { |
| 2193 | return getEventHub()->getKeyCodeState(getDeviceId(), keyCode); |
| 2194 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2195 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2196 | int32_t KeyboardInputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) { |
| 2197 | return getEventHub()->getScanCodeState(getDeviceId(), scanCode); |
| 2198 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2199 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2200 | bool KeyboardInputMapper::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 2201 | const int32_t* keyCodes, uint8_t* outFlags) { |
| 2202 | return getEventHub()->markSupportedKeyCodes(getDeviceId(), numCodes, keyCodes, outFlags); |
| 2203 | } |
| 2204 | |
| 2205 | int32_t KeyboardInputMapper::getMetaState() { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2206 | return mMetaState; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2207 | } |
| 2208 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2209 | void KeyboardInputMapper::resetLedState() { |
Michael Wright | ed28fc8 | 2013-10-18 15:26:48 -0700 | [diff] [blame] | 2210 | initializeLedState(mCapsLockLedState, ALED_CAPS_LOCK); |
| 2211 | initializeLedState(mNumLockLedState, ALED_NUM_LOCK); |
| 2212 | initializeLedState(mScrollLockLedState, ALED_SCROLL_LOCK); |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 2213 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2214 | updateLedState(true); |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 2215 | } |
| 2216 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2217 | void KeyboardInputMapper::initializeLedState(LedState& ledState, int32_t led) { |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 2218 | ledState.avail = getEventHub()->hasLed(getDeviceId(), led); |
| 2219 | ledState.on = false; |
| 2220 | } |
| 2221 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2222 | void KeyboardInputMapper::updateLedState(bool reset) { |
Michael Wright | ed28fc8 | 2013-10-18 15:26:48 -0700 | [diff] [blame] | 2223 | updateLedStateForModifier(mCapsLockLedState, ALED_CAPS_LOCK, |
Jeff Brown | 51e7fe7 | 2010-10-29 22:19:53 -0700 | [diff] [blame] | 2224 | AMETA_CAPS_LOCK_ON, reset); |
Michael Wright | ed28fc8 | 2013-10-18 15:26:48 -0700 | [diff] [blame] | 2225 | updateLedStateForModifier(mNumLockLedState, ALED_NUM_LOCK, |
Jeff Brown | 51e7fe7 | 2010-10-29 22:19:53 -0700 | [diff] [blame] | 2226 | AMETA_NUM_LOCK_ON, reset); |
Michael Wright | ed28fc8 | 2013-10-18 15:26:48 -0700 | [diff] [blame] | 2227 | updateLedStateForModifier(mScrollLockLedState, ALED_SCROLL_LOCK, |
Jeff Brown | 51e7fe7 | 2010-10-29 22:19:53 -0700 | [diff] [blame] | 2228 | AMETA_SCROLL_LOCK_ON, reset); |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 2229 | } |
| 2230 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2231 | void KeyboardInputMapper::updateLedStateForModifier(LedState& ledState, |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 2232 | int32_t led, int32_t modifier, bool reset) { |
| 2233 | if (ledState.avail) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2234 | bool desiredState = (mMetaState & modifier) != 0; |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 2235 | if (reset || ledState.on != desiredState) { |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 2236 | getEventHub()->setLedState(getDeviceId(), led, desiredState); |
| 2237 | ledState.on = desiredState; |
| 2238 | } |
| 2239 | } |
| 2240 | } |
| 2241 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2242 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2243 | // --- CursorInputMapper --- |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2244 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2245 | CursorInputMapper::CursorInputMapper(InputDevice* device) : |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2246 | InputMapper(device) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2247 | } |
| 2248 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2249 | CursorInputMapper::~CursorInputMapper() { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2250 | } |
| 2251 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2252 | uint32_t CursorInputMapper::getSources() { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2253 | return mSource; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2254 | } |
| 2255 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2256 | void CursorInputMapper::populateDeviceInfo(InputDeviceInfo* info) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2257 | InputMapper::populateDeviceInfo(info); |
| 2258 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2259 | if (mParameters.mode == Parameters::MODE_POINTER) { |
| 2260 | float minX, minY, maxX, maxY; |
| 2261 | if (mPointerController->getBounds(&minX, &minY, &maxX, &maxY)) { |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2262 | info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, minX, maxX, 0.0f, 0.0f, 0.0f); |
| 2263 | info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, minY, maxY, 0.0f, 0.0f, 0.0f); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2264 | } |
| 2265 | } else { |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2266 | info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, -1.0f, 1.0f, 0.0f, mXScale, 0.0f); |
| 2267 | info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, -1.0f, 1.0f, 0.0f, mYScale, 0.0f); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2268 | } |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2269 | info->addMotionRange(AMOTION_EVENT_AXIS_PRESSURE, mSource, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 2270 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2271 | if (mCursorScrollAccumulator.haveRelativeVWheel()) { |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2272 | info->addMotionRange(AMOTION_EVENT_AXIS_VSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 2273 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2274 | if (mCursorScrollAccumulator.haveRelativeHWheel()) { |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2275 | info->addMotionRange(AMOTION_EVENT_AXIS_HSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 2276 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2277 | } |
| 2278 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2279 | void CursorInputMapper::dump(String8& dump) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2280 | dump.append(INDENT2 "Cursor Input Mapper:\n"); |
| 2281 | dumpParameters(dump); |
| 2282 | dump.appendFormat(INDENT3 "XScale: %0.3f\n", mXScale); |
| 2283 | dump.appendFormat(INDENT3 "YScale: %0.3f\n", mYScale); |
| 2284 | dump.appendFormat(INDENT3 "XPrecision: %0.3f\n", mXPrecision); |
| 2285 | dump.appendFormat(INDENT3 "YPrecision: %0.3f\n", mYPrecision); |
| 2286 | dump.appendFormat(INDENT3 "HaveVWheel: %s\n", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2287 | toString(mCursorScrollAccumulator.haveRelativeVWheel())); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2288 | dump.appendFormat(INDENT3 "HaveHWheel: %s\n", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2289 | toString(mCursorScrollAccumulator.haveRelativeHWheel())); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2290 | dump.appendFormat(INDENT3 "VWheelScale: %0.3f\n", mVWheelScale); |
| 2291 | dump.appendFormat(INDENT3 "HWheelScale: %0.3f\n", mHWheelScale); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2292 | dump.appendFormat(INDENT3 "Orientation: %d\n", mOrientation); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2293 | dump.appendFormat(INDENT3 "ButtonState: 0x%08x\n", mButtonState); |
| 2294 | dump.appendFormat(INDENT3 "Down: %s\n", toString(isPointerDown(mButtonState))); |
| 2295 | dump.appendFormat(INDENT3 "DownTime: %lld\n", mDownTime); |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 2296 | } |
| 2297 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2298 | void CursorInputMapper::configure(nsecs_t when, |
| 2299 | const InputReaderConfiguration* config, uint32_t changes) { |
| 2300 | InputMapper::configure(when, config, changes); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2301 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2302 | if (!changes) { // first time only |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2303 | mCursorScrollAccumulator.configure(getDevice()); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 2304 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2305 | // Configure basic parameters. |
| 2306 | configureParameters(); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2307 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2308 | // Configure device mode. |
| 2309 | switch (mParameters.mode) { |
| 2310 | case Parameters::MODE_POINTER: |
| 2311 | mSource = AINPUT_SOURCE_MOUSE; |
| 2312 | mXPrecision = 1.0f; |
| 2313 | mYPrecision = 1.0f; |
| 2314 | mXScale = 1.0f; |
| 2315 | mYScale = 1.0f; |
| 2316 | mPointerController = getPolicy()->obtainPointerController(getDeviceId()); |
| 2317 | break; |
| 2318 | case Parameters::MODE_NAVIGATION: |
| 2319 | mSource = AINPUT_SOURCE_TRACKBALL; |
| 2320 | mXPrecision = TRACKBALL_MOVEMENT_THRESHOLD; |
| 2321 | mYPrecision = TRACKBALL_MOVEMENT_THRESHOLD; |
| 2322 | mXScale = 1.0f / TRACKBALL_MOVEMENT_THRESHOLD; |
| 2323 | mYScale = 1.0f / TRACKBALL_MOVEMENT_THRESHOLD; |
| 2324 | break; |
| 2325 | } |
| 2326 | |
| 2327 | mVWheelScale = 1.0f; |
| 2328 | mHWheelScale = 1.0f; |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2329 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 2330 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2331 | if (!changes || (changes & InputReaderConfiguration::CHANGE_POINTER_SPEED)) { |
| 2332 | mPointerVelocityControl.setParameters(config->pointerVelocityControlParameters); |
| 2333 | mWheelXVelocityControl.setParameters(config->wheelVelocityControlParameters); |
| 2334 | mWheelYVelocityControl.setParameters(config->wheelVelocityControlParameters); |
| 2335 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2336 | |
| 2337 | if (!changes || (changes & InputReaderConfiguration::CHANGE_DISPLAY_INFO)) { |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2338 | if (mParameters.orientationAware && mParameters.hasAssociatedDisplay) { |
| 2339 | DisplayViewport v; |
| 2340 | if (config->getDisplayInfo(false /*external*/, &v)) { |
| 2341 | mOrientation = v.orientation; |
| 2342 | } else { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2343 | mOrientation = DISPLAY_ORIENTATION_0; |
| 2344 | } |
| 2345 | } else { |
| 2346 | mOrientation = DISPLAY_ORIENTATION_0; |
| 2347 | } |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 2348 | bumpGeneration(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2349 | } |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2350 | } |
| 2351 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2352 | void CursorInputMapper::configureParameters() { |
| 2353 | mParameters.mode = Parameters::MODE_POINTER; |
| 2354 | String8 cursorModeString; |
| 2355 | if (getDevice()->getConfiguration().tryGetProperty(String8("cursor.mode"), cursorModeString)) { |
| 2356 | if (cursorModeString == "navigation") { |
| 2357 | mParameters.mode = Parameters::MODE_NAVIGATION; |
| 2358 | } else if (cursorModeString != "pointer" && cursorModeString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 2359 | ALOGW("Invalid value for cursor.mode: '%s'", cursorModeString.string()); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2360 | } |
| 2361 | } |
| 2362 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2363 | mParameters.orientationAware = false; |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2364 | getDevice()->getConfiguration().tryGetProperty(String8("cursor.orientationAware"), |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2365 | mParameters.orientationAware); |
| 2366 | |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2367 | mParameters.hasAssociatedDisplay = false; |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2368 | if (mParameters.mode == Parameters::MODE_POINTER || mParameters.orientationAware) { |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2369 | mParameters.hasAssociatedDisplay = true; |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2370 | } |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2371 | } |
| 2372 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2373 | void CursorInputMapper::dumpParameters(String8& dump) { |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2374 | dump.append(INDENT3 "Parameters:\n"); |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2375 | dump.appendFormat(INDENT4 "HasAssociatedDisplay: %s\n", |
| 2376 | toString(mParameters.hasAssociatedDisplay)); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2377 | |
| 2378 | switch (mParameters.mode) { |
| 2379 | case Parameters::MODE_POINTER: |
| 2380 | dump.append(INDENT4 "Mode: pointer\n"); |
| 2381 | break; |
| 2382 | case Parameters::MODE_NAVIGATION: |
| 2383 | dump.append(INDENT4 "Mode: navigation\n"); |
| 2384 | break; |
| 2385 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 2386 | ALOG_ASSERT(false); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2387 | } |
| 2388 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2389 | dump.appendFormat(INDENT4 "OrientationAware: %s\n", |
| 2390 | toString(mParameters.orientationAware)); |
| 2391 | } |
| 2392 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2393 | void CursorInputMapper::reset(nsecs_t when) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2394 | mButtonState = 0; |
| 2395 | mDownTime = 0; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2396 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2397 | mPointerVelocityControl.reset(); |
| 2398 | mWheelXVelocityControl.reset(); |
| 2399 | mWheelYVelocityControl.reset(); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2400 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2401 | mCursorButtonAccumulator.reset(getDevice()); |
| 2402 | mCursorMotionAccumulator.reset(getDevice()); |
| 2403 | mCursorScrollAccumulator.reset(getDevice()); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2404 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2405 | InputMapper::reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2406 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2407 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2408 | void CursorInputMapper::process(const RawEvent* rawEvent) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 2409 | mCursorButtonAccumulator.process(rawEvent); |
| 2410 | mCursorMotionAccumulator.process(rawEvent); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2411 | mCursorScrollAccumulator.process(rawEvent); |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2412 | |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 2413 | if (rawEvent->type == EV_SYN && rawEvent->code == SYN_REPORT) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 2414 | sync(rawEvent->when); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2415 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2416 | } |
| 2417 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2418 | void CursorInputMapper::sync(nsecs_t when) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2419 | int32_t lastButtonState = mButtonState; |
| 2420 | int32_t currentButtonState = mCursorButtonAccumulator.getButtonState(); |
| 2421 | mButtonState = currentButtonState; |
| 2422 | |
| 2423 | bool wasDown = isPointerDown(lastButtonState); |
| 2424 | bool down = isPointerDown(currentButtonState); |
| 2425 | bool downChanged; |
| 2426 | if (!wasDown && down) { |
| 2427 | mDownTime = when; |
| 2428 | downChanged = true; |
| 2429 | } else if (wasDown && !down) { |
| 2430 | downChanged = true; |
| 2431 | } else { |
| 2432 | downChanged = false; |
| 2433 | } |
| 2434 | nsecs_t downTime = mDownTime; |
| 2435 | bool buttonsChanged = currentButtonState != lastButtonState; |
Jeff Brown | c28306a | 2011-08-23 21:32:42 -0700 | [diff] [blame] | 2436 | bool buttonsPressed = currentButtonState & ~lastButtonState; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2437 | |
| 2438 | float deltaX = mCursorMotionAccumulator.getRelativeX() * mXScale; |
| 2439 | float deltaY = mCursorMotionAccumulator.getRelativeY() * mYScale; |
| 2440 | bool moved = deltaX != 0 || deltaY != 0; |
| 2441 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2442 | // Rotate delta according to orientation if needed. |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2443 | if (mParameters.orientationAware && mParameters.hasAssociatedDisplay |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2444 | && (deltaX != 0.0f || deltaY != 0.0f)) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2445 | rotateDelta(mOrientation, &deltaX, &deltaY); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2446 | } |
| 2447 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2448 | // Move the pointer. |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 2449 | PointerProperties pointerProperties; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2450 | pointerProperties.clear(); |
| 2451 | pointerProperties.id = 0; |
| 2452 | pointerProperties.toolType = AMOTION_EVENT_TOOL_TYPE_MOUSE; |
| 2453 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2454 | PointerCoords pointerCoords; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2455 | pointerCoords.clear(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2456 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2457 | float vscroll = mCursorScrollAccumulator.getRelativeVWheel(); |
| 2458 | float hscroll = mCursorScrollAccumulator.getRelativeHWheel(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2459 | bool scrolled = vscroll != 0 || hscroll != 0; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 2460 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2461 | mWheelYVelocityControl.move(when, NULL, &vscroll); |
| 2462 | mWheelXVelocityControl.move(when, &hscroll, NULL); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2463 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2464 | mPointerVelocityControl.move(when, &deltaX, &deltaY); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 2465 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2466 | int32_t displayId; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2467 | if (mPointerController != NULL) { |
| 2468 | if (moved || scrolled || buttonsChanged) { |
| 2469 | mPointerController->setPresentation( |
| 2470 | PointerControllerInterface::PRESENTATION_POINTER); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 2471 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2472 | if (moved) { |
| 2473 | mPointerController->move(deltaX, deltaY); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2474 | } |
| 2475 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2476 | if (buttonsChanged) { |
| 2477 | mPointerController->setButtonState(currentButtonState); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2478 | } |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2479 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2480 | mPointerController->unfade(PointerControllerInterface::TRANSITION_IMMEDIATE); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2481 | } |
| 2482 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2483 | float x, y; |
| 2484 | mPointerController->getPosition(&x, &y); |
| 2485 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 2486 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2487 | displayId = ADISPLAY_ID_DEFAULT; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2488 | } else { |
| 2489 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_X, deltaX); |
| 2490 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, deltaY); |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2491 | displayId = ADISPLAY_ID_NONE; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2492 | } |
| 2493 | |
| 2494 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, down ? 1.0f : 0.0f); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 2495 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 2496 | // Moving an external trackball or mouse should wake the device. |
| 2497 | // We don't do this for internal cursor devices to prevent them from waking up |
| 2498 | // the device in your pocket. |
| 2499 | // TODO: Use the input device configuration to control this behavior more finely. |
| 2500 | uint32_t policyFlags = 0; |
Jeff Brown | c28306a | 2011-08-23 21:32:42 -0700 | [diff] [blame] | 2501 | if ((buttonsPressed || moved || scrolled) && getDevice()->isExternal()) { |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 2502 | policyFlags |= POLICY_FLAG_WAKE_DROPPED; |
| 2503 | } |
| 2504 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 2505 | // Synthesize key down from buttons if needed. |
| 2506 | synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_DOWN, when, getDeviceId(), mSource, |
| 2507 | policyFlags, lastButtonState, currentButtonState); |
| 2508 | |
| 2509 | // Send motion event. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2510 | if (downChanged || moved || scrolled || buttonsChanged) { |
| 2511 | int32_t metaState = mContext->getGlobalMetaState(); |
| 2512 | int32_t motionEventAction; |
| 2513 | if (downChanged) { |
| 2514 | motionEventAction = down ? AMOTION_EVENT_ACTION_DOWN : AMOTION_EVENT_ACTION_UP; |
| 2515 | } else if (down || mPointerController == NULL) { |
| 2516 | motionEventAction = AMOTION_EVENT_ACTION_MOVE; |
| 2517 | } else { |
| 2518 | motionEventAction = AMOTION_EVENT_ACTION_HOVER_MOVE; |
| 2519 | } |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 2520 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2521 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 2522 | motionEventAction, 0, metaState, currentButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2523 | displayId, 1, &pointerProperties, &pointerCoords, |
| 2524 | mXPrecision, mYPrecision, downTime); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2525 | getListener()->notifyMotion(&args); |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 2526 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2527 | // Send hover move after UP to tell the application that the mouse is hovering now. |
| 2528 | if (motionEventAction == AMOTION_EVENT_ACTION_UP |
| 2529 | && mPointerController != NULL) { |
| 2530 | NotifyMotionArgs hoverArgs(when, getDeviceId(), mSource, policyFlags, |
| 2531 | AMOTION_EVENT_ACTION_HOVER_MOVE, 0, |
| 2532 | metaState, currentButtonState, AMOTION_EVENT_EDGE_FLAG_NONE, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2533 | displayId, 1, &pointerProperties, &pointerCoords, |
| 2534 | mXPrecision, mYPrecision, downTime); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2535 | getListener()->notifyMotion(&hoverArgs); |
| 2536 | } |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 2537 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2538 | // Send scroll events. |
| 2539 | if (scrolled) { |
| 2540 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll); |
| 2541 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_HSCROLL, hscroll); |
| 2542 | |
| 2543 | NotifyMotionArgs scrollArgs(when, getDeviceId(), mSource, policyFlags, |
| 2544 | AMOTION_EVENT_ACTION_SCROLL, 0, metaState, currentButtonState, |
| 2545 | AMOTION_EVENT_EDGE_FLAG_NONE, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2546 | displayId, 1, &pointerProperties, &pointerCoords, |
| 2547 | mXPrecision, mYPrecision, downTime); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2548 | getListener()->notifyMotion(&scrollArgs); |
| 2549 | } |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 2550 | } |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 2551 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 2552 | // Synthesize key up from buttons if needed. |
| 2553 | synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_UP, when, getDeviceId(), mSource, |
| 2554 | policyFlags, lastButtonState, currentButtonState); |
| 2555 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2556 | mCursorMotionAccumulator.finishSync(); |
| 2557 | mCursorScrollAccumulator.finishSync(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2558 | } |
| 2559 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2560 | int32_t CursorInputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) { |
Jeff Brown | c3fc2d0 | 2010-08-10 15:47:53 -0700 | [diff] [blame] | 2561 | if (scanCode >= BTN_MOUSE && scanCode < BTN_JOYSTICK) { |
| 2562 | return getEventHub()->getScanCodeState(getDeviceId(), scanCode); |
| 2563 | } else { |
| 2564 | return AKEY_STATE_UNKNOWN; |
| 2565 | } |
| 2566 | } |
| 2567 | |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 2568 | void CursorInputMapper::fadePointer() { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2569 | if (mPointerController != NULL) { |
| 2570 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 2571 | } |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 2572 | } |
| 2573 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2574 | |
| 2575 | // --- TouchInputMapper --- |
| 2576 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2577 | TouchInputMapper::TouchInputMapper(InputDevice* device) : |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2578 | InputMapper(device), |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2579 | mSource(0), mDeviceMode(DEVICE_MODE_DISABLED), |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2580 | mSurfaceWidth(-1), mSurfaceHeight(-1), mSurfaceLeft(0), mSurfaceTop(0), |
| 2581 | mSurfaceOrientation(DISPLAY_ORIENTATION_0) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2582 | } |
| 2583 | |
| 2584 | TouchInputMapper::~TouchInputMapper() { |
| 2585 | } |
| 2586 | |
| 2587 | uint32_t TouchInputMapper::getSources() { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2588 | return mSource; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2589 | } |
| 2590 | |
| 2591 | void TouchInputMapper::populateDeviceInfo(InputDeviceInfo* info) { |
| 2592 | InputMapper::populateDeviceInfo(info); |
| 2593 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2594 | if (mDeviceMode != DEVICE_MODE_DISABLED) { |
| 2595 | info->addMotionRange(mOrientedRanges.x); |
| 2596 | info->addMotionRange(mOrientedRanges.y); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2597 | info->addMotionRange(mOrientedRanges.pressure); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2598 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2599 | if (mOrientedRanges.haveSize) { |
| 2600 | info->addMotionRange(mOrientedRanges.size); |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2601 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2602 | |
| 2603 | if (mOrientedRanges.haveTouchSize) { |
| 2604 | info->addMotionRange(mOrientedRanges.touchMajor); |
| 2605 | info->addMotionRange(mOrientedRanges.touchMinor); |
| 2606 | } |
| 2607 | |
| 2608 | if (mOrientedRanges.haveToolSize) { |
| 2609 | info->addMotionRange(mOrientedRanges.toolMajor); |
| 2610 | info->addMotionRange(mOrientedRanges.toolMinor); |
| 2611 | } |
| 2612 | |
| 2613 | if (mOrientedRanges.haveOrientation) { |
| 2614 | info->addMotionRange(mOrientedRanges.orientation); |
| 2615 | } |
| 2616 | |
| 2617 | if (mOrientedRanges.haveDistance) { |
| 2618 | info->addMotionRange(mOrientedRanges.distance); |
| 2619 | } |
| 2620 | |
| 2621 | if (mOrientedRanges.haveTilt) { |
| 2622 | info->addMotionRange(mOrientedRanges.tilt); |
| 2623 | } |
| 2624 | |
| 2625 | if (mCursorScrollAccumulator.haveRelativeVWheel()) { |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2626 | info->addMotionRange(AMOTION_EVENT_AXIS_VSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, |
| 2627 | 0.0f); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2628 | } |
| 2629 | if (mCursorScrollAccumulator.haveRelativeHWheel()) { |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 2630 | info->addMotionRange(AMOTION_EVENT_AXIS_HSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, |
| 2631 | 0.0f); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2632 | } |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 2633 | if (mCalibration.coverageCalibration == Calibration::COVERAGE_CALIBRATION_BOX) { |
| 2634 | const InputDeviceInfo::MotionRange& x = mOrientedRanges.x; |
| 2635 | const InputDeviceInfo::MotionRange& y = mOrientedRanges.y; |
| 2636 | info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_1, mSource, x.min, x.max, x.flat, |
| 2637 | x.fuzz, x.resolution); |
| 2638 | info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_2, mSource, y.min, y.max, y.flat, |
| 2639 | y.fuzz, y.resolution); |
| 2640 | info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_3, mSource, x.min, x.max, x.flat, |
| 2641 | x.fuzz, x.resolution); |
| 2642 | info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_4, mSource, y.min, y.max, y.flat, |
| 2643 | y.fuzz, y.resolution); |
| 2644 | } |
Michael Wright | 7ddd110 | 2013-05-20 15:04:55 -0700 | [diff] [blame] | 2645 | info->setButtonUnderPad(mParameters.hasButtonUnderPad); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2646 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2647 | } |
| 2648 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 2649 | void TouchInputMapper::dump(String8& dump) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2650 | dump.append(INDENT2 "Touch Input Mapper:\n"); |
| 2651 | dumpParameters(dump); |
| 2652 | dumpVirtualKeys(dump); |
| 2653 | dumpRawPointerAxes(dump); |
| 2654 | dumpCalibration(dump); |
| 2655 | dumpSurface(dump); |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2656 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2657 | dump.appendFormat(INDENT3 "Translation and Scaling Factors:\n"); |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2658 | dump.appendFormat(INDENT4 "XTranslate: %0.3f\n", mXTranslate); |
| 2659 | dump.appendFormat(INDENT4 "YTranslate: %0.3f\n", mYTranslate); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2660 | dump.appendFormat(INDENT4 "XScale: %0.3f\n", mXScale); |
| 2661 | dump.appendFormat(INDENT4 "YScale: %0.3f\n", mYScale); |
| 2662 | dump.appendFormat(INDENT4 "XPrecision: %0.3f\n", mXPrecision); |
| 2663 | dump.appendFormat(INDENT4 "YPrecision: %0.3f\n", mYPrecision); |
| 2664 | dump.appendFormat(INDENT4 "GeometricScale: %0.3f\n", mGeometricScale); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2665 | dump.appendFormat(INDENT4 "PressureScale: %0.3f\n", mPressureScale); |
| 2666 | dump.appendFormat(INDENT4 "SizeScale: %0.3f\n", mSizeScale); |
| 2667 | dump.appendFormat(INDENT4 "OrientationScale: %0.3f\n", mOrientationScale); |
| 2668 | dump.appendFormat(INDENT4 "DistanceScale: %0.3f\n", mDistanceScale); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2669 | dump.appendFormat(INDENT4 "HaveTilt: %s\n", toString(mHaveTilt)); |
| 2670 | dump.appendFormat(INDENT4 "TiltXCenter: %0.3f\n", mTiltXCenter); |
| 2671 | dump.appendFormat(INDENT4 "TiltXScale: %0.3f\n", mTiltXScale); |
| 2672 | dump.appendFormat(INDENT4 "TiltYCenter: %0.3f\n", mTiltYCenter); |
| 2673 | dump.appendFormat(INDENT4 "TiltYScale: %0.3f\n", mTiltYScale); |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2674 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2675 | dump.appendFormat(INDENT3 "Last Button State: 0x%08x\n", mLastButtonState); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 2676 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2677 | dump.appendFormat(INDENT3 "Last Raw Touch: pointerCount=%d\n", |
| 2678 | mLastRawPointerData.pointerCount); |
| 2679 | for (uint32_t i = 0; i < mLastRawPointerData.pointerCount; i++) { |
| 2680 | const RawPointerData::Pointer& pointer = mLastRawPointerData.pointers[i]; |
| 2681 | dump.appendFormat(INDENT4 "[%d]: id=%d, x=%d, y=%d, pressure=%d, " |
| 2682 | "touchMajor=%d, touchMinor=%d, toolMajor=%d, toolMinor=%d, " |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2683 | "orientation=%d, tiltX=%d, tiltY=%d, distance=%d, " |
| 2684 | "toolType=%d, isHovering=%s\n", i, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2685 | pointer.id, pointer.x, pointer.y, pointer.pressure, |
| 2686 | pointer.touchMajor, pointer.touchMinor, |
| 2687 | pointer.toolMajor, pointer.toolMinor, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2688 | pointer.orientation, pointer.tiltX, pointer.tiltY, pointer.distance, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2689 | pointer.toolType, toString(pointer.isHovering)); |
| 2690 | } |
| 2691 | |
| 2692 | dump.appendFormat(INDENT3 "Last Cooked Touch: pointerCount=%d\n", |
| 2693 | mLastCookedPointerData.pointerCount); |
| 2694 | for (uint32_t i = 0; i < mLastCookedPointerData.pointerCount; i++) { |
| 2695 | const PointerProperties& pointerProperties = mLastCookedPointerData.pointerProperties[i]; |
| 2696 | const PointerCoords& pointerCoords = mLastCookedPointerData.pointerCoords[i]; |
| 2697 | dump.appendFormat(INDENT4 "[%d]: id=%d, x=%0.3f, y=%0.3f, pressure=%0.3f, " |
| 2698 | "touchMajor=%0.3f, touchMinor=%0.3f, toolMajor=%0.3f, toolMinor=%0.3f, " |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2699 | "orientation=%0.3f, tilt=%0.3f, distance=%0.3f, " |
| 2700 | "toolType=%d, isHovering=%s\n", i, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2701 | pointerProperties.id, |
| 2702 | pointerCoords.getX(), |
| 2703 | pointerCoords.getY(), |
| 2704 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE), |
| 2705 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR), |
| 2706 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR), |
| 2707 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR), |
| 2708 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR), |
| 2709 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION), |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2710 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_TILT), |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2711 | pointerCoords.getAxisValue(AMOTION_EVENT_AXIS_DISTANCE), |
| 2712 | pointerProperties.toolType, |
| 2713 | toString(mLastCookedPointerData.isHovering(i))); |
| 2714 | } |
| 2715 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2716 | if (mDeviceMode == DEVICE_MODE_POINTER) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2717 | dump.appendFormat(INDENT3 "Pointer Gesture Detector:\n"); |
| 2718 | dump.appendFormat(INDENT4 "XMovementScale: %0.3f\n", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2719 | mPointerXMovementScale); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2720 | dump.appendFormat(INDENT4 "YMovementScale: %0.3f\n", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2721 | mPointerYMovementScale); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2722 | dump.appendFormat(INDENT4 "XZoomScale: %0.3f\n", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2723 | mPointerXZoomScale); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2724 | dump.appendFormat(INDENT4 "YZoomScale: %0.3f\n", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2725 | mPointerYZoomScale); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2726 | dump.appendFormat(INDENT4 "MaxSwipeWidth: %f\n", |
| 2727 | mPointerGestureMaxSwipeWidth); |
| 2728 | } |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 2729 | } |
| 2730 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2731 | void TouchInputMapper::configure(nsecs_t when, |
| 2732 | const InputReaderConfiguration* config, uint32_t changes) { |
| 2733 | InputMapper::configure(when, config, changes); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2734 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2735 | mConfig = *config; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2736 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2737 | if (!changes) { // first time only |
| 2738 | // Configure basic parameters. |
| 2739 | configureParameters(); |
| 2740 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2741 | // Configure common accumulators. |
| 2742 | mCursorScrollAccumulator.configure(getDevice()); |
| 2743 | mTouchButtonAccumulator.configure(getDevice()); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2744 | |
| 2745 | // Configure absolute axis information. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2746 | configureRawPointerAxes(); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2747 | |
| 2748 | // Prepare input device calibration. |
| 2749 | parseCalibration(); |
| 2750 | resolveCalibration(); |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 2751 | } |
| 2752 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2753 | if (!changes || (changes & InputReaderConfiguration::CHANGE_POINTER_SPEED)) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2754 | // Update pointer speed. |
| 2755 | mPointerVelocityControl.setParameters(mConfig.pointerVelocityControlParameters); |
| 2756 | mWheelXVelocityControl.setParameters(mConfig.wheelVelocityControlParameters); |
| 2757 | mWheelYVelocityControl.setParameters(mConfig.wheelVelocityControlParameters); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2758 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 2759 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2760 | bool resetNeeded = false; |
| 2761 | if (!changes || (changes & (InputReaderConfiguration::CHANGE_DISPLAY_INFO |
Jeff Brown | daf4a12 | 2011-08-26 17:14:14 -0700 | [diff] [blame] | 2762 | | InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT |
| 2763 | | InputReaderConfiguration::CHANGE_SHOW_TOUCHES))) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2764 | // Configure device sources, surface dimensions, orientation and |
| 2765 | // scaling factors. |
| 2766 | configureSurface(when, &resetNeeded); |
| 2767 | } |
| 2768 | |
| 2769 | if (changes && resetNeeded) { |
| 2770 | // Send reset, unless this is the first time the device has been configured, |
| 2771 | // in which case the reader will call reset itself after all mappers are ready. |
| 2772 | getDevice()->notifyReset(when); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 2773 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2774 | } |
| 2775 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 2776 | void TouchInputMapper::configureParameters() { |
Jeff Brown | b126822 | 2011-06-03 17:06:16 -0700 | [diff] [blame] | 2777 | // Use the pointer presentation mode for devices that do not support distinct |
| 2778 | // multitouch. The spot-based presentation relies on being able to accurately |
| 2779 | // locate two or more fingers on the touch pad. |
| 2780 | mParameters.gestureMode = getEventHub()->hasInputProperty(getDeviceId(), INPUT_PROP_SEMI_MT) |
| 2781 | ? Parameters::GESTURE_MODE_POINTER : Parameters::GESTURE_MODE_SPOTS; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 2782 | |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 2783 | String8 gestureModeString; |
| 2784 | if (getDevice()->getConfiguration().tryGetProperty(String8("touch.gestureMode"), |
| 2785 | gestureModeString)) { |
| 2786 | if (gestureModeString == "pointer") { |
| 2787 | mParameters.gestureMode = Parameters::GESTURE_MODE_POINTER; |
| 2788 | } else if (gestureModeString == "spots") { |
| 2789 | mParameters.gestureMode = Parameters::GESTURE_MODE_SPOTS; |
| 2790 | } else if (gestureModeString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 2791 | ALOGW("Invalid value for touch.gestureMode: '%s'", gestureModeString.string()); |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 2792 | } |
| 2793 | } |
| 2794 | |
Jeff Brown | deffe07 | 2011-08-26 18:38:46 -0700 | [diff] [blame] | 2795 | if (getEventHub()->hasInputProperty(getDeviceId(), INPUT_PROP_DIRECT)) { |
| 2796 | // The device is a touch screen. |
| 2797 | mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_SCREEN; |
| 2798 | } else if (getEventHub()->hasInputProperty(getDeviceId(), INPUT_PROP_POINTER)) { |
| 2799 | // The device is a pointing device like a track pad. |
| 2800 | mParameters.deviceType = Parameters::DEVICE_TYPE_POINTER; |
| 2801 | } else if (getEventHub()->hasRelativeAxis(getDeviceId(), REL_X) |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 2802 | || getEventHub()->hasRelativeAxis(getDeviceId(), REL_Y)) { |
| 2803 | // The device is a cursor device with a touch pad attached. |
| 2804 | // By default don't use the touch pad to move the pointer. |
| 2805 | mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_PAD; |
| 2806 | } else { |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 2807 | // The device is a touch pad of unknown purpose. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 2808 | mParameters.deviceType = Parameters::DEVICE_TYPE_POINTER; |
| 2809 | } |
| 2810 | |
Michael Wright | 7ddd110 | 2013-05-20 15:04:55 -0700 | [diff] [blame] | 2811 | mParameters.hasButtonUnderPad= |
| 2812 | getEventHub()->hasInputProperty(getDeviceId(), INPUT_PROP_BUTTONPAD); |
| 2813 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2814 | String8 deviceTypeString; |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2815 | if (getDevice()->getConfiguration().tryGetProperty(String8("touch.deviceType"), |
| 2816 | deviceTypeString)) { |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 2817 | if (deviceTypeString == "touchScreen") { |
| 2818 | mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_SCREEN; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2819 | } else if (deviceTypeString == "touchPad") { |
| 2820 | mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_PAD; |
Michael Wright | e7a9ae8 | 2013-03-08 15:19:19 -0800 | [diff] [blame] | 2821 | } else if (deviceTypeString == "touchNavigation") { |
| 2822 | mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_NAVIGATION; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 2823 | } else if (deviceTypeString == "pointer") { |
| 2824 | mParameters.deviceType = Parameters::DEVICE_TYPE_POINTER; |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 2825 | } else if (deviceTypeString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 2826 | ALOGW("Invalid value for touch.deviceType: '%s'", deviceTypeString.string()); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2827 | } |
| 2828 | } |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2829 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2830 | mParameters.orientationAware = mParameters.deviceType == Parameters::DEVICE_TYPE_TOUCH_SCREEN; |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2831 | getDevice()->getConfiguration().tryGetProperty(String8("touch.orientationAware"), |
| 2832 | mParameters.orientationAware); |
| 2833 | |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2834 | mParameters.hasAssociatedDisplay = false; |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2835 | mParameters.associatedDisplayIsExternal = false; |
| 2836 | if (mParameters.orientationAware |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2837 | || mParameters.deviceType == Parameters::DEVICE_TYPE_TOUCH_SCREEN |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2838 | || mParameters.deviceType == Parameters::DEVICE_TYPE_POINTER) { |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2839 | mParameters.hasAssociatedDisplay = true; |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2840 | mParameters.associatedDisplayIsExternal = |
| 2841 | mParameters.deviceType == Parameters::DEVICE_TYPE_TOUCH_SCREEN |
| 2842 | && getDevice()->isExternal(); |
Jeff Brown | bc68a59 | 2011-07-25 12:58:12 -0700 | [diff] [blame] | 2843 | } |
Jeff Brown | 6ca9004 | 2014-02-26 15:12:45 -0800 | [diff] [blame] | 2844 | |
| 2845 | // Initial downs on external touch devices should wake the device. |
| 2846 | // Normally we don't do this for internal touch screens to prevent them from waking |
| 2847 | // up in your pocket but you can enable it using the input device configuration. |
| 2848 | mParameters.wake = getDevice()->isExternal(); |
| 2849 | getDevice()->getConfiguration().tryGetProperty(String8("touch.wake"), |
| 2850 | mParameters.wake); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 2851 | } |
| 2852 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 2853 | void TouchInputMapper::dumpParameters(String8& dump) { |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2854 | dump.append(INDENT3 "Parameters:\n"); |
| 2855 | |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 2856 | switch (mParameters.gestureMode) { |
| 2857 | case Parameters::GESTURE_MODE_POINTER: |
| 2858 | dump.append(INDENT4 "GestureMode: pointer\n"); |
| 2859 | break; |
| 2860 | case Parameters::GESTURE_MODE_SPOTS: |
| 2861 | dump.append(INDENT4 "GestureMode: spots\n"); |
| 2862 | break; |
| 2863 | default: |
| 2864 | assert(false); |
| 2865 | } |
| 2866 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2867 | switch (mParameters.deviceType) { |
| 2868 | case Parameters::DEVICE_TYPE_TOUCH_SCREEN: |
| 2869 | dump.append(INDENT4 "DeviceType: touchScreen\n"); |
| 2870 | break; |
| 2871 | case Parameters::DEVICE_TYPE_TOUCH_PAD: |
| 2872 | dump.append(INDENT4 "DeviceType: touchPad\n"); |
| 2873 | break; |
Michael Wright | e7a9ae8 | 2013-03-08 15:19:19 -0800 | [diff] [blame] | 2874 | case Parameters::DEVICE_TYPE_TOUCH_NAVIGATION: |
| 2875 | dump.append(INDENT4 "DeviceType: touchNavigation\n"); |
| 2876 | break; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 2877 | case Parameters::DEVICE_TYPE_POINTER: |
| 2878 | dump.append(INDENT4 "DeviceType: pointer\n"); |
| 2879 | break; |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2880 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 2881 | ALOG_ASSERT(false); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2882 | } |
| 2883 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2884 | dump.appendFormat(INDENT4 "AssociatedDisplay: hasAssociatedDisplay=%s, isExternal=%s\n", |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2885 | toString(mParameters.hasAssociatedDisplay), |
| 2886 | toString(mParameters.associatedDisplayIsExternal)); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 2887 | dump.appendFormat(INDENT4 "OrientationAware: %s\n", |
| 2888 | toString(mParameters.orientationAware)); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 2889 | } |
| 2890 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2891 | void TouchInputMapper::configureRawPointerAxes() { |
| 2892 | mRawPointerAxes.clear(); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 2893 | } |
| 2894 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2895 | void TouchInputMapper::dumpRawPointerAxes(String8& dump) { |
| 2896 | dump.append(INDENT3 "Raw Touch Axes:\n"); |
| 2897 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.x, "X"); |
| 2898 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.y, "Y"); |
| 2899 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.pressure, "Pressure"); |
| 2900 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMajor, "TouchMajor"); |
| 2901 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMinor, "TouchMinor"); |
| 2902 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.toolMajor, "ToolMajor"); |
| 2903 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.toolMinor, "ToolMinor"); |
| 2904 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.orientation, "Orientation"); |
| 2905 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.distance, "Distance"); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2906 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.tiltX, "TiltX"); |
| 2907 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.tiltY, "TiltY"); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2908 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.trackingId, "TrackingId"); |
| 2909 | dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.slot, "Slot"); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 2910 | } |
| 2911 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2912 | void TouchInputMapper::configureSurface(nsecs_t when, bool* outResetNeeded) { |
| 2913 | int32_t oldDeviceMode = mDeviceMode; |
| 2914 | |
| 2915 | // Determine device mode. |
| 2916 | if (mParameters.deviceType == Parameters::DEVICE_TYPE_POINTER |
| 2917 | && mConfig.pointerGesturesEnabled) { |
| 2918 | mSource = AINPUT_SOURCE_MOUSE; |
| 2919 | mDeviceMode = DEVICE_MODE_POINTER; |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 2920 | if (hasStylus()) { |
| 2921 | mSource |= AINPUT_SOURCE_STYLUS; |
| 2922 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2923 | } else if (mParameters.deviceType == Parameters::DEVICE_TYPE_TOUCH_SCREEN |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2924 | && mParameters.hasAssociatedDisplay) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2925 | mSource = AINPUT_SOURCE_TOUCHSCREEN; |
| 2926 | mDeviceMode = DEVICE_MODE_DIRECT; |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 2927 | if (hasStylus()) { |
| 2928 | mSource |= AINPUT_SOURCE_STYLUS; |
| 2929 | } |
Michael Wright | e7a9ae8 | 2013-03-08 15:19:19 -0800 | [diff] [blame] | 2930 | } else if (mParameters.deviceType == Parameters::DEVICE_TYPE_TOUCH_NAVIGATION) { |
| 2931 | mSource = AINPUT_SOURCE_TOUCH_NAVIGATION; |
Jeff Brown | 4dac901 | 2013-04-10 01:03:19 -0700 | [diff] [blame] | 2932 | mDeviceMode = DEVICE_MODE_NAVIGATION; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2933 | } else { |
| 2934 | mSource = AINPUT_SOURCE_TOUCHPAD; |
| 2935 | mDeviceMode = DEVICE_MODE_UNSCALED; |
| 2936 | } |
| 2937 | |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 2938 | // Ensure we have valid X and Y axes. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 2939 | if (!mRawPointerAxes.x.valid || !mRawPointerAxes.y.valid) { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 2940 | ALOGW(INDENT "Touch device '%s' did not report support for X or Y axis! " |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 2941 | "The device will be inoperable.", getDeviceName().string()); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2942 | mDeviceMode = DEVICE_MODE_DISABLED; |
| 2943 | return; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 2944 | } |
| 2945 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2946 | // Raw width and height in the natural orientation. |
| 2947 | int32_t rawWidth = mRawPointerAxes.x.maxValue - mRawPointerAxes.x.minValue + 1; |
| 2948 | int32_t rawHeight = mRawPointerAxes.y.maxValue - mRawPointerAxes.y.minValue + 1; |
| 2949 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2950 | // Get associated display dimensions. |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2951 | DisplayViewport newViewport; |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2952 | if (mParameters.hasAssociatedDisplay) { |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2953 | if (!mConfig.getDisplayInfo(mParameters.associatedDisplayIsExternal, &newViewport)) { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 2954 | ALOGI(INDENT "Touch device '%s' could not query the properties of its associated " |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2955 | "display. The device will be inoperable until the display size " |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2956 | "becomes available.", |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 2957 | getDeviceName().string()); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2958 | mDeviceMode = DEVICE_MODE_DISABLED; |
| 2959 | return; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 2960 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 2961 | } else { |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2962 | newViewport.setNonDisplayViewport(rawWidth, rawHeight); |
| 2963 | } |
Michael Wright | f583d0d | 2013-10-29 13:24:41 -0700 | [diff] [blame] | 2964 | bool viewportChanged = mViewport != newViewport; |
| 2965 | if (viewportChanged) { |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2966 | mViewport = newViewport; |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 2967 | |
| 2968 | if (mDeviceMode == DEVICE_MODE_DIRECT || mDeviceMode == DEVICE_MODE_POINTER) { |
| 2969 | // Convert rotated viewport to natural surface coordinates. |
| 2970 | int32_t naturalLogicalWidth, naturalLogicalHeight; |
| 2971 | int32_t naturalPhysicalWidth, naturalPhysicalHeight; |
| 2972 | int32_t naturalPhysicalLeft, naturalPhysicalTop; |
| 2973 | int32_t naturalDeviceWidth, naturalDeviceHeight; |
| 2974 | switch (mViewport.orientation) { |
| 2975 | case DISPLAY_ORIENTATION_90: |
| 2976 | naturalLogicalWidth = mViewport.logicalBottom - mViewport.logicalTop; |
| 2977 | naturalLogicalHeight = mViewport.logicalRight - mViewport.logicalLeft; |
| 2978 | naturalPhysicalWidth = mViewport.physicalBottom - mViewport.physicalTop; |
| 2979 | naturalPhysicalHeight = mViewport.physicalRight - mViewport.physicalLeft; |
| 2980 | naturalPhysicalLeft = mViewport.deviceHeight - mViewport.physicalBottom; |
| 2981 | naturalPhysicalTop = mViewport.physicalLeft; |
| 2982 | naturalDeviceWidth = mViewport.deviceHeight; |
| 2983 | naturalDeviceHeight = mViewport.deviceWidth; |
| 2984 | break; |
| 2985 | case DISPLAY_ORIENTATION_180: |
| 2986 | naturalLogicalWidth = mViewport.logicalRight - mViewport.logicalLeft; |
| 2987 | naturalLogicalHeight = mViewport.logicalBottom - mViewport.logicalTop; |
| 2988 | naturalPhysicalWidth = mViewport.physicalRight - mViewport.physicalLeft; |
| 2989 | naturalPhysicalHeight = mViewport.physicalBottom - mViewport.physicalTop; |
| 2990 | naturalPhysicalLeft = mViewport.deviceWidth - mViewport.physicalRight; |
| 2991 | naturalPhysicalTop = mViewport.deviceHeight - mViewport.physicalBottom; |
| 2992 | naturalDeviceWidth = mViewport.deviceWidth; |
| 2993 | naturalDeviceHeight = mViewport.deviceHeight; |
| 2994 | break; |
| 2995 | case DISPLAY_ORIENTATION_270: |
| 2996 | naturalLogicalWidth = mViewport.logicalBottom - mViewport.logicalTop; |
| 2997 | naturalLogicalHeight = mViewport.logicalRight - mViewport.logicalLeft; |
| 2998 | naturalPhysicalWidth = mViewport.physicalBottom - mViewport.physicalTop; |
| 2999 | naturalPhysicalHeight = mViewport.physicalRight - mViewport.physicalLeft; |
| 3000 | naturalPhysicalLeft = mViewport.physicalTop; |
| 3001 | naturalPhysicalTop = mViewport.deviceWidth - mViewport.physicalRight; |
| 3002 | naturalDeviceWidth = mViewport.deviceHeight; |
| 3003 | naturalDeviceHeight = mViewport.deviceWidth; |
| 3004 | break; |
| 3005 | case DISPLAY_ORIENTATION_0: |
| 3006 | default: |
| 3007 | naturalLogicalWidth = mViewport.logicalRight - mViewport.logicalLeft; |
| 3008 | naturalLogicalHeight = mViewport.logicalBottom - mViewport.logicalTop; |
| 3009 | naturalPhysicalWidth = mViewport.physicalRight - mViewport.physicalLeft; |
| 3010 | naturalPhysicalHeight = mViewport.physicalBottom - mViewport.physicalTop; |
| 3011 | naturalPhysicalLeft = mViewport.physicalLeft; |
| 3012 | naturalPhysicalTop = mViewport.physicalTop; |
| 3013 | naturalDeviceWidth = mViewport.deviceWidth; |
| 3014 | naturalDeviceHeight = mViewport.deviceHeight; |
| 3015 | break; |
| 3016 | } |
| 3017 | |
| 3018 | mSurfaceWidth = naturalLogicalWidth * naturalDeviceWidth / naturalPhysicalWidth; |
| 3019 | mSurfaceHeight = naturalLogicalHeight * naturalDeviceHeight / naturalPhysicalHeight; |
| 3020 | mSurfaceLeft = naturalPhysicalLeft * naturalLogicalWidth / naturalPhysicalWidth; |
| 3021 | mSurfaceTop = naturalPhysicalTop * naturalLogicalHeight / naturalPhysicalHeight; |
| 3022 | |
| 3023 | mSurfaceOrientation = mParameters.orientationAware ? |
| 3024 | mViewport.orientation : DISPLAY_ORIENTATION_0; |
| 3025 | } else { |
| 3026 | mSurfaceWidth = rawWidth; |
| 3027 | mSurfaceHeight = rawHeight; |
| 3028 | mSurfaceLeft = 0; |
| 3029 | mSurfaceTop = 0; |
| 3030 | mSurfaceOrientation = DISPLAY_ORIENTATION_0; |
| 3031 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3032 | } |
| 3033 | |
| 3034 | // If moving between pointer modes, need to reset some state. |
Michael Wright | f583d0d | 2013-10-29 13:24:41 -0700 | [diff] [blame] | 3035 | bool deviceModeChanged = mDeviceMode != oldDeviceMode; |
| 3036 | if (deviceModeChanged) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3037 | mOrientedRanges.clear(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3038 | } |
| 3039 | |
Jeff Brown | daf4a12 | 2011-08-26 17:14:14 -0700 | [diff] [blame] | 3040 | // Create pointer controller if needed. |
| 3041 | if (mDeviceMode == DEVICE_MODE_POINTER || |
| 3042 | (mDeviceMode == DEVICE_MODE_DIRECT && mConfig.showTouches)) { |
| 3043 | if (mPointerController == NULL) { |
| 3044 | mPointerController = getPolicy()->obtainPointerController(getDeviceId()); |
| 3045 | } |
| 3046 | } else { |
| 3047 | mPointerController.clear(); |
| 3048 | } |
| 3049 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3050 | if (viewportChanged || deviceModeChanged) { |
| 3051 | ALOGI("Device reconfigured: id=%d, name='%s', size %dx%d, orientation %d, mode %d, " |
| 3052 | "display id %d", |
| 3053 | getDeviceId(), getDeviceName().string(), mSurfaceWidth, mSurfaceHeight, |
| 3054 | mSurfaceOrientation, mDeviceMode, mViewport.displayId); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3055 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3056 | // Configure X and Y factors. |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3057 | mXScale = float(mSurfaceWidth) / rawWidth; |
| 3058 | mYScale = float(mSurfaceHeight) / rawHeight; |
| 3059 | mXTranslate = -mSurfaceLeft; |
| 3060 | mYTranslate = -mSurfaceTop; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3061 | mXPrecision = 1.0f / mXScale; |
| 3062 | mYPrecision = 1.0f / mYScale; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3063 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3064 | mOrientedRanges.x.axis = AMOTION_EVENT_AXIS_X; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3065 | mOrientedRanges.x.source = mSource; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3066 | mOrientedRanges.y.axis = AMOTION_EVENT_AXIS_Y; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3067 | mOrientedRanges.y.source = mSource; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 3068 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3069 | configureVirtualKeys(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3070 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3071 | // Scale factor for terms that are not oriented in a particular axis. |
| 3072 | // If the pixels are square then xScale == yScale otherwise we fake it |
| 3073 | // by choosing an average. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3074 | mGeometricScale = avg(mXScale, mYScale); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3075 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3076 | // Size of diagonal axis. |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3077 | float diagonalSize = hypotf(mSurfaceWidth, mSurfaceHeight); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3078 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3079 | // Size factors. |
| 3080 | if (mCalibration.sizeCalibration != Calibration::SIZE_CALIBRATION_NONE) { |
| 3081 | if (mRawPointerAxes.touchMajor.valid |
| 3082 | && mRawPointerAxes.touchMajor.maxValue != 0) { |
| 3083 | mSizeScale = 1.0f / mRawPointerAxes.touchMajor.maxValue; |
| 3084 | } else if (mRawPointerAxes.toolMajor.valid |
| 3085 | && mRawPointerAxes.toolMajor.maxValue != 0) { |
| 3086 | mSizeScale = 1.0f / mRawPointerAxes.toolMajor.maxValue; |
| 3087 | } else { |
| 3088 | mSizeScale = 0.0f; |
| 3089 | } |
| 3090 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3091 | mOrientedRanges.haveTouchSize = true; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3092 | mOrientedRanges.haveToolSize = true; |
| 3093 | mOrientedRanges.haveSize = true; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 3094 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3095 | mOrientedRanges.touchMajor.axis = AMOTION_EVENT_AXIS_TOUCH_MAJOR; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3096 | mOrientedRanges.touchMajor.source = mSource; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3097 | mOrientedRanges.touchMajor.min = 0; |
| 3098 | mOrientedRanges.touchMajor.max = diagonalSize; |
| 3099 | mOrientedRanges.touchMajor.flat = 0; |
| 3100 | mOrientedRanges.touchMajor.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3101 | mOrientedRanges.touchMajor.resolution = 0; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 3102 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3103 | mOrientedRanges.touchMinor = mOrientedRanges.touchMajor; |
| 3104 | mOrientedRanges.touchMinor.axis = AMOTION_EVENT_AXIS_TOUCH_MINOR; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 3105 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3106 | mOrientedRanges.toolMajor.axis = AMOTION_EVENT_AXIS_TOOL_MAJOR; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3107 | mOrientedRanges.toolMajor.source = mSource; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3108 | mOrientedRanges.toolMajor.min = 0; |
| 3109 | mOrientedRanges.toolMajor.max = diagonalSize; |
| 3110 | mOrientedRanges.toolMajor.flat = 0; |
| 3111 | mOrientedRanges.toolMajor.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3112 | mOrientedRanges.toolMajor.resolution = 0; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 3113 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3114 | mOrientedRanges.toolMinor = mOrientedRanges.toolMajor; |
| 3115 | mOrientedRanges.toolMinor.axis = AMOTION_EVENT_AXIS_TOOL_MINOR; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3116 | |
| 3117 | mOrientedRanges.size.axis = AMOTION_EVENT_AXIS_SIZE; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3118 | mOrientedRanges.size.source = mSource; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3119 | mOrientedRanges.size.min = 0; |
| 3120 | mOrientedRanges.size.max = 1.0; |
| 3121 | mOrientedRanges.size.flat = 0; |
| 3122 | mOrientedRanges.size.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3123 | mOrientedRanges.size.resolution = 0; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3124 | } else { |
| 3125 | mSizeScale = 0.0f; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3126 | } |
| 3127 | |
| 3128 | // Pressure factors. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3129 | mPressureScale = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3130 | if (mCalibration.pressureCalibration == Calibration::PRESSURE_CALIBRATION_PHYSICAL |
| 3131 | || mCalibration.pressureCalibration |
| 3132 | == Calibration::PRESSURE_CALIBRATION_AMPLITUDE) { |
| 3133 | if (mCalibration.havePressureScale) { |
| 3134 | mPressureScale = mCalibration.pressureScale; |
| 3135 | } else if (mRawPointerAxes.pressure.valid |
| 3136 | && mRawPointerAxes.pressure.maxValue != 0) { |
| 3137 | mPressureScale = 1.0f / mRawPointerAxes.pressure.maxValue; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3138 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3139 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3140 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3141 | mOrientedRanges.pressure.axis = AMOTION_EVENT_AXIS_PRESSURE; |
| 3142 | mOrientedRanges.pressure.source = mSource; |
| 3143 | mOrientedRanges.pressure.min = 0; |
| 3144 | mOrientedRanges.pressure.max = 1.0; |
| 3145 | mOrientedRanges.pressure.flat = 0; |
| 3146 | mOrientedRanges.pressure.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3147 | mOrientedRanges.pressure.resolution = 0; |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 3148 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3149 | // Tilt |
| 3150 | mTiltXCenter = 0; |
| 3151 | mTiltXScale = 0; |
| 3152 | mTiltYCenter = 0; |
| 3153 | mTiltYScale = 0; |
| 3154 | mHaveTilt = mRawPointerAxes.tiltX.valid && mRawPointerAxes.tiltY.valid; |
| 3155 | if (mHaveTilt) { |
| 3156 | mTiltXCenter = avg(mRawPointerAxes.tiltX.minValue, |
| 3157 | mRawPointerAxes.tiltX.maxValue); |
| 3158 | mTiltYCenter = avg(mRawPointerAxes.tiltY.minValue, |
| 3159 | mRawPointerAxes.tiltY.maxValue); |
| 3160 | mTiltXScale = M_PI / 180; |
| 3161 | mTiltYScale = M_PI / 180; |
| 3162 | |
| 3163 | mOrientedRanges.haveTilt = true; |
| 3164 | |
| 3165 | mOrientedRanges.tilt.axis = AMOTION_EVENT_AXIS_TILT; |
| 3166 | mOrientedRanges.tilt.source = mSource; |
| 3167 | mOrientedRanges.tilt.min = 0; |
| 3168 | mOrientedRanges.tilt.max = M_PI_2; |
| 3169 | mOrientedRanges.tilt.flat = 0; |
| 3170 | mOrientedRanges.tilt.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3171 | mOrientedRanges.tilt.resolution = 0; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3172 | } |
| 3173 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3174 | // Orientation |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3175 | mOrientationScale = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3176 | if (mHaveTilt) { |
| 3177 | mOrientedRanges.haveOrientation = true; |
| 3178 | |
| 3179 | mOrientedRanges.orientation.axis = AMOTION_EVENT_AXIS_ORIENTATION; |
| 3180 | mOrientedRanges.orientation.source = mSource; |
| 3181 | mOrientedRanges.orientation.min = -M_PI; |
| 3182 | mOrientedRanges.orientation.max = M_PI; |
| 3183 | mOrientedRanges.orientation.flat = 0; |
| 3184 | mOrientedRanges.orientation.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3185 | mOrientedRanges.orientation.resolution = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3186 | } else if (mCalibration.orientationCalibration != |
| 3187 | Calibration::ORIENTATION_CALIBRATION_NONE) { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3188 | if (mCalibration.orientationCalibration |
| 3189 | == Calibration::ORIENTATION_CALIBRATION_INTERPOLATED) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3190 | if (mRawPointerAxes.orientation.valid) { |
Jeff Brown | 037f727 | 2012-06-25 17:31:23 -0700 | [diff] [blame] | 3191 | if (mRawPointerAxes.orientation.maxValue > 0) { |
| 3192 | mOrientationScale = M_PI_2 / mRawPointerAxes.orientation.maxValue; |
| 3193 | } else if (mRawPointerAxes.orientation.minValue < 0) { |
| 3194 | mOrientationScale = -M_PI_2 / mRawPointerAxes.orientation.minValue; |
| 3195 | } else { |
| 3196 | mOrientationScale = 0; |
| 3197 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3198 | } |
| 3199 | } |
| 3200 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3201 | mOrientedRanges.haveOrientation = true; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3202 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3203 | mOrientedRanges.orientation.axis = AMOTION_EVENT_AXIS_ORIENTATION; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3204 | mOrientedRanges.orientation.source = mSource; |
| 3205 | mOrientedRanges.orientation.min = -M_PI_2; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3206 | mOrientedRanges.orientation.max = M_PI_2; |
| 3207 | mOrientedRanges.orientation.flat = 0; |
| 3208 | mOrientedRanges.orientation.fuzz = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3209 | mOrientedRanges.orientation.resolution = 0; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3210 | } |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3211 | |
| 3212 | // Distance |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3213 | mDistanceScale = 0; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3214 | if (mCalibration.distanceCalibration != Calibration::DISTANCE_CALIBRATION_NONE) { |
| 3215 | if (mCalibration.distanceCalibration |
| 3216 | == Calibration::DISTANCE_CALIBRATION_SCALED) { |
| 3217 | if (mCalibration.haveDistanceScale) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3218 | mDistanceScale = mCalibration.distanceScale; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3219 | } else { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3220 | mDistanceScale = 1.0f; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3221 | } |
| 3222 | } |
| 3223 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3224 | mOrientedRanges.haveDistance = true; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3225 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3226 | mOrientedRanges.distance.axis = AMOTION_EVENT_AXIS_DISTANCE; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3227 | mOrientedRanges.distance.source = mSource; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3228 | mOrientedRanges.distance.min = |
| 3229 | mRawPointerAxes.distance.minValue * mDistanceScale; |
| 3230 | mOrientedRanges.distance.max = |
Andreas Sandblad | 8239940 | 2012-03-21 14:39:57 +0100 | [diff] [blame] | 3231 | mRawPointerAxes.distance.maxValue * mDistanceScale; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3232 | mOrientedRanges.distance.flat = 0; |
| 3233 | mOrientedRanges.distance.fuzz = |
| 3234 | mRawPointerAxes.distance.fuzz * mDistanceScale; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3235 | mOrientedRanges.distance.resolution = 0; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3236 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3237 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3238 | // Compute oriented precision, scales and ranges. |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 3239 | // Note that the maximum value reported is an inclusive maximum value so it is one |
| 3240 | // unit less than the total width or height of surface. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3241 | switch (mSurfaceOrientation) { |
Jeff Brown | b4ff35d | 2011-01-02 16:37:43 -0800 | [diff] [blame] | 3242 | case DISPLAY_ORIENTATION_90: |
| 3243 | case DISPLAY_ORIENTATION_270: |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3244 | mOrientedXPrecision = mYPrecision; |
| 3245 | mOrientedYPrecision = mXPrecision; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 3246 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3247 | mOrientedRanges.x.min = mYTranslate; |
| 3248 | mOrientedRanges.x.max = mSurfaceHeight + mYTranslate - 1; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3249 | mOrientedRanges.x.flat = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3250 | mOrientedRanges.x.fuzz = 0; |
| 3251 | mOrientedRanges.x.resolution = mRawPointerAxes.y.resolution * mYScale; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 3252 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3253 | mOrientedRanges.y.min = mXTranslate; |
| 3254 | mOrientedRanges.y.max = mSurfaceWidth + mXTranslate - 1; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3255 | mOrientedRanges.y.flat = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3256 | mOrientedRanges.y.fuzz = 0; |
| 3257 | mOrientedRanges.y.resolution = mRawPointerAxes.x.resolution * mXScale; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3258 | break; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 3259 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3260 | default: |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3261 | mOrientedXPrecision = mXPrecision; |
| 3262 | mOrientedYPrecision = mYPrecision; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 3263 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3264 | mOrientedRanges.x.min = mXTranslate; |
| 3265 | mOrientedRanges.x.max = mSurfaceWidth + mXTranslate - 1; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3266 | mOrientedRanges.x.flat = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3267 | mOrientedRanges.x.fuzz = 0; |
| 3268 | mOrientedRanges.x.resolution = mRawPointerAxes.x.resolution * mXScale; |
Jeff Brown | 9626b14 | 2011-03-03 02:09:54 -0800 | [diff] [blame] | 3269 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3270 | mOrientedRanges.y.min = mYTranslate; |
| 3271 | mOrientedRanges.y.max = mSurfaceHeight + mYTranslate - 1; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3272 | mOrientedRanges.y.flat = 0; |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 3273 | mOrientedRanges.y.fuzz = 0; |
| 3274 | mOrientedRanges.y.resolution = mRawPointerAxes.y.resolution * mYScale; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3275 | break; |
| 3276 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3277 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3278 | if (mDeviceMode == DEVICE_MODE_POINTER) { |
Jeff Brown | 4dac901 | 2013-04-10 01:03:19 -0700 | [diff] [blame] | 3279 | // Compute pointer gesture detection parameters. |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 3280 | float rawDiagonal = hypotf(rawWidth, rawHeight); |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3281 | float displayDiagonal = hypotf(mSurfaceWidth, mSurfaceHeight); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3282 | |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 3283 | // Scale movements such that one whole swipe of the touch pad covers a |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 3284 | // given area relative to the diagonal size of the display when no acceleration |
| 3285 | // is applied. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3286 | // Assume that the touch pad has a square aspect ratio such that movements in |
| 3287 | // X and Y of the same number of raw units cover the same physical distance. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3288 | mPointerXMovementScale = mConfig.pointerGestureMovementSpeedRatio |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 3289 | * displayDiagonal / rawDiagonal; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3290 | mPointerYMovementScale = mPointerXMovementScale; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3291 | |
| 3292 | // Scale zooms to cover a smaller range of the display than movements do. |
| 3293 | // This value determines the area around the pointer that is affected by freeform |
| 3294 | // pointer gestures. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3295 | mPointerXZoomScale = mConfig.pointerGestureZoomSpeedRatio |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 3296 | * displayDiagonal / rawDiagonal; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3297 | mPointerYZoomScale = mPointerXZoomScale; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3298 | |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 3299 | // Max width between pointers to detect a swipe gesture is more than some fraction |
| 3300 | // of the diagonal axis of the touch pad. Touches that are wider than this are |
| 3301 | // translated into freeform gestures. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3302 | mPointerGestureMaxSwipeWidth = |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 3303 | mConfig.pointerGestureSwipeMaxWidthRatio * rawDiagonal; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3304 | |
Jeff Brown | 4dac901 | 2013-04-10 01:03:19 -0700 | [diff] [blame] | 3305 | // Abort current pointer usages because the state has changed. |
| 3306 | abortPointerUsage(when, 0 /*policyFlags*/); |
Jeff Brown | 4dac901 | 2013-04-10 01:03:19 -0700 | [diff] [blame] | 3307 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3308 | |
| 3309 | // Inform the dispatcher about the changes. |
| 3310 | *outResetNeeded = true; |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 3311 | bumpGeneration(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3312 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3313 | } |
| 3314 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3315 | void TouchInputMapper::dumpSurface(String8& dump) { |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3316 | dump.appendFormat(INDENT3 "Viewport: displayId=%d, orientation=%d, " |
| 3317 | "logicalFrame=[%d, %d, %d, %d], " |
| 3318 | "physicalFrame=[%d, %d, %d, %d], " |
| 3319 | "deviceSize=[%d, %d]\n", |
| 3320 | mViewport.displayId, mViewport.orientation, |
| 3321 | mViewport.logicalLeft, mViewport.logicalTop, |
| 3322 | mViewport.logicalRight, mViewport.logicalBottom, |
| 3323 | mViewport.physicalLeft, mViewport.physicalTop, |
| 3324 | mViewport.physicalRight, mViewport.physicalBottom, |
| 3325 | mViewport.deviceWidth, mViewport.deviceHeight); |
| 3326 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3327 | dump.appendFormat(INDENT3 "SurfaceWidth: %dpx\n", mSurfaceWidth); |
| 3328 | dump.appendFormat(INDENT3 "SurfaceHeight: %dpx\n", mSurfaceHeight); |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 3329 | dump.appendFormat(INDENT3 "SurfaceLeft: %d\n", mSurfaceLeft); |
| 3330 | dump.appendFormat(INDENT3 "SurfaceTop: %d\n", mSurfaceTop); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3331 | dump.appendFormat(INDENT3 "SurfaceOrientation: %d\n", mSurfaceOrientation); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 3332 | } |
| 3333 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3334 | void TouchInputMapper::configureVirtualKeys() { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3335 | Vector<VirtualKeyDefinition> virtualKeyDefinitions; |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 3336 | getEventHub()->getVirtualKeyDefinitions(getDeviceId(), virtualKeyDefinitions); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3337 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3338 | mVirtualKeys.clear(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3339 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3340 | if (virtualKeyDefinitions.size() == 0) { |
| 3341 | return; |
| 3342 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3343 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3344 | mVirtualKeys.setCapacity(virtualKeyDefinitions.size()); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3345 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3346 | int32_t touchScreenLeft = mRawPointerAxes.x.minValue; |
| 3347 | int32_t touchScreenTop = mRawPointerAxes.y.minValue; |
| 3348 | int32_t touchScreenWidth = mRawPointerAxes.x.maxValue - mRawPointerAxes.x.minValue + 1; |
| 3349 | int32_t touchScreenHeight = mRawPointerAxes.y.maxValue - mRawPointerAxes.y.minValue + 1; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3350 | |
| 3351 | for (size_t i = 0; i < virtualKeyDefinitions.size(); i++) { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3352 | const VirtualKeyDefinition& virtualKeyDefinition = |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3353 | virtualKeyDefinitions[i]; |
| 3354 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3355 | mVirtualKeys.add(); |
| 3356 | VirtualKey& virtualKey = mVirtualKeys.editTop(); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3357 | |
| 3358 | virtualKey.scanCode = virtualKeyDefinition.scanCode; |
| 3359 | int32_t keyCode; |
| 3360 | uint32_t flags; |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 3361 | if (getEventHub()->mapKey(getDeviceId(), virtualKey.scanCode, 0, &keyCode, &flags)) { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 3362 | ALOGW(INDENT "VirtualKey %d: could not obtain key code, ignoring", |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3363 | virtualKey.scanCode); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3364 | mVirtualKeys.pop(); // drop the key |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3365 | continue; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3366 | } |
| 3367 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3368 | virtualKey.keyCode = keyCode; |
| 3369 | virtualKey.flags = flags; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3370 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3371 | // convert the key definition's display coordinates into touch coordinates for a hit box |
| 3372 | int32_t halfWidth = virtualKeyDefinition.width / 2; |
| 3373 | int32_t halfHeight = virtualKeyDefinition.height / 2; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3374 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3375 | virtualKey.hitLeft = (virtualKeyDefinition.centerX - halfWidth) |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3376 | * touchScreenWidth / mSurfaceWidth + touchScreenLeft; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3377 | virtualKey.hitRight= (virtualKeyDefinition.centerX + halfWidth) |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3378 | * touchScreenWidth / mSurfaceWidth + touchScreenLeft; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3379 | virtualKey.hitTop = (virtualKeyDefinition.centerY - halfHeight) |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3380 | * touchScreenHeight / mSurfaceHeight + touchScreenTop; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3381 | virtualKey.hitBottom = (virtualKeyDefinition.centerY + halfHeight) |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3382 | * touchScreenHeight / mSurfaceHeight + touchScreenTop; |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3383 | } |
| 3384 | } |
| 3385 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3386 | void TouchInputMapper::dumpVirtualKeys(String8& dump) { |
| 3387 | if (!mVirtualKeys.isEmpty()) { |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3388 | dump.append(INDENT3 "Virtual Keys:\n"); |
| 3389 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3390 | for (size_t i = 0; i < mVirtualKeys.size(); i++) { |
| 3391 | const VirtualKey& virtualKey = mVirtualKeys.itemAt(i); |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3392 | dump.appendFormat(INDENT4 "%d: scanCode=%d, keyCode=%d, " |
| 3393 | "hitLeft=%d, hitRight=%d, hitTop=%d, hitBottom=%d\n", |
| 3394 | i, virtualKey.scanCode, virtualKey.keyCode, |
| 3395 | virtualKey.hitLeft, virtualKey.hitRight, |
| 3396 | virtualKey.hitTop, virtualKey.hitBottom); |
| 3397 | } |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3398 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3399 | } |
| 3400 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3401 | void TouchInputMapper::parseCalibration() { |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 3402 | const PropertyMap& in = getDevice()->getConfiguration(); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3403 | Calibration& out = mCalibration; |
| 3404 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3405 | // Size |
| 3406 | out.sizeCalibration = Calibration::SIZE_CALIBRATION_DEFAULT; |
| 3407 | String8 sizeCalibrationString; |
| 3408 | if (in.tryGetProperty(String8("touch.size.calibration"), sizeCalibrationString)) { |
| 3409 | if (sizeCalibrationString == "none") { |
| 3410 | out.sizeCalibration = Calibration::SIZE_CALIBRATION_NONE; |
| 3411 | } else if (sizeCalibrationString == "geometric") { |
| 3412 | out.sizeCalibration = Calibration::SIZE_CALIBRATION_GEOMETRIC; |
| 3413 | } else if (sizeCalibrationString == "diameter") { |
| 3414 | out.sizeCalibration = Calibration::SIZE_CALIBRATION_DIAMETER; |
Jeff Brown | 037f727 | 2012-06-25 17:31:23 -0700 | [diff] [blame] | 3415 | } else if (sizeCalibrationString == "box") { |
| 3416 | out.sizeCalibration = Calibration::SIZE_CALIBRATION_BOX; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3417 | } else if (sizeCalibrationString == "area") { |
| 3418 | out.sizeCalibration = Calibration::SIZE_CALIBRATION_AREA; |
| 3419 | } else if (sizeCalibrationString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 3420 | ALOGW("Invalid value for touch.size.calibration: '%s'", |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3421 | sizeCalibrationString.string()); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3422 | } |
| 3423 | } |
| 3424 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3425 | out.haveSizeScale = in.tryGetProperty(String8("touch.size.scale"), |
| 3426 | out.sizeScale); |
| 3427 | out.haveSizeBias = in.tryGetProperty(String8("touch.size.bias"), |
| 3428 | out.sizeBias); |
| 3429 | out.haveSizeIsSummed = in.tryGetProperty(String8("touch.size.isSummed"), |
| 3430 | out.sizeIsSummed); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3431 | |
| 3432 | // Pressure |
| 3433 | out.pressureCalibration = Calibration::PRESSURE_CALIBRATION_DEFAULT; |
| 3434 | String8 pressureCalibrationString; |
Jeff Brown | c6d282b | 2010-10-14 21:42:15 -0700 | [diff] [blame] | 3435 | if (in.tryGetProperty(String8("touch.pressure.calibration"), pressureCalibrationString)) { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3436 | if (pressureCalibrationString == "none") { |
| 3437 | out.pressureCalibration = Calibration::PRESSURE_CALIBRATION_NONE; |
| 3438 | } else if (pressureCalibrationString == "physical") { |
| 3439 | out.pressureCalibration = Calibration::PRESSURE_CALIBRATION_PHYSICAL; |
| 3440 | } else if (pressureCalibrationString == "amplitude") { |
| 3441 | out.pressureCalibration = Calibration::PRESSURE_CALIBRATION_AMPLITUDE; |
| 3442 | } else if (pressureCalibrationString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 3443 | ALOGW("Invalid value for touch.pressure.calibration: '%s'", |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3444 | pressureCalibrationString.string()); |
| 3445 | } |
| 3446 | } |
| 3447 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3448 | out.havePressureScale = in.tryGetProperty(String8("touch.pressure.scale"), |
| 3449 | out.pressureScale); |
| 3450 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3451 | // Orientation |
| 3452 | out.orientationCalibration = Calibration::ORIENTATION_CALIBRATION_DEFAULT; |
| 3453 | String8 orientationCalibrationString; |
Jeff Brown | c6d282b | 2010-10-14 21:42:15 -0700 | [diff] [blame] | 3454 | if (in.tryGetProperty(String8("touch.orientation.calibration"), orientationCalibrationString)) { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3455 | if (orientationCalibrationString == "none") { |
| 3456 | out.orientationCalibration = Calibration::ORIENTATION_CALIBRATION_NONE; |
| 3457 | } else if (orientationCalibrationString == "interpolated") { |
| 3458 | out.orientationCalibration = Calibration::ORIENTATION_CALIBRATION_INTERPOLATED; |
Jeff Brown | 517bb4c | 2011-01-14 19:09:23 -0800 | [diff] [blame] | 3459 | } else if (orientationCalibrationString == "vector") { |
| 3460 | out.orientationCalibration = Calibration::ORIENTATION_CALIBRATION_VECTOR; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3461 | } else if (orientationCalibrationString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 3462 | ALOGW("Invalid value for touch.orientation.calibration: '%s'", |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3463 | orientationCalibrationString.string()); |
| 3464 | } |
| 3465 | } |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3466 | |
| 3467 | // Distance |
| 3468 | out.distanceCalibration = Calibration::DISTANCE_CALIBRATION_DEFAULT; |
| 3469 | String8 distanceCalibrationString; |
| 3470 | if (in.tryGetProperty(String8("touch.distance.calibration"), distanceCalibrationString)) { |
| 3471 | if (distanceCalibrationString == "none") { |
| 3472 | out.distanceCalibration = Calibration::DISTANCE_CALIBRATION_NONE; |
| 3473 | } else if (distanceCalibrationString == "scaled") { |
| 3474 | out.distanceCalibration = Calibration::DISTANCE_CALIBRATION_SCALED; |
| 3475 | } else if (distanceCalibrationString != "default") { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 3476 | ALOGW("Invalid value for touch.distance.calibration: '%s'", |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3477 | distanceCalibrationString.string()); |
| 3478 | } |
| 3479 | } |
| 3480 | |
| 3481 | out.haveDistanceScale = in.tryGetProperty(String8("touch.distance.scale"), |
| 3482 | out.distanceScale); |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 3483 | |
| 3484 | out.coverageCalibration = Calibration::COVERAGE_CALIBRATION_DEFAULT; |
| 3485 | String8 coverageCalibrationString; |
| 3486 | if (in.tryGetProperty(String8("touch.coverage.calibration"), coverageCalibrationString)) { |
| 3487 | if (coverageCalibrationString == "none") { |
| 3488 | out.coverageCalibration = Calibration::COVERAGE_CALIBRATION_NONE; |
| 3489 | } else if (coverageCalibrationString == "box") { |
| 3490 | out.coverageCalibration = Calibration::COVERAGE_CALIBRATION_BOX; |
| 3491 | } else if (coverageCalibrationString != "default") { |
| 3492 | ALOGW("Invalid value for touch.coverage.calibration: '%s'", |
| 3493 | coverageCalibrationString.string()); |
| 3494 | } |
| 3495 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3496 | } |
| 3497 | |
| 3498 | void TouchInputMapper::resolveCalibration() { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3499 | // Size |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3500 | if (mRawPointerAxes.touchMajor.valid || mRawPointerAxes.toolMajor.valid) { |
| 3501 | if (mCalibration.sizeCalibration == Calibration::SIZE_CALIBRATION_DEFAULT) { |
| 3502 | mCalibration.sizeCalibration = Calibration::SIZE_CALIBRATION_GEOMETRIC; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3503 | } |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3504 | } else { |
| 3505 | mCalibration.sizeCalibration = Calibration::SIZE_CALIBRATION_NONE; |
| 3506 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3507 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3508 | // Pressure |
| 3509 | if (mRawPointerAxes.pressure.valid) { |
| 3510 | if (mCalibration.pressureCalibration == Calibration::PRESSURE_CALIBRATION_DEFAULT) { |
| 3511 | mCalibration.pressureCalibration = Calibration::PRESSURE_CALIBRATION_PHYSICAL; |
| 3512 | } |
| 3513 | } else { |
| 3514 | mCalibration.pressureCalibration = Calibration::PRESSURE_CALIBRATION_NONE; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3515 | } |
| 3516 | |
| 3517 | // Orientation |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3518 | if (mRawPointerAxes.orientation.valid) { |
| 3519 | if (mCalibration.orientationCalibration == Calibration::ORIENTATION_CALIBRATION_DEFAULT) { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3520 | mCalibration.orientationCalibration = Calibration::ORIENTATION_CALIBRATION_INTERPOLATED; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3521 | } |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3522 | } else { |
| 3523 | mCalibration.orientationCalibration = Calibration::ORIENTATION_CALIBRATION_NONE; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3524 | } |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3525 | |
| 3526 | // Distance |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3527 | if (mRawPointerAxes.distance.valid) { |
| 3528 | if (mCalibration.distanceCalibration == Calibration::DISTANCE_CALIBRATION_DEFAULT) { |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3529 | mCalibration.distanceCalibration = Calibration::DISTANCE_CALIBRATION_SCALED; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3530 | } |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3531 | } else { |
| 3532 | mCalibration.distanceCalibration = Calibration::DISTANCE_CALIBRATION_NONE; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3533 | } |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 3534 | |
| 3535 | // Coverage |
| 3536 | if (mCalibration.coverageCalibration == Calibration::COVERAGE_CALIBRATION_DEFAULT) { |
| 3537 | mCalibration.coverageCalibration = Calibration::COVERAGE_CALIBRATION_NONE; |
| 3538 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3539 | } |
| 3540 | |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3541 | void TouchInputMapper::dumpCalibration(String8& dump) { |
| 3542 | dump.append(INDENT3 "Calibration:\n"); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 3543 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3544 | // Size |
| 3545 | switch (mCalibration.sizeCalibration) { |
| 3546 | case Calibration::SIZE_CALIBRATION_NONE: |
| 3547 | dump.append(INDENT4 "touch.size.calibration: none\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3548 | break; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3549 | case Calibration::SIZE_CALIBRATION_GEOMETRIC: |
| 3550 | dump.append(INDENT4 "touch.size.calibration: geometric\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3551 | break; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3552 | case Calibration::SIZE_CALIBRATION_DIAMETER: |
| 3553 | dump.append(INDENT4 "touch.size.calibration: diameter\n"); |
| 3554 | break; |
Jeff Brown | 037f727 | 2012-06-25 17:31:23 -0700 | [diff] [blame] | 3555 | case Calibration::SIZE_CALIBRATION_BOX: |
| 3556 | dump.append(INDENT4 "touch.size.calibration: box\n"); |
| 3557 | break; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3558 | case Calibration::SIZE_CALIBRATION_AREA: |
| 3559 | dump.append(INDENT4 "touch.size.calibration: area\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3560 | break; |
| 3561 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 3562 | ALOG_ASSERT(false); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3563 | } |
| 3564 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3565 | if (mCalibration.haveSizeScale) { |
| 3566 | dump.appendFormat(INDENT4 "touch.size.scale: %0.3f\n", |
| 3567 | mCalibration.sizeScale); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3568 | } |
| 3569 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3570 | if (mCalibration.haveSizeBias) { |
| 3571 | dump.appendFormat(INDENT4 "touch.size.bias: %0.3f\n", |
| 3572 | mCalibration.sizeBias); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3573 | } |
| 3574 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 3575 | if (mCalibration.haveSizeIsSummed) { |
| 3576 | dump.appendFormat(INDENT4 "touch.size.isSummed: %s\n", |
| 3577 | toString(mCalibration.sizeIsSummed)); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3578 | } |
| 3579 | |
| 3580 | // Pressure |
| 3581 | switch (mCalibration.pressureCalibration) { |
| 3582 | case Calibration::PRESSURE_CALIBRATION_NONE: |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3583 | dump.append(INDENT4 "touch.pressure.calibration: none\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3584 | break; |
| 3585 | case Calibration::PRESSURE_CALIBRATION_PHYSICAL: |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3586 | dump.append(INDENT4 "touch.pressure.calibration: physical\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3587 | break; |
| 3588 | case Calibration::PRESSURE_CALIBRATION_AMPLITUDE: |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3589 | dump.append(INDENT4 "touch.pressure.calibration: amplitude\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3590 | break; |
| 3591 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 3592 | ALOG_ASSERT(false); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3593 | } |
| 3594 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3595 | if (mCalibration.havePressureScale) { |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3596 | dump.appendFormat(INDENT4 "touch.pressure.scale: %0.3f\n", |
| 3597 | mCalibration.pressureScale); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3598 | } |
| 3599 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3600 | // Orientation |
| 3601 | switch (mCalibration.orientationCalibration) { |
| 3602 | case Calibration::ORIENTATION_CALIBRATION_NONE: |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3603 | dump.append(INDENT4 "touch.orientation.calibration: none\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3604 | break; |
| 3605 | case Calibration::ORIENTATION_CALIBRATION_INTERPOLATED: |
Jeff Brown | ef3d7e8 | 2010-09-30 14:33:04 -0700 | [diff] [blame] | 3606 | dump.append(INDENT4 "touch.orientation.calibration: interpolated\n"); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3607 | break; |
Jeff Brown | 517bb4c | 2011-01-14 19:09:23 -0800 | [diff] [blame] | 3608 | case Calibration::ORIENTATION_CALIBRATION_VECTOR: |
| 3609 | dump.append(INDENT4 "touch.orientation.calibration: vector\n"); |
| 3610 | break; |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3611 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 3612 | ALOG_ASSERT(false); |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3613 | } |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3614 | |
| 3615 | // Distance |
| 3616 | switch (mCalibration.distanceCalibration) { |
| 3617 | case Calibration::DISTANCE_CALIBRATION_NONE: |
| 3618 | dump.append(INDENT4 "touch.distance.calibration: none\n"); |
| 3619 | break; |
| 3620 | case Calibration::DISTANCE_CALIBRATION_SCALED: |
| 3621 | dump.append(INDENT4 "touch.distance.calibration: scaled\n"); |
| 3622 | break; |
| 3623 | default: |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 3624 | ALOG_ASSERT(false); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 3625 | } |
| 3626 | |
| 3627 | if (mCalibration.haveDistanceScale) { |
| 3628 | dump.appendFormat(INDENT4 "touch.distance.scale: %0.3f\n", |
| 3629 | mCalibration.distanceScale); |
| 3630 | } |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 3631 | |
| 3632 | switch (mCalibration.coverageCalibration) { |
| 3633 | case Calibration::COVERAGE_CALIBRATION_NONE: |
| 3634 | dump.append(INDENT4 "touch.coverage.calibration: none\n"); |
| 3635 | break; |
| 3636 | case Calibration::COVERAGE_CALIBRATION_BOX: |
| 3637 | dump.append(INDENT4 "touch.coverage.calibration: box\n"); |
| 3638 | break; |
| 3639 | default: |
| 3640 | ALOG_ASSERT(false); |
| 3641 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 3642 | } |
| 3643 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3644 | void TouchInputMapper::reset(nsecs_t when) { |
| 3645 | mCursorButtonAccumulator.reset(getDevice()); |
| 3646 | mCursorScrollAccumulator.reset(getDevice()); |
| 3647 | mTouchButtonAccumulator.reset(getDevice()); |
| 3648 | |
| 3649 | mPointerVelocityControl.reset(); |
| 3650 | mWheelXVelocityControl.reset(); |
| 3651 | mWheelYVelocityControl.reset(); |
| 3652 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3653 | mCurrentRawPointerData.clear(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3654 | mLastRawPointerData.clear(); |
| 3655 | mCurrentCookedPointerData.clear(); |
| 3656 | mLastCookedPointerData.clear(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3657 | mCurrentButtonState = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3658 | mLastButtonState = 0; |
| 3659 | mCurrentRawVScroll = 0; |
| 3660 | mCurrentRawHScroll = 0; |
| 3661 | mCurrentFingerIdBits.clear(); |
| 3662 | mLastFingerIdBits.clear(); |
| 3663 | mCurrentStylusIdBits.clear(); |
| 3664 | mLastStylusIdBits.clear(); |
| 3665 | mCurrentMouseIdBits.clear(); |
| 3666 | mLastMouseIdBits.clear(); |
| 3667 | mPointerUsage = POINTER_USAGE_NONE; |
| 3668 | mSentHoverEnter = false; |
| 3669 | mDownTime = 0; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3670 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3671 | mCurrentVirtualKey.down = false; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3672 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3673 | mPointerGesture.reset(); |
| 3674 | mPointerSimple.reset(); |
| 3675 | |
| 3676 | if (mPointerController != NULL) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3677 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 3678 | mPointerController->clearSpots(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3679 | } |
| 3680 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3681 | InputMapper::reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3682 | } |
| 3683 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3684 | void TouchInputMapper::process(const RawEvent* rawEvent) { |
| 3685 | mCursorButtonAccumulator.process(rawEvent); |
| 3686 | mCursorScrollAccumulator.process(rawEvent); |
| 3687 | mTouchButtonAccumulator.process(rawEvent); |
| 3688 | |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 3689 | if (rawEvent->type == EV_SYN && rawEvent->code == SYN_REPORT) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3690 | sync(rawEvent->when); |
| 3691 | } |
| 3692 | } |
| 3693 | |
| 3694 | void TouchInputMapper::sync(nsecs_t when) { |
| 3695 | // Sync button state. |
| 3696 | mCurrentButtonState = mTouchButtonAccumulator.getButtonState() |
| 3697 | | mCursorButtonAccumulator.getButtonState(); |
| 3698 | |
| 3699 | // Sync scroll state. |
| 3700 | mCurrentRawVScroll = mCursorScrollAccumulator.getRelativeVWheel(); |
| 3701 | mCurrentRawHScroll = mCursorScrollAccumulator.getRelativeHWheel(); |
| 3702 | mCursorScrollAccumulator.finishSync(); |
| 3703 | |
| 3704 | // Sync touch state. |
| 3705 | bool havePointerIds = true; |
| 3706 | mCurrentRawPointerData.clear(); |
| 3707 | syncTouch(when, &havePointerIds); |
| 3708 | |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 3709 | #if DEBUG_RAW_EVENTS |
| 3710 | if (!havePointerIds) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 3711 | ALOGD("syncTouch: pointerCount %d -> %d, no pointer ids", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3712 | mLastRawPointerData.pointerCount, |
| 3713 | mCurrentRawPointerData.pointerCount); |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 3714 | } else { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 3715 | ALOGD("syncTouch: pointerCount %d -> %d, touching ids 0x%08x -> 0x%08x, " |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3716 | "hovering ids 0x%08x -> 0x%08x", |
| 3717 | mLastRawPointerData.pointerCount, |
| 3718 | mCurrentRawPointerData.pointerCount, |
| 3719 | mLastRawPointerData.touchingIdBits.value, |
| 3720 | mCurrentRawPointerData.touchingIdBits.value, |
| 3721 | mLastRawPointerData.hoveringIdBits.value, |
| 3722 | mCurrentRawPointerData.hoveringIdBits.value); |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 3723 | } |
| 3724 | #endif |
| 3725 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3726 | // Reset state that we will compute below. |
| 3727 | mCurrentFingerIdBits.clear(); |
| 3728 | mCurrentStylusIdBits.clear(); |
| 3729 | mCurrentMouseIdBits.clear(); |
| 3730 | mCurrentCookedPointerData.clear(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 3731 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3732 | if (mDeviceMode == DEVICE_MODE_DISABLED) { |
| 3733 | // Drop all input if the device is disabled. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3734 | mCurrentRawPointerData.clear(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3735 | mCurrentButtonState = 0; |
| 3736 | } else { |
| 3737 | // Preprocess pointer data. |
| 3738 | if (!havePointerIds) { |
| 3739 | assignPointerIds(); |
| 3740 | } |
| 3741 | |
| 3742 | // Handle policy on initial down or hover events. |
| 3743 | uint32_t policyFlags = 0; |
Jeff Brown | c28306a | 2011-08-23 21:32:42 -0700 | [diff] [blame] | 3744 | bool initialDown = mLastRawPointerData.pointerCount == 0 |
| 3745 | && mCurrentRawPointerData.pointerCount != 0; |
| 3746 | bool buttonsPressed = mCurrentButtonState & ~mLastButtonState; |
| 3747 | if (initialDown || buttonsPressed) { |
| 3748 | // If this is a touch screen, hide the pointer on an initial down. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3749 | if (mDeviceMode == DEVICE_MODE_DIRECT) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3750 | getContext()->fadePointer(); |
| 3751 | } |
| 3752 | |
Jeff Brown | 6ca9004 | 2014-02-26 15:12:45 -0800 | [diff] [blame] | 3753 | if (mParameters.wake) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3754 | policyFlags |= POLICY_FLAG_WAKE_DROPPED; |
| 3755 | } |
| 3756 | } |
| 3757 | |
| 3758 | // Synthesize key down from raw buttons if needed. |
| 3759 | synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_DOWN, when, getDeviceId(), mSource, |
| 3760 | policyFlags, mLastButtonState, mCurrentButtonState); |
| 3761 | |
| 3762 | // Consume raw off-screen touches before cooking pointer data. |
| 3763 | // If touches are consumed, subsequent code will not receive any pointer data. |
| 3764 | if (consumeRawTouches(when, policyFlags)) { |
| 3765 | mCurrentRawPointerData.clear(); |
| 3766 | } |
| 3767 | |
| 3768 | // Cook pointer data. This call populates the mCurrentCookedPointerData structure |
| 3769 | // with cooked pointer data that has the same ids and indices as the raw data. |
| 3770 | // The following code can use either the raw or cooked data, as needed. |
| 3771 | cookPointerData(); |
| 3772 | |
| 3773 | // Dispatch the touches either directly or by translation through a pointer on screen. |
Jeff Brown | daf4a12 | 2011-08-26 17:14:14 -0700 | [diff] [blame] | 3774 | if (mDeviceMode == DEVICE_MODE_POINTER) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3775 | for (BitSet32 idBits(mCurrentRawPointerData.touchingIdBits); !idBits.isEmpty(); ) { |
| 3776 | uint32_t id = idBits.clearFirstMarkedBit(); |
| 3777 | const RawPointerData::Pointer& pointer = mCurrentRawPointerData.pointerForId(id); |
| 3778 | if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_STYLUS |
| 3779 | || pointer.toolType == AMOTION_EVENT_TOOL_TYPE_ERASER) { |
| 3780 | mCurrentStylusIdBits.markBit(id); |
| 3781 | } else if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_FINGER |
| 3782 | || pointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { |
| 3783 | mCurrentFingerIdBits.markBit(id); |
| 3784 | } else if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_MOUSE) { |
| 3785 | mCurrentMouseIdBits.markBit(id); |
| 3786 | } |
| 3787 | } |
| 3788 | for (BitSet32 idBits(mCurrentRawPointerData.hoveringIdBits); !idBits.isEmpty(); ) { |
| 3789 | uint32_t id = idBits.clearFirstMarkedBit(); |
| 3790 | const RawPointerData::Pointer& pointer = mCurrentRawPointerData.pointerForId(id); |
| 3791 | if (pointer.toolType == AMOTION_EVENT_TOOL_TYPE_STYLUS |
| 3792 | || pointer.toolType == AMOTION_EVENT_TOOL_TYPE_ERASER) { |
| 3793 | mCurrentStylusIdBits.markBit(id); |
| 3794 | } |
| 3795 | } |
| 3796 | |
| 3797 | // Stylus takes precedence over all tools, then mouse, then finger. |
| 3798 | PointerUsage pointerUsage = mPointerUsage; |
| 3799 | if (!mCurrentStylusIdBits.isEmpty()) { |
| 3800 | mCurrentMouseIdBits.clear(); |
| 3801 | mCurrentFingerIdBits.clear(); |
| 3802 | pointerUsage = POINTER_USAGE_STYLUS; |
| 3803 | } else if (!mCurrentMouseIdBits.isEmpty()) { |
| 3804 | mCurrentFingerIdBits.clear(); |
| 3805 | pointerUsage = POINTER_USAGE_MOUSE; |
| 3806 | } else if (!mCurrentFingerIdBits.isEmpty() || isPointerDown(mCurrentButtonState)) { |
| 3807 | pointerUsage = POINTER_USAGE_GESTURES; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3808 | } |
| 3809 | |
| 3810 | dispatchPointerUsage(when, policyFlags, pointerUsage); |
| 3811 | } else { |
Jeff Brown | daf4a12 | 2011-08-26 17:14:14 -0700 | [diff] [blame] | 3812 | if (mDeviceMode == DEVICE_MODE_DIRECT |
| 3813 | && mConfig.showTouches && mPointerController != NULL) { |
| 3814 | mPointerController->setPresentation(PointerControllerInterface::PRESENTATION_SPOT); |
| 3815 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 3816 | |
| 3817 | mPointerController->setButtonState(mCurrentButtonState); |
| 3818 | mPointerController->setSpots(mCurrentCookedPointerData.pointerCoords, |
| 3819 | mCurrentCookedPointerData.idToIndex, |
| 3820 | mCurrentCookedPointerData.touchingIdBits); |
| 3821 | } |
| 3822 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3823 | dispatchHoverExit(when, policyFlags); |
| 3824 | dispatchTouches(when, policyFlags); |
| 3825 | dispatchHoverEnterAndMove(when, policyFlags); |
| 3826 | } |
| 3827 | |
| 3828 | // Synthesize key up from raw buttons if needed. |
| 3829 | synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_UP, when, getDeviceId(), mSource, |
| 3830 | policyFlags, mLastButtonState, mCurrentButtonState); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 3831 | } |
| 3832 | |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 3833 | // Copy current touch to last touch in preparation for the next cycle. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3834 | mLastRawPointerData.copyFrom(mCurrentRawPointerData); |
| 3835 | mLastCookedPointerData.copyFrom(mCurrentCookedPointerData); |
| 3836 | mLastButtonState = mCurrentButtonState; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3837 | mLastFingerIdBits = mCurrentFingerIdBits; |
| 3838 | mLastStylusIdBits = mCurrentStylusIdBits; |
| 3839 | mLastMouseIdBits = mCurrentMouseIdBits; |
| 3840 | |
| 3841 | // Clear some transient state. |
| 3842 | mCurrentRawVScroll = 0; |
| 3843 | mCurrentRawHScroll = 0; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 3844 | } |
| 3845 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 3846 | void TouchInputMapper::timeoutExpired(nsecs_t when) { |
Jeff Brown | daf4a12 | 2011-08-26 17:14:14 -0700 | [diff] [blame] | 3847 | if (mDeviceMode == DEVICE_MODE_POINTER) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3848 | if (mPointerUsage == POINTER_USAGE_GESTURES) { |
| 3849 | dispatchPointerGestures(when, 0 /*policyFlags*/, true /*isTimeout*/); |
| 3850 | } |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 3851 | } |
| 3852 | } |
| 3853 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3854 | bool TouchInputMapper::consumeRawTouches(nsecs_t when, uint32_t policyFlags) { |
| 3855 | // Check for release of a virtual key. |
| 3856 | if (mCurrentVirtualKey.down) { |
| 3857 | if (mCurrentRawPointerData.touchingIdBits.isEmpty()) { |
| 3858 | // Pointer went up while virtual key was down. |
| 3859 | mCurrentVirtualKey.down = false; |
| 3860 | if (!mCurrentVirtualKey.ignored) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3861 | #if DEBUG_VIRTUAL_KEYS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 3862 | ALOGD("VirtualKeys: Generating key up: keyCode=%d, scanCode=%d", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3863 | mCurrentVirtualKey.keyCode, mCurrentVirtualKey.scanCode); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3864 | #endif |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3865 | dispatchVirtualKey(when, policyFlags, |
| 3866 | AKEY_EVENT_ACTION_UP, |
| 3867 | AKEY_EVENT_FLAG_FROM_SYSTEM | AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3868 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3869 | return true; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3870 | } |
| 3871 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3872 | if (mCurrentRawPointerData.touchingIdBits.count() == 1) { |
| 3873 | uint32_t id = mCurrentRawPointerData.touchingIdBits.firstMarkedBit(); |
| 3874 | const RawPointerData::Pointer& pointer = mCurrentRawPointerData.pointerForId(id); |
| 3875 | const VirtualKey* virtualKey = findVirtualKeyHit(pointer.x, pointer.y); |
| 3876 | if (virtualKey && virtualKey->keyCode == mCurrentVirtualKey.keyCode) { |
| 3877 | // Pointer is still within the space of the virtual key. |
| 3878 | return true; |
| 3879 | } |
| 3880 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3881 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3882 | // Pointer left virtual key area or another pointer also went down. |
| 3883 | // Send key cancellation but do not consume the touch yet. |
| 3884 | // This is useful when the user swipes through from the virtual key area |
| 3885 | // into the main display surface. |
| 3886 | mCurrentVirtualKey.down = false; |
| 3887 | if (!mCurrentVirtualKey.ignored) { |
| 3888 | #if DEBUG_VIRTUAL_KEYS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 3889 | ALOGD("VirtualKeys: Canceling key: keyCode=%d, scanCode=%d", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3890 | mCurrentVirtualKey.keyCode, mCurrentVirtualKey.scanCode); |
| 3891 | #endif |
| 3892 | dispatchVirtualKey(when, policyFlags, |
| 3893 | AKEY_EVENT_ACTION_UP, |
| 3894 | AKEY_EVENT_FLAG_FROM_SYSTEM | AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY |
| 3895 | | AKEY_EVENT_FLAG_CANCELED); |
| 3896 | } |
| 3897 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 3898 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3899 | if (mLastRawPointerData.touchingIdBits.isEmpty() |
| 3900 | && !mCurrentRawPointerData.touchingIdBits.isEmpty()) { |
| 3901 | // Pointer just went down. Check for virtual key press or off-screen touches. |
| 3902 | uint32_t id = mCurrentRawPointerData.touchingIdBits.firstMarkedBit(); |
| 3903 | const RawPointerData::Pointer& pointer = mCurrentRawPointerData.pointerForId(id); |
| 3904 | if (!isPointInsideSurface(pointer.x, pointer.y)) { |
| 3905 | // If exactly one pointer went down, check for virtual key hit. |
| 3906 | // Otherwise we will drop the entire stroke. |
| 3907 | if (mCurrentRawPointerData.touchingIdBits.count() == 1) { |
| 3908 | const VirtualKey* virtualKey = findVirtualKeyHit(pointer.x, pointer.y); |
| 3909 | if (virtualKey) { |
| 3910 | mCurrentVirtualKey.down = true; |
| 3911 | mCurrentVirtualKey.downTime = when; |
| 3912 | mCurrentVirtualKey.keyCode = virtualKey->keyCode; |
| 3913 | mCurrentVirtualKey.scanCode = virtualKey->scanCode; |
| 3914 | mCurrentVirtualKey.ignored = mContext->shouldDropVirtualKey( |
| 3915 | when, getDevice(), virtualKey->keyCode, virtualKey->scanCode); |
| 3916 | |
| 3917 | if (!mCurrentVirtualKey.ignored) { |
| 3918 | #if DEBUG_VIRTUAL_KEYS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 3919 | ALOGD("VirtualKeys: Generating key down: keyCode=%d, scanCode=%d", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3920 | mCurrentVirtualKey.keyCode, |
| 3921 | mCurrentVirtualKey.scanCode); |
| 3922 | #endif |
| 3923 | dispatchVirtualKey(when, policyFlags, |
| 3924 | AKEY_EVENT_ACTION_DOWN, |
| 3925 | AKEY_EVENT_FLAG_FROM_SYSTEM | AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY); |
| 3926 | } |
| 3927 | } |
| 3928 | } |
| 3929 | return true; |
| 3930 | } |
| 3931 | } |
| 3932 | |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 3933 | // Disable all virtual key touches that happen within a short time interval of the |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3934 | // most recent touch within the screen area. The idea is to filter out stray |
| 3935 | // virtual key presses when interacting with the touch screen. |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 3936 | // |
| 3937 | // Problems we're trying to solve: |
| 3938 | // |
| 3939 | // 1. While scrolling a list or dragging the window shade, the user swipes down into a |
| 3940 | // virtual key area that is implemented by a separate touch panel and accidentally |
| 3941 | // triggers a virtual key. |
| 3942 | // |
| 3943 | // 2. While typing in the on screen keyboard, the user taps slightly outside the screen |
| 3944 | // area and accidentally triggers a virtual key. This often happens when virtual keys |
| 3945 | // are layed out below the screen near to where the on screen keyboard's space bar |
| 3946 | // is displayed. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3947 | if (mConfig.virtualKeyQuietTime > 0 && !mCurrentRawPointerData.touchingIdBits.isEmpty()) { |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 3948 | mContext->disableVirtualKeysUntil(when + mConfig.virtualKeyQuietTime); |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 3949 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3950 | return false; |
| 3951 | } |
| 3952 | |
| 3953 | void TouchInputMapper::dispatchVirtualKey(nsecs_t when, uint32_t policyFlags, |
| 3954 | int32_t keyEventAction, int32_t keyEventFlags) { |
| 3955 | int32_t keyCode = mCurrentVirtualKey.keyCode; |
| 3956 | int32_t scanCode = mCurrentVirtualKey.scanCode; |
| 3957 | nsecs_t downTime = mCurrentVirtualKey.downTime; |
| 3958 | int32_t metaState = mContext->getGlobalMetaState(); |
| 3959 | policyFlags |= POLICY_FLAG_VIRTUAL; |
| 3960 | |
| 3961 | NotifyKeyArgs args(when, getDeviceId(), AINPUT_SOURCE_KEYBOARD, policyFlags, |
| 3962 | keyEventAction, keyEventFlags, keyCode, scanCode, metaState, downTime); |
| 3963 | getListener()->notifyKey(&args); |
Jeff Brown | fe50892 | 2011-01-18 15:10:10 -0800 | [diff] [blame] | 3964 | } |
| 3965 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 3966 | void TouchInputMapper::dispatchTouches(nsecs_t when, uint32_t policyFlags) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3967 | BitSet32 currentIdBits = mCurrentCookedPointerData.touchingIdBits; |
| 3968 | BitSet32 lastIdBits = mLastCookedPointerData.touchingIdBits; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 3969 | int32_t metaState = getContext()->getGlobalMetaState(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3970 | int32_t buttonState = mCurrentButtonState; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 3971 | |
| 3972 | if (currentIdBits == lastIdBits) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3973 | if (!currentIdBits.isEmpty()) { |
| 3974 | // No pointer id changes so this is a move event. |
| 3975 | // The listener takes care of batching moves so we don't have to deal with that here. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 3976 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3977 | AMOTION_EVENT_ACTION_MOVE, 0, metaState, buttonState, |
| 3978 | AMOTION_EVENT_EDGE_FLAG_NONE, |
| 3979 | mCurrentCookedPointerData.pointerProperties, |
| 3980 | mCurrentCookedPointerData.pointerCoords, |
| 3981 | mCurrentCookedPointerData.idToIndex, |
| 3982 | currentIdBits, -1, |
| 3983 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
| 3984 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 3985 | } else { |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 3986 | // There may be pointers going up and pointers going down and pointers moving |
| 3987 | // all at the same time. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3988 | BitSet32 upIdBits(lastIdBits.value & ~currentIdBits.value); |
| 3989 | BitSet32 downIdBits(currentIdBits.value & ~lastIdBits.value); |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 3990 | BitSet32 moveIdBits(lastIdBits.value & currentIdBits.value); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3991 | BitSet32 dispatchedIdBits(lastIdBits.value); |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 3992 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 3993 | // Update last coordinates of pointers that have moved so that we observe the new |
| 3994 | // pointer positions at the same time as other pointers that have just gone up. |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 3995 | bool moveNeeded = updateMovedPointers( |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 3996 | mCurrentCookedPointerData.pointerProperties, |
| 3997 | mCurrentCookedPointerData.pointerCoords, |
| 3998 | mCurrentCookedPointerData.idToIndex, |
| 3999 | mLastCookedPointerData.pointerProperties, |
| 4000 | mLastCookedPointerData.pointerCoords, |
| 4001 | mLastCookedPointerData.idToIndex, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4002 | moveIdBits); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4003 | if (buttonState != mLastButtonState) { |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4004 | moveNeeded = true; |
| 4005 | } |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 4006 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4007 | // Dispatch pointer up events. |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 4008 | while (!upIdBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4009 | uint32_t upId = upIdBits.clearFirstMarkedBit(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 4010 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4011 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4012 | AMOTION_EVENT_ACTION_POINTER_UP, 0, metaState, buttonState, 0, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4013 | mLastCookedPointerData.pointerProperties, |
| 4014 | mLastCookedPointerData.pointerCoords, |
| 4015 | mLastCookedPointerData.idToIndex, |
| 4016 | dispatchedIdBits, upId, |
| 4017 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4018 | dispatchedIdBits.clearBit(upId); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 4019 | } |
| 4020 | |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 4021 | // Dispatch move events if any of the remaining pointers moved from their old locations. |
| 4022 | // Although applications receive new locations as part of individual pointer up |
| 4023 | // events, they do not generally handle them except when presented in a move event. |
| 4024 | if (moveNeeded) { |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 4025 | ALOG_ASSERT(moveIdBits.value == dispatchedIdBits.value); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4026 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4027 | AMOTION_EVENT_ACTION_MOVE, 0, metaState, buttonState, 0, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4028 | mCurrentCookedPointerData.pointerProperties, |
| 4029 | mCurrentCookedPointerData.pointerCoords, |
| 4030 | mCurrentCookedPointerData.idToIndex, |
| 4031 | dispatchedIdBits, -1, |
| 4032 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
Jeff Brown | c3db858 | 2010-10-20 15:33:38 -0700 | [diff] [blame] | 4033 | } |
| 4034 | |
| 4035 | // Dispatch pointer down events using the new pointer locations. |
| 4036 | while (!downIdBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4037 | uint32_t downId = downIdBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4038 | dispatchedIdBits.markBit(downId); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 4039 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4040 | if (dispatchedIdBits.count() == 1) { |
| 4041 | // First pointer is going down. Set down time. |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 4042 | mDownTime = when; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 4043 | } |
| 4044 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4045 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | a611137 | 2011-07-14 21:48:23 -0700 | [diff] [blame] | 4046 | AMOTION_EVENT_ACTION_POINTER_DOWN, 0, metaState, buttonState, 0, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4047 | mCurrentCookedPointerData.pointerProperties, |
| 4048 | mCurrentCookedPointerData.pointerCoords, |
| 4049 | mCurrentCookedPointerData.idToIndex, |
| 4050 | dispatchedIdBits, downId, |
| 4051 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4052 | } |
| 4053 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4054 | } |
| 4055 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4056 | void TouchInputMapper::dispatchHoverExit(nsecs_t when, uint32_t policyFlags) { |
| 4057 | if (mSentHoverEnter && |
| 4058 | (mCurrentCookedPointerData.hoveringIdBits.isEmpty() |
| 4059 | || !mCurrentCookedPointerData.touchingIdBits.isEmpty())) { |
| 4060 | int32_t metaState = getContext()->getGlobalMetaState(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4061 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4062 | AMOTION_EVENT_ACTION_HOVER_EXIT, 0, metaState, mLastButtonState, 0, |
| 4063 | mLastCookedPointerData.pointerProperties, |
| 4064 | mLastCookedPointerData.pointerCoords, |
| 4065 | mLastCookedPointerData.idToIndex, |
| 4066 | mLastCookedPointerData.hoveringIdBits, -1, |
| 4067 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
| 4068 | mSentHoverEnter = false; |
| 4069 | } |
| 4070 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4071 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4072 | void TouchInputMapper::dispatchHoverEnterAndMove(nsecs_t when, uint32_t policyFlags) { |
| 4073 | if (mCurrentCookedPointerData.touchingIdBits.isEmpty() |
| 4074 | && !mCurrentCookedPointerData.hoveringIdBits.isEmpty()) { |
| 4075 | int32_t metaState = getContext()->getGlobalMetaState(); |
| 4076 | if (!mSentHoverEnter) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4077 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4078 | AMOTION_EVENT_ACTION_HOVER_ENTER, 0, metaState, mCurrentButtonState, 0, |
| 4079 | mCurrentCookedPointerData.pointerProperties, |
| 4080 | mCurrentCookedPointerData.pointerCoords, |
| 4081 | mCurrentCookedPointerData.idToIndex, |
| 4082 | mCurrentCookedPointerData.hoveringIdBits, -1, |
| 4083 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
| 4084 | mSentHoverEnter = true; |
| 4085 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4086 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4087 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4088 | AMOTION_EVENT_ACTION_HOVER_MOVE, 0, metaState, mCurrentButtonState, 0, |
| 4089 | mCurrentCookedPointerData.pointerProperties, |
| 4090 | mCurrentCookedPointerData.pointerCoords, |
| 4091 | mCurrentCookedPointerData.idToIndex, |
| 4092 | mCurrentCookedPointerData.hoveringIdBits, -1, |
| 4093 | mOrientedXPrecision, mOrientedYPrecision, mDownTime); |
| 4094 | } |
| 4095 | } |
| 4096 | |
| 4097 | void TouchInputMapper::cookPointerData() { |
| 4098 | uint32_t currentPointerCount = mCurrentRawPointerData.pointerCount; |
| 4099 | |
| 4100 | mCurrentCookedPointerData.clear(); |
| 4101 | mCurrentCookedPointerData.pointerCount = currentPointerCount; |
| 4102 | mCurrentCookedPointerData.hoveringIdBits = mCurrentRawPointerData.hoveringIdBits; |
| 4103 | mCurrentCookedPointerData.touchingIdBits = mCurrentRawPointerData.touchingIdBits; |
| 4104 | |
| 4105 | // Walk through the the active pointers and map device coordinates onto |
| 4106 | // surface coordinates and adjust for display orientation. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4107 | for (uint32_t i = 0; i < currentPointerCount; i++) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4108 | const RawPointerData::Pointer& in = mCurrentRawPointerData.pointers[i]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4109 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4110 | // Size |
| 4111 | float touchMajor, touchMinor, toolMajor, toolMinor, size; |
| 4112 | switch (mCalibration.sizeCalibration) { |
| 4113 | case Calibration::SIZE_CALIBRATION_GEOMETRIC: |
| 4114 | case Calibration::SIZE_CALIBRATION_DIAMETER: |
Jeff Brown | 037f727 | 2012-06-25 17:31:23 -0700 | [diff] [blame] | 4115 | case Calibration::SIZE_CALIBRATION_BOX: |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4116 | case Calibration::SIZE_CALIBRATION_AREA: |
| 4117 | if (mRawPointerAxes.touchMajor.valid && mRawPointerAxes.toolMajor.valid) { |
| 4118 | touchMajor = in.touchMajor; |
| 4119 | touchMinor = mRawPointerAxes.touchMinor.valid ? in.touchMinor : in.touchMajor; |
| 4120 | toolMajor = in.toolMajor; |
| 4121 | toolMinor = mRawPointerAxes.toolMinor.valid ? in.toolMinor : in.toolMajor; |
| 4122 | size = mRawPointerAxes.touchMinor.valid |
| 4123 | ? avg(in.touchMajor, in.touchMinor) : in.touchMajor; |
| 4124 | } else if (mRawPointerAxes.touchMajor.valid) { |
| 4125 | toolMajor = touchMajor = in.touchMajor; |
| 4126 | toolMinor = touchMinor = mRawPointerAxes.touchMinor.valid |
| 4127 | ? in.touchMinor : in.touchMajor; |
| 4128 | size = mRawPointerAxes.touchMinor.valid |
| 4129 | ? avg(in.touchMajor, in.touchMinor) : in.touchMajor; |
| 4130 | } else if (mRawPointerAxes.toolMajor.valid) { |
| 4131 | touchMajor = toolMajor = in.toolMajor; |
| 4132 | touchMinor = toolMinor = mRawPointerAxes.toolMinor.valid |
| 4133 | ? in.toolMinor : in.toolMajor; |
| 4134 | size = mRawPointerAxes.toolMinor.valid |
| 4135 | ? avg(in.toolMajor, in.toolMinor) : in.toolMajor; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4136 | } else { |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 4137 | ALOG_ASSERT(false, "No touch or tool axes. " |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4138 | "Size calibration should have been resolved to NONE."); |
| 4139 | touchMajor = 0; |
| 4140 | touchMinor = 0; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4141 | toolMajor = 0; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4142 | toolMinor = 0; |
| 4143 | size = 0; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4144 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4145 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4146 | if (mCalibration.haveSizeIsSummed && mCalibration.sizeIsSummed) { |
| 4147 | uint32_t touchingCount = mCurrentRawPointerData.touchingIdBits.count(); |
| 4148 | if (touchingCount > 1) { |
| 4149 | touchMajor /= touchingCount; |
| 4150 | touchMinor /= touchingCount; |
| 4151 | toolMajor /= touchingCount; |
| 4152 | toolMinor /= touchingCount; |
| 4153 | size /= touchingCount; |
| 4154 | } |
| 4155 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4156 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4157 | if (mCalibration.sizeCalibration == Calibration::SIZE_CALIBRATION_GEOMETRIC) { |
| 4158 | touchMajor *= mGeometricScale; |
| 4159 | touchMinor *= mGeometricScale; |
| 4160 | toolMajor *= mGeometricScale; |
| 4161 | toolMinor *= mGeometricScale; |
| 4162 | } else if (mCalibration.sizeCalibration == Calibration::SIZE_CALIBRATION_AREA) { |
| 4163 | touchMajor = touchMajor > 0 ? sqrtf(touchMajor) : 0; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4164 | touchMinor = touchMajor; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4165 | toolMajor = toolMajor > 0 ? sqrtf(toolMajor) : 0; |
| 4166 | toolMinor = toolMajor; |
| 4167 | } else if (mCalibration.sizeCalibration == Calibration::SIZE_CALIBRATION_DIAMETER) { |
| 4168 | touchMinor = touchMajor; |
| 4169 | toolMinor = toolMajor; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4170 | } |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4171 | |
| 4172 | mCalibration.applySizeScaleAndBias(&touchMajor); |
| 4173 | mCalibration.applySizeScaleAndBias(&touchMinor); |
| 4174 | mCalibration.applySizeScaleAndBias(&toolMajor); |
| 4175 | mCalibration.applySizeScaleAndBias(&toolMinor); |
| 4176 | size *= mSizeScale; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4177 | break; |
| 4178 | default: |
| 4179 | touchMajor = 0; |
| 4180 | touchMinor = 0; |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4181 | toolMajor = 0; |
| 4182 | toolMinor = 0; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4183 | size = 0; |
| 4184 | break; |
| 4185 | } |
| 4186 | |
Jeff Brown | a1f89ce | 2011-08-11 00:05:01 -0700 | [diff] [blame] | 4187 | // Pressure |
| 4188 | float pressure; |
| 4189 | switch (mCalibration.pressureCalibration) { |
| 4190 | case Calibration::PRESSURE_CALIBRATION_PHYSICAL: |
| 4191 | case Calibration::PRESSURE_CALIBRATION_AMPLITUDE: |
| 4192 | pressure = in.pressure * mPressureScale; |
| 4193 | break; |
| 4194 | default: |
| 4195 | pressure = in.isHovering ? 0 : 1; |
| 4196 | break; |
| 4197 | } |
| 4198 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4199 | // Tilt and Orientation |
| 4200 | float tilt; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4201 | float orientation; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4202 | if (mHaveTilt) { |
| 4203 | float tiltXAngle = (in.tiltX - mTiltXCenter) * mTiltXScale; |
| 4204 | float tiltYAngle = (in.tiltY - mTiltYCenter) * mTiltYScale; |
| 4205 | orientation = atan2f(-sinf(tiltXAngle), sinf(tiltYAngle)); |
| 4206 | tilt = acosf(cosf(tiltXAngle) * cosf(tiltYAngle)); |
| 4207 | } else { |
| 4208 | tilt = 0; |
| 4209 | |
| 4210 | switch (mCalibration.orientationCalibration) { |
| 4211 | case Calibration::ORIENTATION_CALIBRATION_INTERPOLATED: |
Jeff Brown | 037f727 | 2012-06-25 17:31:23 -0700 | [diff] [blame] | 4212 | orientation = in.orientation * mOrientationScale; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4213 | break; |
| 4214 | case Calibration::ORIENTATION_CALIBRATION_VECTOR: { |
| 4215 | int32_t c1 = signExtendNybble((in.orientation & 0xf0) >> 4); |
| 4216 | int32_t c2 = signExtendNybble(in.orientation & 0x0f); |
| 4217 | if (c1 != 0 || c2 != 0) { |
| 4218 | orientation = atan2f(c1, c2) * 0.5f; |
| 4219 | float confidence = hypotf(c1, c2); |
| 4220 | float scale = 1.0f + confidence / 16.0f; |
| 4221 | touchMajor *= scale; |
| 4222 | touchMinor /= scale; |
| 4223 | toolMajor *= scale; |
| 4224 | toolMinor /= scale; |
| 4225 | } else { |
| 4226 | orientation = 0; |
| 4227 | } |
| 4228 | break; |
| 4229 | } |
| 4230 | default: |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4231 | orientation = 0; |
| 4232 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4233 | } |
| 4234 | |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 4235 | // Distance |
| 4236 | float distance; |
| 4237 | switch (mCalibration.distanceCalibration) { |
| 4238 | case Calibration::DISTANCE_CALIBRATION_SCALED: |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4239 | distance = in.distance * mDistanceScale; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 4240 | break; |
| 4241 | default: |
| 4242 | distance = 0; |
| 4243 | } |
| 4244 | |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4245 | // Coverage |
| 4246 | int32_t rawLeft, rawTop, rawRight, rawBottom; |
| 4247 | switch (mCalibration.coverageCalibration) { |
| 4248 | case Calibration::COVERAGE_CALIBRATION_BOX: |
| 4249 | rawLeft = (in.toolMinor & 0xffff0000) >> 16; |
| 4250 | rawRight = in.toolMinor & 0x0000ffff; |
| 4251 | rawBottom = in.toolMajor & 0x0000ffff; |
| 4252 | rawTop = (in.toolMajor & 0xffff0000) >> 16; |
| 4253 | break; |
| 4254 | default: |
| 4255 | rawLeft = rawTop = rawRight = rawBottom = 0; |
| 4256 | break; |
| 4257 | } |
| 4258 | |
| 4259 | // X, Y, and the bounding box for coverage information |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4260 | // Adjust coords for surface orientation. |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4261 | float x, y, left, top, right, bottom; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4262 | switch (mSurfaceOrientation) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4263 | case DISPLAY_ORIENTATION_90: |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 4264 | x = float(in.y - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; |
| 4265 | y = float(mRawPointerAxes.x.maxValue - in.x) * mXScale + mXTranslate; |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4266 | left = float(rawTop - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; |
| 4267 | right = float(rawBottom- mRawPointerAxes.y.minValue) * mYScale + mYTranslate; |
| 4268 | bottom = float(mRawPointerAxes.x.maxValue - rawLeft) * mXScale + mXTranslate; |
| 4269 | top = float(mRawPointerAxes.x.maxValue - rawRight) * mXScale + mXTranslate; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4270 | orientation -= M_PI_2; |
Jason Gerecke | 70bca4c | 2013-03-01 11:49:07 -0800 | [diff] [blame] | 4271 | if (orientation < mOrientedRanges.orientation.min) { |
| 4272 | orientation += (mOrientedRanges.orientation.max - mOrientedRanges.orientation.min); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4273 | } |
| 4274 | break; |
| 4275 | case DISPLAY_ORIENTATION_180: |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 4276 | x = float(mRawPointerAxes.x.maxValue - in.x) * mXScale + mXTranslate; |
| 4277 | y = float(mRawPointerAxes.y.maxValue - in.y) * mYScale + mYTranslate; |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4278 | left = float(mRawPointerAxes.x.maxValue - rawRight) * mXScale + mXTranslate; |
| 4279 | right = float(mRawPointerAxes.x.maxValue - rawLeft) * mXScale + mXTranslate; |
| 4280 | bottom = float(mRawPointerAxes.y.maxValue - rawTop) * mYScale + mYTranslate; |
| 4281 | top = float(mRawPointerAxes.y.maxValue - rawBottom) * mYScale + mYTranslate; |
Jason Gerecke | 70bca4c | 2013-03-01 11:49:07 -0800 | [diff] [blame] | 4282 | orientation -= M_PI; |
| 4283 | if (orientation < mOrientedRanges.orientation.min) { |
| 4284 | orientation += (mOrientedRanges.orientation.max - mOrientedRanges.orientation.min); |
| 4285 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4286 | break; |
| 4287 | case DISPLAY_ORIENTATION_270: |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 4288 | x = float(mRawPointerAxes.y.maxValue - in.y) * mYScale + mYTranslate; |
| 4289 | y = float(in.x - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4290 | left = float(mRawPointerAxes.y.maxValue - rawBottom) * mYScale + mYTranslate; |
| 4291 | right = float(mRawPointerAxes.y.maxValue - rawTop) * mYScale + mYTranslate; |
| 4292 | bottom = float(rawRight - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; |
| 4293 | top = float(rawLeft - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4294 | orientation += M_PI_2; |
Jason Gerecke | 70bca4c | 2013-03-01 11:49:07 -0800 | [diff] [blame] | 4295 | if (orientation > mOrientedRanges.orientation.max) { |
| 4296 | orientation -= (mOrientedRanges.orientation.max - mOrientedRanges.orientation.min); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4297 | } |
| 4298 | break; |
| 4299 | default: |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 4300 | x = float(in.x - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; |
| 4301 | y = float(in.y - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4302 | left = float(rawLeft - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; |
| 4303 | right = float(rawRight - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; |
| 4304 | bottom = float(rawBottom - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; |
| 4305 | top = float(rawTop - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4306 | break; |
| 4307 | } |
| 4308 | |
| 4309 | // Write output coords. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4310 | PointerCoords& out = mCurrentCookedPointerData.pointerCoords[i]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4311 | out.clear(); |
| 4312 | out.setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 4313 | out.setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
| 4314 | out.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pressure); |
| 4315 | out.setAxisValue(AMOTION_EVENT_AXIS_SIZE, size); |
| 4316 | out.setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, touchMajor); |
| 4317 | out.setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, touchMinor); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4318 | out.setAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, orientation); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4319 | out.setAxisValue(AMOTION_EVENT_AXIS_TILT, tilt); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4320 | out.setAxisValue(AMOTION_EVENT_AXIS_DISTANCE, distance); |
Michael Wright | 5e025eb | 2013-05-15 23:16:54 -0700 | [diff] [blame] | 4321 | if (mCalibration.coverageCalibration == Calibration::COVERAGE_CALIBRATION_BOX) { |
| 4322 | out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_1, left); |
| 4323 | out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_2, top); |
| 4324 | out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_3, right); |
| 4325 | out.setAxisValue(AMOTION_EVENT_AXIS_GENERIC_4, bottom); |
| 4326 | } else { |
| 4327 | out.setAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, toolMajor); |
| 4328 | out.setAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, toolMinor); |
| 4329 | } |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4330 | |
| 4331 | // Write output properties. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4332 | PointerProperties& properties = mCurrentCookedPointerData.pointerProperties[i]; |
| 4333 | uint32_t id = in.id; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4334 | properties.clear(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4335 | properties.id = id; |
| 4336 | properties.toolType = in.toolType; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4337 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4338 | // Write id index. |
| 4339 | mCurrentCookedPointerData.idToIndex[id] = i; |
| 4340 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4341 | } |
| 4342 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4343 | void TouchInputMapper::dispatchPointerUsage(nsecs_t when, uint32_t policyFlags, |
| 4344 | PointerUsage pointerUsage) { |
| 4345 | if (pointerUsage != mPointerUsage) { |
| 4346 | abortPointerUsage(when, policyFlags); |
| 4347 | mPointerUsage = pointerUsage; |
| 4348 | } |
| 4349 | |
| 4350 | switch (mPointerUsage) { |
| 4351 | case POINTER_USAGE_GESTURES: |
| 4352 | dispatchPointerGestures(when, policyFlags, false /*isTimeout*/); |
| 4353 | break; |
| 4354 | case POINTER_USAGE_STYLUS: |
| 4355 | dispatchPointerStylus(when, policyFlags); |
| 4356 | break; |
| 4357 | case POINTER_USAGE_MOUSE: |
| 4358 | dispatchPointerMouse(when, policyFlags); |
| 4359 | break; |
| 4360 | default: |
| 4361 | break; |
| 4362 | } |
| 4363 | } |
| 4364 | |
| 4365 | void TouchInputMapper::abortPointerUsage(nsecs_t when, uint32_t policyFlags) { |
| 4366 | switch (mPointerUsage) { |
| 4367 | case POINTER_USAGE_GESTURES: |
| 4368 | abortPointerGestures(when, policyFlags); |
| 4369 | break; |
| 4370 | case POINTER_USAGE_STYLUS: |
| 4371 | abortPointerStylus(when, policyFlags); |
| 4372 | break; |
| 4373 | case POINTER_USAGE_MOUSE: |
| 4374 | abortPointerMouse(when, policyFlags); |
| 4375 | break; |
| 4376 | default: |
| 4377 | break; |
| 4378 | } |
| 4379 | |
| 4380 | mPointerUsage = POINTER_USAGE_NONE; |
| 4381 | } |
| 4382 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4383 | void TouchInputMapper::dispatchPointerGestures(nsecs_t when, uint32_t policyFlags, |
| 4384 | bool isTimeout) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4385 | // Update current gesture coordinates. |
| 4386 | bool cancelPreviousGesture, finishPreviousGesture; |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4387 | bool sendEvents = preparePointerGestures(when, |
| 4388 | &cancelPreviousGesture, &finishPreviousGesture, isTimeout); |
| 4389 | if (!sendEvents) { |
| 4390 | return; |
| 4391 | } |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4392 | if (finishPreviousGesture) { |
| 4393 | cancelPreviousGesture = false; |
| 4394 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4395 | |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 4396 | // Update the pointer presentation and spots. |
| 4397 | if (mParameters.gestureMode == Parameters::GESTURE_MODE_SPOTS) { |
| 4398 | mPointerController->setPresentation(PointerControllerInterface::PRESENTATION_SPOT); |
| 4399 | if (finishPreviousGesture || cancelPreviousGesture) { |
| 4400 | mPointerController->clearSpots(); |
| 4401 | } |
Jeff Brown | cb5ffcf | 2011-06-06 20:03:18 -0700 | [diff] [blame] | 4402 | mPointerController->setSpots(mPointerGesture.currentGestureCoords, |
| 4403 | mPointerGesture.currentGestureIdToIndex, |
| 4404 | mPointerGesture.currentGestureIdBits); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 4405 | } else { |
| 4406 | mPointerController->setPresentation(PointerControllerInterface::PRESENTATION_POINTER); |
| 4407 | } |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 4408 | |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 4409 | // Show or hide the pointer if needed. |
| 4410 | switch (mPointerGesture.currentGestureMode) { |
| 4411 | case PointerGesture::NEUTRAL: |
| 4412 | case PointerGesture::QUIET: |
| 4413 | if (mParameters.gestureMode == Parameters::GESTURE_MODE_SPOTS |
| 4414 | && (mPointerGesture.lastGestureMode == PointerGesture::SWIPE |
| 4415 | || mPointerGesture.lastGestureMode == PointerGesture::FREEFORM)) { |
| 4416 | // Remind the user of where the pointer is after finishing a gesture with spots. |
| 4417 | mPointerController->unfade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 4418 | } |
| 4419 | break; |
| 4420 | case PointerGesture::TAP: |
| 4421 | case PointerGesture::TAP_DRAG: |
| 4422 | case PointerGesture::BUTTON_CLICK_OR_DRAG: |
| 4423 | case PointerGesture::HOVER: |
| 4424 | case PointerGesture::PRESS: |
| 4425 | // Unfade the pointer when the current gesture manipulates the |
| 4426 | // area directly under the pointer. |
| 4427 | mPointerController->unfade(PointerControllerInterface::TRANSITION_IMMEDIATE); |
| 4428 | break; |
| 4429 | case PointerGesture::SWIPE: |
| 4430 | case PointerGesture::FREEFORM: |
| 4431 | // Fade the pointer when the current gesture manipulates a different |
| 4432 | // area and there are spots to guide the user experience. |
| 4433 | if (mParameters.gestureMode == Parameters::GESTURE_MODE_SPOTS) { |
| 4434 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 4435 | } else { |
| 4436 | mPointerController->unfade(PointerControllerInterface::TRANSITION_IMMEDIATE); |
| 4437 | } |
| 4438 | break; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4439 | } |
| 4440 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4441 | // Send events! |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4442 | int32_t metaState = getContext()->getGlobalMetaState(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4443 | int32_t buttonState = mCurrentButtonState; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4444 | |
| 4445 | // Update last coordinates of pointers that have moved so that we observe the new |
| 4446 | // pointer positions at the same time as other pointers that have just gone up. |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4447 | bool down = mPointerGesture.currentGestureMode == PointerGesture::TAP |
| 4448 | || mPointerGesture.currentGestureMode == PointerGesture::TAP_DRAG |
| 4449 | || mPointerGesture.currentGestureMode == PointerGesture::BUTTON_CLICK_OR_DRAG |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4450 | || mPointerGesture.currentGestureMode == PointerGesture::PRESS |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4451 | || mPointerGesture.currentGestureMode == PointerGesture::SWIPE |
| 4452 | || mPointerGesture.currentGestureMode == PointerGesture::FREEFORM; |
| 4453 | bool moveNeeded = false; |
| 4454 | if (down && !cancelPreviousGesture && !finishPreviousGesture |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4455 | && !mPointerGesture.lastGestureIdBits.isEmpty() |
| 4456 | && !mPointerGesture.currentGestureIdBits.isEmpty()) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4457 | BitSet32 movedGestureIdBits(mPointerGesture.currentGestureIdBits.value |
| 4458 | & mPointerGesture.lastGestureIdBits.value); |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4459 | moveNeeded = updateMovedPointers(mPointerGesture.currentGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4460 | mPointerGesture.currentGestureCoords, mPointerGesture.currentGestureIdToIndex, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4461 | mPointerGesture.lastGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4462 | mPointerGesture.lastGestureCoords, mPointerGesture.lastGestureIdToIndex, |
| 4463 | movedGestureIdBits); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4464 | if (buttonState != mLastButtonState) { |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4465 | moveNeeded = true; |
| 4466 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4467 | } |
| 4468 | |
| 4469 | // Send motion events for all pointers that went up or were canceled. |
| 4470 | BitSet32 dispatchedGestureIdBits(mPointerGesture.lastGestureIdBits); |
| 4471 | if (!dispatchedGestureIdBits.isEmpty()) { |
| 4472 | if (cancelPreviousGesture) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4473 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4474 | AMOTION_EVENT_ACTION_CANCEL, 0, metaState, buttonState, |
| 4475 | AMOTION_EVENT_EDGE_FLAG_NONE, |
| 4476 | mPointerGesture.lastGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4477 | mPointerGesture.lastGestureCoords, mPointerGesture.lastGestureIdToIndex, |
| 4478 | dispatchedGestureIdBits, -1, |
| 4479 | 0, 0, mPointerGesture.downTime); |
| 4480 | |
| 4481 | dispatchedGestureIdBits.clear(); |
| 4482 | } else { |
| 4483 | BitSet32 upGestureIdBits; |
| 4484 | if (finishPreviousGesture) { |
| 4485 | upGestureIdBits = dispatchedGestureIdBits; |
| 4486 | } else { |
| 4487 | upGestureIdBits.value = dispatchedGestureIdBits.value |
| 4488 | & ~mPointerGesture.currentGestureIdBits.value; |
| 4489 | } |
| 4490 | while (!upGestureIdBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4491 | uint32_t id = upGestureIdBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4492 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4493 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4494 | AMOTION_EVENT_ACTION_POINTER_UP, 0, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4495 | metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE, |
| 4496 | mPointerGesture.lastGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4497 | mPointerGesture.lastGestureCoords, mPointerGesture.lastGestureIdToIndex, |
| 4498 | dispatchedGestureIdBits, id, |
| 4499 | 0, 0, mPointerGesture.downTime); |
| 4500 | |
| 4501 | dispatchedGestureIdBits.clearBit(id); |
| 4502 | } |
| 4503 | } |
| 4504 | } |
| 4505 | |
| 4506 | // Send motion events for all pointers that moved. |
| 4507 | if (moveNeeded) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4508 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4509 | AMOTION_EVENT_ACTION_MOVE, 0, metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE, |
| 4510 | mPointerGesture.currentGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4511 | mPointerGesture.currentGestureCoords, mPointerGesture.currentGestureIdToIndex, |
| 4512 | dispatchedGestureIdBits, -1, |
| 4513 | 0, 0, mPointerGesture.downTime); |
| 4514 | } |
| 4515 | |
| 4516 | // Send motion events for all pointers that went down. |
| 4517 | if (down) { |
| 4518 | BitSet32 downGestureIdBits(mPointerGesture.currentGestureIdBits.value |
| 4519 | & ~dispatchedGestureIdBits.value); |
| 4520 | while (!downGestureIdBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4521 | uint32_t id = downGestureIdBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4522 | dispatchedGestureIdBits.markBit(id); |
| 4523 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4524 | if (dispatchedGestureIdBits.count() == 1) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4525 | mPointerGesture.downTime = when; |
| 4526 | } |
| 4527 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4528 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | a611137 | 2011-07-14 21:48:23 -0700 | [diff] [blame] | 4529 | AMOTION_EVENT_ACTION_POINTER_DOWN, 0, metaState, buttonState, 0, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4530 | mPointerGesture.currentGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4531 | mPointerGesture.currentGestureCoords, mPointerGesture.currentGestureIdToIndex, |
| 4532 | dispatchedGestureIdBits, id, |
| 4533 | 0, 0, mPointerGesture.downTime); |
| 4534 | } |
| 4535 | } |
| 4536 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4537 | // Send motion events for hover. |
| 4538 | if (mPointerGesture.currentGestureMode == PointerGesture::HOVER) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4539 | dispatchMotion(when, policyFlags, mSource, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4540 | AMOTION_EVENT_ACTION_HOVER_MOVE, 0, |
| 4541 | metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE, |
| 4542 | mPointerGesture.currentGestureProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4543 | mPointerGesture.currentGestureCoords, mPointerGesture.currentGestureIdToIndex, |
| 4544 | mPointerGesture.currentGestureIdBits, -1, |
| 4545 | 0, 0, mPointerGesture.downTime); |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 4546 | } else if (dispatchedGestureIdBits.isEmpty() |
| 4547 | && !mPointerGesture.lastGestureIdBits.isEmpty()) { |
| 4548 | // Synthesize a hover move event after all pointers go up to indicate that |
| 4549 | // the pointer is hovering again even if the user is not currently touching |
| 4550 | // the touch pad. This ensures that a view will receive a fresh hover enter |
| 4551 | // event after a tap. |
| 4552 | float x, y; |
| 4553 | mPointerController->getPosition(&x, &y); |
| 4554 | |
| 4555 | PointerProperties pointerProperties; |
| 4556 | pointerProperties.clear(); |
| 4557 | pointerProperties.id = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 4558 | pointerProperties.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 4559 | |
| 4560 | PointerCoords pointerCoords; |
| 4561 | pointerCoords.clear(); |
| 4562 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 4563 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
| 4564 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4565 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 4566 | AMOTION_EVENT_ACTION_HOVER_MOVE, 0, |
| 4567 | metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 4568 | mViewport.displayId, 1, &pointerProperties, &pointerCoords, |
| 4569 | 0, 0, mPointerGesture.downTime); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4570 | getListener()->notifyMotion(&args); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4571 | } |
| 4572 | |
| 4573 | // Update state. |
| 4574 | mPointerGesture.lastGestureMode = mPointerGesture.currentGestureMode; |
| 4575 | if (!down) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4576 | mPointerGesture.lastGestureIdBits.clear(); |
| 4577 | } else { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4578 | mPointerGesture.lastGestureIdBits = mPointerGesture.currentGestureIdBits; |
| 4579 | for (BitSet32 idBits(mPointerGesture.currentGestureIdBits); !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4580 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4581 | uint32_t index = mPointerGesture.currentGestureIdToIndex[id]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4582 | mPointerGesture.lastGestureProperties[index].copyFrom( |
| 4583 | mPointerGesture.currentGestureProperties[index]); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4584 | mPointerGesture.lastGestureCoords[index].copyFrom( |
| 4585 | mPointerGesture.currentGestureCoords[index]); |
| 4586 | mPointerGesture.lastGestureIdToIndex[id] = index; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 4587 | } |
| 4588 | } |
| 4589 | } |
| 4590 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4591 | void TouchInputMapper::abortPointerGestures(nsecs_t when, uint32_t policyFlags) { |
| 4592 | // Cancel previously dispatches pointers. |
| 4593 | if (!mPointerGesture.lastGestureIdBits.isEmpty()) { |
| 4594 | int32_t metaState = getContext()->getGlobalMetaState(); |
| 4595 | int32_t buttonState = mCurrentButtonState; |
| 4596 | dispatchMotion(when, policyFlags, mSource, |
| 4597 | AMOTION_EVENT_ACTION_CANCEL, 0, metaState, buttonState, |
| 4598 | AMOTION_EVENT_EDGE_FLAG_NONE, |
| 4599 | mPointerGesture.lastGestureProperties, |
| 4600 | mPointerGesture.lastGestureCoords, mPointerGesture.lastGestureIdToIndex, |
| 4601 | mPointerGesture.lastGestureIdBits, -1, |
| 4602 | 0, 0, mPointerGesture.downTime); |
| 4603 | } |
| 4604 | |
| 4605 | // Reset the current pointer gesture. |
| 4606 | mPointerGesture.reset(); |
| 4607 | mPointerVelocityControl.reset(); |
| 4608 | |
| 4609 | // Remove any current spots. |
| 4610 | if (mPointerController != NULL) { |
| 4611 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 4612 | mPointerController->clearSpots(); |
| 4613 | } |
| 4614 | } |
| 4615 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4616 | bool TouchInputMapper::preparePointerGestures(nsecs_t when, |
| 4617 | bool* outCancelPreviousGesture, bool* outFinishPreviousGesture, bool isTimeout) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4618 | *outCancelPreviousGesture = false; |
| 4619 | *outFinishPreviousGesture = false; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 4620 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4621 | // Handle TAP timeout. |
| 4622 | if (isTimeout) { |
| 4623 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4624 | ALOGD("Gestures: Processing timeout"); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4625 | #endif |
| 4626 | |
| 4627 | if (mPointerGesture.lastGestureMode == PointerGesture::TAP) { |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4628 | if (when <= mPointerGesture.tapUpTime + mConfig.pointerGestureTapDragInterval) { |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4629 | // The tap/drag timeout has not yet expired. |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 4630 | getContext()->requestTimeoutAtTime(mPointerGesture.tapUpTime |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4631 | + mConfig.pointerGestureTapDragInterval); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4632 | } else { |
| 4633 | // The tap is finished. |
| 4634 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4635 | ALOGD("Gestures: TAP finished"); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4636 | #endif |
| 4637 | *outFinishPreviousGesture = true; |
| 4638 | |
| 4639 | mPointerGesture.activeGestureId = -1; |
| 4640 | mPointerGesture.currentGestureMode = PointerGesture::NEUTRAL; |
| 4641 | mPointerGesture.currentGestureIdBits.clear(); |
| 4642 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4643 | mPointerVelocityControl.reset(); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4644 | return true; |
| 4645 | } |
| 4646 | } |
| 4647 | |
| 4648 | // We did not handle this timeout. |
| 4649 | return false; |
| 4650 | } |
| 4651 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4652 | const uint32_t currentFingerCount = mCurrentFingerIdBits.count(); |
| 4653 | const uint32_t lastFingerCount = mLastFingerIdBits.count(); |
| 4654 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4655 | // Update the velocity tracker. |
| 4656 | { |
| 4657 | VelocityTracker::Position positions[MAX_POINTERS]; |
| 4658 | uint32_t count = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4659 | for (BitSet32 idBits(mCurrentFingerIdBits); !idBits.isEmpty(); count++) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4660 | uint32_t id = idBits.clearFirstMarkedBit(); |
| 4661 | const RawPointerData::Pointer& pointer = mCurrentRawPointerData.pointerForId(id); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4662 | positions[count].x = pointer.x * mPointerXMovementScale; |
| 4663 | positions[count].y = pointer.y * mPointerYMovementScale; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4664 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4665 | mPointerGesture.velocityTracker.addMovement(when, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4666 | mCurrentFingerIdBits, positions); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4667 | } |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 4668 | |
Michael Wright | 398d309 | 2013-07-02 17:35:00 -0700 | [diff] [blame] | 4669 | // If the gesture ever enters a mode other than TAP, HOVER or TAP_DRAG, without first returning |
| 4670 | // to NEUTRAL, then we should not generate tap event. |
| 4671 | if (mPointerGesture.lastGestureMode != PointerGesture::HOVER |
| 4672 | && mPointerGesture.lastGestureMode != PointerGesture::TAP |
| 4673 | && mPointerGesture.lastGestureMode != PointerGesture::TAP_DRAG) { |
| 4674 | mPointerGesture.resetTap(); |
| 4675 | } |
| 4676 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4677 | // Pick a new active touch id if needed. |
| 4678 | // Choose an arbitrary pointer that just went down, if there is one. |
| 4679 | // Otherwise choose an arbitrary remaining pointer. |
| 4680 | // This guarantees we always have an active touch id when there is at least one pointer. |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4681 | // We keep the same active touch id for as long as possible. |
| 4682 | bool activeTouchChanged = false; |
| 4683 | int32_t lastActiveTouchId = mPointerGesture.activeTouchId; |
| 4684 | int32_t activeTouchId = lastActiveTouchId; |
| 4685 | if (activeTouchId < 0) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4686 | if (!mCurrentFingerIdBits.isEmpty()) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4687 | activeTouchChanged = true; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4688 | activeTouchId = mPointerGesture.activeTouchId = |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4689 | mCurrentFingerIdBits.firstMarkedBit(); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4690 | mPointerGesture.firstTouchTime = when; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4691 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4692 | } else if (!mCurrentFingerIdBits.hasBit(activeTouchId)) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4693 | activeTouchChanged = true; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4694 | if (!mCurrentFingerIdBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4695 | activeTouchId = mPointerGesture.activeTouchId = |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4696 | mCurrentFingerIdBits.firstMarkedBit(); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4697 | } else { |
| 4698 | activeTouchId = mPointerGesture.activeTouchId = -1; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4699 | } |
| 4700 | } |
| 4701 | |
| 4702 | // Determine whether we are in quiet time. |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4703 | bool isQuietTime = false; |
| 4704 | if (activeTouchId < 0) { |
| 4705 | mPointerGesture.resetQuietTime(); |
| 4706 | } else { |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4707 | isQuietTime = when < mPointerGesture.quietTime + mConfig.pointerGestureQuietInterval; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4708 | if (!isQuietTime) { |
| 4709 | if ((mPointerGesture.lastGestureMode == PointerGesture::PRESS |
| 4710 | || mPointerGesture.lastGestureMode == PointerGesture::SWIPE |
| 4711 | || mPointerGesture.lastGestureMode == PointerGesture::FREEFORM) |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4712 | && currentFingerCount < 2) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4713 | // Enter quiet time when exiting swipe or freeform state. |
| 4714 | // This is to prevent accidentally entering the hover state and flinging the |
| 4715 | // pointer when finishing a swipe and there is still one pointer left onscreen. |
| 4716 | isQuietTime = true; |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4717 | } else if (mPointerGesture.lastGestureMode == PointerGesture::BUTTON_CLICK_OR_DRAG |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4718 | && currentFingerCount >= 2 |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4719 | && !isPointerDown(mCurrentButtonState)) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4720 | // Enter quiet time when releasing the button and there are still two or more |
| 4721 | // fingers down. This may indicate that one finger was used to press the button |
| 4722 | // but it has not gone up yet. |
| 4723 | isQuietTime = true; |
| 4724 | } |
| 4725 | if (isQuietTime) { |
| 4726 | mPointerGesture.quietTime = when; |
| 4727 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4728 | } |
| 4729 | } |
| 4730 | |
| 4731 | // Switch states based on button and pointer state. |
| 4732 | if (isQuietTime) { |
| 4733 | // Case 1: Quiet time. (QUIET) |
| 4734 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4735 | ALOGD("Gestures: QUIET for next %0.3fms", (mPointerGesture.quietTime |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4736 | + mConfig.pointerGestureQuietInterval - when) * 0.000001f); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4737 | #endif |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 4738 | if (mPointerGesture.lastGestureMode != PointerGesture::QUIET) { |
| 4739 | *outFinishPreviousGesture = true; |
| 4740 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4741 | |
| 4742 | mPointerGesture.activeGestureId = -1; |
| 4743 | mPointerGesture.currentGestureMode = PointerGesture::QUIET; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4744 | mPointerGesture.currentGestureIdBits.clear(); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4745 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4746 | mPointerVelocityControl.reset(); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4747 | } else if (isPointerDown(mCurrentButtonState)) { |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4748 | // Case 2: Button is pressed. (BUTTON_CLICK_OR_DRAG) |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4749 | // The pointer follows the active touch point. |
| 4750 | // Emit DOWN, MOVE, UP events at the pointer location. |
| 4751 | // |
| 4752 | // Only the active touch matters; other fingers are ignored. This policy helps |
| 4753 | // to handle the case where the user places a second finger on the touch pad |
| 4754 | // to apply the necessary force to depress an integrated button below the surface. |
| 4755 | // We don't want the second finger to be delivered to applications. |
| 4756 | // |
| 4757 | // For this to work well, we need to make sure to track the pointer that is really |
| 4758 | // active. If the user first puts one finger down to click then adds another |
| 4759 | // finger to drag then the active pointer should switch to the finger that is |
| 4760 | // being dragged. |
| 4761 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4762 | ALOGD("Gestures: BUTTON_CLICK_OR_DRAG activeTouchId=%d, " |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4763 | "currentFingerCount=%d", activeTouchId, currentFingerCount); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4764 | #endif |
| 4765 | // Reset state when just starting. |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4766 | if (mPointerGesture.lastGestureMode != PointerGesture::BUTTON_CLICK_OR_DRAG) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4767 | *outFinishPreviousGesture = true; |
| 4768 | mPointerGesture.activeGestureId = 0; |
| 4769 | } |
| 4770 | |
| 4771 | // Switch pointers if needed. |
| 4772 | // Find the fastest pointer and follow it. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4773 | if (activeTouchId >= 0 && currentFingerCount > 1) { |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4774 | int32_t bestId = -1; |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4775 | float bestSpeed = mConfig.pointerGestureDragMinSwitchSpeed; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4776 | for (BitSet32 idBits(mCurrentFingerIdBits); !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4777 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4778 | float vx, vy; |
| 4779 | if (mPointerGesture.velocityTracker.getVelocity(id, &vx, &vy)) { |
| 4780 | float speed = hypotf(vx, vy); |
| 4781 | if (speed > bestSpeed) { |
| 4782 | bestId = id; |
| 4783 | bestSpeed = speed; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4784 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 4785 | } |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4786 | } |
| 4787 | if (bestId >= 0 && bestId != activeTouchId) { |
| 4788 | mPointerGesture.activeTouchId = activeTouchId = bestId; |
| 4789 | activeTouchChanged = true; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4790 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4791 | ALOGD("Gestures: BUTTON_CLICK_OR_DRAG switched pointers, " |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4792 | "bestId=%d, bestSpeed=%0.3f", bestId, bestSpeed); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4793 | #endif |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 4794 | } |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4795 | } |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 4796 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4797 | if (activeTouchId >= 0 && mLastFingerIdBits.hasBit(activeTouchId)) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4798 | const RawPointerData::Pointer& currentPointer = |
| 4799 | mCurrentRawPointerData.pointerForId(activeTouchId); |
| 4800 | const RawPointerData::Pointer& lastPointer = |
| 4801 | mLastRawPointerData.pointerForId(activeTouchId); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4802 | float deltaX = (currentPointer.x - lastPointer.x) * mPointerXMovementScale; |
| 4803 | float deltaY = (currentPointer.y - lastPointer.y) * mPointerYMovementScale; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4804 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4805 | rotateDelta(mSurfaceOrientation, &deltaX, &deltaY); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4806 | mPointerVelocityControl.move(when, &deltaX, &deltaY); |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4807 | |
| 4808 | // Move the pointer using a relative motion. |
| 4809 | // When using spots, the click will occur at the position of the anchor |
| 4810 | // spot and all other spots will move there. |
| 4811 | mPointerController->move(deltaX, deltaY); |
| 4812 | } else { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4813 | mPointerVelocityControl.reset(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 4814 | } |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 4815 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4816 | float x, y; |
| 4817 | mPointerController->getPosition(&x, &y); |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 4818 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4819 | mPointerGesture.currentGestureMode = PointerGesture::BUTTON_CLICK_OR_DRAG; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4820 | mPointerGesture.currentGestureIdBits.clear(); |
| 4821 | mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId); |
| 4822 | mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4823 | mPointerGesture.currentGestureProperties[0].clear(); |
| 4824 | mPointerGesture.currentGestureProperties[0].id = mPointerGesture.activeGestureId; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 4825 | mPointerGesture.currentGestureProperties[0].toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4826 | mPointerGesture.currentGestureCoords[0].clear(); |
| 4827 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 4828 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
| 4829 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, 1.0f); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4830 | } else if (currentFingerCount == 0) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4831 | // Case 3. No fingers down and button is not pressed. (NEUTRAL) |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 4832 | if (mPointerGesture.lastGestureMode != PointerGesture::NEUTRAL) { |
| 4833 | *outFinishPreviousGesture = true; |
| 4834 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4835 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4836 | // Watch for taps coming out of HOVER or TAP_DRAG mode. |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 4837 | // Checking for taps after TAP_DRAG allows us to detect double-taps. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4838 | bool tapped = false; |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4839 | if ((mPointerGesture.lastGestureMode == PointerGesture::HOVER |
| 4840 | || mPointerGesture.lastGestureMode == PointerGesture::TAP_DRAG) |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4841 | && lastFingerCount == 1) { |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4842 | if (when <= mPointerGesture.tapDownTime + mConfig.pointerGestureTapInterval) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4843 | float x, y; |
| 4844 | mPointerController->getPosition(&x, &y); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4845 | if (fabs(x - mPointerGesture.tapX) <= mConfig.pointerGestureTapSlop |
| 4846 | && fabs(y - mPointerGesture.tapY) <= mConfig.pointerGestureTapSlop) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4847 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4848 | ALOGD("Gestures: TAP"); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4849 | #endif |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4850 | |
| 4851 | mPointerGesture.tapUpTime = when; |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 4852 | getContext()->requestTimeoutAtTime(when |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4853 | + mConfig.pointerGestureTapDragInterval); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4854 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4855 | mPointerGesture.activeGestureId = 0; |
| 4856 | mPointerGesture.currentGestureMode = PointerGesture::TAP; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4857 | mPointerGesture.currentGestureIdBits.clear(); |
| 4858 | mPointerGesture.currentGestureIdBits.markBit( |
| 4859 | mPointerGesture.activeGestureId); |
| 4860 | mPointerGesture.currentGestureIdToIndex[ |
| 4861 | mPointerGesture.activeGestureId] = 0; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4862 | mPointerGesture.currentGestureProperties[0].clear(); |
| 4863 | mPointerGesture.currentGestureProperties[0].id = |
| 4864 | mPointerGesture.activeGestureId; |
| 4865 | mPointerGesture.currentGestureProperties[0].toolType = |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 4866 | AMOTION_EVENT_TOOL_TYPE_FINGER; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4867 | mPointerGesture.currentGestureCoords[0].clear(); |
| 4868 | mPointerGesture.currentGestureCoords[0].setAxisValue( |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4869 | AMOTION_EVENT_AXIS_X, mPointerGesture.tapX); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4870 | mPointerGesture.currentGestureCoords[0].setAxisValue( |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4871 | AMOTION_EVENT_AXIS_Y, mPointerGesture.tapY); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4872 | mPointerGesture.currentGestureCoords[0].setAxisValue( |
| 4873 | AMOTION_EVENT_AXIS_PRESSURE, 1.0f); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4874 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4875 | tapped = true; |
| 4876 | } else { |
| 4877 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4878 | ALOGD("Gestures: Not a TAP, deltaX=%f, deltaY=%f", |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4879 | x - mPointerGesture.tapX, |
| 4880 | y - mPointerGesture.tapY); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4881 | #endif |
| 4882 | } |
| 4883 | } else { |
| 4884 | #if DEBUG_GESTURES |
Michael Wright | 398d309 | 2013-07-02 17:35:00 -0700 | [diff] [blame] | 4885 | if (mPointerGesture.tapDownTime != LLONG_MIN) { |
| 4886 | ALOGD("Gestures: Not a TAP, %0.3fms since down", |
| 4887 | (when - mPointerGesture.tapDownTime) * 0.000001f); |
| 4888 | } else { |
| 4889 | ALOGD("Gestures: Not a TAP, incompatible mode transitions"); |
| 4890 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4891 | #endif |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 4892 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4893 | } |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4894 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4895 | mPointerVelocityControl.reset(); |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4896 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4897 | if (!tapped) { |
| 4898 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4899 | ALOGD("Gestures: NEUTRAL"); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4900 | #endif |
| 4901 | mPointerGesture.activeGestureId = -1; |
| 4902 | mPointerGesture.currentGestureMode = PointerGesture::NEUTRAL; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4903 | mPointerGesture.currentGestureIdBits.clear(); |
| 4904 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4905 | } else if (currentFingerCount == 1) { |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4906 | // Case 4. Exactly one finger down, button is not pressed. (HOVER or TAP_DRAG) |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4907 | // The pointer follows the active touch point. |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4908 | // When in HOVER, emit HOVER_MOVE events at the pointer location. |
| 4909 | // When in TAP_DRAG, emit MOVE events at the pointer location. |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 4910 | ALOG_ASSERT(activeTouchId >= 0); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4911 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4912 | mPointerGesture.currentGestureMode = PointerGesture::HOVER; |
| 4913 | if (mPointerGesture.lastGestureMode == PointerGesture::TAP) { |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4914 | if (when <= mPointerGesture.tapUpTime + mConfig.pointerGestureTapDragInterval) { |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4915 | float x, y; |
| 4916 | mPointerController->getPosition(&x, &y); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 4917 | if (fabs(x - mPointerGesture.tapX) <= mConfig.pointerGestureTapSlop |
| 4918 | && fabs(y - mPointerGesture.tapY) <= mConfig.pointerGestureTapSlop) { |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4919 | mPointerGesture.currentGestureMode = PointerGesture::TAP_DRAG; |
| 4920 | } else { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4921 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4922 | ALOGD("Gestures: Not a TAP_DRAG, deltaX=%f, deltaY=%f", |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4923 | x - mPointerGesture.tapX, |
| 4924 | y - mPointerGesture.tapY); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4925 | #endif |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4926 | } |
| 4927 | } else { |
| 4928 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4929 | ALOGD("Gestures: Not a TAP_DRAG, %0.3fms time since up", |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4930 | (when - mPointerGesture.tapUpTime) * 0.000001f); |
| 4931 | #endif |
| 4932 | } |
| 4933 | } else if (mPointerGesture.lastGestureMode == PointerGesture::TAP_DRAG) { |
| 4934 | mPointerGesture.currentGestureMode = PointerGesture::TAP_DRAG; |
| 4935 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4936 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4937 | if (mLastFingerIdBits.hasBit(activeTouchId)) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4938 | const RawPointerData::Pointer& currentPointer = |
| 4939 | mCurrentRawPointerData.pointerForId(activeTouchId); |
| 4940 | const RawPointerData::Pointer& lastPointer = |
| 4941 | mLastRawPointerData.pointerForId(activeTouchId); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4942 | float deltaX = (currentPointer.x - lastPointer.x) |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4943 | * mPointerXMovementScale; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4944 | float deltaY = (currentPointer.y - lastPointer.y) |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4945 | * mPointerYMovementScale; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4946 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 4947 | rotateDelta(mSurfaceOrientation, &deltaX, &deltaY); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4948 | mPointerVelocityControl.move(when, &deltaX, &deltaY); |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4949 | |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4950 | // Move the pointer using a relative motion. |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4951 | // When using spots, the hover or drag will occur at the position of the anchor spot. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4952 | mPointerController->move(deltaX, deltaY); |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 4953 | } else { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4954 | mPointerVelocityControl.reset(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4955 | } |
| 4956 | |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4957 | bool down; |
| 4958 | if (mPointerGesture.currentGestureMode == PointerGesture::TAP_DRAG) { |
| 4959 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4960 | ALOGD("Gestures: TAP_DRAG"); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4961 | #endif |
| 4962 | down = true; |
| 4963 | } else { |
| 4964 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 4965 | ALOGD("Gestures: HOVER"); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4966 | #endif |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 4967 | if (mPointerGesture.lastGestureMode != PointerGesture::HOVER) { |
| 4968 | *outFinishPreviousGesture = true; |
| 4969 | } |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4970 | mPointerGesture.activeGestureId = 0; |
| 4971 | down = false; |
| 4972 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4973 | |
| 4974 | float x, y; |
| 4975 | mPointerController->getPosition(&x, &y); |
| 4976 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4977 | mPointerGesture.currentGestureIdBits.clear(); |
| 4978 | mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId); |
| 4979 | mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 4980 | mPointerGesture.currentGestureProperties[0].clear(); |
| 4981 | mPointerGesture.currentGestureProperties[0].id = mPointerGesture.activeGestureId; |
| 4982 | mPointerGesture.currentGestureProperties[0].toolType = |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 4983 | AMOTION_EVENT_TOOL_TYPE_FINGER; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4984 | mPointerGesture.currentGestureCoords[0].clear(); |
| 4985 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 4986 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4987 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, |
| 4988 | down ? 1.0f : 0.0f); |
| 4989 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 4990 | if (lastFingerCount == 0 && currentFingerCount != 0) { |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 4991 | mPointerGesture.resetTap(); |
| 4992 | mPointerGesture.tapDownTime = when; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4993 | mPointerGesture.tapX = x; |
| 4994 | mPointerGesture.tapY = y; |
| 4995 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 4996 | } else { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 4997 | // Case 5. At least two fingers down, button is not pressed. (PRESS, SWIPE or FREEFORM) |
| 4998 | // We need to provide feedback for each finger that goes down so we cannot wait |
| 4999 | // for the fingers to move before deciding what to do. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5000 | // |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5001 | // The ambiguous case is deciding what to do when there are two fingers down but they |
| 5002 | // have not moved enough to determine whether they are part of a drag or part of a |
| 5003 | // freeform gesture, or just a press or long-press at the pointer location. |
| 5004 | // |
| 5005 | // When there are two fingers we start with the PRESS hypothesis and we generate a |
| 5006 | // down at the pointer location. |
| 5007 | // |
| 5008 | // When the two fingers move enough or when additional fingers are added, we make |
| 5009 | // a decision to transition into SWIPE or FREEFORM mode accordingly. |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 5010 | ALOG_ASSERT(activeTouchId >= 0); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5011 | |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 5012 | bool settled = when >= mPointerGesture.firstTouchTime |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 5013 | + mConfig.pointerGestureMultitouchSettleInterval; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5014 | if (mPointerGesture.lastGestureMode != PointerGesture::PRESS |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5015 | && mPointerGesture.lastGestureMode != PointerGesture::SWIPE |
| 5016 | && mPointerGesture.lastGestureMode != PointerGesture::FREEFORM) { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5017 | *outFinishPreviousGesture = true; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5018 | } else if (!settled && currentFingerCount > lastFingerCount) { |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 5019 | // Additional pointers have gone down but not yet settled. |
| 5020 | // Reset the gesture. |
| 5021 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5022 | ALOGD("Gestures: Resetting gesture since additional pointers went down for MULTITOUCH, " |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5023 | "settle time remaining %0.3fms", (mPointerGesture.firstTouchTime |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 5024 | + mConfig.pointerGestureMultitouchSettleInterval - when) |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 5025 | * 0.000001f); |
| 5026 | #endif |
| 5027 | *outCancelPreviousGesture = true; |
| 5028 | } else { |
| 5029 | // Continue previous gesture. |
| 5030 | mPointerGesture.currentGestureMode = mPointerGesture.lastGestureMode; |
| 5031 | } |
| 5032 | |
| 5033 | if (*outFinishPreviousGesture || *outCancelPreviousGesture) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5034 | mPointerGesture.currentGestureMode = PointerGesture::PRESS; |
| 5035 | mPointerGesture.activeGestureId = 0; |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 5036 | mPointerGesture.referenceIdBits.clear(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5037 | mPointerVelocityControl.reset(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5038 | |
Jeff Brown | cb5ffcf | 2011-06-06 20:03:18 -0700 | [diff] [blame] | 5039 | // Use the centroid and pointer location as the reference points for the gesture. |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5040 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5041 | ALOGD("Gestures: Using centroid as reference for MULTITOUCH, " |
Jeff Brown | cb5ffcf | 2011-06-06 20:03:18 -0700 | [diff] [blame] | 5042 | "settle time remaining %0.3fms", (mPointerGesture.firstTouchTime |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 5043 | + mConfig.pointerGestureMultitouchSettleInterval - when) |
Jeff Brown | cb5ffcf | 2011-06-06 20:03:18 -0700 | [diff] [blame] | 5044 | * 0.000001f); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5045 | #endif |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5046 | mCurrentRawPointerData.getCentroidOfTouchingPointers( |
| 5047 | &mPointerGesture.referenceTouchX, |
Jeff Brown | cb5ffcf | 2011-06-06 20:03:18 -0700 | [diff] [blame] | 5048 | &mPointerGesture.referenceTouchY); |
| 5049 | mPointerController->getPosition(&mPointerGesture.referenceGestureX, |
| 5050 | &mPointerGesture.referenceGestureY); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5051 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5052 | |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5053 | // Clear the reference deltas for fingers not yet included in the reference calculation. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5054 | for (BitSet32 idBits(mCurrentFingerIdBits.value |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5055 | & ~mPointerGesture.referenceIdBits.value); !idBits.isEmpty(); ) { |
| 5056 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5057 | mPointerGesture.referenceDeltas[id].dx = 0; |
| 5058 | mPointerGesture.referenceDeltas[id].dy = 0; |
| 5059 | } |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5060 | mPointerGesture.referenceIdBits = mCurrentFingerIdBits; |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5061 | |
| 5062 | // Add delta for all fingers and calculate a common movement delta. |
| 5063 | float commonDeltaX = 0, commonDeltaY = 0; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5064 | BitSet32 commonIdBits(mLastFingerIdBits.value |
| 5065 | & mCurrentFingerIdBits.value); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5066 | for (BitSet32 idBits(commonIdBits); !idBits.isEmpty(); ) { |
| 5067 | bool first = (idBits == commonIdBits); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5068 | uint32_t id = idBits.clearFirstMarkedBit(); |
| 5069 | const RawPointerData::Pointer& cpd = mCurrentRawPointerData.pointerForId(id); |
| 5070 | const RawPointerData::Pointer& lpd = mLastRawPointerData.pointerForId(id); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5071 | PointerGesture::Delta& delta = mPointerGesture.referenceDeltas[id]; |
| 5072 | delta.dx += cpd.x - lpd.x; |
| 5073 | delta.dy += cpd.y - lpd.y; |
| 5074 | |
| 5075 | if (first) { |
| 5076 | commonDeltaX = delta.dx; |
| 5077 | commonDeltaY = delta.dy; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5078 | } else { |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5079 | commonDeltaX = calculateCommonVector(commonDeltaX, delta.dx); |
| 5080 | commonDeltaY = calculateCommonVector(commonDeltaY, delta.dy); |
| 5081 | } |
| 5082 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5083 | |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5084 | // Consider transitions from PRESS to SWIPE or MULTITOUCH. |
| 5085 | if (mPointerGesture.currentGestureMode == PointerGesture::PRESS) { |
| 5086 | float dist[MAX_POINTER_ID + 1]; |
| 5087 | int32_t distOverThreshold = 0; |
| 5088 | for (BitSet32 idBits(mPointerGesture.referenceIdBits); !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5089 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5090 | PointerGesture::Delta& delta = mPointerGesture.referenceDeltas[id]; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5091 | dist[id] = hypotf(delta.dx * mPointerXZoomScale, |
| 5092 | delta.dy * mPointerYZoomScale); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 5093 | if (dist[id] > mConfig.pointerGestureMultitouchMinDistance) { |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5094 | distOverThreshold += 1; |
| 5095 | } |
| 5096 | } |
| 5097 | |
| 5098 | // Only transition when at least two pointers have moved further than |
| 5099 | // the minimum distance threshold. |
| 5100 | if (distOverThreshold >= 2) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5101 | if (currentFingerCount > 2) { |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5102 | // There are more than two pointers, switch to FREEFORM. |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5103 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5104 | ALOGD("Gestures: PRESS transitioned to FREEFORM, number of pointers %d > 2", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5105 | currentFingerCount); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5106 | #endif |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5107 | *outCancelPreviousGesture = true; |
| 5108 | mPointerGesture.currentGestureMode = PointerGesture::FREEFORM; |
| 5109 | } else { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5110 | // There are exactly two pointers. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5111 | BitSet32 idBits(mCurrentFingerIdBits); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5112 | uint32_t id1 = idBits.clearFirstMarkedBit(); |
| 5113 | uint32_t id2 = idBits.firstMarkedBit(); |
| 5114 | const RawPointerData::Pointer& p1 = mCurrentRawPointerData.pointerForId(id1); |
| 5115 | const RawPointerData::Pointer& p2 = mCurrentRawPointerData.pointerForId(id2); |
| 5116 | float mutualDistance = distance(p1.x, p1.y, p2.x, p2.y); |
| 5117 | if (mutualDistance > mPointerGestureMaxSwipeWidth) { |
| 5118 | // There are two pointers but they are too far apart for a SWIPE, |
| 5119 | // switch to FREEFORM. |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5120 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5121 | ALOGD("Gestures: PRESS transitioned to FREEFORM, distance %0.3f > %0.3f", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5122 | mutualDistance, mPointerGestureMaxSwipeWidth); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5123 | #endif |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5124 | *outCancelPreviousGesture = true; |
| 5125 | mPointerGesture.currentGestureMode = PointerGesture::FREEFORM; |
| 5126 | } else { |
| 5127 | // There are two pointers. Wait for both pointers to start moving |
| 5128 | // before deciding whether this is a SWIPE or FREEFORM gesture. |
| 5129 | float dist1 = dist[id1]; |
| 5130 | float dist2 = dist[id2]; |
| 5131 | if (dist1 >= mConfig.pointerGestureMultitouchMinDistance |
| 5132 | && dist2 >= mConfig.pointerGestureMultitouchMinDistance) { |
| 5133 | // Calculate the dot product of the displacement vectors. |
| 5134 | // When the vectors are oriented in approximately the same direction, |
| 5135 | // the angle betweeen them is near zero and the cosine of the angle |
| 5136 | // approches 1.0. Recall that dot(v1, v2) = cos(angle) * mag(v1) * mag(v2). |
| 5137 | PointerGesture::Delta& delta1 = mPointerGesture.referenceDeltas[id1]; |
| 5138 | PointerGesture::Delta& delta2 = mPointerGesture.referenceDeltas[id2]; |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5139 | float dx1 = delta1.dx * mPointerXZoomScale; |
| 5140 | float dy1 = delta1.dy * mPointerYZoomScale; |
| 5141 | float dx2 = delta2.dx * mPointerXZoomScale; |
| 5142 | float dy2 = delta2.dy * mPointerYZoomScale; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5143 | float dot = dx1 * dx2 + dy1 * dy2; |
| 5144 | float cosine = dot / (dist1 * dist2); // denominator always > 0 |
| 5145 | if (cosine >= mConfig.pointerGestureSwipeTransitionAngleCosine) { |
| 5146 | // Pointers are moving in the same direction. Switch to SWIPE. |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5147 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5148 | ALOGD("Gestures: PRESS transitioned to SWIPE, " |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5149 | "dist1 %0.3f >= %0.3f, dist2 %0.3f >= %0.3f, " |
| 5150 | "cosine %0.3f >= %0.3f", |
| 5151 | dist1, mConfig.pointerGestureMultitouchMinDistance, |
| 5152 | dist2, mConfig.pointerGestureMultitouchMinDistance, |
| 5153 | cosine, mConfig.pointerGestureSwipeTransitionAngleCosine); |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5154 | #endif |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5155 | mPointerGesture.currentGestureMode = PointerGesture::SWIPE; |
| 5156 | } else { |
| 5157 | // Pointers are moving in different directions. Switch to FREEFORM. |
| 5158 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5159 | ALOGD("Gestures: PRESS transitioned to FREEFORM, " |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5160 | "dist1 %0.3f >= %0.3f, dist2 %0.3f >= %0.3f, " |
| 5161 | "cosine %0.3f < %0.3f", |
| 5162 | dist1, mConfig.pointerGestureMultitouchMinDistance, |
| 5163 | dist2, mConfig.pointerGestureMultitouchMinDistance, |
| 5164 | cosine, mConfig.pointerGestureSwipeTransitionAngleCosine); |
| 5165 | #endif |
| 5166 | *outCancelPreviousGesture = true; |
| 5167 | mPointerGesture.currentGestureMode = PointerGesture::FREEFORM; |
| 5168 | } |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5169 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5170 | } |
| 5171 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5172 | } |
| 5173 | } else if (mPointerGesture.currentGestureMode == PointerGesture::SWIPE) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5174 | // Switch from SWIPE to FREEFORM if additional pointers go down. |
| 5175 | // Cancel previous gesture. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5176 | if (currentFingerCount > 2) { |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5177 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5178 | ALOGD("Gestures: SWIPE transitioned to FREEFORM, number of pointers %d > 2", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5179 | currentFingerCount); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5180 | #endif |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5181 | *outCancelPreviousGesture = true; |
| 5182 | mPointerGesture.currentGestureMode = PointerGesture::FREEFORM; |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 5183 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 5184 | } |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 5185 | |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5186 | // Move the reference points based on the overall group motion of the fingers |
| 5187 | // except in PRESS mode while waiting for a transition to occur. |
| 5188 | if (mPointerGesture.currentGestureMode != PointerGesture::PRESS |
| 5189 | && (commonDeltaX || commonDeltaY)) { |
| 5190 | for (BitSet32 idBits(mPointerGesture.referenceIdBits); !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5191 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 5192 | PointerGesture::Delta& delta = mPointerGesture.referenceDeltas[id]; |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5193 | delta.dx = 0; |
| 5194 | delta.dy = 0; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5195 | } |
| 5196 | |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5197 | mPointerGesture.referenceTouchX += commonDeltaX; |
| 5198 | mPointerGesture.referenceTouchY += commonDeltaY; |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 5199 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5200 | commonDeltaX *= mPointerXMovementScale; |
| 5201 | commonDeltaY *= mPointerYMovementScale; |
Jeff Brown | 612891e | 2011-07-15 20:44:17 -0700 | [diff] [blame] | 5202 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5203 | rotateDelta(mSurfaceOrientation, &commonDeltaX, &commonDeltaY); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5204 | mPointerVelocityControl.move(when, &commonDeltaX, &commonDeltaY); |
Jeff Brown | 538881e | 2011-05-25 18:23:38 -0700 | [diff] [blame] | 5205 | |
Jeff Brown | bb3fcba0c | 2011-06-06 19:23:05 -0700 | [diff] [blame] | 5206 | mPointerGesture.referenceGestureX += commonDeltaX; |
| 5207 | mPointerGesture.referenceGestureY += commonDeltaY; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5208 | } |
| 5209 | |
| 5210 | // Report gestures. |
Jeff Brown | 612891e | 2011-07-15 20:44:17 -0700 | [diff] [blame] | 5211 | if (mPointerGesture.currentGestureMode == PointerGesture::PRESS |
| 5212 | || mPointerGesture.currentGestureMode == PointerGesture::SWIPE) { |
| 5213 | // PRESS or SWIPE mode. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5214 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5215 | ALOGD("Gestures: PRESS or SWIPE activeTouchId=%d," |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5216 | "activeGestureId=%d, currentTouchPointerCount=%d", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5217 | activeTouchId, mPointerGesture.activeGestureId, currentFingerCount); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5218 | #endif |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 5219 | ALOG_ASSERT(mPointerGesture.activeGestureId >= 0); |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5220 | |
| 5221 | mPointerGesture.currentGestureIdBits.clear(); |
| 5222 | mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId); |
| 5223 | mPointerGesture.currentGestureIdToIndex[mPointerGesture.activeGestureId] = 0; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5224 | mPointerGesture.currentGestureProperties[0].clear(); |
| 5225 | mPointerGesture.currentGestureProperties[0].id = mPointerGesture.activeGestureId; |
| 5226 | mPointerGesture.currentGestureProperties[0].toolType = |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 5227 | AMOTION_EVENT_TOOL_TYPE_FINGER; |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5228 | mPointerGesture.currentGestureCoords[0].clear(); |
| 5229 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, |
| 5230 | mPointerGesture.referenceGestureX); |
| 5231 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, |
| 5232 | mPointerGesture.referenceGestureY); |
| 5233 | mPointerGesture.currentGestureCoords[0].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, 1.0f); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5234 | } else if (mPointerGesture.currentGestureMode == PointerGesture::FREEFORM) { |
| 5235 | // FREEFORM mode. |
| 5236 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5237 | ALOGD("Gestures: FREEFORM activeTouchId=%d," |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5238 | "activeGestureId=%d, currentTouchPointerCount=%d", |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5239 | activeTouchId, mPointerGesture.activeGestureId, currentFingerCount); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5240 | #endif |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 5241 | ALOG_ASSERT(mPointerGesture.activeGestureId >= 0); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5242 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5243 | mPointerGesture.currentGestureIdBits.clear(); |
| 5244 | |
| 5245 | BitSet32 mappedTouchIdBits; |
| 5246 | BitSet32 usedGestureIdBits; |
| 5247 | if (mPointerGesture.lastGestureMode != PointerGesture::FREEFORM) { |
| 5248 | // Initially, assign the active gesture id to the active touch point |
| 5249 | // if there is one. No other touch id bits are mapped yet. |
| 5250 | if (!*outCancelPreviousGesture) { |
| 5251 | mappedTouchIdBits.markBit(activeTouchId); |
| 5252 | usedGestureIdBits.markBit(mPointerGesture.activeGestureId); |
| 5253 | mPointerGesture.freeformTouchToGestureIdMap[activeTouchId] = |
| 5254 | mPointerGesture.activeGestureId; |
| 5255 | } else { |
| 5256 | mPointerGesture.activeGestureId = -1; |
| 5257 | } |
| 5258 | } else { |
| 5259 | // Otherwise, assume we mapped all touches from the previous frame. |
| 5260 | // Reuse all mappings that are still applicable. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5261 | mappedTouchIdBits.value = mLastFingerIdBits.value |
| 5262 | & mCurrentFingerIdBits.value; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5263 | usedGestureIdBits = mPointerGesture.lastGestureIdBits; |
| 5264 | |
| 5265 | // Check whether we need to choose a new active gesture id because the |
| 5266 | // current went went up. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5267 | for (BitSet32 upTouchIdBits(mLastFingerIdBits.value |
| 5268 | & ~mCurrentFingerIdBits.value); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5269 | !upTouchIdBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5270 | uint32_t upTouchId = upTouchIdBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5271 | uint32_t upGestureId = mPointerGesture.freeformTouchToGestureIdMap[upTouchId]; |
| 5272 | if (upGestureId == uint32_t(mPointerGesture.activeGestureId)) { |
| 5273 | mPointerGesture.activeGestureId = -1; |
| 5274 | break; |
| 5275 | } |
| 5276 | } |
| 5277 | } |
| 5278 | |
| 5279 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5280 | ALOGD("Gestures: FREEFORM follow up " |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5281 | "mappedTouchIdBits=0x%08x, usedGestureIdBits=0x%08x, " |
| 5282 | "activeGestureId=%d", |
| 5283 | mappedTouchIdBits.value, usedGestureIdBits.value, |
| 5284 | mPointerGesture.activeGestureId); |
| 5285 | #endif |
| 5286 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5287 | BitSet32 idBits(mCurrentFingerIdBits); |
| 5288 | for (uint32_t i = 0; i < currentFingerCount; i++) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5289 | uint32_t touchId = idBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5290 | uint32_t gestureId; |
| 5291 | if (!mappedTouchIdBits.hasBit(touchId)) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5292 | gestureId = usedGestureIdBits.markFirstUnmarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5293 | mPointerGesture.freeformTouchToGestureIdMap[touchId] = gestureId; |
| 5294 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5295 | ALOGD("Gestures: FREEFORM " |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5296 | "new mapping for touch id %d -> gesture id %d", |
| 5297 | touchId, gestureId); |
| 5298 | #endif |
| 5299 | } else { |
| 5300 | gestureId = mPointerGesture.freeformTouchToGestureIdMap[touchId]; |
| 5301 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5302 | ALOGD("Gestures: FREEFORM " |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5303 | "existing mapping for touch id %d -> gesture id %d", |
| 5304 | touchId, gestureId); |
| 5305 | #endif |
| 5306 | } |
| 5307 | mPointerGesture.currentGestureIdBits.markBit(gestureId); |
| 5308 | mPointerGesture.currentGestureIdToIndex[gestureId] = i; |
| 5309 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5310 | const RawPointerData::Pointer& pointer = |
| 5311 | mCurrentRawPointerData.pointerForId(touchId); |
| 5312 | float deltaX = (pointer.x - mPointerGesture.referenceTouchX) |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5313 | * mPointerXZoomScale; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5314 | float deltaY = (pointer.y - mPointerGesture.referenceTouchY) |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5315 | * mPointerYZoomScale; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5316 | rotateDelta(mSurfaceOrientation, &deltaX, &deltaY); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5317 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5318 | mPointerGesture.currentGestureProperties[i].clear(); |
| 5319 | mPointerGesture.currentGestureProperties[i].id = gestureId; |
| 5320 | mPointerGesture.currentGestureProperties[i].toolType = |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 5321 | AMOTION_EVENT_TOOL_TYPE_FINGER; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5322 | mPointerGesture.currentGestureCoords[i].clear(); |
| 5323 | mPointerGesture.currentGestureCoords[i].setAxisValue( |
Jeff Brown | 612891e | 2011-07-15 20:44:17 -0700 | [diff] [blame] | 5324 | AMOTION_EVENT_AXIS_X, mPointerGesture.referenceGestureX + deltaX); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5325 | mPointerGesture.currentGestureCoords[i].setAxisValue( |
Jeff Brown | 612891e | 2011-07-15 20:44:17 -0700 | [diff] [blame] | 5326 | AMOTION_EVENT_AXIS_Y, mPointerGesture.referenceGestureY + deltaY); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5327 | mPointerGesture.currentGestureCoords[i].setAxisValue( |
| 5328 | AMOTION_EVENT_AXIS_PRESSURE, 1.0f); |
| 5329 | } |
| 5330 | |
| 5331 | if (mPointerGesture.activeGestureId < 0) { |
| 5332 | mPointerGesture.activeGestureId = |
| 5333 | mPointerGesture.currentGestureIdBits.firstMarkedBit(); |
| 5334 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5335 | ALOGD("Gestures: FREEFORM new " |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5336 | "activeGestureId=%d", mPointerGesture.activeGestureId); |
| 5337 | #endif |
| 5338 | } |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5339 | } |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5340 | } |
| 5341 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5342 | mPointerController->setButtonState(mCurrentButtonState); |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5343 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5344 | #if DEBUG_GESTURES |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5345 | ALOGD("Gestures: finishPreviousGesture=%s, cancelPreviousGesture=%s, " |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5346 | "currentGestureMode=%d, currentGestureIdBits=0x%08x, " |
| 5347 | "lastGestureMode=%d, lastGestureIdBits=0x%08x", |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5348 | toString(*outFinishPreviousGesture), toString(*outCancelPreviousGesture), |
Jeff Brown | 2352b97 | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 5349 | mPointerGesture.currentGestureMode, mPointerGesture.currentGestureIdBits.value, |
| 5350 | mPointerGesture.lastGestureMode, mPointerGesture.lastGestureIdBits.value); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5351 | for (BitSet32 idBits = mPointerGesture.currentGestureIdBits; !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5352 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5353 | uint32_t index = mPointerGesture.currentGestureIdToIndex[id]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5354 | const PointerProperties& properties = mPointerGesture.currentGestureProperties[index]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5355 | const PointerCoords& coords = mPointerGesture.currentGestureCoords[index]; |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5356 | ALOGD(" currentGesture[%d]: index=%d, toolType=%d, " |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5357 | "x=%0.3f, y=%0.3f, pressure=%0.3f", |
| 5358 | id, index, properties.toolType, |
| 5359 | coords.getAxisValue(AMOTION_EVENT_AXIS_X), |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5360 | coords.getAxisValue(AMOTION_EVENT_AXIS_Y), |
| 5361 | coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE)); |
| 5362 | } |
| 5363 | for (BitSet32 idBits = mPointerGesture.lastGestureIdBits; !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5364 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5365 | uint32_t index = mPointerGesture.lastGestureIdToIndex[id]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5366 | const PointerProperties& properties = mPointerGesture.lastGestureProperties[index]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5367 | const PointerCoords& coords = mPointerGesture.lastGestureCoords[index]; |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5368 | ALOGD(" lastGesture[%d]: index=%d, toolType=%d, " |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5369 | "x=%0.3f, y=%0.3f, pressure=%0.3f", |
| 5370 | id, index, properties.toolType, |
| 5371 | coords.getAxisValue(AMOTION_EVENT_AXIS_X), |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5372 | coords.getAxisValue(AMOTION_EVENT_AXIS_Y), |
| 5373 | coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE)); |
| 5374 | } |
| 5375 | #endif |
Jeff Brown | 79ac969 | 2011-04-19 21:20:10 -0700 | [diff] [blame] | 5376 | return true; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5377 | } |
| 5378 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5379 | void TouchInputMapper::dispatchPointerStylus(nsecs_t when, uint32_t policyFlags) { |
| 5380 | mPointerSimple.currentCoords.clear(); |
| 5381 | mPointerSimple.currentProperties.clear(); |
| 5382 | |
| 5383 | bool down, hovering; |
| 5384 | if (!mCurrentStylusIdBits.isEmpty()) { |
| 5385 | uint32_t id = mCurrentStylusIdBits.firstMarkedBit(); |
| 5386 | uint32_t index = mCurrentCookedPointerData.idToIndex[id]; |
| 5387 | float x = mCurrentCookedPointerData.pointerCoords[index].getX(); |
| 5388 | float y = mCurrentCookedPointerData.pointerCoords[index].getY(); |
| 5389 | mPointerController->setPosition(x, y); |
| 5390 | |
| 5391 | hovering = mCurrentCookedPointerData.hoveringIdBits.hasBit(id); |
| 5392 | down = !hovering; |
| 5393 | |
| 5394 | mPointerController->getPosition(&x, &y); |
| 5395 | mPointerSimple.currentCoords.copyFrom(mCurrentCookedPointerData.pointerCoords[index]); |
| 5396 | mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 5397 | mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
| 5398 | mPointerSimple.currentProperties.id = 0; |
| 5399 | mPointerSimple.currentProperties.toolType = |
| 5400 | mCurrentCookedPointerData.pointerProperties[index].toolType; |
| 5401 | } else { |
| 5402 | down = false; |
| 5403 | hovering = false; |
| 5404 | } |
| 5405 | |
| 5406 | dispatchPointerSimple(when, policyFlags, down, hovering); |
| 5407 | } |
| 5408 | |
| 5409 | void TouchInputMapper::abortPointerStylus(nsecs_t when, uint32_t policyFlags) { |
| 5410 | abortPointerSimple(when, policyFlags); |
| 5411 | } |
| 5412 | |
| 5413 | void TouchInputMapper::dispatchPointerMouse(nsecs_t when, uint32_t policyFlags) { |
| 5414 | mPointerSimple.currentCoords.clear(); |
| 5415 | mPointerSimple.currentProperties.clear(); |
| 5416 | |
| 5417 | bool down, hovering; |
| 5418 | if (!mCurrentMouseIdBits.isEmpty()) { |
| 5419 | uint32_t id = mCurrentMouseIdBits.firstMarkedBit(); |
| 5420 | uint32_t currentIndex = mCurrentRawPointerData.idToIndex[id]; |
| 5421 | if (mLastMouseIdBits.hasBit(id)) { |
| 5422 | uint32_t lastIndex = mCurrentRawPointerData.idToIndex[id]; |
| 5423 | float deltaX = (mCurrentRawPointerData.pointers[currentIndex].x |
| 5424 | - mLastRawPointerData.pointers[lastIndex].x) |
| 5425 | * mPointerXMovementScale; |
| 5426 | float deltaY = (mCurrentRawPointerData.pointers[currentIndex].y |
| 5427 | - mLastRawPointerData.pointers[lastIndex].y) |
| 5428 | * mPointerYMovementScale; |
| 5429 | |
| 5430 | rotateDelta(mSurfaceOrientation, &deltaX, &deltaY); |
| 5431 | mPointerVelocityControl.move(when, &deltaX, &deltaY); |
| 5432 | |
| 5433 | mPointerController->move(deltaX, deltaY); |
| 5434 | } else { |
| 5435 | mPointerVelocityControl.reset(); |
| 5436 | } |
| 5437 | |
| 5438 | down = isPointerDown(mCurrentButtonState); |
| 5439 | hovering = !down; |
| 5440 | |
| 5441 | float x, y; |
| 5442 | mPointerController->getPosition(&x, &y); |
| 5443 | mPointerSimple.currentCoords.copyFrom( |
| 5444 | mCurrentCookedPointerData.pointerCoords[currentIndex]); |
| 5445 | mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_X, x); |
| 5446 | mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_Y, y); |
| 5447 | mPointerSimple.currentCoords.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, |
| 5448 | hovering ? 0.0f : 1.0f); |
| 5449 | mPointerSimple.currentProperties.id = 0; |
| 5450 | mPointerSimple.currentProperties.toolType = |
| 5451 | mCurrentCookedPointerData.pointerProperties[currentIndex].toolType; |
| 5452 | } else { |
| 5453 | mPointerVelocityControl.reset(); |
| 5454 | |
| 5455 | down = false; |
| 5456 | hovering = false; |
| 5457 | } |
| 5458 | |
| 5459 | dispatchPointerSimple(when, policyFlags, down, hovering); |
| 5460 | } |
| 5461 | |
| 5462 | void TouchInputMapper::abortPointerMouse(nsecs_t when, uint32_t policyFlags) { |
| 5463 | abortPointerSimple(when, policyFlags); |
| 5464 | |
| 5465 | mPointerVelocityControl.reset(); |
| 5466 | } |
| 5467 | |
| 5468 | void TouchInputMapper::dispatchPointerSimple(nsecs_t when, uint32_t policyFlags, |
| 5469 | bool down, bool hovering) { |
| 5470 | int32_t metaState = getContext()->getGlobalMetaState(); |
| 5471 | |
| 5472 | if (mPointerController != NULL) { |
| 5473 | if (down || hovering) { |
| 5474 | mPointerController->setPresentation(PointerControllerInterface::PRESENTATION_POINTER); |
| 5475 | mPointerController->clearSpots(); |
| 5476 | mPointerController->setButtonState(mCurrentButtonState); |
| 5477 | mPointerController->unfade(PointerControllerInterface::TRANSITION_IMMEDIATE); |
| 5478 | } else if (!down && !hovering && (mPointerSimple.down || mPointerSimple.hovering)) { |
| 5479 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 5480 | } |
| 5481 | } |
| 5482 | |
| 5483 | if (mPointerSimple.down && !down) { |
| 5484 | mPointerSimple.down = false; |
| 5485 | |
| 5486 | // Send up. |
| 5487 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5488 | AMOTION_EVENT_ACTION_UP, 0, metaState, mLastButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5489 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5490 | 1, &mPointerSimple.lastProperties, &mPointerSimple.lastCoords, |
| 5491 | mOrientedXPrecision, mOrientedYPrecision, |
| 5492 | mPointerSimple.downTime); |
| 5493 | getListener()->notifyMotion(&args); |
| 5494 | } |
| 5495 | |
| 5496 | if (mPointerSimple.hovering && !hovering) { |
| 5497 | mPointerSimple.hovering = false; |
| 5498 | |
| 5499 | // Send hover exit. |
| 5500 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5501 | AMOTION_EVENT_ACTION_HOVER_EXIT, 0, metaState, mLastButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5502 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5503 | 1, &mPointerSimple.lastProperties, &mPointerSimple.lastCoords, |
| 5504 | mOrientedXPrecision, mOrientedYPrecision, |
| 5505 | mPointerSimple.downTime); |
| 5506 | getListener()->notifyMotion(&args); |
| 5507 | } |
| 5508 | |
| 5509 | if (down) { |
| 5510 | if (!mPointerSimple.down) { |
| 5511 | mPointerSimple.down = true; |
| 5512 | mPointerSimple.downTime = when; |
| 5513 | |
| 5514 | // Send down. |
| 5515 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5516 | AMOTION_EVENT_ACTION_DOWN, 0, metaState, mCurrentButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5517 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5518 | 1, &mPointerSimple.currentProperties, &mPointerSimple.currentCoords, |
| 5519 | mOrientedXPrecision, mOrientedYPrecision, |
| 5520 | mPointerSimple.downTime); |
| 5521 | getListener()->notifyMotion(&args); |
| 5522 | } |
| 5523 | |
| 5524 | // Send move. |
| 5525 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5526 | AMOTION_EVENT_ACTION_MOVE, 0, metaState, mCurrentButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5527 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5528 | 1, &mPointerSimple.currentProperties, &mPointerSimple.currentCoords, |
| 5529 | mOrientedXPrecision, mOrientedYPrecision, |
| 5530 | mPointerSimple.downTime); |
| 5531 | getListener()->notifyMotion(&args); |
| 5532 | } |
| 5533 | |
| 5534 | if (hovering) { |
| 5535 | if (!mPointerSimple.hovering) { |
| 5536 | mPointerSimple.hovering = true; |
| 5537 | |
| 5538 | // Send hover enter. |
| 5539 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5540 | AMOTION_EVENT_ACTION_HOVER_ENTER, 0, metaState, mCurrentButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5541 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5542 | 1, &mPointerSimple.currentProperties, &mPointerSimple.currentCoords, |
| 5543 | mOrientedXPrecision, mOrientedYPrecision, |
| 5544 | mPointerSimple.downTime); |
| 5545 | getListener()->notifyMotion(&args); |
| 5546 | } |
| 5547 | |
| 5548 | // Send hover move. |
| 5549 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5550 | AMOTION_EVENT_ACTION_HOVER_MOVE, 0, metaState, mCurrentButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5551 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5552 | 1, &mPointerSimple.currentProperties, &mPointerSimple.currentCoords, |
| 5553 | mOrientedXPrecision, mOrientedYPrecision, |
| 5554 | mPointerSimple.downTime); |
| 5555 | getListener()->notifyMotion(&args); |
| 5556 | } |
| 5557 | |
| 5558 | if (mCurrentRawVScroll || mCurrentRawHScroll) { |
| 5559 | float vscroll = mCurrentRawVScroll; |
| 5560 | float hscroll = mCurrentRawHScroll; |
| 5561 | mWheelYVelocityControl.move(when, NULL, &vscroll); |
| 5562 | mWheelXVelocityControl.move(when, &hscroll, NULL); |
| 5563 | |
| 5564 | // Send scroll. |
| 5565 | PointerCoords pointerCoords; |
| 5566 | pointerCoords.copyFrom(mPointerSimple.currentCoords); |
| 5567 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll); |
| 5568 | pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_HSCROLL, hscroll); |
| 5569 | |
| 5570 | NotifyMotionArgs args(when, getDeviceId(), mSource, policyFlags, |
| 5571 | AMOTION_EVENT_ACTION_SCROLL, 0, metaState, mCurrentButtonState, 0, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5572 | mViewport.displayId, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5573 | 1, &mPointerSimple.currentProperties, &pointerCoords, |
| 5574 | mOrientedXPrecision, mOrientedYPrecision, |
| 5575 | mPointerSimple.downTime); |
| 5576 | getListener()->notifyMotion(&args); |
| 5577 | } |
| 5578 | |
| 5579 | // Save state. |
| 5580 | if (down || hovering) { |
| 5581 | mPointerSimple.lastCoords.copyFrom(mPointerSimple.currentCoords); |
| 5582 | mPointerSimple.lastProperties.copyFrom(mPointerSimple.currentProperties); |
| 5583 | } else { |
| 5584 | mPointerSimple.reset(); |
| 5585 | } |
| 5586 | } |
| 5587 | |
| 5588 | void TouchInputMapper::abortPointerSimple(nsecs_t when, uint32_t policyFlags) { |
| 5589 | mPointerSimple.currentCoords.clear(); |
| 5590 | mPointerSimple.currentProperties.clear(); |
| 5591 | |
| 5592 | dispatchPointerSimple(when, policyFlags, false, false); |
| 5593 | } |
| 5594 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5595 | void TouchInputMapper::dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5596 | int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, |
| 5597 | const PointerProperties* properties, const PointerCoords* coords, |
| 5598 | const uint32_t* idToIndex, BitSet32 idBits, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5599 | int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime) { |
| 5600 | PointerCoords pointerCoords[MAX_POINTERS]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5601 | PointerProperties pointerProperties[MAX_POINTERS]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5602 | uint32_t pointerCount = 0; |
| 5603 | while (!idBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5604 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5605 | uint32_t index = idToIndex[id]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5606 | pointerProperties[pointerCount].copyFrom(properties[index]); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5607 | pointerCoords[pointerCount].copyFrom(coords[index]); |
| 5608 | |
| 5609 | if (changedId >= 0 && id == uint32_t(changedId)) { |
| 5610 | action |= pointerCount << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; |
| 5611 | } |
| 5612 | |
| 5613 | pointerCount += 1; |
| 5614 | } |
| 5615 | |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 5616 | ALOG_ASSERT(pointerCount != 0); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5617 | |
| 5618 | if (changedId >= 0 && pointerCount == 1) { |
| 5619 | // Replace initial down and final up action. |
| 5620 | // We can compare the action without masking off the changed pointer index |
| 5621 | // because we know the index is 0. |
| 5622 | if (action == AMOTION_EVENT_ACTION_POINTER_DOWN) { |
| 5623 | action = AMOTION_EVENT_ACTION_DOWN; |
| 5624 | } else if (action == AMOTION_EVENT_ACTION_POINTER_UP) { |
| 5625 | action = AMOTION_EVENT_ACTION_UP; |
| 5626 | } else { |
| 5627 | // Can't happen. |
Steve Block | ec193de | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 5628 | ALOG_ASSERT(false); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5629 | } |
| 5630 | } |
| 5631 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5632 | NotifyMotionArgs args(when, getDeviceId(), source, policyFlags, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5633 | action, flags, metaState, buttonState, edgeFlags, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 5634 | mViewport.displayId, pointerCount, pointerProperties, pointerCoords, |
| 5635 | xPrecision, yPrecision, downTime); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5636 | getListener()->notifyMotion(&args); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5637 | } |
| 5638 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5639 | bool TouchInputMapper::updateMovedPointers(const PointerProperties* inProperties, |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5640 | const PointerCoords* inCoords, const uint32_t* inIdToIndex, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5641 | PointerProperties* outProperties, PointerCoords* outCoords, const uint32_t* outIdToIndex, |
| 5642 | BitSet32 idBits) const { |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5643 | bool changed = false; |
| 5644 | while (!idBits.isEmpty()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5645 | uint32_t id = idBits.clearFirstMarkedBit(); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5646 | uint32_t inIndex = inIdToIndex[id]; |
| 5647 | uint32_t outIndex = outIdToIndex[id]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5648 | |
| 5649 | const PointerProperties& curInProperties = inProperties[inIndex]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5650 | const PointerCoords& curInCoords = inCoords[inIndex]; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5651 | PointerProperties& curOutProperties = outProperties[outIndex]; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5652 | PointerCoords& curOutCoords = outCoords[outIndex]; |
| 5653 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 5654 | if (curInProperties != curOutProperties) { |
| 5655 | curOutProperties.copyFrom(curInProperties); |
| 5656 | changed = true; |
| 5657 | } |
| 5658 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 5659 | if (curInCoords != curOutCoords) { |
| 5660 | curOutCoords.copyFrom(curInCoords); |
| 5661 | changed = true; |
| 5662 | } |
| 5663 | } |
| 5664 | return changed; |
| 5665 | } |
| 5666 | |
| 5667 | void TouchInputMapper::fadePointer() { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5668 | if (mPointerController != NULL) { |
| 5669 | mPointerController->fade(PointerControllerInterface::TRANSITION_GRADUAL); |
| 5670 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 5671 | } |
| 5672 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5673 | bool TouchInputMapper::isPointInsideSurface(int32_t x, int32_t y) { |
| 5674 | return x >= mRawPointerAxes.x.minValue && x <= mRawPointerAxes.x.maxValue |
| 5675 | && y >= mRawPointerAxes.y.minValue && y <= mRawPointerAxes.y.maxValue; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5676 | } |
| 5677 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5678 | const TouchInputMapper::VirtualKey* TouchInputMapper::findVirtualKeyHit( |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 5679 | int32_t x, int32_t y) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5680 | size_t numVirtualKeys = mVirtualKeys.size(); |
Jeff Brown | 6328cdc | 2010-07-29 18:18:33 -0700 | [diff] [blame] | 5681 | for (size_t i = 0; i < numVirtualKeys; i++) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5682 | const VirtualKey& virtualKey = mVirtualKeys[i]; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5683 | |
| 5684 | #if DEBUG_VIRTUAL_KEYS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5685 | ALOGD("VirtualKeys: Hit test (%d, %d): keyCode=%d, scanCode=%d, " |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5686 | "left=%d, top=%d, right=%d, bottom=%d", |
| 5687 | x, y, |
| 5688 | virtualKey.keyCode, virtualKey.scanCode, |
| 5689 | virtualKey.hitLeft, virtualKey.hitTop, |
| 5690 | virtualKey.hitRight, virtualKey.hitBottom); |
| 5691 | #endif |
| 5692 | |
| 5693 | if (virtualKey.isHit(x, y)) { |
| 5694 | return & virtualKey; |
| 5695 | } |
| 5696 | } |
| 5697 | |
| 5698 | return NULL; |
| 5699 | } |
| 5700 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5701 | void TouchInputMapper::assignPointerIds() { |
| 5702 | uint32_t currentPointerCount = mCurrentRawPointerData.pointerCount; |
| 5703 | uint32_t lastPointerCount = mLastRawPointerData.pointerCount; |
| 5704 | |
| 5705 | mCurrentRawPointerData.clearIdBits(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5706 | |
| 5707 | if (currentPointerCount == 0) { |
| 5708 | // No pointers to assign. |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5709 | return; |
| 5710 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5711 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5712 | if (lastPointerCount == 0) { |
| 5713 | // All pointers are new. |
| 5714 | for (uint32_t i = 0; i < currentPointerCount; i++) { |
| 5715 | uint32_t id = i; |
| 5716 | mCurrentRawPointerData.pointers[i].id = id; |
| 5717 | mCurrentRawPointerData.idToIndex[id] = i; |
| 5718 | mCurrentRawPointerData.markIdBit(id, mCurrentRawPointerData.isHovering(i)); |
| 5719 | } |
| 5720 | return; |
| 5721 | } |
| 5722 | |
| 5723 | if (currentPointerCount == 1 && lastPointerCount == 1 |
| 5724 | && mCurrentRawPointerData.pointers[0].toolType |
| 5725 | == mLastRawPointerData.pointers[0].toolType) { |
| 5726 | // Only one pointer and no change in count so it must have the same id as before. |
| 5727 | uint32_t id = mLastRawPointerData.pointers[0].id; |
| 5728 | mCurrentRawPointerData.pointers[0].id = id; |
| 5729 | mCurrentRawPointerData.idToIndex[id] = 0; |
| 5730 | mCurrentRawPointerData.markIdBit(id, mCurrentRawPointerData.isHovering(0)); |
| 5731 | return; |
| 5732 | } |
| 5733 | |
| 5734 | // General case. |
| 5735 | // We build a heap of squared euclidean distances between current and last pointers |
| 5736 | // associated with the current and last pointer indices. Then, we find the best |
| 5737 | // match (by distance) for each current pointer. |
| 5738 | // The pointers must have the same tool type but it is possible for them to |
| 5739 | // transition from hovering to touching or vice-versa while retaining the same id. |
| 5740 | PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; |
| 5741 | |
| 5742 | uint32_t heapSize = 0; |
| 5743 | for (uint32_t currentPointerIndex = 0; currentPointerIndex < currentPointerCount; |
| 5744 | currentPointerIndex++) { |
| 5745 | for (uint32_t lastPointerIndex = 0; lastPointerIndex < lastPointerCount; |
| 5746 | lastPointerIndex++) { |
| 5747 | const RawPointerData::Pointer& currentPointer = |
| 5748 | mCurrentRawPointerData.pointers[currentPointerIndex]; |
| 5749 | const RawPointerData::Pointer& lastPointer = |
| 5750 | mLastRawPointerData.pointers[lastPointerIndex]; |
| 5751 | if (currentPointer.toolType == lastPointer.toolType) { |
| 5752 | int64_t deltaX = currentPointer.x - lastPointer.x; |
| 5753 | int64_t deltaY = currentPointer.y - lastPointer.y; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5754 | |
| 5755 | uint64_t distance = uint64_t(deltaX * deltaX + deltaY * deltaY); |
| 5756 | |
| 5757 | // Insert new element into the heap (sift up). |
| 5758 | heap[heapSize].currentPointerIndex = currentPointerIndex; |
| 5759 | heap[heapSize].lastPointerIndex = lastPointerIndex; |
| 5760 | heap[heapSize].distance = distance; |
| 5761 | heapSize += 1; |
| 5762 | } |
| 5763 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5764 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5765 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5766 | // Heapify |
| 5767 | for (uint32_t startIndex = heapSize / 2; startIndex != 0; ) { |
| 5768 | startIndex -= 1; |
| 5769 | for (uint32_t parentIndex = startIndex; ;) { |
| 5770 | uint32_t childIndex = parentIndex * 2 + 1; |
| 5771 | if (childIndex >= heapSize) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5772 | break; |
| 5773 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5774 | |
| 5775 | if (childIndex + 1 < heapSize |
| 5776 | && heap[childIndex + 1].distance < heap[childIndex].distance) { |
| 5777 | childIndex += 1; |
| 5778 | } |
| 5779 | |
| 5780 | if (heap[parentIndex].distance <= heap[childIndex].distance) { |
| 5781 | break; |
| 5782 | } |
| 5783 | |
| 5784 | swap(heap[parentIndex], heap[childIndex]); |
| 5785 | parentIndex = childIndex; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5786 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5787 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5788 | |
| 5789 | #if DEBUG_POINTER_ASSIGNMENT |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5790 | ALOGD("assignPointerIds - initial distance min-heap: size=%d", heapSize); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5791 | for (size_t i = 0; i < heapSize; i++) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5792 | ALOGD(" heap[%d]: cur=%d, last=%d, distance=%lld", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5793 | i, heap[i].currentPointerIndex, heap[i].lastPointerIndex, |
| 5794 | heap[i].distance); |
| 5795 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5796 | #endif |
| 5797 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5798 | // Pull matches out by increasing order of distance. |
| 5799 | // To avoid reassigning pointers that have already been matched, the loop keeps track |
| 5800 | // of which last and current pointers have been matched using the matchedXXXBits variables. |
| 5801 | // It also tracks the used pointer id bits. |
| 5802 | BitSet32 matchedLastBits(0); |
| 5803 | BitSet32 matchedCurrentBits(0); |
| 5804 | BitSet32 usedIdBits(0); |
| 5805 | bool first = true; |
| 5806 | for (uint32_t i = min(currentPointerCount, lastPointerCount); heapSize > 0 && i > 0; i--) { |
| 5807 | while (heapSize > 0) { |
| 5808 | if (first) { |
| 5809 | // The first time through the loop, we just consume the root element of |
| 5810 | // the heap (the one with smallest distance). |
| 5811 | first = false; |
| 5812 | } else { |
| 5813 | // Previous iterations consumed the root element of the heap. |
| 5814 | // Pop root element off of the heap (sift down). |
| 5815 | heap[0] = heap[heapSize]; |
| 5816 | for (uint32_t parentIndex = 0; ;) { |
| 5817 | uint32_t childIndex = parentIndex * 2 + 1; |
| 5818 | if (childIndex >= heapSize) { |
| 5819 | break; |
| 5820 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5821 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5822 | if (childIndex + 1 < heapSize |
| 5823 | && heap[childIndex + 1].distance < heap[childIndex].distance) { |
| 5824 | childIndex += 1; |
| 5825 | } |
| 5826 | |
| 5827 | if (heap[parentIndex].distance <= heap[childIndex].distance) { |
| 5828 | break; |
| 5829 | } |
| 5830 | |
| 5831 | swap(heap[parentIndex], heap[childIndex]); |
| 5832 | parentIndex = childIndex; |
| 5833 | } |
| 5834 | |
| 5835 | #if DEBUG_POINTER_ASSIGNMENT |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5836 | ALOGD("assignPointerIds - reduced distance min-heap: size=%d", heapSize); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5837 | for (size_t i = 0; i < heapSize; i++) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5838 | ALOGD(" heap[%d]: cur=%d, last=%d, distance=%lld", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5839 | i, heap[i].currentPointerIndex, heap[i].lastPointerIndex, |
| 5840 | heap[i].distance); |
| 5841 | } |
| 5842 | #endif |
| 5843 | } |
| 5844 | |
| 5845 | heapSize -= 1; |
| 5846 | |
| 5847 | uint32_t currentPointerIndex = heap[0].currentPointerIndex; |
| 5848 | if (matchedCurrentBits.hasBit(currentPointerIndex)) continue; // already matched |
| 5849 | |
| 5850 | uint32_t lastPointerIndex = heap[0].lastPointerIndex; |
| 5851 | if (matchedLastBits.hasBit(lastPointerIndex)) continue; // already matched |
| 5852 | |
| 5853 | matchedCurrentBits.markBit(currentPointerIndex); |
| 5854 | matchedLastBits.markBit(lastPointerIndex); |
| 5855 | |
| 5856 | uint32_t id = mLastRawPointerData.pointers[lastPointerIndex].id; |
| 5857 | mCurrentRawPointerData.pointers[currentPointerIndex].id = id; |
| 5858 | mCurrentRawPointerData.idToIndex[id] = currentPointerIndex; |
| 5859 | mCurrentRawPointerData.markIdBit(id, |
| 5860 | mCurrentRawPointerData.isHovering(currentPointerIndex)); |
| 5861 | usedIdBits.markBit(id); |
| 5862 | |
| 5863 | #if DEBUG_POINTER_ASSIGNMENT |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5864 | ALOGD("assignPointerIds - matched: cur=%d, last=%d, id=%d, distance=%lld", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5865 | lastPointerIndex, currentPointerIndex, id, heap[0].distance); |
| 5866 | #endif |
| 5867 | break; |
| 5868 | } |
| 5869 | } |
| 5870 | |
| 5871 | // Assign fresh ids to pointers that were not matched in the process. |
| 5872 | for (uint32_t i = currentPointerCount - matchedCurrentBits.count(); i != 0; i--) { |
| 5873 | uint32_t currentPointerIndex = matchedCurrentBits.markFirstUnmarkedBit(); |
| 5874 | uint32_t id = usedIdBits.markFirstUnmarkedBit(); |
| 5875 | |
| 5876 | mCurrentRawPointerData.pointers[currentPointerIndex].id = id; |
| 5877 | mCurrentRawPointerData.idToIndex[id] = currentPointerIndex; |
| 5878 | mCurrentRawPointerData.markIdBit(id, |
| 5879 | mCurrentRawPointerData.isHovering(currentPointerIndex)); |
| 5880 | |
| 5881 | #if DEBUG_POINTER_ASSIGNMENT |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 5882 | ALOGD("assignPointerIds - assigned: cur=%d, id=%d", |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5883 | currentPointerIndex, id); |
| 5884 | #endif |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5885 | } |
| 5886 | } |
| 5887 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5888 | int32_t TouchInputMapper::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5889 | if (mCurrentVirtualKey.down && mCurrentVirtualKey.keyCode == keyCode) { |
| 5890 | return AKEY_STATE_VIRTUAL; |
| 5891 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5892 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5893 | size_t numVirtualKeys = mVirtualKeys.size(); |
| 5894 | for (size_t i = 0; i < numVirtualKeys; i++) { |
| 5895 | const VirtualKey& virtualKey = mVirtualKeys[i]; |
| 5896 | if (virtualKey.keyCode == keyCode) { |
| 5897 | return AKEY_STATE_UP; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5898 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5899 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5900 | |
| 5901 | return AKEY_STATE_UNKNOWN; |
| 5902 | } |
| 5903 | |
| 5904 | int32_t TouchInputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5905 | if (mCurrentVirtualKey.down && mCurrentVirtualKey.scanCode == scanCode) { |
| 5906 | return AKEY_STATE_VIRTUAL; |
| 5907 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5908 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5909 | size_t numVirtualKeys = mVirtualKeys.size(); |
| 5910 | for (size_t i = 0; i < numVirtualKeys; i++) { |
| 5911 | const VirtualKey& virtualKey = mVirtualKeys[i]; |
| 5912 | if (virtualKey.scanCode == scanCode) { |
| 5913 | return AKEY_STATE_UP; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5914 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5915 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5916 | |
| 5917 | return AKEY_STATE_UNKNOWN; |
| 5918 | } |
| 5919 | |
| 5920 | bool TouchInputMapper::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 5921 | const int32_t* keyCodes, uint8_t* outFlags) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5922 | size_t numVirtualKeys = mVirtualKeys.size(); |
| 5923 | for (size_t i = 0; i < numVirtualKeys; i++) { |
| 5924 | const VirtualKey& virtualKey = mVirtualKeys[i]; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5925 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5926 | for (size_t i = 0; i < numCodes; i++) { |
| 5927 | if (virtualKey.keyCode == keyCodes[i]) { |
| 5928 | outFlags[i] = 1; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5929 | } |
| 5930 | } |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5931 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5932 | |
| 5933 | return true; |
| 5934 | } |
| 5935 | |
| 5936 | |
| 5937 | // --- SingleTouchInputMapper --- |
| 5938 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 5939 | SingleTouchInputMapper::SingleTouchInputMapper(InputDevice* device) : |
| 5940 | TouchInputMapper(device) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5941 | } |
| 5942 | |
| 5943 | SingleTouchInputMapper::~SingleTouchInputMapper() { |
| 5944 | } |
| 5945 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5946 | void SingleTouchInputMapper::reset(nsecs_t when) { |
| 5947 | mSingleTouchMotionAccumulator.reset(getDevice()); |
| 5948 | |
| 5949 | TouchInputMapper::reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5950 | } |
| 5951 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5952 | void SingleTouchInputMapper::process(const RawEvent* rawEvent) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5953 | TouchInputMapper::process(rawEvent); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5954 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5955 | mSingleTouchMotionAccumulator.process(rawEvent); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5956 | } |
| 5957 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5958 | void SingleTouchInputMapper::syncTouch(nsecs_t when, bool* outHavePointerIds) { |
Jeff Brown | d87c6d5 | 2011-08-10 14:55:59 -0700 | [diff] [blame] | 5959 | if (mTouchButtonAccumulator.isToolActive()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5960 | mCurrentRawPointerData.pointerCount = 1; |
| 5961 | mCurrentRawPointerData.idToIndex[0] = 0; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 5962 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5963 | bool isHovering = mTouchButtonAccumulator.getToolType() != AMOTION_EVENT_TOOL_TYPE_MOUSE |
| 5964 | && (mTouchButtonAccumulator.isHovering() |
| 5965 | || (mRawPointerAxes.pressure.valid |
| 5966 | && mSingleTouchMotionAccumulator.getAbsolutePressure() <= 0)); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5967 | mCurrentRawPointerData.markIdBit(0, isHovering); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 5968 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5969 | RawPointerData::Pointer& outPointer = mCurrentRawPointerData.pointers[0]; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 5970 | outPointer.id = 0; |
| 5971 | outPointer.x = mSingleTouchMotionAccumulator.getAbsoluteX(); |
| 5972 | outPointer.y = mSingleTouchMotionAccumulator.getAbsoluteY(); |
| 5973 | outPointer.pressure = mSingleTouchMotionAccumulator.getAbsolutePressure(); |
| 5974 | outPointer.touchMajor = 0; |
| 5975 | outPointer.touchMinor = 0; |
| 5976 | outPointer.toolMajor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); |
| 5977 | outPointer.toolMinor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); |
| 5978 | outPointer.orientation = 0; |
| 5979 | outPointer.distance = mSingleTouchMotionAccumulator.getAbsoluteDistance(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5980 | outPointer.tiltX = mSingleTouchMotionAccumulator.getAbsoluteTiltX(); |
| 5981 | outPointer.tiltY = mSingleTouchMotionAccumulator.getAbsoluteTiltY(); |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 5982 | outPointer.toolType = mTouchButtonAccumulator.getToolType(); |
| 5983 | if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { |
| 5984 | outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; |
| 5985 | } |
| 5986 | outPointer.isHovering = isHovering; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5987 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5988 | } |
| 5989 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5990 | void SingleTouchInputMapper::configureRawPointerAxes() { |
| 5991 | TouchInputMapper::configureRawPointerAxes(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 5992 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 5993 | getAbsoluteAxisInfo(ABS_X, &mRawPointerAxes.x); |
| 5994 | getAbsoluteAxisInfo(ABS_Y, &mRawPointerAxes.y); |
| 5995 | getAbsoluteAxisInfo(ABS_PRESSURE, &mRawPointerAxes.pressure); |
| 5996 | getAbsoluteAxisInfo(ABS_TOOL_WIDTH, &mRawPointerAxes.toolMajor); |
| 5997 | getAbsoluteAxisInfo(ABS_DISTANCE, &mRawPointerAxes.distance); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 5998 | getAbsoluteAxisInfo(ABS_TILT_X, &mRawPointerAxes.tiltX); |
| 5999 | getAbsoluteAxisInfo(ABS_TILT_Y, &mRawPointerAxes.tiltY); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 6000 | } |
| 6001 | |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 6002 | bool SingleTouchInputMapper::hasStylus() const { |
| 6003 | return mTouchButtonAccumulator.hasStylus(); |
| 6004 | } |
| 6005 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 6006 | |
| 6007 | // --- MultiTouchInputMapper --- |
| 6008 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 6009 | MultiTouchInputMapper::MultiTouchInputMapper(InputDevice* device) : |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6010 | TouchInputMapper(device) { |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 6011 | } |
| 6012 | |
| 6013 | MultiTouchInputMapper::~MultiTouchInputMapper() { |
| 6014 | } |
| 6015 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6016 | void MultiTouchInputMapper::reset(nsecs_t when) { |
| 6017 | mMultiTouchMotionAccumulator.reset(getDevice()); |
| 6018 | |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6019 | mPointerIdBits.clear(); |
Jeff Brown | 2717eff | 2011-06-30 23:53:07 -0700 | [diff] [blame] | 6020 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6021 | TouchInputMapper::reset(when); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 6022 | } |
| 6023 | |
| 6024 | void MultiTouchInputMapper::process(const RawEvent* rawEvent) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6025 | TouchInputMapper::process(rawEvent); |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 6026 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6027 | mMultiTouchMotionAccumulator.process(rawEvent); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 6028 | } |
| 6029 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6030 | void MultiTouchInputMapper::syncTouch(nsecs_t when, bool* outHavePointerIds) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6031 | size_t inCount = mMultiTouchMotionAccumulator.getSlotCount(); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6032 | size_t outCount = 0; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6033 | BitSet32 newPointerIdBits; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6034 | |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6035 | for (size_t inIndex = 0; inIndex < inCount; inIndex++) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6036 | const MultiTouchMotionAccumulator::Slot* inSlot = |
| 6037 | mMultiTouchMotionAccumulator.getSlot(inIndex); |
| 6038 | if (!inSlot->isInUse()) { |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6039 | continue; |
| 6040 | } |
| 6041 | |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6042 | if (outCount >= MAX_POINTERS) { |
| 6043 | #if DEBUG_POINTERS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 6044 | ALOGD("MultiTouch device %s emitted more than maximum of %d pointers; " |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6045 | "ignoring the rest.", |
| 6046 | getDeviceName().string(), MAX_POINTERS); |
| 6047 | #endif |
| 6048 | break; // too many fingers! |
| 6049 | } |
| 6050 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6051 | RawPointerData::Pointer& outPointer = mCurrentRawPointerData.pointers[outCount]; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6052 | outPointer.x = inSlot->getX(); |
| 6053 | outPointer.y = inSlot->getY(); |
| 6054 | outPointer.pressure = inSlot->getPressure(); |
| 6055 | outPointer.touchMajor = inSlot->getTouchMajor(); |
| 6056 | outPointer.touchMinor = inSlot->getTouchMinor(); |
| 6057 | outPointer.toolMajor = inSlot->getToolMajor(); |
| 6058 | outPointer.toolMinor = inSlot->getToolMinor(); |
| 6059 | outPointer.orientation = inSlot->getOrientation(); |
| 6060 | outPointer.distance = inSlot->getDistance(); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6061 | outPointer.tiltX = 0; |
| 6062 | outPointer.tiltY = 0; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6063 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6064 | outPointer.toolType = inSlot->getToolType(); |
| 6065 | if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { |
| 6066 | outPointer.toolType = mTouchButtonAccumulator.getToolType(); |
| 6067 | if (outPointer.toolType == AMOTION_EVENT_TOOL_TYPE_UNKNOWN) { |
| 6068 | outPointer.toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; |
| 6069 | } |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 6070 | } |
| 6071 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6072 | bool isHovering = mTouchButtonAccumulator.getToolType() != AMOTION_EVENT_TOOL_TYPE_MOUSE |
| 6073 | && (mTouchButtonAccumulator.isHovering() |
| 6074 | || (mRawPointerAxes.pressure.valid && inSlot->getPressure() <= 0)); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6075 | outPointer.isHovering = isHovering; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 6076 | |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 6077 | // Assign pointer id using tracking id if available. |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6078 | if (*outHavePointerIds) { |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6079 | int32_t trackingId = inSlot->getTrackingId(); |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6080 | int32_t id = -1; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6081 | if (trackingId >= 0) { |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6082 | for (BitSet32 idBits(mPointerIdBits); !idBits.isEmpty(); ) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6083 | uint32_t n = idBits.clearFirstMarkedBit(); |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6084 | if (mPointerTrackingIdMap[n] == trackingId) { |
| 6085 | id = n; |
| 6086 | } |
| 6087 | } |
| 6088 | |
| 6089 | if (id < 0 && !mPointerIdBits.isFull()) { |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6090 | id = mPointerIdBits.markFirstUnmarkedBit(); |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6091 | mPointerTrackingIdMap[id] = trackingId; |
| 6092 | } |
| 6093 | } |
| 6094 | if (id < 0) { |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6095 | *outHavePointerIds = false; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6096 | mCurrentRawPointerData.clearIdBits(); |
| 6097 | newPointerIdBits.clear(); |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6098 | } else { |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6099 | outPointer.id = id; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6100 | mCurrentRawPointerData.idToIndex[id] = outCount; |
| 6101 | mCurrentRawPointerData.markIdBit(id, isHovering); |
| 6102 | newPointerIdBits.markBit(id); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6103 | } |
| 6104 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6105 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 6106 | outCount += 1; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6107 | } |
| 6108 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6109 | mCurrentRawPointerData.pointerCount = outCount; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6110 | mPointerIdBits = newPointerIdBits; |
Jeff Brown | 6894a29 | 2011-07-01 17:59:27 -0700 | [diff] [blame] | 6111 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6112 | mMultiTouchMotionAccumulator.finishSync(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6113 | } |
| 6114 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6115 | void MultiTouchInputMapper::configureRawPointerAxes() { |
| 6116 | TouchInputMapper::configureRawPointerAxes(); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6117 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6118 | getAbsoluteAxisInfo(ABS_MT_POSITION_X, &mRawPointerAxes.x); |
| 6119 | getAbsoluteAxisInfo(ABS_MT_POSITION_Y, &mRawPointerAxes.y); |
| 6120 | getAbsoluteAxisInfo(ABS_MT_TOUCH_MAJOR, &mRawPointerAxes.touchMajor); |
| 6121 | getAbsoluteAxisInfo(ABS_MT_TOUCH_MINOR, &mRawPointerAxes.touchMinor); |
| 6122 | getAbsoluteAxisInfo(ABS_MT_WIDTH_MAJOR, &mRawPointerAxes.toolMajor); |
| 6123 | getAbsoluteAxisInfo(ABS_MT_WIDTH_MINOR, &mRawPointerAxes.toolMinor); |
| 6124 | getAbsoluteAxisInfo(ABS_MT_ORIENTATION, &mRawPointerAxes.orientation); |
| 6125 | getAbsoluteAxisInfo(ABS_MT_PRESSURE, &mRawPointerAxes.pressure); |
| 6126 | getAbsoluteAxisInfo(ABS_MT_DISTANCE, &mRawPointerAxes.distance); |
| 6127 | getAbsoluteAxisInfo(ABS_MT_TRACKING_ID, &mRawPointerAxes.trackingId); |
| 6128 | getAbsoluteAxisInfo(ABS_MT_SLOT, &mRawPointerAxes.slot); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6129 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6130 | if (mRawPointerAxes.trackingId.valid |
| 6131 | && mRawPointerAxes.slot.valid |
| 6132 | && mRawPointerAxes.slot.minValue == 0 && mRawPointerAxes.slot.maxValue > 0) { |
| 6133 | size_t slotCount = mRawPointerAxes.slot.maxValue + 1; |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6134 | if (slotCount > MAX_SLOTS) { |
Steve Block | 8564c8d | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 6135 | ALOGW("MultiTouch Device %s reported %d slots but the framework " |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6136 | "only supports a maximum of %d slots at this time.", |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 6137 | getDeviceName().string(), slotCount, MAX_SLOTS); |
| 6138 | slotCount = MAX_SLOTS; |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6139 | } |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 6140 | mMultiTouchMotionAccumulator.configure(getDevice(), |
| 6141 | slotCount, true /*usingSlotsProtocol*/); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6142 | } else { |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 6143 | mMultiTouchMotionAccumulator.configure(getDevice(), |
| 6144 | MAX_POINTERS, false /*usingSlotsProtocol*/); |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 6145 | } |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 6146 | } |
| 6147 | |
Jeff Brown | 00710e9 | 2012-04-19 15:18:26 -0700 | [diff] [blame] | 6148 | bool MultiTouchInputMapper::hasStylus() const { |
| 6149 | return mMultiTouchMotionAccumulator.hasStylus() |
| 6150 | || mTouchButtonAccumulator.hasStylus(); |
| 6151 | } |
| 6152 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6153 | |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6154 | // --- JoystickInputMapper --- |
| 6155 | |
| 6156 | JoystickInputMapper::JoystickInputMapper(InputDevice* device) : |
| 6157 | InputMapper(device) { |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6158 | } |
| 6159 | |
| 6160 | JoystickInputMapper::~JoystickInputMapper() { |
| 6161 | } |
| 6162 | |
| 6163 | uint32_t JoystickInputMapper::getSources() { |
| 6164 | return AINPUT_SOURCE_JOYSTICK; |
| 6165 | } |
| 6166 | |
| 6167 | void JoystickInputMapper::populateDeviceInfo(InputDeviceInfo* info) { |
| 6168 | InputMapper::populateDeviceInfo(info); |
| 6169 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6170 | for (size_t i = 0; i < mAxes.size(); i++) { |
| 6171 | const Axis& axis = mAxes.valueAt(i); |
Michael Wright | 2b08c61 | 2013-04-24 20:05:10 -0700 | [diff] [blame] | 6172 | addMotionRange(axis.axisInfo.axis, axis, info); |
| 6173 | |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6174 | if (axis.axisInfo.mode == AxisInfo::MODE_SPLIT) { |
Michael Wright | 2b08c61 | 2013-04-24 20:05:10 -0700 | [diff] [blame] | 6175 | addMotionRange(axis.axisInfo.highAxis, axis, info); |
| 6176 | |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6177 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6178 | } |
| 6179 | } |
| 6180 | |
Michael Wright | 2b08c61 | 2013-04-24 20:05:10 -0700 | [diff] [blame] | 6181 | void JoystickInputMapper::addMotionRange(int32_t axisId, const Axis& axis, |
| 6182 | InputDeviceInfo* info) { |
| 6183 | info->addMotionRange(axisId, AINPUT_SOURCE_JOYSTICK, |
| 6184 | axis.min, axis.max, axis.flat, axis.fuzz, axis.resolution); |
| 6185 | /* In order to ease the transition for developers from using the old axes |
| 6186 | * to the newer, more semantically correct axes, we'll continue to register |
| 6187 | * the old axes as duplicates of their corresponding new ones. */ |
| 6188 | int32_t compatAxis = getCompatAxis(axisId); |
| 6189 | if (compatAxis >= 0) { |
| 6190 | info->addMotionRange(compatAxis, AINPUT_SOURCE_JOYSTICK, |
| 6191 | axis.min, axis.max, axis.flat, axis.fuzz, axis.resolution); |
| 6192 | } |
| 6193 | } |
| 6194 | |
| 6195 | /* A mapping from axes the joystick actually has to the axes that should be |
| 6196 | * artificially created for compatibility purposes. |
| 6197 | * Returns -1 if no compatibility axis is needed. */ |
| 6198 | int32_t JoystickInputMapper::getCompatAxis(int32_t axis) { |
| 6199 | switch(axis) { |
| 6200 | case AMOTION_EVENT_AXIS_LTRIGGER: |
| 6201 | return AMOTION_EVENT_AXIS_BRAKE; |
| 6202 | case AMOTION_EVENT_AXIS_RTRIGGER: |
| 6203 | return AMOTION_EVENT_AXIS_GAS; |
| 6204 | } |
| 6205 | return -1; |
| 6206 | } |
| 6207 | |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6208 | void JoystickInputMapper::dump(String8& dump) { |
| 6209 | dump.append(INDENT2 "Joystick Input Mapper:\n"); |
| 6210 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6211 | dump.append(INDENT3 "Axes:\n"); |
| 6212 | size_t numAxes = mAxes.size(); |
| 6213 | for (size_t i = 0; i < numAxes; i++) { |
| 6214 | const Axis& axis = mAxes.valueAt(i); |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6215 | const char* label = getAxisLabel(axis.axisInfo.axis); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6216 | if (label) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6217 | dump.appendFormat(INDENT4 "%s", label); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6218 | } else { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6219 | dump.appendFormat(INDENT4 "%d", axis.axisInfo.axis); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6220 | } |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6221 | if (axis.axisInfo.mode == AxisInfo::MODE_SPLIT) { |
| 6222 | label = getAxisLabel(axis.axisInfo.highAxis); |
| 6223 | if (label) { |
| 6224 | dump.appendFormat(" / %s (split at %d)", label, axis.axisInfo.splitValue); |
| 6225 | } else { |
| 6226 | dump.appendFormat(" / %d (split at %d)", axis.axisInfo.highAxis, |
| 6227 | axis.axisInfo.splitValue); |
| 6228 | } |
| 6229 | } else if (axis.axisInfo.mode == AxisInfo::MODE_INVERT) { |
| 6230 | dump.append(" (invert)"); |
| 6231 | } |
| 6232 | |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 6233 | dump.appendFormat(": min=%0.5f, max=%0.5f, flat=%0.5f, fuzz=%0.5f, resolution=%0.5f\n", |
| 6234 | axis.min, axis.max, axis.flat, axis.fuzz, axis.resolution); |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6235 | dump.appendFormat(INDENT4 " scale=%0.5f, offset=%0.5f, " |
| 6236 | "highScale=%0.5f, highOffset=%0.5f\n", |
| 6237 | axis.scale, axis.offset, axis.highScale, axis.highOffset); |
Jeff Brown | b3a2d13 | 2011-06-12 18:14:50 -0700 | [diff] [blame] | 6238 | dump.appendFormat(INDENT4 " rawAxis=%d, rawMin=%d, rawMax=%d, " |
| 6239 | "rawFlat=%d, rawFuzz=%d, rawResolution=%d\n", |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6240 | mAxes.keyAt(i), axis.rawAxisInfo.minValue, axis.rawAxisInfo.maxValue, |
Jeff Brown | b3a2d13 | 2011-06-12 18:14:50 -0700 | [diff] [blame] | 6241 | axis.rawAxisInfo.flat, axis.rawAxisInfo.fuzz, axis.rawAxisInfo.resolution); |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6242 | } |
| 6243 | } |
| 6244 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6245 | void JoystickInputMapper::configure(nsecs_t when, |
| 6246 | const InputReaderConfiguration* config, uint32_t changes) { |
| 6247 | InputMapper::configure(when, config, changes); |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6248 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6249 | if (!changes) { // first time only |
| 6250 | // Collect all axes. |
| 6251 | for (int32_t abs = 0; abs <= ABS_MAX; abs++) { |
Jeff Brown | 9ee285a | 2011-08-31 12:56:34 -0700 | [diff] [blame] | 6252 | if (!(getAbsAxisUsage(abs, getDevice()->getClasses()) |
| 6253 | & INPUT_DEVICE_CLASS_JOYSTICK)) { |
| 6254 | continue; // axis must be claimed by a different device |
| 6255 | } |
| 6256 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6257 | RawAbsoluteAxisInfo rawAxisInfo; |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6258 | getAbsoluteAxisInfo(abs, &rawAxisInfo); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6259 | if (rawAxisInfo.valid) { |
| 6260 | // Map axis. |
| 6261 | AxisInfo axisInfo; |
| 6262 | bool explicitlyMapped = !getEventHub()->mapAxis(getDeviceId(), abs, &axisInfo); |
| 6263 | if (!explicitlyMapped) { |
| 6264 | // Axis is not explicitly mapped, will choose a generic axis later. |
| 6265 | axisInfo.mode = AxisInfo::MODE_NORMAL; |
| 6266 | axisInfo.axis = -1; |
| 6267 | } |
| 6268 | |
| 6269 | // Apply flat override. |
| 6270 | int32_t rawFlat = axisInfo.flatOverride < 0 |
| 6271 | ? rawAxisInfo.flat : axisInfo.flatOverride; |
| 6272 | |
| 6273 | // Calculate scaling factors and limits. |
| 6274 | Axis axis; |
| 6275 | if (axisInfo.mode == AxisInfo::MODE_SPLIT) { |
| 6276 | float scale = 1.0f / (axisInfo.splitValue - rawAxisInfo.minValue); |
| 6277 | float highScale = 1.0f / (rawAxisInfo.maxValue - axisInfo.splitValue); |
| 6278 | axis.initialize(rawAxisInfo, axisInfo, explicitlyMapped, |
| 6279 | scale, 0.0f, highScale, 0.0f, |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 6280 | 0.0f, 1.0f, rawFlat * scale, rawAxisInfo.fuzz * scale, |
| 6281 | rawAxisInfo.resolution * scale); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6282 | } else if (isCenteredAxis(axisInfo.axis)) { |
| 6283 | float scale = 2.0f / (rawAxisInfo.maxValue - rawAxisInfo.minValue); |
| 6284 | float offset = avg(rawAxisInfo.minValue, rawAxisInfo.maxValue) * -scale; |
| 6285 | axis.initialize(rawAxisInfo, axisInfo, explicitlyMapped, |
| 6286 | scale, offset, scale, offset, |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 6287 | -1.0f, 1.0f, rawFlat * scale, rawAxisInfo.fuzz * scale, |
| 6288 | rawAxisInfo.resolution * scale); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6289 | } else { |
| 6290 | float scale = 1.0f / (rawAxisInfo.maxValue - rawAxisInfo.minValue); |
| 6291 | axis.initialize(rawAxisInfo, axisInfo, explicitlyMapped, |
| 6292 | scale, 0.0f, scale, 0.0f, |
Michael Wright | c6091c6 | 2013-04-01 20:56:04 -0700 | [diff] [blame] | 6293 | 0.0f, 1.0f, rawFlat * scale, rawAxisInfo.fuzz * scale, |
| 6294 | rawAxisInfo.resolution * scale); |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6295 | } |
| 6296 | |
| 6297 | // To eliminate noise while the joystick is at rest, filter out small variations |
| 6298 | // in axis values up front. |
| 6299 | axis.filter = axis.flat * 0.25f; |
| 6300 | |
| 6301 | mAxes.add(abs, axis); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6302 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6303 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6304 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6305 | // If there are too many axes, start dropping them. |
| 6306 | // Prefer to keep explicitly mapped axes. |
| 6307 | if (mAxes.size() > PointerCoords::MAX_AXES) { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 6308 | ALOGI("Joystick '%s' has %d axes but the framework only supports a maximum of %d.", |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6309 | getDeviceName().string(), mAxes.size(), PointerCoords::MAX_AXES); |
| 6310 | pruneAxes(true); |
| 6311 | pruneAxes(false); |
| 6312 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6313 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6314 | // Assign generic axis ids to remaining axes. |
| 6315 | int32_t nextGenericAxisId = AMOTION_EVENT_AXIS_GENERIC_1; |
| 6316 | size_t numAxes = mAxes.size(); |
| 6317 | for (size_t i = 0; i < numAxes; i++) { |
| 6318 | Axis& axis = mAxes.editValueAt(i); |
| 6319 | if (axis.axisInfo.axis < 0) { |
| 6320 | while (nextGenericAxisId <= AMOTION_EVENT_AXIS_GENERIC_16 |
| 6321 | && haveAxis(nextGenericAxisId)) { |
| 6322 | nextGenericAxisId += 1; |
| 6323 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6324 | |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6325 | if (nextGenericAxisId <= AMOTION_EVENT_AXIS_GENERIC_16) { |
| 6326 | axis.axisInfo.axis = nextGenericAxisId; |
| 6327 | nextGenericAxisId += 1; |
| 6328 | } else { |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 6329 | ALOGI("Ignoring joystick '%s' axis %d because all of the generic axis ids " |
Jeff Brown | 474dcb5 | 2011-06-14 20:22:50 -0700 | [diff] [blame] | 6330 | "have already been assigned to other axes.", |
| 6331 | getDeviceName().string(), mAxes.keyAt(i)); |
| 6332 | mAxes.removeItemsAt(i--); |
| 6333 | numAxes -= 1; |
| 6334 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6335 | } |
| 6336 | } |
| 6337 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6338 | } |
| 6339 | |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6340 | bool JoystickInputMapper::haveAxis(int32_t axisId) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6341 | size_t numAxes = mAxes.size(); |
| 6342 | for (size_t i = 0; i < numAxes; i++) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6343 | const Axis& axis = mAxes.valueAt(i); |
| 6344 | if (axis.axisInfo.axis == axisId |
| 6345 | || (axis.axisInfo.mode == AxisInfo::MODE_SPLIT |
| 6346 | && axis.axisInfo.highAxis == axisId)) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6347 | return true; |
| 6348 | } |
| 6349 | } |
| 6350 | return false; |
| 6351 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6352 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6353 | void JoystickInputMapper::pruneAxes(bool ignoreExplicitlyMappedAxes) { |
| 6354 | size_t i = mAxes.size(); |
| 6355 | while (mAxes.size() > PointerCoords::MAX_AXES && i-- > 0) { |
| 6356 | if (ignoreExplicitlyMappedAxes && mAxes.valueAt(i).explicitlyMapped) { |
| 6357 | continue; |
| 6358 | } |
Steve Block | 6215d3f | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 6359 | ALOGI("Discarding joystick '%s' axis %d because there are too many axes.", |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6360 | getDeviceName().string(), mAxes.keyAt(i)); |
| 6361 | mAxes.removeItemsAt(i); |
| 6362 | } |
| 6363 | } |
| 6364 | |
| 6365 | bool JoystickInputMapper::isCenteredAxis(int32_t axis) { |
| 6366 | switch (axis) { |
| 6367 | case AMOTION_EVENT_AXIS_X: |
| 6368 | case AMOTION_EVENT_AXIS_Y: |
| 6369 | case AMOTION_EVENT_AXIS_Z: |
| 6370 | case AMOTION_EVENT_AXIS_RX: |
| 6371 | case AMOTION_EVENT_AXIS_RY: |
| 6372 | case AMOTION_EVENT_AXIS_RZ: |
| 6373 | case AMOTION_EVENT_AXIS_HAT_X: |
| 6374 | case AMOTION_EVENT_AXIS_HAT_Y: |
| 6375 | case AMOTION_EVENT_AXIS_ORIENTATION: |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6376 | case AMOTION_EVENT_AXIS_RUDDER: |
| 6377 | case AMOTION_EVENT_AXIS_WHEEL: |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6378 | return true; |
| 6379 | default: |
| 6380 | return false; |
| 6381 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6382 | } |
| 6383 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6384 | void JoystickInputMapper::reset(nsecs_t when) { |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6385 | // Recenter all axes. |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6386 | size_t numAxes = mAxes.size(); |
| 6387 | for (size_t i = 0; i < numAxes; i++) { |
| 6388 | Axis& axis = mAxes.editValueAt(i); |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6389 | axis.resetValue(); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6390 | } |
| 6391 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 6392 | InputMapper::reset(when); |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6393 | } |
| 6394 | |
| 6395 | void JoystickInputMapper::process(const RawEvent* rawEvent) { |
| 6396 | switch (rawEvent->type) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6397 | case EV_ABS: { |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 6398 | ssize_t index = mAxes.indexOfKey(rawEvent->code); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6399 | if (index >= 0) { |
| 6400 | Axis& axis = mAxes.editValueAt(index); |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6401 | float newValue, highNewValue; |
| 6402 | switch (axis.axisInfo.mode) { |
| 6403 | case AxisInfo::MODE_INVERT: |
| 6404 | newValue = (axis.rawAxisInfo.maxValue - rawEvent->value) |
| 6405 | * axis.scale + axis.offset; |
| 6406 | highNewValue = 0.0f; |
| 6407 | break; |
| 6408 | case AxisInfo::MODE_SPLIT: |
| 6409 | if (rawEvent->value < axis.axisInfo.splitValue) { |
| 6410 | newValue = (axis.axisInfo.splitValue - rawEvent->value) |
| 6411 | * axis.scale + axis.offset; |
| 6412 | highNewValue = 0.0f; |
| 6413 | } else if (rawEvent->value > axis.axisInfo.splitValue) { |
| 6414 | newValue = 0.0f; |
| 6415 | highNewValue = (rawEvent->value - axis.axisInfo.splitValue) |
| 6416 | * axis.highScale + axis.highOffset; |
| 6417 | } else { |
| 6418 | newValue = 0.0f; |
| 6419 | highNewValue = 0.0f; |
| 6420 | } |
| 6421 | break; |
| 6422 | default: |
| 6423 | newValue = rawEvent->value * axis.scale + axis.offset; |
| 6424 | highNewValue = 0.0f; |
| 6425 | break; |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6426 | } |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6427 | axis.newValue = newValue; |
| 6428 | axis.highNewValue = highNewValue; |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6429 | } |
| 6430 | break; |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6431 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6432 | |
| 6433 | case EV_SYN: |
Jeff Brown | 49ccac5 | 2012-04-11 18:27:33 -0700 | [diff] [blame] | 6434 | switch (rawEvent->code) { |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6435 | case SYN_REPORT: |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6436 | sync(rawEvent->when, false /*force*/); |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6437 | break; |
| 6438 | } |
| 6439 | break; |
| 6440 | } |
| 6441 | } |
| 6442 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6443 | void JoystickInputMapper::sync(nsecs_t when, bool force) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6444 | if (!filterAxes(force)) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6445 | return; |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6446 | } |
| 6447 | |
| 6448 | int32_t metaState = mContext->getGlobalMetaState(); |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 6449 | int32_t buttonState = 0; |
| 6450 | |
| 6451 | PointerProperties pointerProperties; |
| 6452 | pointerProperties.clear(); |
| 6453 | pointerProperties.id = 0; |
| 6454 | pointerProperties.toolType = AMOTION_EVENT_TOOL_TYPE_UNKNOWN; |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6455 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6456 | PointerCoords pointerCoords; |
| 6457 | pointerCoords.clear(); |
| 6458 | |
| 6459 | size_t numAxes = mAxes.size(); |
| 6460 | for (size_t i = 0; i < numAxes; i++) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6461 | const Axis& axis = mAxes.valueAt(i); |
Michael Wright | 2b08c61 | 2013-04-24 20:05:10 -0700 | [diff] [blame] | 6462 | setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.axis, axis.currentValue); |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6463 | if (axis.axisInfo.mode == AxisInfo::MODE_SPLIT) { |
Michael Wright | 2b08c61 | 2013-04-24 20:05:10 -0700 | [diff] [blame] | 6464 | setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.highAxis, |
| 6465 | axis.highCurrentValue); |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6466 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6467 | } |
| 6468 | |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 6469 | // Moving a joystick axis should not wake the device because joysticks can |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 6470 | // be fairly noisy even when not in use. On the other hand, pushing a gamepad |
| 6471 | // button will likely wake the device. |
| 6472 | // TODO: Use the input device configuration to control this behavior more finely. |
| 6473 | uint32_t policyFlags = 0; |
| 6474 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6475 | NotifyMotionArgs args(when, getDeviceId(), AINPUT_SOURCE_JOYSTICK, policyFlags, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 6476 | AMOTION_EVENT_ACTION_MOVE, 0, metaState, buttonState, AMOTION_EVENT_EDGE_FLAG_NONE, |
Jeff Brown | 83d616a | 2012-09-09 20:33:43 -0700 | [diff] [blame] | 6477 | ADISPLAY_ID_NONE, 1, &pointerProperties, &pointerCoords, 0, 0, 0); |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 6478 | getListener()->notifyMotion(&args); |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6479 | } |
| 6480 | |
Michael Wright | 2b08c61 | 2013-04-24 20:05:10 -0700 | [diff] [blame] | 6481 | void JoystickInputMapper::setPointerCoordsAxisValue(PointerCoords* pointerCoords, |
| 6482 | int32_t axis, float value) { |
| 6483 | pointerCoords->setAxisValue(axis, value); |
| 6484 | /* In order to ease the transition for developers from using the old axes |
| 6485 | * to the newer, more semantically correct axes, we'll continue to produce |
| 6486 | * values for the old axes as mirrors of the value of their corresponding |
| 6487 | * new axes. */ |
| 6488 | int32_t compatAxis = getCompatAxis(axis); |
| 6489 | if (compatAxis >= 0) { |
| 6490 | pointerCoords->setAxisValue(compatAxis, value); |
| 6491 | } |
| 6492 | } |
| 6493 | |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6494 | bool JoystickInputMapper::filterAxes(bool force) { |
| 6495 | bool atLeastOneSignificantChange = force; |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6496 | size_t numAxes = mAxes.size(); |
| 6497 | for (size_t i = 0; i < numAxes; i++) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 6498 | Axis& axis = mAxes.editValueAt(i); |
| 6499 | if (force || hasValueChangedSignificantly(axis.filter, |
| 6500 | axis.newValue, axis.currentValue, axis.min, axis.max)) { |
| 6501 | axis.currentValue = axis.newValue; |
| 6502 | atLeastOneSignificantChange = true; |
| 6503 | } |
| 6504 | if (axis.axisInfo.mode == AxisInfo::MODE_SPLIT) { |
| 6505 | if (force || hasValueChangedSignificantly(axis.filter, |
| 6506 | axis.highNewValue, axis.highCurrentValue, axis.min, axis.max)) { |
| 6507 | axis.highCurrentValue = axis.highNewValue; |
| 6508 | atLeastOneSignificantChange = true; |
| 6509 | } |
| 6510 | } |
| 6511 | } |
| 6512 | return atLeastOneSignificantChange; |
| 6513 | } |
| 6514 | |
| 6515 | bool JoystickInputMapper::hasValueChangedSignificantly( |
| 6516 | float filter, float newValue, float currentValue, float min, float max) { |
| 6517 | if (newValue != currentValue) { |
| 6518 | // Filter out small changes in value unless the value is converging on the axis |
| 6519 | // bounds or center point. This is intended to reduce the amount of information |
| 6520 | // sent to applications by particularly noisy joysticks (such as PS3). |
| 6521 | if (fabs(newValue - currentValue) > filter |
| 6522 | || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min) |
| 6523 | || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max) |
| 6524 | || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) { |
| 6525 | return true; |
| 6526 | } |
| 6527 | } |
| 6528 | return false; |
| 6529 | } |
| 6530 | |
| 6531 | bool JoystickInputMapper::hasMovedNearerToValueWithinFilteredRange( |
| 6532 | float filter, float newValue, float currentValue, float thresholdValue) { |
| 6533 | float newDistance = fabs(newValue - thresholdValue); |
| 6534 | if (newDistance < filter) { |
| 6535 | float oldDistance = fabs(currentValue - thresholdValue); |
| 6536 | if (newDistance < oldDistance) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6537 | return true; |
| 6538 | } |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6539 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 6540 | return false; |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 6541 | } |
| 6542 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 6543 | } // namespace android |