-
Notifications
You must be signed in to change notification settings - Fork 66
/
TRTouchposeApplication.m
300 lines (246 loc) · 9.66 KB
/
TRTouchposeApplication.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
// Copyright 2012 Todd Reed
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#import <QuartzCore/QuartzCore.h>
#import <objc/runtime.h>
#import "TRTouchposeApplication.h"
#import "TRTouchposeCircleTouchView.h"
NSString *const TRTouchposeTouchesVisibleDidChange = @"TRTouchposeTouchesVisibleDidChange";
@interface TRTouchposeApplication ()
- (void)keyWindowChanged:(UIWindow *)window;
- (void)bringTouchViewToFront;
@end
/// The TRTouchposeTouchesView is an overlay view that is used as the superview for
/// TRTouchposeTouchView instances.
@interface TRTouchposeTouchesView : UIView
- (instancetype)initWithFrame:(CGRect)frame touchViewFactory:(id<TRTouchposeTouchViewFactory>)touchViewFactory;
@end
@implementation TRTouchposeTouchesView
{
// Dictionary of touches being displayed. Keys are UITouch pointers and values are UIView pointers that visually represent
// the touch on-screen. (A CFMutableDictionaryRef is used because NSDictionary requries its keys to conform to the
// NSCopying protocol and UITouch doesn't. We don't need to retain either the UITouch or UIView instances because UITouch
// objects are persistent throughout a multi-touch sequence, and the UIViews are retained by their superview.)
CFMutableDictionaryRef _touchDictionary;
id<TRTouchposeTouchViewFactory> _touchViewFactory;
}
#pragma mark - NSObject
- (void)dealloc
{
CFRelease(_touchDictionary);
}
#pragma mark - UIView
- (instancetype)initWithFrame:(CGRect)frame
{
return [self initWithFrame:frame touchViewFactory:[[TRTouchposeCircleTouchViewFactory alloc] init]];
}
- (instancetype)initWithFrame:(CGRect)frame touchViewFactory:(id<TRTouchposeTouchViewFactory>)touchViewFactory
{
NSParameterAssert(touchViewFactory != nil);
self = [super initWithFrame:frame];
_touchDictionary = CFDictionaryCreateMutable(NULL, 10, NULL, NULL);
_touchViewFactory = touchViewFactory;
return self;
}
#pragma mark - TRTouchposeTouchesView
- (void)removeTouchesActiveTouches:(NSSet *)activeTouches
{
CFIndex count = CFDictionaryGetCount(_touchDictionary);
if (count > 0)
{
void const * keys[count];
void const * values[count];
CFDictionaryGetKeysAndValues(_touchDictionary, keys, values);
for (CFIndex i = 0; i < count; ++i)
{
UITouch *touch = (__bridge UITouch *)keys[i];
if (activeTouches == nil || ![activeTouches containsObject:touch])
{
UIView *view = (__bridge UIView *)values[i];
CFDictionaryRemoveValue(_touchDictionary, (__bridge const void *)(touch));
[view removeFromSuperview];
}
}
}
}
- (void)updateTouches:(NSSet *)touches
{
for (UITouch *touch in touches)
{
CGPoint point = [touch locationInView:self];
UIView<TRTouchposeTouchView> *fingerView = (UIView<TRTouchposeTouchView> *)CFDictionaryGetValue(_touchDictionary, (__bridge const void *)(touch));
if (touch.phase == UITouchPhaseCancelled || touch.phase == UITouchPhaseEnded)
{
// Note that there seems to be a bug in iOS: we won't observe all UITouches
// in the UITouchPhaseEnded phase, resulting in some finger views being left
// on the screen when they shouldn't be. See
// https://discussions.apple.com/thread/1507669?start=0&tstart=0 for other's
// comments about this issue. No workaround is implemented here.
if (fingerView != nil)
{
// Remove the touch from the
CFDictionaryRemoveValue(_touchDictionary, (__bridge const void *)(touch));
[fingerView removeFromSuperview];
}
}
else
{
if (fingerView == nil)
{
fingerView = [_touchViewFactory touchViewAtPoint:point];
[self addSubview:fingerView];
CFDictionarySetValue(_touchDictionary, (__bridge const void *)(touch), (__bridge const void *)(fingerView));
}
else
{
fingerView.touchPoint = point;
}
}
}
[self removeTouchesActiveTouches:touches];
}
@end
IMP SwizzleMethod(Class c, SEL sel, IMP newImplementation)
{
Method method = class_getInstanceMethod(c, sel);
IMP originalImplementation = method_getImplementation(method);
if (!class_addMethod(c, sel, newImplementation, method_getTypeEncoding(method)))
method_setImplementation(method, newImplementation);
return originalImplementation;
}
static void (*UIWindow_orig_becomeKeyWindow)(UIWindow *, SEL);
// This method replaces -[UIWindow becomeKeyWindow] (but calls the original -becomeKeyWindow). This
// is used to move the overlay to the current key window.
static void UIWindow_new_becomeKeyWindow(UIWindow *window, SEL _cmd)
{
TRTouchposeApplication *application = (TRTouchposeApplication *)[UIApplication sharedApplication];
[application keyWindowChanged:window];
(*UIWindow_orig_becomeKeyWindow)(window, _cmd);
}
static void (*UIWindow_orig_didAddSubview)(UIWindow *, SEL, UIView *);
// This method replaces -[UIWindow didAddSubview:] (but calls the original -didAddSubview:). This is
// used to keep the overlay view the top-most view of the window.
static void UIWindow_new_didAddSubview(UIWindow *window, SEL _cmd, UIView *view)
{
if (![view conformsToProtocol:@protocol(TRTouchposeTouchView)])
{
TRTouchposeApplication *application = (TRTouchposeApplication *)[UIApplication sharedApplication];
[application bringTouchViewToFront];
}
(*UIWindow_orig_didAddSubview)(window, _cmd, view);
}
@implementation TRTouchposeApplication
{
TRTouchposeTouchesView *_touchesView;
}
#pragma mark - NSObject
- (instancetype)init
{
if ((self = [super init]))
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidFinishLaunching:) name:UIApplicationDidFinishLaunchingNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenDidConnectNotification:) name:UIScreenDidConnectNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenDidDisonnectNotification:) name:UIScreenDidDisconnectNotification object:nil];
_automaticallyManageTouchesWhenScreenMirrored = YES;
_touchViewFactory = [[TRTouchposeCircleTouchViewFactory alloc] init];
_touchesView = [[TRTouchposeTouchesView alloc] init];
_touchesView.backgroundColor = [UIColor clearColor];
_touchesView.opaque = NO;
_touchesView.userInteractionEnabled = NO;
}
return self;
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
#pragma mark - UIApplication
- (void)sendEvent:(UIEvent *)event
{
if (_showTouches)
[_touchesView updateTouches:[event allTouches]];
[super sendEvent:event];
}
#pragma mark - TRApplication
- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
// We intercept calls to -becomeKeyWindow and -didAddSubview of UIWindow to manage the
// overlay view TRTouchposeTouchesView and ensure it remains the top-most window.
UIWindow_orig_didAddSubview = (void (*)(UIWindow *, SEL, UIView *))SwizzleMethod([UIWindow class], @selector(didAddSubview:), (IMP)UIWindow_new_didAddSubview);
UIWindow_orig_becomeKeyWindow = (void (*)(UIWindow *, SEL))SwizzleMethod([UIWindow class], @selector(becomeKeyWindow), (IMP)UIWindow_new_becomeKeyWindow);
self.showTouches = _automaticallyManageTouchesWhenScreenMirrored || [self hasMirroredScreen];
}
- (void)screenDidConnectNotification:(NSNotification *)notification
{
if (_automaticallyManageTouchesWhenScreenMirrored && [self hasMirroredScreen])
self.showTouches = YES;
}
- (void)screenDidDisonnectNotification:(NSNotification *)notification
{
if (_automaticallyManageTouchesWhenScreenMirrored && [self hasMirroredScreen])
self.showTouches = NO;
}
- (void)keyWindowChanged:(UIWindow *)window
{
if (_touchesView)
[window addSubview:_touchesView];
}
- (void)bringTouchViewToFront
{
if (_touchesView)
[_touchesView.window bringSubviewToFront:_touchesView];
}
- (BOOL)hasMirroredScreen
{
BOOL hasMirroredScreen = NO;
NSArray *screens = [UIScreen screens];
if ([screens count] > 1)
{
for (UIScreen *screen in screens)
{
if (screen.mirroredScreen != nil)
{
hasMirroredScreen = YES;
break;
}
}
}
return hasMirroredScreen;
}
- (void)showTouchViews
{
UIWindow *window = self.keyWindow;
if (window)
{
_touchesView.frame = window.bounds;
[window addSubview:_touchesView];
}
}
- (void)hideTouchViews
{
[_touchesView removeFromSuperview];
}
- (void)setShowTouches:(BOOL)showTouches
{
BOOL equal = (_showTouches && showTouches) || (!_showTouches && !showTouches);
if (!equal)
{
if (showTouches)
[self showTouchViews];
else
[self hideTouchViews];
_showTouches = showTouches;
[[NSNotificationCenter defaultCenter] postNotificationName:TRTouchposeTouchesVisibleDidChange object:self];
}
}
@end