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