blob: 77d122af0afb26a1562edda5669242bc2817135f [file] [log] [blame]
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001/*
2 * Copyright (C) 2019 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_INPUTREADER_CURSOR_INPUT_MAPPER_H
18#define _UI_INPUTREADER_CURSOR_INPUT_MAPPER_H
19
20#include "CursorButtonAccumulator.h"
21#include "CursorScrollAccumulator.h"
22#include "InputMapper.h"
23
24#include <PointerControllerInterface.h>
25#include <input/VelocityControl.h>
26
27namespace android {
28
29class VelocityControl;
30class PointerControllerInterface;
31
32class CursorButtonAccumulator;
33class CursorScrollAccumulator;
34
35/* Keeps track of cursor movements. */
36class CursorMotionAccumulator {
37public:
38 CursorMotionAccumulator();
39 void reset(InputDevice* device);
40
41 void process(const RawEvent* rawEvent);
42 void finishSync();
43
44 inline int32_t getRelativeX() const { return mRelX; }
45 inline int32_t getRelativeY() const { return mRelY; }
46
47private:
48 int32_t mRelX;
49 int32_t mRelY;
50
51 void clearRelativeAxes();
52};
53
54class CursorInputMapper : public InputMapper {
55public:
56 explicit CursorInputMapper(InputDevice* device);
57 virtual ~CursorInputMapper();
58
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070059 virtual uint32_t getSources() override;
60 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
61 virtual void dump(std::string& dump) override;
62 virtual void configure(nsecs_t when, const InputReaderConfiguration* config,
63 uint32_t changes) override;
64 virtual void reset(nsecs_t when) override;
65 virtual void process(const RawEvent* rawEvent) override;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070066
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070067 virtual int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode) override;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070068
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070069 virtual void fadePointer() override;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070070
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070071 virtual std::optional<int32_t> getAssociatedDisplayId() override;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070072
73private:
74 // Amount that trackball needs to move in order to generate a key event.
75 static const int32_t TRACKBALL_MOVEMENT_THRESHOLD = 6;
76
77 // Immutable configuration parameters.
78 struct Parameters {
79 enum Mode {
80 MODE_POINTER,
81 MODE_POINTER_RELATIVE,
82 MODE_NAVIGATION,
83 };
84
85 Mode mode;
86 bool hasAssociatedDisplay;
87 bool orientationAware;
88 } mParameters;
89
90 CursorButtonAccumulator mCursorButtonAccumulator;
91 CursorMotionAccumulator mCursorMotionAccumulator;
92 CursorScrollAccumulator mCursorScrollAccumulator;
93
94 int32_t mSource;
95 float mXScale;
96 float mYScale;
97 float mXPrecision;
98 float mYPrecision;
99
100 float mVWheelScale;
101 float mHWheelScale;
102
103 // Velocity controls for mouse pointer and wheel movements.
104 // The controls for X and Y wheel movements are separate to keep them decoupled.
105 VelocityControl mPointerVelocityControl;
106 VelocityControl mWheelXVelocityControl;
107 VelocityControl mWheelYVelocityControl;
108
109 int32_t mOrientation;
110
111 sp<PointerControllerInterface> mPointerController;
112
113 int32_t mButtonState;
114 nsecs_t mDownTime;
115
116 void configureParameters();
117 void dumpParameters(std::string& dump);
118
119 void sync(nsecs_t when);
120};
121
122} // namespace android
123
124#endif // _UI_INPUTREADER_CURSOR_INPUT_MAPPER_H