-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mouse.h
114 lines (112 loc) · 2.3 KB
/
Mouse.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#pragma once
#include <queue>
#include <optional>
class Mouse
{
friend class Window;
public:
struct RawDelta
{
int x, y;
};
class Event
{
public:
enum class Type
{
LPress,
LRelease,
RPress,
RRelease,
WheelUp,
WheelDown,
Move,
Enter,
Leave,
};
private:
Type type;
bool leftIsPressed;
bool rightIsPressed;
int x;
int y;
public:
Event(Type type, const Mouse& parent) noexcept
:
type(type),
leftIsPressed(parent.leftIsPressed),
rightIsPressed(parent.rightIsPressed),
x(parent.x),
y(parent.y)
{}
Type GetType() const noexcept
{
return type;
}
std::pair<int, int> GetPos() const noexcept
{
return{ x,y };
}
int GetPosX() const noexcept
{
return x;
}
int GetPosY() const noexcept
{
return y;
}
bool LeftIsPressed() const noexcept
{
return leftIsPressed;
}
bool RightIsPressed() const noexcept
{
return rightIsPressed;
}
};
public:
Mouse() = default;
Mouse(const Mouse&) = delete;
Mouse& operator=(const Mouse&) = delete;
std::pair<int, int> GetPos() const noexcept;
std::optional<RawDelta> ReadRawDelta() noexcept;
int GetPosX() const noexcept;
int GetPosY() const noexcept;
bool IsInWindow() const noexcept;
bool LeftIsPressed() const noexcept;
bool RightIsPressed() const noexcept;
std::optional<Mouse::Event> Read() noexcept;
bool IsEmpty() const noexcept
{
return buffer.empty();
}
void Flush() noexcept;
void EnableRaw() noexcept;
void DisableRaw() noexcept;
bool RawEnabled() const noexcept;
private:
void OnMouseMove(int x, int y) noexcept;
void OnMouseLeave() noexcept;
void OnMouseEnter() noexcept;
void OnRawDelta(int dx, int dy) noexcept;
void OnLeftPressed(int x, int y) noexcept;
void OnLeftReleased(int x, int y) noexcept;
void OnRightPressed(int x, int y) noexcept;
void OnRightReleased(int x, int y) noexcept;
void OnWheelUp(int x, int y) noexcept;
void OnWheelDown(int x, int y) noexcept;
void TrimBuffer() noexcept;
void TrimRawInputBuffer() noexcept;
void OnWheelDelta(int x, int y, int delta) noexcept;
private:
static constexpr unsigned int bufferSize = 16u;
int x;
int y;
bool leftIsPressed = false;
bool rightIsPressed = false;
bool isInWindow = false;
int wheelDeltaCarry = 0;
bool rawEnabled = false;
std::queue<Event> buffer;
std::queue<RawDelta> rawDeltaBuffer;
};