Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [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 | |
| 17 | #ifndef _UI_INPUT_H |
| 18 | #define _UI_INPUT_H |
| 19 | |
| 20 | /** |
| 21 | * Native input event structures. |
| 22 | */ |
| 23 | |
| 24 | #include <android/input.h> |
| 25 | #include <utils/Vector.h> |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 26 | #include <utils/KeyedVector.h> |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 27 | #include <utils/Timers.h> |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 28 | #include <utils/RefBase.h> |
| 29 | #include <utils/String8.h> |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 30 | #include <utils/BitSet.h> |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 31 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 32 | #ifdef HAVE_ANDROID_OS |
| 33 | class SkMatrix; |
| 34 | #endif |
| 35 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Additional private constants not defined in ndk/ui/input.h. |
| 38 | */ |
| 39 | enum { |
Jeff Brown | 21bc5c9 | 2011-02-28 18:27:14 -0800 | [diff] [blame] | 40 | /* Private control to determine when an app is tracking a key sequence. */ |
| 41 | AKEY_EVENT_FLAG_START_TRACKING = 0x40000000, |
| 42 | |
| 43 | /* Key event is inconsistent with previously sent key events. */ |
| 44 | AKEY_EVENT_FLAG_TAINTED = 0x80000000, |
| 45 | }; |
| 46 | |
| 47 | enum { |
| 48 | /* Motion event is inconsistent with previously sent motion events. */ |
| 49 | AMOTION_EVENT_FLAG_TAINTED = 0x80000000, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
Jeff Brown | 89de57a | 2011-01-19 18:41:38 -0800 | [diff] [blame] | 52 | enum { |
| 53 | /* |
| 54 | * Indicates that an input device has switches. |
| 55 | * This input source flag is hidden from the API because switches are only used by the system |
| 56 | * and applications have no way to interact with them. |
| 57 | */ |
| 58 | AINPUT_SOURCE_SWITCH = 0x80000000, |
| 59 | }; |
| 60 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 61 | /* |
Jeff Brown | 05dc66a | 2011-03-02 14:41:58 -0800 | [diff] [blame] | 62 | * SystemUiVisibility constants from View. |
| 63 | */ |
| 64 | enum { |
| 65 | ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0, |
| 66 | ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001, |
| 67 | }; |
| 68 | |
| 69 | /* |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 70 | * Maximum number of pointers supported per motion event. |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 71 | * Smallest number of pointers is 1. |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 72 | * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers |
| 73 | * will occasionally emit 11. There is not much harm making this constant bigger.) |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 74 | */ |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 75 | #define MAX_POINTERS 16 |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 76 | |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 77 | /* |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 78 | * Maximum pointer id value supported in a motion event. |
| 79 | * Smallest pointer id is 0. |
| 80 | * (This is limited by our use of BitSet32 to track pointer assignments.) |
| 81 | */ |
| 82 | #define MAX_POINTER_ID 31 |
| 83 | |
| 84 | /* |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 85 | * Declare a concrete type for the NDK's input event forward declaration. |
| 86 | */ |
Dianne Hackborn | d76b67c | 2010-07-13 17:48:30 -0700 | [diff] [blame] | 87 | struct AInputEvent { |
| 88 | virtual ~AInputEvent() { } |
| 89 | }; |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 90 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 91 | /* |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 92 | * Declare a concrete type for the NDK's input device forward declaration. |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 93 | */ |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 94 | struct AInputDevice { |
| 95 | virtual ~AInputDevice() { } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 96 | }; |
| 97 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 98 | |
| 99 | namespace android { |
| 100 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 101 | #ifdef HAVE_ANDROID_OS |
| 102 | class Parcel; |
| 103 | #endif |
| 104 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 105 | /* |
| 106 | * Flags that flow alongside events in the input dispatch system to help with certain |
| 107 | * policy decisions such as waking from device sleep. |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 108 | * |
| 109 | * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java. |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 110 | */ |
| 111 | enum { |
Jeff Brown | 0eaf393 | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 112 | /* These flags originate in RawEvents and are generally set in the key map. |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 113 | * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */ |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 114 | |
| 115 | POLICY_FLAG_WAKE = 0x00000001, |
| 116 | POLICY_FLAG_WAKE_DROPPED = 0x00000002, |
| 117 | POLICY_FLAG_SHIFT = 0x00000004, |
| 118 | POLICY_FLAG_CAPS_LOCK = 0x00000008, |
| 119 | POLICY_FLAG_ALT = 0x00000010, |
| 120 | POLICY_FLAG_ALT_GR = 0x00000020, |
| 121 | POLICY_FLAG_MENU = 0x00000040, |
| 122 | POLICY_FLAG_LAUNCHER = 0x00000080, |
Jeff Brown | 0eaf393 | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 123 | POLICY_FLAG_VIRTUAL = 0x00000100, |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 124 | POLICY_FLAG_FUNCTION = 0x00000200, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 125 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 126 | POLICY_FLAG_RAW_MASK = 0x0000ffff, |
| 127 | |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 128 | /* These flags are set by the input dispatcher. */ |
| 129 | |
| 130 | // Indicates that the input event was injected. |
| 131 | POLICY_FLAG_INJECTED = 0x01000000, |
| 132 | |
Jeff Brown | e20c9e0 | 2010-10-11 14:20:19 -0700 | [diff] [blame] | 133 | // Indicates that the input event is from a trusted source such as a directly attached |
| 134 | // input device or an application with system-wide event injection permission. |
| 135 | POLICY_FLAG_TRUSTED = 0x02000000, |
| 136 | |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 137 | // Indicates that the input event has passed through an input filter. |
| 138 | POLICY_FLAG_FILTERED = 0x04000000, |
| 139 | |
| 140 | // Disables automatic key repeating behavior. |
| 141 | POLICY_FLAG_DISABLE_KEY_REPEAT = 0x08000000, |
| 142 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 143 | /* These flags are set by the input reader policy as it intercepts each event. */ |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 144 | |
| 145 | // Indicates that the screen was off when the event was received and the event |
| 146 | // should wake the device. |
| 147 | POLICY_FLAG_WOKE_HERE = 0x10000000, |
| 148 | |
| 149 | // Indicates that the screen was dim when the event was received and the event |
| 150 | // should brighten the device. |
| 151 | POLICY_FLAG_BRIGHT_HERE = 0x20000000, |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 152 | |
| 153 | // Indicates that the event should be dispatched to applications. |
| 154 | // The input event should still be sent to the InputDispatcher so that it can see all |
| 155 | // input events received include those that it will not deliver. |
| 156 | POLICY_FLAG_PASS_TO_USER = 0x40000000, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | /* |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 160 | * Describes the basic configuration of input devices that are present. |
| 161 | */ |
| 162 | struct InputConfiguration { |
| 163 | enum { |
| 164 | TOUCHSCREEN_UNDEFINED = 0, |
| 165 | TOUCHSCREEN_NOTOUCH = 1, |
| 166 | TOUCHSCREEN_STYLUS = 2, |
| 167 | TOUCHSCREEN_FINGER = 3 |
| 168 | }; |
| 169 | |
| 170 | enum { |
| 171 | KEYBOARD_UNDEFINED = 0, |
| 172 | KEYBOARD_NOKEYS = 1, |
| 173 | KEYBOARD_QWERTY = 2, |
| 174 | KEYBOARD_12KEY = 3 |
| 175 | }; |
| 176 | |
| 177 | enum { |
| 178 | NAVIGATION_UNDEFINED = 0, |
| 179 | NAVIGATION_NONAV = 1, |
| 180 | NAVIGATION_DPAD = 2, |
| 181 | NAVIGATION_TRACKBALL = 3, |
| 182 | NAVIGATION_WHEEL = 4 |
| 183 | }; |
| 184 | |
| 185 | int32_t touchScreen; |
| 186 | int32_t keyboard; |
| 187 | int32_t navigation; |
| 188 | }; |
| 189 | |
| 190 | /* |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 191 | * Pointer coordinate data. |
| 192 | */ |
| 193 | struct PointerCoords { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 194 | enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64 |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 195 | |
| 196 | // Bitfield of axes that are present in this structure. |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 197 | uint64_t bits; |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 198 | |
| 199 | // Values of axes that are stored in this structure packed in order by axis id |
| 200 | // for each axis that is present in the structure according to 'bits'. |
| 201 | float values[MAX_AXES]; |
| 202 | |
| 203 | inline void clear() { |
| 204 | bits = 0; |
| 205 | } |
| 206 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 207 | float getAxisValue(int32_t axis) const; |
| 208 | status_t setAxisValue(int32_t axis, float value); |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 209 | |
Dianne Hackborn | e2515ee | 2011-04-27 18:52:56 -0400 | [diff] [blame] | 210 | void scale(float scale); |
| 211 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 212 | inline float getX() const { |
| 213 | return getAxisValue(AMOTION_EVENT_AXIS_X); |
| 214 | } |
| 215 | |
| 216 | inline float getY() const { |
| 217 | return getAxisValue(AMOTION_EVENT_AXIS_Y); |
| 218 | } |
| 219 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 220 | #ifdef HAVE_ANDROID_OS |
| 221 | status_t readFromParcel(Parcel* parcel); |
| 222 | status_t writeToParcel(Parcel* parcel) const; |
| 223 | #endif |
| 224 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 225 | bool operator==(const PointerCoords& other) const; |
| 226 | inline bool operator!=(const PointerCoords& other) const { |
| 227 | return !(*this == other); |
| 228 | } |
| 229 | |
| 230 | void copyFrom(const PointerCoords& other); |
| 231 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 232 | private: |
| 233 | void tooManyAxes(int axis); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 234 | }; |
| 235 | |
| 236 | /* |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 237 | * Pointer property data. |
| 238 | */ |
| 239 | struct PointerProperties { |
| 240 | // The id of the pointer. |
| 241 | int32_t id; |
| 242 | |
| 243 | // The pointer tool type. |
| 244 | int32_t toolType; |
| 245 | |
| 246 | inline void clear() { |
| 247 | id = -1; |
| 248 | toolType = 0; |
| 249 | } |
| 250 | |
| 251 | bool operator==(const PointerProperties& other) const; |
| 252 | inline bool operator!=(const PointerProperties& other) const { |
| 253 | return !(*this == other); |
| 254 | } |
| 255 | |
| 256 | void copyFrom(const PointerProperties& other); |
| 257 | }; |
| 258 | |
| 259 | /* |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 260 | * Input events. |
| 261 | */ |
Dianne Hackborn | 2e9f93e | 2010-06-28 15:27:30 -0700 | [diff] [blame] | 262 | class InputEvent : public AInputEvent { |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 263 | public: |
| 264 | virtual ~InputEvent() { } |
| 265 | |
| 266 | virtual int32_t getType() const = 0; |
| 267 | |
| 268 | inline int32_t getDeviceId() const { return mDeviceId; } |
| 269 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 270 | inline int32_t getSource() const { return mSource; } |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 271 | |
| 272 | inline void setSource(int32_t source) { mSource = source; } |
| 273 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 274 | protected: |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 275 | void initialize(int32_t deviceId, int32_t source); |
Dianne Hackborn | 2c6081c | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 276 | void initialize(const InputEvent& from); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 277 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 278 | int32_t mDeviceId; |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 279 | int32_t mSource; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 280 | }; |
| 281 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 282 | /* |
| 283 | * Key events. |
| 284 | */ |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 285 | class KeyEvent : public InputEvent { |
| 286 | public: |
| 287 | virtual ~KeyEvent() { } |
| 288 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 289 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 290 | |
| 291 | inline int32_t getAction() const { return mAction; } |
| 292 | |
| 293 | inline int32_t getFlags() const { return mFlags; } |
| 294 | |
| 295 | inline int32_t getKeyCode() const { return mKeyCode; } |
| 296 | |
| 297 | inline int32_t getScanCode() const { return mScanCode; } |
| 298 | |
| 299 | inline int32_t getMetaState() const { return mMetaState; } |
| 300 | |
| 301 | inline int32_t getRepeatCount() const { return mRepeatCount; } |
| 302 | |
| 303 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 304 | |
| 305 | inline nsecs_t getEventTime() const { return mEventTime; } |
| 306 | |
Dianne Hackborn | 3c80a4a | 2010-06-29 19:20:40 -0700 | [diff] [blame] | 307 | // Return true if this event may have a default action implementation. |
| 308 | static bool hasDefaultAction(int32_t keyCode); |
| 309 | bool hasDefaultAction() const; |
| 310 | |
| 311 | // Return true if this event represents a system key. |
| 312 | static bool isSystemKey(int32_t keyCode); |
| 313 | bool isSystemKey() const; |
| 314 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 315 | void initialize( |
| 316 | int32_t deviceId, |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 317 | int32_t source, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 318 | int32_t action, |
| 319 | int32_t flags, |
| 320 | int32_t keyCode, |
| 321 | int32_t scanCode, |
| 322 | int32_t metaState, |
| 323 | int32_t repeatCount, |
| 324 | nsecs_t downTime, |
| 325 | nsecs_t eventTime); |
Dianne Hackborn | 2c6081c | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 326 | void initialize(const KeyEvent& from); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 327 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 328 | protected: |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 329 | int32_t mAction; |
| 330 | int32_t mFlags; |
| 331 | int32_t mKeyCode; |
| 332 | int32_t mScanCode; |
| 333 | int32_t mMetaState; |
| 334 | int32_t mRepeatCount; |
| 335 | nsecs_t mDownTime; |
| 336 | nsecs_t mEventTime; |
| 337 | }; |
| 338 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 339 | /* |
| 340 | * Motion events. |
| 341 | */ |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 342 | class MotionEvent : public InputEvent { |
| 343 | public: |
| 344 | virtual ~MotionEvent() { } |
| 345 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 346 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 347 | |
| 348 | inline int32_t getAction() const { return mAction; } |
| 349 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 350 | inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } |
| 351 | |
| 352 | inline int32_t getActionIndex() const { |
| 353 | return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) |
| 354 | >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; |
| 355 | } |
| 356 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 357 | inline void setAction(int32_t action) { mAction = action; } |
| 358 | |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 359 | inline int32_t getFlags() const { return mFlags; } |
| 360 | |
Jeff Brown | 21bc5c9 | 2011-02-28 18:27:14 -0800 | [diff] [blame] | 361 | inline void setFlags(int32_t flags) { mFlags = flags; } |
| 362 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 363 | inline int32_t getEdgeFlags() const { return mEdgeFlags; } |
| 364 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 365 | inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } |
| 366 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 367 | inline int32_t getMetaState() const { return mMetaState; } |
| 368 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 369 | inline void setMetaState(int32_t metaState) { mMetaState = metaState; } |
| 370 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 371 | inline int32_t getButtonState() const { return mButtonState; } |
| 372 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 373 | inline float getXOffset() const { return mXOffset; } |
| 374 | |
| 375 | inline float getYOffset() const { return mYOffset; } |
| 376 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 377 | inline float getXPrecision() const { return mXPrecision; } |
| 378 | |
| 379 | inline float getYPrecision() const { return mYPrecision; } |
| 380 | |
| 381 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 382 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 383 | inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 384 | |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 385 | inline size_t getPointerCount() const { return mPointerProperties.size(); } |
| 386 | |
| 387 | inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { |
| 388 | return &mPointerProperties[pointerIndex]; |
| 389 | } |
| 390 | |
| 391 | inline int32_t getPointerId(size_t pointerIndex) const { |
| 392 | return mPointerProperties[pointerIndex].id; |
| 393 | } |
| 394 | |
| 395 | inline int32_t getToolType(size_t pointerIndex) const { |
| 396 | return mPointerProperties[pointerIndex].toolType; |
| 397 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 398 | |
| 399 | inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; } |
| 400 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 401 | const PointerCoords* getRawPointerCoords(size_t pointerIndex) const; |
| 402 | |
| 403 | float getRawAxisValue(int32_t axis, size_t pointerIndex) const; |
| 404 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 405 | inline float getRawX(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 406 | return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 409 | inline float getRawY(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 410 | return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 413 | float getAxisValue(int32_t axis, size_t pointerIndex) const; |
| 414 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 415 | inline float getX(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 416 | return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | inline float getY(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 420 | return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 421 | } |
| 422 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 423 | inline float getPressure(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 424 | return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | inline float getSize(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 428 | return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 429 | } |
| 430 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 431 | inline float getTouchMajor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 432 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | inline float getTouchMinor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 436 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | inline float getToolMajor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 440 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | inline float getToolMinor(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 444 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | inline float getOrientation(size_t pointerIndex) const { |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 448 | return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 451 | inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; } |
| 452 | |
| 453 | inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const { |
| 454 | return mSampleEventTimes[historicalIndex]; |
| 455 | } |
| 456 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 457 | const PointerCoords* getHistoricalRawPointerCoords( |
| 458 | size_t pointerIndex, size_t historicalIndex) const; |
| 459 | |
| 460 | float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex, |
| 461 | size_t historicalIndex) const; |
| 462 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 463 | inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 464 | return getHistoricalRawAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 465 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 468 | inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 469 | return getHistoricalRawAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 470 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 471 | } |
| 472 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 473 | float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const; |
| 474 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 475 | inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 476 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 477 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 481 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 482 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 483 | } |
| 484 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 485 | inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 486 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 487 | AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 491 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 492 | AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 493 | } |
| 494 | |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 495 | inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 496 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 497 | AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 501 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 502 | AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 506 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 507 | AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 511 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 512 | AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 516 | return getHistoricalAxisValue( |
Jeff Brown | ebbd5d1 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 517 | AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 520 | ssize_t findPointerIndex(int32_t pointerId) const; |
| 521 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 522 | void initialize( |
| 523 | int32_t deviceId, |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 524 | int32_t source, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 525 | int32_t action, |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 526 | int32_t flags, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 527 | int32_t edgeFlags, |
| 528 | int32_t metaState, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 529 | int32_t buttonState, |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 530 | float xOffset, |
| 531 | float yOffset, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 532 | float xPrecision, |
| 533 | float yPrecision, |
| 534 | nsecs_t downTime, |
| 535 | nsecs_t eventTime, |
| 536 | size_t pointerCount, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 537 | const PointerProperties* pointerProperties, |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 538 | const PointerCoords* pointerCoords); |
| 539 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 540 | void copyFrom(const MotionEvent* other, bool keepHistory); |
| 541 | |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 542 | void addSample( |
| 543 | nsecs_t eventTime, |
| 544 | const PointerCoords* pointerCoords); |
| 545 | |
| 546 | void offsetLocation(float xOffset, float yOffset); |
| 547 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 548 | void scale(float scaleFactor); |
| 549 | |
| 550 | #ifdef HAVE_ANDROID_OS |
| 551 | void transform(const SkMatrix* matrix); |
| 552 | |
| 553 | status_t readFromParcel(Parcel* parcel); |
| 554 | status_t writeToParcel(Parcel* parcel) const; |
| 555 | #endif |
| 556 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 557 | static bool isTouchEvent(int32_t source, int32_t action); |
| 558 | inline bool isTouchEvent() const { |
| 559 | return isTouchEvent(mSource, mAction); |
| 560 | } |
| 561 | |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 562 | // Low-level accessors. |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 563 | inline const PointerProperties* getPointerProperties() const { |
| 564 | return mPointerProperties.array(); |
| 565 | } |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 566 | inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); } |
| 567 | inline const PointerCoords* getSamplePointerCoords() const { |
| 568 | return mSamplePointerCoords.array(); |
| 569 | } |
| 570 | |
Jeff Brown | 91c69ab | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 571 | protected: |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 572 | int32_t mAction; |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 573 | int32_t mFlags; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 574 | int32_t mEdgeFlags; |
| 575 | int32_t mMetaState; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 576 | int32_t mButtonState; |
Jeff Brown | 5c225b1 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 577 | float mXOffset; |
| 578 | float mYOffset; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 579 | float mXPrecision; |
| 580 | float mYPrecision; |
| 581 | nsecs_t mDownTime; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 582 | Vector<PointerProperties> mPointerProperties; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 583 | Vector<nsecs_t> mSampleEventTimes; |
| 584 | Vector<PointerCoords> mSamplePointerCoords; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 585 | }; |
| 586 | |
| 587 | /* |
| 588 | * Input event factory. |
| 589 | */ |
| 590 | class InputEventFactoryInterface { |
| 591 | protected: |
| 592 | virtual ~InputEventFactoryInterface() { } |
| 593 | |
| 594 | public: |
| 595 | InputEventFactoryInterface() { } |
| 596 | |
| 597 | virtual KeyEvent* createKeyEvent() = 0; |
| 598 | virtual MotionEvent* createMotionEvent() = 0; |
| 599 | }; |
| 600 | |
| 601 | /* |
| 602 | * A simple input event factory implementation that uses a single preallocated instance |
| 603 | * of each type of input event that are reused for each request. |
| 604 | */ |
| 605 | class PreallocatedInputEventFactory : public InputEventFactoryInterface { |
| 606 | public: |
| 607 | PreallocatedInputEventFactory() { } |
| 608 | virtual ~PreallocatedInputEventFactory() { } |
| 609 | |
| 610 | virtual KeyEvent* createKeyEvent() { return & mKeyEvent; } |
| 611 | virtual MotionEvent* createMotionEvent() { return & mMotionEvent; } |
| 612 | |
| 613 | private: |
| 614 | KeyEvent mKeyEvent; |
| 615 | MotionEvent mMotionEvent; |
| 616 | }; |
| 617 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 618 | /* |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 619 | * Calculates the velocity of pointer movements over time. |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 620 | */ |
| 621 | class VelocityTracker { |
| 622 | public: |
| 623 | struct Position { |
| 624 | float x, y; |
| 625 | }; |
| 626 | |
| 627 | VelocityTracker(); |
| 628 | |
| 629 | // Resets the velocity tracker state. |
| 630 | void clear(); |
| 631 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 632 | // Resets the velocity tracker state for specific pointers. |
| 633 | // Call this method when some pointers have changed and may be reusing |
| 634 | // an id that was assigned to a different pointer earlier. |
| 635 | void clearPointers(BitSet32 idBits); |
| 636 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 637 | // Adds movement information for a set of pointers. |
| 638 | // The idBits bitfield specifies the pointer ids of the pointers whose positions |
| 639 | // are included in the movement. |
| 640 | // The positions array contains position information for each pointer in order by |
| 641 | // increasing id. Its size should be equal to the number of one bits in idBits. |
| 642 | void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions); |
| 643 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 644 | // Adds movement information for all pointers in a MotionEvent, including historical samples. |
| 645 | void addMovement(const MotionEvent* event); |
| 646 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 647 | // Gets the velocity of the specified pointer id in position units per second. |
| 648 | // Returns false and sets the velocity components to zero if there is no movement |
| 649 | // information for the pointer. |
| 650 | bool getVelocity(uint32_t id, float* outVx, float* outVy) const; |
| 651 | |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 652 | // Gets the active pointer id, or -1 if none. |
| 653 | inline int32_t getActivePointerId() const { return mActivePointerId; } |
| 654 | |
| 655 | // Gets a bitset containing all pointer ids from the most recent movement. |
| 656 | inline BitSet32 getCurrentPointerIdBits() const { return mMovements[mIndex].idBits; } |
| 657 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 658 | private: |
| 659 | // Number of samples to keep. |
| 660 | static const uint32_t HISTORY_SIZE = 10; |
| 661 | |
| 662 | // Oldest sample to consider when calculating the velocity. |
| 663 | static const nsecs_t MAX_AGE = 200 * 1000000; // 200 ms |
| 664 | |
| 665 | // The minimum duration between samples when estimating velocity. |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 666 | static const nsecs_t MIN_DURATION = 10 * 1000000; // 10 ms |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 667 | |
| 668 | struct Movement { |
| 669 | nsecs_t eventTime; |
| 670 | BitSet32 idBits; |
| 671 | Position positions[MAX_POINTERS]; |
| 672 | }; |
| 673 | |
| 674 | uint32_t mIndex; |
| 675 | Movement mMovements[HISTORY_SIZE]; |
Jeff Brown | 2ed2462 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 676 | int32_t mActivePointerId; |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 677 | }; |
| 678 | |
Jeff Brown | 19c97d46 | 2011-06-01 12:33:19 -0700 | [diff] [blame] | 679 | |
| 680 | /* |
| 681 | * Specifies parameters that govern pointer or wheel acceleration. |
| 682 | */ |
| 683 | struct VelocityControlParameters { |
| 684 | // A scale factor that is multiplied with the raw velocity deltas |
| 685 | // prior to applying any other velocity control factors. The scale |
| 686 | // factor should be used to adapt the input device resolution |
| 687 | // (eg. counts per inch) to the output device resolution (eg. pixels per inch). |
| 688 | // |
| 689 | // Must be a positive value. |
| 690 | // Default is 1.0 (no scaling). |
| 691 | float scale; |
| 692 | |
| 693 | // The scaled speed at which acceleration begins to be applied. |
| 694 | // This value establishes the upper bound of a low speed regime for |
| 695 | // small precise motions that are performed without any acceleration. |
| 696 | // |
| 697 | // Must be a non-negative value. |
| 698 | // Default is 0.0 (no low threshold). |
| 699 | float lowThreshold; |
| 700 | |
| 701 | // The scaled speed at which maximum acceleration is applied. |
| 702 | // The difference between highThreshold and lowThreshold controls |
| 703 | // the range of speeds over which the acceleration factor is interpolated. |
| 704 | // The wider the range, the smoother the acceleration. |
| 705 | // |
| 706 | // Must be a non-negative value greater than or equal to lowThreshold. |
| 707 | // Default is 0.0 (no high threshold). |
| 708 | float highThreshold; |
| 709 | |
| 710 | // The acceleration factor. |
| 711 | // When the speed is above the low speed threshold, the velocity will scaled |
| 712 | // by an interpolated value between 1.0 and this amount. |
| 713 | // |
| 714 | // Must be a positive greater than or equal to 1.0. |
| 715 | // Default is 1.0 (no acceleration). |
| 716 | float acceleration; |
| 717 | |
| 718 | VelocityControlParameters() : |
| 719 | scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) { |
| 720 | } |
| 721 | |
| 722 | VelocityControlParameters(float scale, float lowThreshold, |
| 723 | float highThreshold, float acceleration) : |
| 724 | scale(scale), lowThreshold(lowThreshold), |
| 725 | highThreshold(highThreshold), acceleration(acceleration) { |
| 726 | } |
| 727 | }; |
| 728 | |
| 729 | /* |
| 730 | * Implements mouse pointer and wheel speed control and acceleration. |
| 731 | */ |
| 732 | class VelocityControl { |
| 733 | public: |
| 734 | VelocityControl(); |
| 735 | |
| 736 | /* Sets the various parameters. */ |
| 737 | void setParameters(const VelocityControlParameters& parameters); |
| 738 | |
| 739 | /* Resets the current movement counters to zero. |
| 740 | * This has the effect of nullifying any acceleration. */ |
| 741 | void reset(); |
| 742 | |
| 743 | /* Translates a raw movement delta into an appropriately |
| 744 | * scaled / accelerated delta based on the current velocity. */ |
| 745 | void move(nsecs_t eventTime, float* deltaX, float* deltaY); |
| 746 | |
| 747 | private: |
| 748 | // If no movements are received within this amount of time, |
| 749 | // we assume the movement has stopped and reset the movement counters. |
| 750 | static const nsecs_t STOP_TIME = 500 * 1000000; // 500 ms |
| 751 | |
| 752 | VelocityControlParameters mParameters; |
| 753 | |
| 754 | nsecs_t mLastMovementTime; |
| 755 | VelocityTracker::Position mRawPosition; |
| 756 | VelocityTracker mVelocityTracker; |
| 757 | }; |
| 758 | |
| 759 | |
Jeff Brown | ace13b1 | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 760 | /* |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 761 | * Describes the characteristics and capabilities of an input device. |
| 762 | */ |
| 763 | class InputDeviceInfo { |
| 764 | public: |
| 765 | InputDeviceInfo(); |
| 766 | InputDeviceInfo(const InputDeviceInfo& other); |
| 767 | ~InputDeviceInfo(); |
| 768 | |
| 769 | struct MotionRange { |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 770 | int32_t axis; |
| 771 | uint32_t source; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 772 | float min; |
| 773 | float max; |
| 774 | float flat; |
| 775 | float fuzz; |
| 776 | }; |
| 777 | |
| 778 | void initialize(int32_t id, const String8& name); |
| 779 | |
| 780 | inline int32_t getId() const { return mId; } |
| 781 | inline const String8 getName() const { return mName; } |
| 782 | inline uint32_t getSources() const { return mSources; } |
| 783 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 784 | const MotionRange* getMotionRange(int32_t axis, uint32_t source) const; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 785 | |
| 786 | void addSource(uint32_t source); |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 787 | void addMotionRange(int32_t axis, uint32_t source, |
| 788 | float min, float max, float flat, float fuzz); |
| 789 | void addMotionRange(const MotionRange& range); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 790 | |
| 791 | inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; } |
| 792 | inline int32_t getKeyboardType() const { return mKeyboardType; } |
| 793 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 794 | inline const Vector<MotionRange>& getMotionRanges() const { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 795 | return mMotionRanges; |
| 796 | } |
| 797 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 798 | private: |
| 799 | int32_t mId; |
| 800 | String8 mName; |
| 801 | uint32_t mSources; |
| 802 | int32_t mKeyboardType; |
| 803 | |
Jeff Brown | efd3266 | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 804 | Vector<MotionRange> mMotionRanges; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 805 | }; |
| 806 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 807 | /* |
| 808 | * Identifies a device. |
| 809 | */ |
| 810 | struct InputDeviceIdentifier { |
| 811 | inline InputDeviceIdentifier() : |
| 812 | bus(0), vendor(0), product(0), version(0) { |
| 813 | } |
| 814 | |
| 815 | String8 name; |
| 816 | String8 location; |
| 817 | String8 uniqueId; |
| 818 | uint16_t bus; |
| 819 | uint16_t vendor; |
| 820 | uint16_t product; |
| 821 | uint16_t version; |
| 822 | }; |
| 823 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 824 | /* Types of input device configuration files. */ |
| 825 | enum InputDeviceConfigurationFileType { |
| 826 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */ |
| 827 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */ |
| 828 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */ |
| 829 | }; |
| 830 | |
| 831 | /* |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 832 | * Gets the path of an input device configuration file, if one is available. |
Jeff Brown | 1f24510 | 2010-11-18 20:53:46 -0800 | [diff] [blame] | 833 | * Considers both system provided and user installed configuration files. |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 834 | * |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 835 | * The device identifier is used to construct several default configuration file |
| 836 | * names to try based on the device name, vendor, product, and version. |
| 837 | * |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 838 | * Returns an empty string if not found. |
| 839 | */ |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 840 | extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier( |
| 841 | const InputDeviceIdentifier& deviceIdentifier, |
| 842 | InputDeviceConfigurationFileType type); |
| 843 | |
| 844 | /* |
| 845 | * Gets the path of an input device configuration file, if one is available. |
| 846 | * Considers both system provided and user installed configuration files. |
| 847 | * |
| 848 | * The name is case-sensitive and is used to construct the filename to resolve. |
| 849 | * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores. |
| 850 | * |
| 851 | * Returns an empty string if not found. |
| 852 | */ |
| 853 | extern String8 getInputDeviceConfigurationFilePathByName( |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 854 | const String8& name, InputDeviceConfigurationFileType type); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 855 | |
| 856 | } // namespace android |
| 857 | |
| 858 | #endif // _UI_INPUT_H |