-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractMouse.cpp
60 lines (50 loc) · 1.26 KB
/
AbstractMouse.cpp
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
#include "AbstractMouse.h"
//================================================================================
//================================================================================
// Mouse
/* This function is for limiting the input value for x and y
* axis to -32767 <= x/y <= 32767 since this is the allowed value
* range for a 16 bit USB HID Mouse device.
*/
const int16_t& limit_xy(int const& xy)
{
if (xy < -32767) return -32767;
else if(xy > 32767) return 32767;
else return xy;
}
AbstractMouse::AbstractMouse() : _buttons(0) {}
void AbstractMouse::click(const uint8_t& b)
{
_buttons = b;
move(0,0);
_buttons = 0;
move(0,0);
}
void AbstractMouse::move(const int& x, const int& y)
{
int16_t limited_x = limit_xy(x);
int16_t limited_y = limit_xy(y);
sendRawReport(makeReport(limited_x, limited_y));
}
void AbstractMouse::buttons(const uint8_t& b)
{
if (b != _buttons)
{
_buttons = b;
move(0,0);
}
}
void AbstractMouse::press(const uint8_t& b)
{
buttons(_buttons | b);
}
void AbstractMouse::release(const uint8_t& b)
{
buttons(_buttons & ~b);
}
bool AbstractMouse::isPressed(const uint8_t& b)
{
if ((b & _buttons) > 0)
return true;
return false;
}