forked from pilotmoon/Scroll-Reverser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MouseTap.m
314 lines (265 loc) · 11.3 KB
/
MouseTap.m
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
#import "MouseTap.h"
#import "CoreFoundation/CoreFoundation.h"
#import "TapLogger.h"
#import "AppDelegate.h"
#import <mach/mach_time.h>
static BOOL _preventReverseOtherApp;
static BOOL _detectWacomMouse;
#define MILLISECOND ((uint64_t)1000000)
/*
Get the bundle identifier for the given pid.
*/
static NSString *bundleIdForPID(const pid_t pid)
{
ProcessSerialNumber psn={0, 0};
OSStatus status=GetProcessForPID(pid, &psn);
if (status==noErr)
{
NSDictionary * dict=(NSDictionary *)CFBridgingRelease(ProcessInformationCopyDictionary(&psn, kProcessDictionaryIncludeAllInformationMask));
return dict[(NSString *)kCFBundleIdentifierKey];
}
return nil;
}
/*
Is the pid a wacom tablet? Crude method.
*/
static BOOL pidIsWacom(const pid_t pid, MouseTap *const tap)
{
// zero is the common case
if (pid==0) {
return NO;
}
// short cut
static pid_t lastKnownWacomPid=0;
if (pid==lastKnownWacomPid) {
return YES;
}
// get bid
NSString *const bid=bundleIdForPID(pid);
[tap->logger logObject:bid forKey:@"bid"];
// is it wacom?
const BOOL pidIsWacom=[[bid lowercaseString] rangeOfString:@"wacom"].length>0;
if (pidIsWacom)
{
lastKnownWacomPid=pid;
}
return pidIsWacom;
}
static ScrollPhase momentumPhaseForEvent(CGEventRef event)
{
switch ([[NSEvent eventWithCGEvent:event] momentumPhase]) {
case NSTouchPhaseBegan:
return ScrollPhaseStart;
case NSTouchPhaseStationary:
return ScrollPhaseMomentum;
case NSTouchPhaseEnded:
case NSTouchPhaseCancelled:
return ScrollPhaseEnd;
default:
return ScrollPhaseNormal;
}
}
static uint64_t nanoseconds(void)
{
const uint64_t abstime = mach_absolute_time();
const Nanoseconds nanotime = AbsoluteToNanoseconds( *(AbsoluteTime *) &abstime );
return * (uint64_t *) &nanotime;
}
static CGEventRef callback(CGEventTapProxy proxy,
CGEventType type,
CGEventRef event,
void *userInfo)
{
@autoreleasepool
{
MouseTap *const tap=(__bridge MouseTap *)userInfo;
const uint64_t time=nanoseconds();
if (type==NSEventTypeGesture)
{
const NSUInteger touching=[[[NSEvent eventWithCGEvent:event] touchesMatchingPhase:NSTouchPhaseTouching inView:nil] count];
if (touching>=2) {
[tap->logger logUnsignedInteger:touching forKey:@"touching"];
tap->lastTouchTime=time;
tap->touching=MAX(tap->touching, touching);
}
else {
return event; // totally ignore zero or one touch events
}
}
else if (type==NSScrollWheel)
{
// get the scrolling deltas
const int64_t pixel_axis1=CGEventGetIntegerValueField(event, kCGScrollWheelEventPointDeltaAxis1);
const int64_t pixel_axis2=CGEventGetIntegerValueField(event, kCGScrollWheelEventPointDeltaAxis2);
const int64_t line_axis1=CGEventGetIntegerValueField(event, kCGScrollWheelEventDeltaAxis1);
const int64_t line_axis2=CGEventGetIntegerValueField(event, kCGScrollWheelEventDeltaAxis2);
const double fixedpt_axis1=CGEventGetDoubleValueField(event, kCGScrollWheelEventFixedPtDeltaAxis1);
const double fixedpt_axis2=CGEventGetDoubleValueField(event, kCGScrollWheelEventFixedPtDeltaAxis2);
[tap->logger logSignedInteger:pixel_axis1 forKey:@"y"];
[tap->logger logSignedInteger:pixel_axis2 forKey:@"x"];
// get source pid
const uint64_t pid=CGEventGetIntegerValueField(event, kCGEventSourceUnixProcessID);
[tap->logger logUnsignedInteger:pid forKey:@"pid"];
// calculate elapsed time since touch
const uint64_t touchElapsed=(time-tap->lastTouchTime);
[tap->logger logNanoseconds:touchElapsed forKey:@"touchElapsed"];
// get and reset fingers touching
const NSUInteger touching=tap->touching;
[tap->logger logUnsignedInteger:touching forKey:@"touching"];
tap->touching=0;
// get phase
const ScrollPhase phase=momentumPhaseForEvent(event);
[tap->logger logPhase:phase forKey:@"phase"];
// work out the event source
const ScrollEventSource lastSource=tap->lastSource;
const ScrollEventSource source=(^{
if (CGEventGetIntegerValueField(event, kCGScrollWheelEventIsContinuous)==0)
{
[tap->logger logBool:YES forKey:@"notContinuous"];
return ScrollEventSourceMouse; // assume anything not-continuous is a mouse
}
if (pidIsWacom(pid, tap))
{
// detect the wacom mouse, which always seems to scroll in multiples of 25
const BOOL wacomMouse=_detectWacomMouse?pixel_axis1!=0&&pixel_axis1%25==0&&pixel_axis2==0:NO;
[tap->logger logBool:YES forKey:@"wacomDevice"];
[tap->logger logBool:wacomMouse forKey:@"wacomMouse"];
return wacomMouse?ScrollEventSourceMouse:ScrollEventSourceTablet;
}
if (touching>=2 && touchElapsed<(MILLISECOND*222))
{
[tap->logger logBool:YES forKey:@"usingTouches"];
return ScrollEventSourceTrackpad;
}
if (phase==ScrollPhaseNormal && touchElapsed>(MILLISECOND*333))
{
[tap->logger logBool:YES forKey:@"usingTouchElapsed"];
return ScrollEventSourceMouse;
}
// not enough information to decide. assume the same as last time. ha!
[tap->logger logBool:YES forKey:@"usingPrevious"];
return tap->lastSource;
})();
tap->lastSource=source;
// finally, do we reverse the scroll or not?
const BOOL invert=(^BOOL {
/* Don't reverse scrolling coming from another app (if that setting is on).
This is useful if Scroll Reverser is running inside a remote desktop, to ignore
scrolling coming from the controlling host but still reverse local scrolling.
*/
const BOOL preventBecauseComingFromOtherApp=_preventReverseOtherApp?pid!=0:NO;
if (tap->inverting&&!preventBecauseComingFromOtherApp)
{
switch (source)
{
case ScrollEventSourceTrackpad:
return tap->invertMultiTouch;
case ScrollEventSourceTablet:
return tap->invertTablet;
case ScrollEventSourceMouse:
default:
return tap->invertOther;
}
}
else {
return NO;
}
})();
[tap->logger logBool:invert forKey:@"reversing"];
[tap->logger logSource:source forKey:@"source"];
if(source!=lastSource) {
[tap->logger logMessage:@"Source changed" special:YES];
}
/* Do the actual reversing. It's worth noting we have to set them in this order (lines then pixels)
or we lose smooth scrolling. */
if (invert)
{
if (tap->invertY) CGEventSetIntegerValueField(event, kCGScrollWheelEventDeltaAxis1, -line_axis1);
if (tap->invertX) CGEventSetIntegerValueField(event, kCGScrollWheelEventDeltaAxis2, 0);
if (tap->invertY) CGEventSetDoubleValueField(event, kCGScrollWheelEventFixedPtDeltaAxis1, -1 * fixedpt_axis1);
if (tap->invertX) CGEventSetDoubleValueField(event, kCGScrollWheelEventFixedPtDeltaAxis2, 0);
if (tap->invertY) CGEventSetIntegerValueField(event, kCGScrollWheelEventPointDeltaAxis1, -pixel_axis1);
if (tap->invertX) CGEventSetIntegerValueField(event, kCGScrollWheelEventPointDeltaAxis2, 0);
}
}
else
{
[tap enableTap];
}
[tap->logger logEventType:type forKey:@"type"];
[tap->logger logParams];
}
return event;
}
@implementation MouseTap
- (BOOL)isActive
{
return activeTapSource&&passiveTapSource&&activeTapPort&&passiveTapPort;
}
- (void)start
{
if([self isActive])
return;
// initialise
_preventReverseOtherApp=[[NSUserDefaults standardUserDefaults] boolForKey:@"ReverseOnlyRawInput"];
_detectWacomMouse=![[NSUserDefaults standardUserDefaults] boolForKey:@"DisableWacomMouseDetection"];
// clear state
touching=0;
lastTouchTime=0;
lastSource=0;
// passive tap
CGEventMask passiveEventMask=0;
passiveTapPort=(CFMachPortRef)CGEventTapCreate(kCGSessionEventTap,
kCGTailAppendEventTap,
kCGEventTapOptionListenOnly,
passiveEventMask,
callback,
(__bridge void *)(self));
passiveTapSource = (CFRunLoopSourceRef)CFMachPortCreateRunLoopSource(kCFAllocatorDefault, passiveTapPort, 0);
CFRunLoopAddSource(CFRunLoopGetMain(), passiveTapSource, kCFRunLoopCommonModes);
// active tap
CGEventMask activeEventMask=NSEventMaskGesture|NSScrollWheelMask;
activeTapPort=(CFMachPortRef)CGEventTapCreate(kCGSessionEventTap,
kCGTailAppendEventTap,
kCGEventTapOptionDefault,
activeEventMask,
callback,
(__bridge void *)(self));
activeTapSource = (CFRunLoopSourceRef)CFMachPortCreateRunLoopSource(kCFAllocatorDefault, activeTapPort, 0);
CFRunLoopAddSource(CFRunLoopGetMain(), activeTapSource, kCFRunLoopCommonModes);
[(AppDelegate *)[NSApp delegate] logAppEvent:@"Tap started"];
}
- (void)stop
{
if (![self isActive])
return;
CFRunLoopRemoveSource(CFRunLoopGetMain(), activeTapSource, kCFRunLoopCommonModes);
CFMachPortInvalidate(activeTapPort);
CFRelease(activeTapSource);
activeTapSource=nil;
CFRelease(activeTapPort);
activeTapPort=nil;
CFRunLoopRemoveSource(CFRunLoopGetMain(), passiveTapSource, kCFRunLoopCommonModes);
CFMachPortInvalidate(passiveTapPort);
CFRelease(passiveTapSource);
passiveTapSource=nil;
CFRelease(passiveTapPort);
passiveTapPort=nil;
[(AppDelegate *)[NSApp delegate] logAppEvent:@"Tap stopped"];
}
- (void)enableTap
{
if (!CGEventTapIsEnabled(activeTapPort)) {
CGEventTapEnable(activeTapPort, YES);
}
if (!CGEventTapIsEnabled(passiveTapPort)) {
CGEventTapEnable(passiveTapPort, YES);
}
}
- (void)resetTap
{
[self stop];
[self start];
[(AppDelegate *)[NSApp delegate] logAppEvent:@"Tap reset"];
}
@end