blob: 78f6413ff1110947cab7e4174b21b8388df674e2 [file] [log] [blame]
Liam Harringtonc782be62020-07-17 19:48:24 +00001/*
2 * Copyright (C) 2020 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_MOUSE_CURSOR_CONTROLLER_H
18#define _UI_MOUSE_CURSOR_CONTROLLER_H
19
20#include <gui/DisplayEventReceiver.h>
21#include <input/DisplayViewport.h>
22#include <input/Input.h>
Liam Harringtonc782be62020-07-17 19:48:24 +000023#include <utils/BitSet.h>
24#include <utils/Looper.h>
25#include <utils/RefBase.h>
26
Liam Harringtonce637132020-08-14 04:00:11 +000027#include <functional>
Liam Harringtonc782be62020-07-17 19:48:24 +000028#include <map>
29#include <memory>
30#include <vector>
31
32#include "PointerControllerContext.h"
33#include "SpriteController.h"
34
35namespace android {
36
37/*
38 * Helper class for PointerController that specifically handles
39 * mouse cursor resources and actions.
40 */
41class MouseCursorController {
42public:
43 MouseCursorController(PointerControllerContext& context);
44 ~MouseCursorController();
45
Prabir Pradhanb5dadec2023-02-28 17:43:09 +000046 std::optional<FloatRect> getBounds() const;
Liam Harringtonc782be62020-07-17 19:48:24 +000047 void move(float deltaX, float deltaY);
Liam Harringtonc782be62020-07-17 19:48:24 +000048 void setPosition(float x, float y);
Prabir Pradhanb5dadec2023-02-28 17:43:09 +000049 FloatPoint getPosition() const;
Linnan Li0defadf2024-05-05 19:17:05 +080050 ui::LogicalDisplayId getDisplayId() const;
Liam Harringtonc782be62020-07-17 19:48:24 +000051 void fade(PointerControllerInterface::Transition transition);
52 void unfade(PointerControllerInterface::Transition transition);
53 void setDisplayViewport(const DisplayViewport& viewport, bool getAdditionalMouseResources);
Seunghwan Choi670b33d2023-01-13 21:12:59 +090054 void setStylusHoverMode(bool stylusHoverMode);
Liam Harringtonc782be62020-07-17 19:48:24 +000055
Arpit Singhf4ae0ac2024-03-26 18:41:06 +000056 // Set/Unset flag to hide the mouse cursor on the mirrored display
57 void setSkipScreenshot(bool skip);
58
Brandon Pollack015f5d92022-06-02 06:59:33 +000059 void updatePointerIcon(PointerIconStyle iconId);
Liam Harringtonc782be62020-07-17 19:48:24 +000060 void setCustomPointerIcon(const SpriteIcon& icon);
61 void reloadPointerResources(bool getAdditionalMouseResources);
62
63 void getAdditionalMouseResources();
64 bool isViewportValid();
65
Liam Harringtonce637132020-08-14 04:00:11 +000066 bool doAnimations(nsecs_t timestamp);
Liam Harringtonc782be62020-07-17 19:48:24 +000067
68 bool resourcesLoaded();
69
70private:
71 mutable std::mutex mLock;
72
73 PointerResources mResources;
74
75 PointerControllerContext& mContext;
76
77 struct Locked {
78 DisplayViewport viewport;
Seunghwan Choi670b33d2023-01-13 21:12:59 +090079 bool stylusHoverMode;
Liam Harringtonc782be62020-07-17 19:48:24 +000080
81 size_t animationFrameIndex;
82 nsecs_t lastFrameUpdatedTime;
83
84 int32_t pointerFadeDirection;
85 float pointerX;
86 float pointerY;
87 float pointerAlpha;
88 sp<Sprite> pointerSprite;
89 SpriteIcon pointerIcon;
90 bool updatePointerIcon;
91
92 bool resourcesLoaded;
93
Brandon Pollack015f5d92022-06-02 06:59:33 +000094 std::map<PointerIconStyle, SpriteIcon> additionalMouseResources;
95 std::map<PointerIconStyle, PointerAnimation> animationResources;
Liam Harringtonc782be62020-07-17 19:48:24 +000096
Brandon Pollack015f5d92022-06-02 06:59:33 +000097 PointerIconStyle requestedPointerType;
Seunghwan Choi670b33d2023-01-13 21:12:59 +090098 PointerIconStyle resolvedPointerType;
Liam Harringtonc782be62020-07-17 19:48:24 +000099
Arpit Singhf4ae0ac2024-03-26 18:41:06 +0000100 bool skipScreenshot{false};
Liam Harringtonce637132020-08-14 04:00:11 +0000101 bool animating{false};
102
Liam Harringtonc782be62020-07-17 19:48:24 +0000103 } mLocked GUARDED_BY(mLock);
104
Prabir Pradhanb5dadec2023-02-28 17:43:09 +0000105 std::optional<FloatRect> getBoundsLocked() const;
Liam Harringtonc782be62020-07-17 19:48:24 +0000106 void setPositionLocked(float x, float y);
107
108 void updatePointerLocked();
109
110 void loadResourcesLocked(bool getAdditionalMouseResources);
Liam Harringtonce637132020-08-14 04:00:11 +0000111
112 bool doBitmapAnimationLocked(nsecs_t timestamp);
113 bool doFadingAnimationLocked(nsecs_t timestamp);
114
115 void startAnimationLocked();
Liam Harringtonc782be62020-07-17 19:48:24 +0000116};
117
118} // namespace android
119
120#endif // _UI_MOUSE_CURSOR_CONTROLLER_H