-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouse.cpp
137 lines (137 loc) · 2.86 KB
/
mouse.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//#include <stdlib.h>
//#include <stdio.h>
//#include <fcntl.h>
//#include <unistd.h>
//#include <linux/input.h>
//
//#include "jsevent.h"
//
//int holdTime = 700;
//int dblTime = 250;
//
//const char *deviceName = "/dev/input/mice";
//
//clickHandler handler = 0;
//
//void setEventHandler(clickHandler _handler) {
// handler = _handler;
//}
//
//const char *CLICK_TYPE_NAMES[] = {"SINGLE", "DOUBLE", "HOLD", "DOUBLE_HOLD",
// "DOWN"};
//void printType(CLICK_TYPE t) { printf("%s\n", CLICK_TYPE_NAMES[t]); }
//
//int fd;
//
//int open_joystick() {
// char name[128] = "Undefined";
// int buttons;
//
// if ((fd = open(deviceName, O_RDONLY)) < 0) {
// fprintf(stderr, "Unable to open device ");
// perror(deviceName);
// exit(-1);
// }
//}
//
//void modiag(struct input_event ie) {
// //printf("time: %i\n", ie.time);
// printf("type: %d\n", ie.type);
// printf("value: %d\n", ie.value);
// printf("code: %d\n", ie.code);
//}
//
///** TODO Button Numbers!
// * gets events from JoyStick like the Ditto Looper
// * */
//void js_event_loop() {
// struct input_event ie;
//
// printf("In loop... Ctrl-C to exit.\n");
//
// CLICK_TYPE lastType = DOWN;
//
// long lastTime = 0;
// bool lastDown = false;
//
// long lastDownTime = 0;
//
// bool isDouble = false;
//
//
// bool bMiddle, bRight, bLeft;
// char button;
//
// while (read(fd, &ie, sizeof(struct input_event))) {
// unsigned char *ptr = (unsigned char *)&ie;
// int i;
// //
// button = ptr[0];
// bLeft = button & 0x1;
// bMiddle = (button & 0x4) > 0;
// bRight = (button & 0x2) > 0;
//
// if (bLeft) printf("LEFT\n");
// if (bMiddle) printf("MIDDLE\n");
// if (bRight) printf("RIGHT\n");
//
// }
//
//// TODOJOY up/down
//
///* from joystick
// while (1) {
// int readcount = read(fd, &ie, sizeof(struct input_event));
// if (readcount == -1) {
// perror("Error reading ");
// exit(-1);
// }
//
// printf("Bytes read: %d\n", readcount);
//
// modiag(ie);
//
//// print_js_event(js);
//
// if (js.type == JS_EVENT_BUTTON) {
// long curTime = js.time;
// bool curDown = js.value == 1;
// bool isHold = false;
//
// if (!lastDown && curDown) {
// if ((curTime - lastDownTime) < dblTime) {
// isDouble = true;
// }
// }
//
// if (lastDown && !curDown) {
// if ((curTime - lastTime) > holdTime) {
// isHold = true;
// }
//
// CLICK_TYPE curType = (CLICK_TYPE)(2 * isHold + 1 * isDouble);
//
// isDouble = false;
//
//#ifndef NDEBUG
// printType(curType);
//#endif
//
// if (handler) {
// (*handler)(curType);
// }
//
// lastDownTime = curTime;
// }
//
// lastTime = curTime;
// lastDown = curDown;
// }
// }
// */
//}
//
//void startJoystickEvents() {
// open_joystick();
// js_event_loop();
//}