blob: 601a169aab36b422cb3a8ea3be2bc67b642127ee [file] [log] [blame]
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001/*
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
Mathias Agopianb93a03f82012-02-17 15:34:57 -080017#ifndef _ANDROIDFW_INPUT_H
18#define _ANDROIDFW_INPUT_H
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070019
20/**
21 * Native input event structures.
22 */
23
24#include <android/input.h>
25#include <utils/Vector.h>
Jeff Brown6d0fec22010-07-23 21:28:06 -070026#include <utils/KeyedVector.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070027#include <utils/Timers.h>
Jeff Brown6d0fec22010-07-23 21:28:06 -070028#include <utils/RefBase.h>
29#include <utils/String8.h>
Jeff Brownace13b12011-03-09 17:39:48 -080030#include <utils/BitSet.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070031
Jeff Brown91c69ab2011-02-14 17:03:18 -080032#ifdef HAVE_ANDROID_OS
33class SkMatrix;
34#endif
35
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070036/*
37 * Additional private constants not defined in ndk/ui/input.h.
38 */
39enum {
Jeff Brown21bc5c92011-02-28 18:27:14 -080040 /* 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
47enum {
48 /* Motion event is inconsistent with previously sent motion events. */
49 AMOTION_EVENT_FLAG_TAINTED = 0x80000000,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070050};
51
Jeff Brown89de57a2011-01-19 18:41:38 -080052enum {
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 Brown46b9ac0a2010-04-22 18:58:52 -070061/*
Jeff Brown05dc66a2011-03-02 14:41:58 -080062 * SystemUiVisibility constants from View.
63 */
64enum {
65 ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
66 ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
67};
68
69/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070070 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070071 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080072 * (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 Brown46b9ac0a2010-04-22 18:58:52 -070074 */
Jeff Brown58a2da82011-01-25 16:02:22 -080075#define MAX_POINTERS 16
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070076
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070077/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070078 * 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 Hackborna95e4cb2010-06-18 18:09:33 -070085 * Declare a concrete type for the NDK's input event forward declaration.
86 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070087struct AInputEvent {
88 virtual ~AInputEvent() { }
89};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070090
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070091/*
Jeff Brown6d0fec22010-07-23 21:28:06 -070092 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070093 */
Jeff Brown6d0fec22010-07-23 21:28:06 -070094struct AInputDevice {
95 virtual ~AInputDevice() { }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070096};
97
Jeff Brown6d0fec22010-07-23 21:28:06 -070098
99namespace android {
100
Jeff Brown91c69ab2011-02-14 17:03:18 -0800101#ifdef HAVE_ANDROID_OS
102class Parcel;
103#endif
104
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700105/*
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 Brownb6997262010-10-08 22:31:17 -0700108 *
109 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700110 */
111enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -0700112 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -0700113 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700114
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 Brown0eaf3932010-10-01 14:55:30 -0700123 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700124 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700125
Jeff Brown7fbdc842010-06-17 20:52:56 -0700126 POLICY_FLAG_RAW_MASK = 0x0000ffff,
127
Jeff Brown85a31762010-09-01 17:01:00 -0700128 /* These flags are set by the input dispatcher. */
129
130 // Indicates that the input event was injected.
131 POLICY_FLAG_INJECTED = 0x01000000,
132
Jeff Browne20c9e02010-10-11 14:20:19 -0700133 // 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 Brown0029c662011-03-30 02:25:18 -0700137 // 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 Brown9c3cda02010-06-15 01:31:58 -0700143 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700144
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 Brownb6997262010-10-08 22:31:17 -0700152
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 Brown46b9ac0a2010-04-22 18:58:52 -0700157};
158
159/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700160 * Pointer coordinate data.
161 */
162struct PointerCoords {
Jeff Brown6f2fba42011-02-19 01:08:02 -0800163 enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
Jeff Brown91c69ab2011-02-14 17:03:18 -0800164
165 // Bitfield of axes that are present in this structure.
Jeff Brown6f2fba42011-02-19 01:08:02 -0800166 uint64_t bits;
Jeff Brown91c69ab2011-02-14 17:03:18 -0800167
168 // Values of axes that are stored in this structure packed in order by axis id
169 // for each axis that is present in the structure according to 'bits'.
170 float values[MAX_AXES];
171
172 inline void clear() {
173 bits = 0;
174 }
175
Jeff Brown6f2fba42011-02-19 01:08:02 -0800176 float getAxisValue(int32_t axis) const;
177 status_t setAxisValue(int32_t axis, float value);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800178
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400179 void scale(float scale);
Jeff Brown771526c2012-04-27 15:13:25 -0700180 void lerp(const PointerCoords& a, const PointerCoords& b, float alpha);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400181
Jeff Brownbe1aa822011-07-27 16:04:54 -0700182 inline float getX() const {
183 return getAxisValue(AMOTION_EVENT_AXIS_X);
184 }
185
186 inline float getY() const {
187 return getAxisValue(AMOTION_EVENT_AXIS_Y);
188 }
189
Jeff Brown91c69ab2011-02-14 17:03:18 -0800190#ifdef HAVE_ANDROID_OS
191 status_t readFromParcel(Parcel* parcel);
192 status_t writeToParcel(Parcel* parcel) const;
193#endif
194
Jeff Brownace13b12011-03-09 17:39:48 -0800195 bool operator==(const PointerCoords& other) const;
196 inline bool operator!=(const PointerCoords& other) const {
197 return !(*this == other);
198 }
199
200 void copyFrom(const PointerCoords& other);
201
Jeff Brown91c69ab2011-02-14 17:03:18 -0800202private:
203 void tooManyAxes(int axis);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700204};
205
206/*
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700207 * Pointer property data.
208 */
209struct PointerProperties {
210 // The id of the pointer.
211 int32_t id;
212
213 // The pointer tool type.
214 int32_t toolType;
215
216 inline void clear() {
217 id = -1;
218 toolType = 0;
219 }
220
221 bool operator==(const PointerProperties& other) const;
222 inline bool operator!=(const PointerProperties& other) const {
223 return !(*this == other);
224 }
225
226 void copyFrom(const PointerProperties& other);
227};
228
229/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700230 * Input events.
231 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700232class InputEvent : public AInputEvent {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700233public:
234 virtual ~InputEvent() { }
235
236 virtual int32_t getType() const = 0;
237
238 inline int32_t getDeviceId() const { return mDeviceId; }
239
Jeff Brownc5ed5912010-07-14 18:48:53 -0700240 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800241
242 inline void setSource(int32_t source) { mSource = source; }
243
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700244protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700245 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700246 void initialize(const InputEvent& from);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700247
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700248 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700249 int32_t mSource;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700250};
251
Jeff Brown5c225b12010-06-16 01:53:36 -0700252/*
253 * Key events.
254 */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700255class KeyEvent : public InputEvent {
256public:
257 virtual ~KeyEvent() { }
258
Jeff Brownc5ed5912010-07-14 18:48:53 -0700259 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700260
261 inline int32_t getAction() const { return mAction; }
262
263 inline int32_t getFlags() const { return mFlags; }
264
265 inline int32_t getKeyCode() const { return mKeyCode; }
266
267 inline int32_t getScanCode() const { return mScanCode; }
268
269 inline int32_t getMetaState() const { return mMetaState; }
270
271 inline int32_t getRepeatCount() const { return mRepeatCount; }
272
273 inline nsecs_t getDownTime() const { return mDownTime; }
274
275 inline nsecs_t getEventTime() const { return mEventTime; }
276
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700277 // Return true if this event may have a default action implementation.
278 static bool hasDefaultAction(int32_t keyCode);
279 bool hasDefaultAction() const;
280
281 // Return true if this event represents a system key.
282 static bool isSystemKey(int32_t keyCode);
283 bool isSystemKey() const;
284
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700285 void initialize(
286 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700287 int32_t source,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700288 int32_t action,
289 int32_t flags,
290 int32_t keyCode,
291 int32_t scanCode,
292 int32_t metaState,
293 int32_t repeatCount,
294 nsecs_t downTime,
295 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700296 void initialize(const KeyEvent& from);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700297
Jeff Brown91c69ab2011-02-14 17:03:18 -0800298protected:
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700299 int32_t mAction;
300 int32_t mFlags;
301 int32_t mKeyCode;
302 int32_t mScanCode;
303 int32_t mMetaState;
304 int32_t mRepeatCount;
305 nsecs_t mDownTime;
306 nsecs_t mEventTime;
307};
308
Jeff Brown5c225b12010-06-16 01:53:36 -0700309/*
310 * Motion events.
311 */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700312class MotionEvent : public InputEvent {
313public:
314 virtual ~MotionEvent() { }
315
Jeff Brownc5ed5912010-07-14 18:48:53 -0700316 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700317
318 inline int32_t getAction() const { return mAction; }
319
Jeff Brown2ed24622011-03-14 19:39:54 -0700320 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
321
322 inline int32_t getActionIndex() const {
323 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
324 >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
325 }
326
Jeff Brown91c69ab2011-02-14 17:03:18 -0800327 inline void setAction(int32_t action) { mAction = action; }
328
Jeff Brown85a31762010-09-01 17:01:00 -0700329 inline int32_t getFlags() const { return mFlags; }
330
Jeff Brown21bc5c92011-02-28 18:27:14 -0800331 inline void setFlags(int32_t flags) { mFlags = flags; }
332
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700333 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
334
Jeff Brown91c69ab2011-02-14 17:03:18 -0800335 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
336
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700337 inline int32_t getMetaState() const { return mMetaState; }
338
Jeff Brown91c69ab2011-02-14 17:03:18 -0800339 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
340
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700341 inline int32_t getButtonState() const { return mButtonState; }
342
Jeff Brown5c225b12010-06-16 01:53:36 -0700343 inline float getXOffset() const { return mXOffset; }
344
345 inline float getYOffset() const { return mYOffset; }
346
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700347 inline float getXPrecision() const { return mXPrecision; }
348
349 inline float getYPrecision() const { return mYPrecision; }
350
351 inline nsecs_t getDownTime() const { return mDownTime; }
352
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700353 inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700354
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700355 inline size_t getPointerCount() const { return mPointerProperties.size(); }
356
357 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const {
358 return &mPointerProperties[pointerIndex];
359 }
360
361 inline int32_t getPointerId(size_t pointerIndex) const {
362 return mPointerProperties[pointerIndex].id;
363 }
364
365 inline int32_t getToolType(size_t pointerIndex) const {
366 return mPointerProperties[pointerIndex].toolType;
367 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700368
369 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
370
Jeff Brown91c69ab2011-02-14 17:03:18 -0800371 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
372
373 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
374
Jeff Brown5c225b12010-06-16 01:53:36 -0700375 inline float getRawX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800376 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700377 }
378
Jeff Brown5c225b12010-06-16 01:53:36 -0700379 inline float getRawY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800380 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700381 }
382
Jeff Brown91c69ab2011-02-14 17:03:18 -0800383 float getAxisValue(int32_t axis, size_t pointerIndex) const;
384
Jeff Brown5c225b12010-06-16 01:53:36 -0700385 inline float getX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800386 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700387 }
388
389 inline float getY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800390 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700391 }
392
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700393 inline float getPressure(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800394 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700395 }
396
397 inline float getSize(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800398 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700399 }
400
Jeff Brownc5ed5912010-07-14 18:48:53 -0700401 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800402 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700403 }
404
405 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800406 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700407 }
408
409 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800410 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700411 }
412
413 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800414 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700415 }
416
417 inline float getOrientation(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800418 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700419 }
420
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700421 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
422
423 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
424 return mSampleEventTimes[historicalIndex];
425 }
426
Jeff Brown91c69ab2011-02-14 17:03:18 -0800427 const PointerCoords* getHistoricalRawPointerCoords(
428 size_t pointerIndex, size_t historicalIndex) const;
429
430 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
431 size_t historicalIndex) const;
432
Jeff Brown5c225b12010-06-16 01:53:36 -0700433 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800434 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800435 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700436 }
437
Jeff Brown5c225b12010-06-16 01:53:36 -0700438 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800439 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800440 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700441 }
442
Jeff Brown91c69ab2011-02-14 17:03:18 -0800443 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
444
Jeff Brown5c225b12010-06-16 01:53:36 -0700445 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800446 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800447 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700448 }
449
450 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800451 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800452 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700453 }
454
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700455 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800456 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800457 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700458 }
459
460 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800461 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800462 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700463 }
464
Jeff Brownc5ed5912010-07-14 18:48:53 -0700465 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800466 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800467 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700468 }
469
470 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800471 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800472 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700473 }
474
475 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800476 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800477 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700478 }
479
480 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800481 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800482 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700483 }
484
485 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800486 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800487 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700488 }
489
Jeff Brown2ed24622011-03-14 19:39:54 -0700490 ssize_t findPointerIndex(int32_t pointerId) const;
491
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700492 void initialize(
493 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700494 int32_t source,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700495 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700496 int32_t flags,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700497 int32_t edgeFlags,
498 int32_t metaState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700499 int32_t buttonState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700500 float xOffset,
501 float yOffset,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700502 float xPrecision,
503 float yPrecision,
504 nsecs_t downTime,
505 nsecs_t eventTime,
506 size_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700507 const PointerProperties* pointerProperties,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700508 const PointerCoords* pointerCoords);
509
Jeff Brown91c69ab2011-02-14 17:03:18 -0800510 void copyFrom(const MotionEvent* other, bool keepHistory);
511
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700512 void addSample(
513 nsecs_t eventTime,
514 const PointerCoords* pointerCoords);
515
516 void offsetLocation(float xOffset, float yOffset);
517
Jeff Brown91c69ab2011-02-14 17:03:18 -0800518 void scale(float scaleFactor);
519
520#ifdef HAVE_ANDROID_OS
521 void transform(const SkMatrix* matrix);
522
523 status_t readFromParcel(Parcel* parcel);
524 status_t writeToParcel(Parcel* parcel) const;
525#endif
526
Jeff Brown56194eb2011-03-02 19:23:13 -0800527 static bool isTouchEvent(int32_t source, int32_t action);
528 inline bool isTouchEvent() const {
529 return isTouchEvent(mSource, mAction);
530 }
531
Jeff Brown5c225b12010-06-16 01:53:36 -0700532 // Low-level accessors.
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700533 inline const PointerProperties* getPointerProperties() const {
534 return mPointerProperties.array();
535 }
Jeff Brown5c225b12010-06-16 01:53:36 -0700536 inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
537 inline const PointerCoords* getSamplePointerCoords() const {
538 return mSamplePointerCoords.array();
539 }
540
Jeff Brown91c69ab2011-02-14 17:03:18 -0800541protected:
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700542 int32_t mAction;
Jeff Brown85a31762010-09-01 17:01:00 -0700543 int32_t mFlags;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700544 int32_t mEdgeFlags;
545 int32_t mMetaState;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700546 int32_t mButtonState;
Jeff Brown5c225b12010-06-16 01:53:36 -0700547 float mXOffset;
548 float mYOffset;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700549 float mXPrecision;
550 float mYPrecision;
551 nsecs_t mDownTime;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700552 Vector<PointerProperties> mPointerProperties;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700553 Vector<nsecs_t> mSampleEventTimes;
554 Vector<PointerCoords> mSamplePointerCoords;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700555};
556
557/*
558 * Input event factory.
559 */
560class InputEventFactoryInterface {
561protected:
562 virtual ~InputEventFactoryInterface() { }
563
564public:
565 InputEventFactoryInterface() { }
566
567 virtual KeyEvent* createKeyEvent() = 0;
568 virtual MotionEvent* createMotionEvent() = 0;
569};
570
571/*
572 * A simple input event factory implementation that uses a single preallocated instance
573 * of each type of input event that are reused for each request.
574 */
575class PreallocatedInputEventFactory : public InputEventFactoryInterface {
576public:
577 PreallocatedInputEventFactory() { }
578 virtual ~PreallocatedInputEventFactory() { }
579
580 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
581 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
582
583private:
584 KeyEvent mKeyEvent;
585 MotionEvent mMotionEvent;
586};
587
Jeff Brown6d0fec22010-07-23 21:28:06 -0700588/*
Jeff Brown2b6c32c2012-03-13 15:00:09 -0700589 * An input event factory implementation that maintains a pool of input events.
590 */
591class PooledInputEventFactory : public InputEventFactoryInterface {
592public:
593 PooledInputEventFactory(size_t maxPoolSize = 20);
594 virtual ~PooledInputEventFactory();
595
596 virtual KeyEvent* createKeyEvent();
597 virtual MotionEvent* createMotionEvent();
598
599 void recycle(InputEvent* event);
600
601private:
602 const size_t mMaxPoolSize;
603
604 Vector<KeyEvent*> mKeyEventPool;
605 Vector<MotionEvent*> mMotionEventPool;
606};
607
608/*
Jeff Brown2ed24622011-03-14 19:39:54 -0700609 * Calculates the velocity of pointer movements over time.
Jeff Brownace13b12011-03-09 17:39:48 -0800610 */
611class VelocityTracker {
612public:
Jeff Brownb59ab9f2011-09-14 10:53:18 -0700613 // Default polynomial degree. (used by getVelocity)
614 static const uint32_t DEFAULT_DEGREE = 2;
615
616 // Default sample horizon. (used by getVelocity)
617 // We don't use too much history by default since we want to react to quick
618 // changes in direction.
619 static const nsecs_t DEFAULT_HORIZON = 100 * 1000000; // 100 ms
620
Jeff Brownace13b12011-03-09 17:39:48 -0800621 struct Position {
622 float x, y;
623 };
624
Jeff Brownb59ab9f2011-09-14 10:53:18 -0700625 struct Estimator {
626 static const size_t MAX_DEGREE = 2;
627
628 // Polynomial coefficients describing motion in X and Y.
629 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1];
630
631 // Polynomial degree (number of coefficients), or zero if no information is
632 // available.
633 uint32_t degree;
634
635 // Confidence (coefficient of determination), between 0 (no fit) and 1 (perfect fit).
636 float confidence;
637
638 inline void clear() {
639 degree = 0;
640 confidence = 0;
641 for (size_t i = 0; i <= MAX_DEGREE; i++) {
642 xCoeff[i] = 0;
643 yCoeff[i] = 0;
644 }
645 }
646 };
647
Jeff Brownace13b12011-03-09 17:39:48 -0800648 VelocityTracker();
649
650 // Resets the velocity tracker state.
651 void clear();
652
Jeff Brown2ed24622011-03-14 19:39:54 -0700653 // Resets the velocity tracker state for specific pointers.
654 // Call this method when some pointers have changed and may be reusing
655 // an id that was assigned to a different pointer earlier.
656 void clearPointers(BitSet32 idBits);
657
Jeff Brownace13b12011-03-09 17:39:48 -0800658 // Adds movement information for a set of pointers.
659 // The idBits bitfield specifies the pointer ids of the pointers whose positions
660 // are included in the movement.
661 // The positions array contains position information for each pointer in order by
662 // increasing id. Its size should be equal to the number of one bits in idBits.
663 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions);
664
Jeff Brown2ed24622011-03-14 19:39:54 -0700665 // Adds movement information for all pointers in a MotionEvent, including historical samples.
666 void addMovement(const MotionEvent* event);
667
Jeff Brownace13b12011-03-09 17:39:48 -0800668 // Gets the velocity of the specified pointer id in position units per second.
Jeff Brownb59ab9f2011-09-14 10:53:18 -0700669 // Returns false and sets the velocity components to zero if there is
670 // insufficient movement information for the pointer.
Jeff Brownace13b12011-03-09 17:39:48 -0800671 bool getVelocity(uint32_t id, float* outVx, float* outVy) const;
672
Jeff Brownb59ab9f2011-09-14 10:53:18 -0700673 // Gets a quadratic estimator for the movements of the specified pointer id.
674 // Returns false and clears the estimator if there is no information available
675 // about the pointer.
676 bool getEstimator(uint32_t id, uint32_t degree, nsecs_t horizon,
677 Estimator* outEstimator) const;
678
Jeff Brown2ed24622011-03-14 19:39:54 -0700679 // Gets the active pointer id, or -1 if none.
680 inline int32_t getActivePointerId() const { return mActivePointerId; }
681
682 // Gets a bitset containing all pointer ids from the most recent movement.
683 inline BitSet32 getCurrentPointerIdBits() const { return mMovements[mIndex].idBits; }
684
Jeff Brownace13b12011-03-09 17:39:48 -0800685private:
686 // Number of samples to keep.
Jeff Brownb59ab9f2011-09-14 10:53:18 -0700687 static const uint32_t HISTORY_SIZE = 20;
Jeff Brownace13b12011-03-09 17:39:48 -0800688
689 struct Movement {
690 nsecs_t eventTime;
691 BitSet32 idBits;
692 Position positions[MAX_POINTERS];
Jeff Brown581761d2011-09-09 15:39:35 -0700693
694 inline const Position& getPosition(uint32_t id) const {
695 return positions[idBits.getIndexOfBit(id)];
696 }
Jeff Brownace13b12011-03-09 17:39:48 -0800697 };
698
699 uint32_t mIndex;
700 Movement mMovements[HISTORY_SIZE];
Jeff Brown2ed24622011-03-14 19:39:54 -0700701 int32_t mActivePointerId;
Jeff Brownace13b12011-03-09 17:39:48 -0800702};
703
Jeff Brown19c97d462011-06-01 12:33:19 -0700704
705/*
706 * Specifies parameters that govern pointer or wheel acceleration.
707 */
708struct VelocityControlParameters {
709 // A scale factor that is multiplied with the raw velocity deltas
710 // prior to applying any other velocity control factors. The scale
711 // factor should be used to adapt the input device resolution
712 // (eg. counts per inch) to the output device resolution (eg. pixels per inch).
713 //
714 // Must be a positive value.
715 // Default is 1.0 (no scaling).
716 float scale;
717
718 // The scaled speed at which acceleration begins to be applied.
719 // This value establishes the upper bound of a low speed regime for
720 // small precise motions that are performed without any acceleration.
721 //
722 // Must be a non-negative value.
723 // Default is 0.0 (no low threshold).
724 float lowThreshold;
725
726 // The scaled speed at which maximum acceleration is applied.
727 // The difference between highThreshold and lowThreshold controls
728 // the range of speeds over which the acceleration factor is interpolated.
729 // The wider the range, the smoother the acceleration.
730 //
731 // Must be a non-negative value greater than or equal to lowThreshold.
732 // Default is 0.0 (no high threshold).
733 float highThreshold;
734
735 // The acceleration factor.
736 // When the speed is above the low speed threshold, the velocity will scaled
737 // by an interpolated value between 1.0 and this amount.
738 //
739 // Must be a positive greater than or equal to 1.0.
740 // Default is 1.0 (no acceleration).
741 float acceleration;
742
743 VelocityControlParameters() :
744 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) {
745 }
746
747 VelocityControlParameters(float scale, float lowThreshold,
748 float highThreshold, float acceleration) :
749 scale(scale), lowThreshold(lowThreshold),
750 highThreshold(highThreshold), acceleration(acceleration) {
751 }
752};
753
754/*
755 * Implements mouse pointer and wheel speed control and acceleration.
756 */
757class VelocityControl {
758public:
759 VelocityControl();
760
761 /* Sets the various parameters. */
762 void setParameters(const VelocityControlParameters& parameters);
763
764 /* Resets the current movement counters to zero.
765 * This has the effect of nullifying any acceleration. */
766 void reset();
767
768 /* Translates a raw movement delta into an appropriately
769 * scaled / accelerated delta based on the current velocity. */
770 void move(nsecs_t eventTime, float* deltaX, float* deltaY);
771
772private:
773 // If no movements are received within this amount of time,
774 // we assume the movement has stopped and reset the movement counters.
775 static const nsecs_t STOP_TIME = 500 * 1000000; // 500 ms
776
777 VelocityControlParameters mParameters;
778
779 nsecs_t mLastMovementTime;
780 VelocityTracker::Position mRawPosition;
781 VelocityTracker mVelocityTracker;
782};
783
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700784} // namespace android
785
Mathias Agopianb93a03f82012-02-17 15:34:57 -0800786#endif // _ANDROIDFW_INPUT_H