Jeff Brown | e839a58 | 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 | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 26 | #include <utils/KeyedVector.h> |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 27 | #include <utils/Timers.h> |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 28 | #include <utils/RefBase.h> |
| 29 | #include <utils/String8.h> |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 30 | #include <utils/BitSet.h> |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 31 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 32 | #ifdef HAVE_ANDROID_OS |
| 33 | class SkMatrix; |
| 34 | #endif |
| 35 | |
Jeff Brown | e839a58 | 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 | 3847f62 | 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 | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
Jeff Brown | 430c21e | 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 | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 61 | /* |
Jeff Brown | 80f3e7c | 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 | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 70 | * Maximum number of pointers supported per motion event. |
Jeff Brown | d1b0a2b | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 71 | * Smallest number of pointers is 1. |
Jeff Brown | eb8b9d8 | 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 | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 74 | */ |
Jeff Brown | eb8b9d8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 75 | #define MAX_POINTERS 16 |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 76 | |
Dianne Hackborn | 4d96bb6 | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 77 | /* |
Jeff Brown | d1b0a2b | 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 | 4d96bb6 | 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 | ce838a2 | 2010-07-13 17:48:30 -0700 | [diff] [blame] | 87 | struct AInputEvent { |
| 88 | virtual ~AInputEvent() { } |
| 89 | }; |
Dianne Hackborn | 4d96bb6 | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 90 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 91 | /* |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 92 | * Declare a concrete type for the NDK's input device forward declaration. |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 93 | */ |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 94 | struct AInputDevice { |
| 95 | virtual ~AInputDevice() { } |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 96 | }; |
| 97 | |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 98 | |
| 99 | namespace android { |
| 100 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 101 | #ifdef HAVE_ANDROID_OS |
| 102 | class Parcel; |
| 103 | #endif |
| 104 | |
Jeff Brown | e839a58 | 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 | 90f0cee | 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 | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 110 | */ |
| 111 | enum { |
Jeff Brown | 956c0fb | 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 | 6a817e2 | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 113 | * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */ |
Jeff Brown | e839a58 | 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 | 956c0fb | 2010-10-01 14:55:30 -0700 | [diff] [blame] | 123 | POLICY_FLAG_VIRTUAL = 0x00000100, |
Jeff Brown | 6a817e2 | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 124 | POLICY_FLAG_FUNCTION = 0x00000200, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 125 | |
Jeff Brown | 51d45a7 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 126 | POLICY_FLAG_RAW_MASK = 0x0000ffff, |
| 127 | |
Jeff Brown | af30ff6 | 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 | 33d54ce | 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 | 37159af | 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 | 54bc281 | 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 | e839a58 | 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 | 90f0cee | 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 | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | /* |
Jeff Brown | 46689da | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 160 | * Button state. |
| 161 | */ |
| 162 | enum { |
| 163 | // Primary button pressed (left mouse button). |
| 164 | BUTTON_STATE_PRIMARY = 1 << 0, |
| 165 | }; |
| 166 | |
| 167 | /* |
Jeff Brown | 54bc281 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 168 | * Describes the basic configuration of input devices that are present. |
| 169 | */ |
| 170 | struct InputConfiguration { |
| 171 | enum { |
| 172 | TOUCHSCREEN_UNDEFINED = 0, |
| 173 | TOUCHSCREEN_NOTOUCH = 1, |
| 174 | TOUCHSCREEN_STYLUS = 2, |
| 175 | TOUCHSCREEN_FINGER = 3 |
| 176 | }; |
| 177 | |
| 178 | enum { |
| 179 | KEYBOARD_UNDEFINED = 0, |
| 180 | KEYBOARD_NOKEYS = 1, |
| 181 | KEYBOARD_QWERTY = 2, |
| 182 | KEYBOARD_12KEY = 3 |
| 183 | }; |
| 184 | |
| 185 | enum { |
| 186 | NAVIGATION_UNDEFINED = 0, |
| 187 | NAVIGATION_NONAV = 1, |
| 188 | NAVIGATION_DPAD = 2, |
| 189 | NAVIGATION_TRACKBALL = 3, |
| 190 | NAVIGATION_WHEEL = 4 |
| 191 | }; |
| 192 | |
| 193 | int32_t touchScreen; |
| 194 | int32_t keyboard; |
| 195 | int32_t navigation; |
| 196 | }; |
| 197 | |
| 198 | /* |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 199 | * Pointer coordinate data. |
| 200 | */ |
| 201 | struct PointerCoords { |
Jeff Brown | 3ea4de8 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 202 | enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64 |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 203 | |
| 204 | // Bitfield of axes that are present in this structure. |
Jeff Brown | 3ea4de8 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 205 | uint64_t bits; |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 206 | |
| 207 | // Values of axes that are stored in this structure packed in order by axis id |
| 208 | // for each axis that is present in the structure according to 'bits'. |
| 209 | float values[MAX_AXES]; |
| 210 | |
| 211 | inline void clear() { |
| 212 | bits = 0; |
| 213 | } |
| 214 | |
Jeff Brown | 3ea4de8 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 215 | float getAxisValue(int32_t axis) const; |
| 216 | status_t setAxisValue(int32_t axis, float value); |
| 217 | float* editAxisValue(int32_t axis); |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 218 | |
Dianne Hackborn | 16fe3c2 | 2011-04-27 18:52:56 -0400 | [diff] [blame] | 219 | void scale(float scale); |
| 220 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 221 | #ifdef HAVE_ANDROID_OS |
| 222 | status_t readFromParcel(Parcel* parcel); |
| 223 | status_t writeToParcel(Parcel* parcel) const; |
| 224 | #endif |
| 225 | |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 226 | bool operator==(const PointerCoords& other) const; |
| 227 | inline bool operator!=(const PointerCoords& other) const { |
| 228 | return !(*this == other); |
| 229 | } |
| 230 | |
| 231 | void copyFrom(const PointerCoords& other); |
| 232 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 233 | private: |
| 234 | void tooManyAxes(int axis); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | /* |
| 238 | * Input events. |
| 239 | */ |
Dianne Hackborn | 9c7f818 | 2010-06-28 15:27:30 -0700 | [diff] [blame] | 240 | class InputEvent : public AInputEvent { |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 241 | public: |
| 242 | virtual ~InputEvent() { } |
| 243 | |
| 244 | virtual int32_t getType() const = 0; |
| 245 | |
| 246 | inline int32_t getDeviceId() const { return mDeviceId; } |
| 247 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 248 | inline int32_t getSource() const { return mSource; } |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 249 | |
| 250 | inline void setSource(int32_t source) { mSource = source; } |
| 251 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 252 | protected: |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 253 | void initialize(int32_t deviceId, int32_t source); |
Dianne Hackborn | 0e88527 | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 254 | void initialize(const InputEvent& from); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 255 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 256 | int32_t mDeviceId; |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 257 | int32_t mSource; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 258 | }; |
| 259 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 260 | /* |
| 261 | * Key events. |
| 262 | */ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 263 | class KeyEvent : public InputEvent { |
| 264 | public: |
| 265 | virtual ~KeyEvent() { } |
| 266 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 267 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; } |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 268 | |
| 269 | inline int32_t getAction() const { return mAction; } |
| 270 | |
| 271 | inline int32_t getFlags() const { return mFlags; } |
| 272 | |
| 273 | inline int32_t getKeyCode() const { return mKeyCode; } |
| 274 | |
| 275 | inline int32_t getScanCode() const { return mScanCode; } |
| 276 | |
| 277 | inline int32_t getMetaState() const { return mMetaState; } |
| 278 | |
| 279 | inline int32_t getRepeatCount() const { return mRepeatCount; } |
| 280 | |
| 281 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 282 | |
| 283 | inline nsecs_t getEventTime() const { return mEventTime; } |
| 284 | |
Dianne Hackborn | 189ed23 | 2010-06-29 19:20:40 -0700 | [diff] [blame] | 285 | // Return true if this event may have a default action implementation. |
| 286 | static bool hasDefaultAction(int32_t keyCode); |
| 287 | bool hasDefaultAction() const; |
| 288 | |
| 289 | // Return true if this event represents a system key. |
| 290 | static bool isSystemKey(int32_t keyCode); |
| 291 | bool isSystemKey() const; |
| 292 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 293 | void initialize( |
| 294 | int32_t deviceId, |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 295 | int32_t source, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 296 | int32_t action, |
| 297 | int32_t flags, |
| 298 | int32_t keyCode, |
| 299 | int32_t scanCode, |
| 300 | int32_t metaState, |
| 301 | int32_t repeatCount, |
| 302 | nsecs_t downTime, |
| 303 | nsecs_t eventTime); |
Dianne Hackborn | 0e88527 | 2010-07-15 17:44:53 -0700 | [diff] [blame] | 304 | void initialize(const KeyEvent& from); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 305 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 306 | protected: |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 307 | int32_t mAction; |
| 308 | int32_t mFlags; |
| 309 | int32_t mKeyCode; |
| 310 | int32_t mScanCode; |
| 311 | int32_t mMetaState; |
| 312 | int32_t mRepeatCount; |
| 313 | nsecs_t mDownTime; |
| 314 | nsecs_t mEventTime; |
| 315 | }; |
| 316 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 317 | /* |
| 318 | * Motion events. |
| 319 | */ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 320 | class MotionEvent : public InputEvent { |
| 321 | public: |
| 322 | virtual ~MotionEvent() { } |
| 323 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 324 | virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; } |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 325 | |
| 326 | inline int32_t getAction() const { return mAction; } |
| 327 | |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 328 | inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } |
| 329 | |
| 330 | inline int32_t getActionIndex() const { |
| 331 | return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) |
| 332 | >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; |
| 333 | } |
| 334 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 335 | inline void setAction(int32_t action) { mAction = action; } |
| 336 | |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 337 | inline int32_t getFlags() const { return mFlags; } |
| 338 | |
Jeff Brown | 3847f62 | 2011-02-28 18:27:14 -0800 | [diff] [blame] | 339 | inline void setFlags(int32_t flags) { mFlags = flags; } |
| 340 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 341 | inline int32_t getEdgeFlags() const { return mEdgeFlags; } |
| 342 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 343 | inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } |
| 344 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 345 | inline int32_t getMetaState() const { return mMetaState; } |
| 346 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 347 | inline void setMetaState(int32_t metaState) { mMetaState = metaState; } |
| 348 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 349 | inline float getXOffset() const { return mXOffset; } |
| 350 | |
| 351 | inline float getYOffset() const { return mYOffset; } |
| 352 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 353 | inline float getXPrecision() const { return mXPrecision; } |
| 354 | |
| 355 | inline float getYPrecision() const { return mYPrecision; } |
| 356 | |
| 357 | inline nsecs_t getDownTime() const { return mDownTime; } |
| 358 | |
| 359 | inline size_t getPointerCount() const { return mPointerIds.size(); } |
| 360 | |
| 361 | inline int32_t getPointerId(size_t pointerIndex) const { return mPointerIds[pointerIndex]; } |
| 362 | |
| 363 | inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; } |
| 364 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 365 | const PointerCoords* getRawPointerCoords(size_t pointerIndex) const; |
| 366 | |
| 367 | float getRawAxisValue(int32_t axis, size_t pointerIndex) const; |
| 368 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 369 | inline float getRawX(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 370 | return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 371 | } |
| 372 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 373 | inline float getRawY(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 374 | return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 377 | float getAxisValue(int32_t axis, size_t pointerIndex) const; |
| 378 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 379 | inline float getX(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 380 | return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | inline float getY(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 384 | return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 387 | inline float getPressure(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 388 | return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | inline float getSize(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 392 | return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 393 | } |
| 394 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 395 | inline float getTouchMajor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 396 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | inline float getTouchMinor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 400 | return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | inline float getToolMajor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 404 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | inline float getToolMinor(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 408 | return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | inline float getOrientation(size_t pointerIndex) const { |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 412 | return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 415 | inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; } |
| 416 | |
| 417 | inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const { |
| 418 | return mSampleEventTimes[historicalIndex]; |
| 419 | } |
| 420 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 421 | const PointerCoords* getHistoricalRawPointerCoords( |
| 422 | size_t pointerIndex, size_t historicalIndex) const; |
| 423 | |
| 424 | float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex, |
| 425 | size_t historicalIndex) const; |
| 426 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 427 | inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 428 | return getHistoricalRawAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 429 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 430 | } |
| 431 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 432 | inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 433 | return getHistoricalRawAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 434 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 437 | float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const; |
| 438 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 439 | inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 440 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 441 | AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 445 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 446 | AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex); |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 449 | inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 450 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 451 | AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 455 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 456 | AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 459 | inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 460 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 461 | AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 465 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 466 | AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 470 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 471 | AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 475 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 476 | AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const { |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 480 | return getHistoricalAxisValue( |
Jeff Brown | b2d4435 | 2011-02-17 13:01:34 -0800 | [diff] [blame] | 481 | AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex); |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 482 | } |
| 483 | |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 484 | ssize_t findPointerIndex(int32_t pointerId) const; |
| 485 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 486 | void initialize( |
| 487 | int32_t deviceId, |
Jeff Brown | 5c1ed84 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 488 | int32_t source, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 489 | int32_t action, |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 490 | int32_t flags, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 491 | int32_t edgeFlags, |
| 492 | int32_t metaState, |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 493 | float xOffset, |
| 494 | float yOffset, |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 495 | float xPrecision, |
| 496 | float yPrecision, |
| 497 | nsecs_t downTime, |
| 498 | nsecs_t eventTime, |
| 499 | size_t pointerCount, |
| 500 | const int32_t* pointerIds, |
| 501 | const PointerCoords* pointerCoords); |
| 502 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 503 | void copyFrom(const MotionEvent* other, bool keepHistory); |
| 504 | |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 505 | void addSample( |
| 506 | nsecs_t eventTime, |
| 507 | const PointerCoords* pointerCoords); |
| 508 | |
| 509 | void offsetLocation(float xOffset, float yOffset); |
| 510 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 511 | void scale(float scaleFactor); |
| 512 | |
| 513 | #ifdef HAVE_ANDROID_OS |
| 514 | void transform(const SkMatrix* matrix); |
| 515 | |
| 516 | status_t readFromParcel(Parcel* parcel); |
| 517 | status_t writeToParcel(Parcel* parcel) const; |
| 518 | #endif |
| 519 | |
Jeff Brown | d5ed285 | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 520 | static bool isTouchEvent(int32_t source, int32_t action); |
| 521 | inline bool isTouchEvent() const { |
| 522 | return isTouchEvent(mSource, mAction); |
| 523 | } |
| 524 | |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 525 | // Low-level accessors. |
| 526 | inline const int32_t* getPointerIds() const { return mPointerIds.array(); } |
| 527 | inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); } |
| 528 | inline const PointerCoords* getSamplePointerCoords() const { |
| 529 | return mSamplePointerCoords.array(); |
| 530 | } |
| 531 | |
Jeff Brown | 3e34146 | 2011-02-14 17:03:18 -0800 | [diff] [blame] | 532 | protected: |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 533 | int32_t mAction; |
Jeff Brown | af30ff6 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 534 | int32_t mFlags; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 535 | int32_t mEdgeFlags; |
| 536 | int32_t mMetaState; |
Jeff Brown | f4a4ec2 | 2010-06-16 01:53:36 -0700 | [diff] [blame] | 537 | float mXOffset; |
| 538 | float mYOffset; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 539 | float mXPrecision; |
| 540 | float mYPrecision; |
| 541 | nsecs_t mDownTime; |
| 542 | Vector<int32_t> mPointerIds; |
| 543 | Vector<nsecs_t> mSampleEventTimes; |
| 544 | Vector<PointerCoords> mSamplePointerCoords; |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 545 | }; |
| 546 | |
| 547 | /* |
| 548 | * Input event factory. |
| 549 | */ |
| 550 | class InputEventFactoryInterface { |
| 551 | protected: |
| 552 | virtual ~InputEventFactoryInterface() { } |
| 553 | |
| 554 | public: |
| 555 | InputEventFactoryInterface() { } |
| 556 | |
| 557 | virtual KeyEvent* createKeyEvent() = 0; |
| 558 | virtual MotionEvent* createMotionEvent() = 0; |
| 559 | }; |
| 560 | |
| 561 | /* |
| 562 | * A simple input event factory implementation that uses a single preallocated instance |
| 563 | * of each type of input event that are reused for each request. |
| 564 | */ |
| 565 | class PreallocatedInputEventFactory : public InputEventFactoryInterface { |
| 566 | public: |
| 567 | PreallocatedInputEventFactory() { } |
| 568 | virtual ~PreallocatedInputEventFactory() { } |
| 569 | |
| 570 | virtual KeyEvent* createKeyEvent() { return & mKeyEvent; } |
| 571 | virtual MotionEvent* createMotionEvent() { return & mMotionEvent; } |
| 572 | |
| 573 | private: |
| 574 | KeyEvent mKeyEvent; |
| 575 | MotionEvent mMotionEvent; |
| 576 | }; |
| 577 | |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 578 | /* |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 579 | * Calculates the velocity of pointer movements over time. |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 580 | */ |
| 581 | class VelocityTracker { |
| 582 | public: |
| 583 | struct Position { |
| 584 | float x, y; |
| 585 | }; |
| 586 | |
| 587 | VelocityTracker(); |
| 588 | |
| 589 | // Resets the velocity tracker state. |
| 590 | void clear(); |
| 591 | |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 592 | // Resets the velocity tracker state for specific pointers. |
| 593 | // Call this method when some pointers have changed and may be reusing |
| 594 | // an id that was assigned to a different pointer earlier. |
| 595 | void clearPointers(BitSet32 idBits); |
| 596 | |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 597 | // Adds movement information for a set of pointers. |
| 598 | // The idBits bitfield specifies the pointer ids of the pointers whose positions |
| 599 | // are included in the movement. |
| 600 | // The positions array contains position information for each pointer in order by |
| 601 | // increasing id. Its size should be equal to the number of one bits in idBits. |
| 602 | void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions); |
| 603 | |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 604 | // Adds movement information for all pointers in a MotionEvent, including historical samples. |
| 605 | void addMovement(const MotionEvent* event); |
| 606 | |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 607 | // Gets the velocity of the specified pointer id in position units per second. |
| 608 | // Returns false and sets the velocity components to zero if there is no movement |
| 609 | // information for the pointer. |
| 610 | bool getVelocity(uint32_t id, float* outVx, float* outVy) const; |
| 611 | |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 612 | // Gets the active pointer id, or -1 if none. |
| 613 | inline int32_t getActivePointerId() const { return mActivePointerId; } |
| 614 | |
| 615 | // Gets a bitset containing all pointer ids from the most recent movement. |
| 616 | inline BitSet32 getCurrentPointerIdBits() const { return mMovements[mIndex].idBits; } |
| 617 | |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 618 | private: |
| 619 | // Number of samples to keep. |
| 620 | static const uint32_t HISTORY_SIZE = 10; |
| 621 | |
| 622 | // Oldest sample to consider when calculating the velocity. |
| 623 | static const nsecs_t MAX_AGE = 200 * 1000000; // 200 ms |
| 624 | |
Jeff Brown | 4815f2a | 2011-04-12 22:39:53 -0700 | [diff] [blame] | 625 | // When the total duration of the window of samples being averaged is less |
| 626 | // than the window size, the resulting velocity is scaled to reduce the impact |
| 627 | // of overestimation in short traces. |
| 628 | static const nsecs_t MIN_WINDOW = 100 * 1000000; // 100 ms |
| 629 | |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 630 | // The minimum duration between samples when estimating velocity. |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 631 | static const nsecs_t MIN_DURATION = 10 * 1000000; // 10 ms |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 632 | |
| 633 | struct Movement { |
| 634 | nsecs_t eventTime; |
| 635 | BitSet32 idBits; |
| 636 | Position positions[MAX_POINTERS]; |
| 637 | }; |
| 638 | |
| 639 | uint32_t mIndex; |
| 640 | Movement mMovements[HISTORY_SIZE]; |
Jeff Brown | 1593354 | 2011-03-14 19:39:54 -0700 | [diff] [blame] | 641 | int32_t mActivePointerId; |
Jeff Brown | fa773aa | 2011-03-09 17:39:48 -0800 | [diff] [blame] | 642 | }; |
| 643 | |
| 644 | /* |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 645 | * Describes the characteristics and capabilities of an input device. |
| 646 | */ |
| 647 | class InputDeviceInfo { |
| 648 | public: |
| 649 | InputDeviceInfo(); |
| 650 | InputDeviceInfo(const InputDeviceInfo& other); |
| 651 | ~InputDeviceInfo(); |
| 652 | |
| 653 | struct MotionRange { |
Jeff Brown | 46689da | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 654 | int32_t axis; |
| 655 | uint32_t source; |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 656 | float min; |
| 657 | float max; |
| 658 | float flat; |
| 659 | float fuzz; |
| 660 | }; |
| 661 | |
| 662 | void initialize(int32_t id, const String8& name); |
| 663 | |
| 664 | inline int32_t getId() const { return mId; } |
| 665 | inline const String8 getName() const { return mName; } |
| 666 | inline uint32_t getSources() const { return mSources; } |
| 667 | |
Jeff Brown | 46689da | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 668 | const MotionRange* getMotionRange(int32_t axis, uint32_t source) const; |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 669 | |
| 670 | void addSource(uint32_t source); |
Jeff Brown | 46689da | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 671 | void addMotionRange(int32_t axis, uint32_t source, |
| 672 | float min, float max, float flat, float fuzz); |
| 673 | void addMotionRange(const MotionRange& range); |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 674 | |
| 675 | inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; } |
| 676 | inline int32_t getKeyboardType() const { return mKeyboardType; } |
| 677 | |
Jeff Brown | 46689da | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 678 | inline const Vector<MotionRange>& getMotionRanges() const { |
Jeff Brown | 38a7fab | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 679 | return mMotionRanges; |
| 680 | } |
| 681 | |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 682 | private: |
| 683 | int32_t mId; |
| 684 | String8 mName; |
| 685 | uint32_t mSources; |
| 686 | int32_t mKeyboardType; |
| 687 | |
Jeff Brown | 46689da | 2011-03-08 15:13:06 -0800 | [diff] [blame] | 688 | Vector<MotionRange> mMotionRanges; |
Jeff Brown | e57e895 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 689 | }; |
| 690 | |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 691 | /* |
| 692 | * Identifies a device. |
| 693 | */ |
| 694 | struct InputDeviceIdentifier { |
| 695 | inline InputDeviceIdentifier() : |
| 696 | bus(0), vendor(0), product(0), version(0) { |
| 697 | } |
| 698 | |
| 699 | String8 name; |
| 700 | String8 location; |
| 701 | String8 uniqueId; |
| 702 | uint16_t bus; |
| 703 | uint16_t vendor; |
| 704 | uint16_t product; |
| 705 | uint16_t version; |
| 706 | }; |
| 707 | |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 708 | /* Types of input device configuration files. */ |
| 709 | enum InputDeviceConfigurationFileType { |
| 710 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */ |
| 711 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */ |
| 712 | INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */ |
| 713 | }; |
| 714 | |
| 715 | /* |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 716 | * Gets the path of an input device configuration file, if one is available. |
Jeff Brown | 53c1664 | 2010-11-18 20:53:46 -0800 | [diff] [blame] | 717 | * Considers both system provided and user installed configuration files. |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 718 | * |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 719 | * The device identifier is used to construct several default configuration file |
| 720 | * names to try based on the device name, vendor, product, and version. |
| 721 | * |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 722 | * Returns an empty string if not found. |
| 723 | */ |
Jeff Brown | db36064 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 724 | extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier( |
| 725 | const InputDeviceIdentifier& deviceIdentifier, |
| 726 | InputDeviceConfigurationFileType type); |
| 727 | |
| 728 | /* |
| 729 | * Gets the path of an input device configuration file, if one is available. |
| 730 | * Considers both system provided and user installed configuration files. |
| 731 | * |
| 732 | * The name is case-sensitive and is used to construct the filename to resolve. |
| 733 | * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores. |
| 734 | * |
| 735 | * Returns an empty string if not found. |
| 736 | */ |
| 737 | extern String8 getInputDeviceConfigurationFilePathByName( |
Jeff Brown | 6688837 | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 738 | const String8& name, InputDeviceConfigurationFileType type); |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 739 | |
| 740 | } // namespace android |
| 741 | |
| 742 | #endif // _UI_INPUT_H |