-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathTweak.xm
1168 lines (997 loc) · 36.7 KB
/
Tweak.xm
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* New maintainer/developer: Matthias Ringwald (mringwal)
* see README.mdfor details
*
*/
/**
* Name: Mouse
* Type: iPhone OS 3.x SpringBoard extension (MobileSubstrate-based)
* Description: Support for controlling touches externally;
* translates of position/clicks, provides a visible mouse pointer
* Author: Lance Fetters (aka. ashikase)
* Last-modified: 2010-05-22 19:41:54
*/
/**
* Copyright (C) 2009-2010 Lance Fetters (aka. ashikase)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "substrate.h"
#import <UIKit/UIKit.h>
#import <GraphicsServices/GSEvent.h>
#import <QuartzCore/QuartzCore.h>
#include <mach/mach_port.h>
#include <mach/mach_init.h>
#include <dlfcn.h>
#include "hid-support.h"
#include "RocketBootstrap.h"
typedef struct {
float x, y;
int buttons;
BOOL absolute;
} MouseEvent;
typedef enum {
MouseMessageTypeEvent,
MouseMessageTypeSetEnabled,
} MouseMessageType;
@interface CAWindowServer : NSObject
@property(readonly, assign) NSArray *displays;
+ (id)serverIfRunning;
@end
@interface CAWindowServerDisplay : NSObject
- (unsigned)clientPortAtPosition:(CGPoint)position;
@end
@interface CAContext : NSObject
@end
typedef struct {} Context;
@interface CAContextImpl : CAContext
- (Context *)renderContext;
@end
@interface SpringBoard : UIApplication
// active UI on 3.2+
-(int) activeInterfaceOrientation;
// frontmost app port on 6.0+
-(unsigned)_frontmostApplicationPort;
// unlock && undim on 3.0 & 3.1 - 6.x
-(void)resetIdleTimerAndUndim:(BOOL)fp8;
// iOS 7+
-(void)resetIdleTimerAndUndim;
@end
@interface SBAwayController : NSObject
+ (id)sharedAwayController;
- (BOOL)undimsDisplay;
- (id)awayView;
- (void)lock;
- (void)_unlockWithSound:(BOOL)fp8;
- (void)unlockWithSound:(BOOL)fp8;
- (void)unlockWithSound:(BOOL)fp8 alertDisplay:(id)fp12;
- (void)loadPasscode;
- (id)devicePasscode;
- (BOOL)isPasswordProtected;
- (void)activationChanged:(id)fp8;
- (BOOL)isDeviceLockedOrBlocked;
- (void)setDeviceLocked:(BOOL)fp8;
- (void)applicationRequestedDeviceUnlock;
- (void)cancelApplicationRequestedDeviceLockEntry;
- (BOOL)isBlocked;
- (BOOL)isPermanentlyBlocked:(double *)fp8;
- (BOOL)isLocked;
- (void)attemptUnlock;
- (BOOL)isAttemptingUnlock;
- (BOOL)attemptDeviceUnlockWithPassword:(id)fp8 alertDisplay:(id)fp12;
- (void)cancelDimTimer;
- (void)restartDimTimer:(float)fp8;
- (id)dimTimer;
- (BOOL)isDimmed;
- (void)finishedDimmingScreen;
- (void)dimScreen:(BOOL)fp8;
- (void)undimScreen;
- (void)userEventOccurred;
- (void)activate;
- (void)deactivate;
@end
// from iOS 7+
@interface SBLockScreenManager
+(id)sharedInstance;
-(void)unlockUIFromSource:(int)source withOptions:(id)options;
@property(readonly, assign) BOOL isUILocked;
@end
// from iOS 7+
@interface SBUserAgent
+(id)sharedUserAgent;
-(void)undimScreen;
@end
@interface SBUIController : NSObject
+(SBUIController*) sharedInstance;
-(void) dismissSwitcherAnimated:(BOOL)animated;
// iOS 6
-(BOOL) isSwitcherShowing;
// iOS 7
-(BOOL) isAppSwitcherShowing;
@end
// from iOS 7+
@interface SBNotificationCenterController
+(id) sharedInstance;
-(BOOL)isVisible;
- (void)presentAnimated:(BOOL)animated;
- (void)dismissAnimated:(BOOL)animated;
@end
// from iOS 7+
@interface SBControlCenterController
+(id) sharedInstance;
-(BOOL)isVisible;
- (void)presentAnimated:(BOOL)animated;
- (void)dismissAnimated:(BOOL)animated;
@end
#if !defined(__IPHONE_3_2) || __IPHONE_3_2 > __IPHONE_OS_VERSION_MAX_ALLOWED
typedef enum {
UIUserInterfaceIdiomPhone, // iPhone and iPod touch style UI
UIUserInterfaceIdiomPad, // iPad style UI
} UIUserInterfaceIdiom;
@interface UIDevice (privateAPI)
- (BOOL) userInterfaceIdiom;
@end
#endif
@interface UIView (Private)
@property(assign) CGPoint origin;
@end
@interface UIWindow (Private)
- (void)setHidden:(BOOL)fp8;
// since iOS 8
- (void)_setSecure:(BOOL)arg1;
@end
@interface UIDevice (Private)
- (BOOL)isWildcat;
@end
@interface UIScreen (fourZeroAndLater)
+(UIScreen*) mainScreen;
@property(nonatomic,readonly) CGFloat scale;
@end
@interface SpringBoard (Mouse)
- (void)setMousePointerEnabled:(BOOL)enabled;
- (void)handleMouseEventAtPoint:(CGPoint)point buttons:(int)buttons;
- (CGPoint)handleMouseEventWithX:(float)x Y:(float)y buttons:(int)buttons;
- (void)moveMousePointerToPoint:(CGPoint)point;
- (CGPoint)mouseLocation;
- (void)mouseHandleOrientationChange:(int)orientation;
- (BOOL)mouseIsLocked;
@end
#define APP_ID "jp.ashikase.mousesupport"
#define MACH_PORT_NAME APP_ID
static CFDataRef mouseCallBack(CFMessagePortRef local, SInt32 msgid, CFDataRef cfData, void *info);
// View objects for the pointer
static UIWindow *mouseWin = nil;
static UIImageView *mouseView = nil;
static Context *mouseRenderContext = NULL;
static CGSize mouseImageSize;
// Screen limits (portrait)
static float screen_width = 320;
static float screen_height = 480;
// coordinates in portrait orientatino
static CGPoint currentMouseLocation = { 0, 0};
// Define button values
#define BUTTON_PRIMARY 0x01
#define BUTTON_SECONDARY 0x02
#define BUTTON_TERTIARY 0x04
static char buttonClick = BUTTON_PRIMARY;
static char buttonLock = BUTTON_SECONDARY;
static char buttonHome = BUTTON_TERTIARY;
// cloaking works
static BOOL cloakingSupport = NO;
// iPad support
static BOOL is_iPad = NO;
// iOS 5
static BOOL is_50_or_higher = NO;
// iOS 6
static BOOL is_60_or_higher = NO;
// Window server uses bitmap coordinates
static float retina_factor = 1.0f;
// Pointer orientation
static int orientation_ = 0;
// Speed is used with relative mouse positioning
static float mouseSpeed = 1.0f;
// GS functions
static bool PurpleAllocated = NO;
static mach_port_t (*GSTakePurpleSystemEventPort)(void);
static CGSize (*$GSMainScreenSize)(void);
static float (*$GSMainScreenScaleFactor)(void);
static float (*$GSMainScreenOrientation)(void);
//==============================================================================
// NOTE: Swiped from Jay Freeman (saurik)'s Veency
//==============================================================================
#ifndef __LP64__
template <typename Type_>
static inline void lookupSymbol(const char *libraryFilePath, const char *symbolName, Type_ &function)
{
// Lookup the function
struct nlist nl[2];
memset(nl, 0, sizeof(nl));
nl[0].n_un.n_name = (char *)symbolName;
nlist(libraryFilePath, nl);
// Check whether it is ARM or Thumb
uintptr_t value = nl[0].n_value;
if ((nl[0].n_desc & N_ARM_THUMB_DEF) != 0)
value |= 0x00000001;
function = reinterpret_cast<Type_>(value);
}
#endif
template <typename Type2>
static inline void MyMSHookSymbol(Type2 *&value, const char *name, void *handle = RTLD_DEFAULT) {
value = reinterpret_cast<Type2 *>(dlsym(handle, name));
}
template <typename Type_>
static void dlset(Type_ &function, const char *name) {
function = reinterpret_cast<Type_>(dlsym(RTLD_DEFAULT, name));
// NSLog(@"hid-support: dlset %s = %p", name, function);
}
//==============================================================================
static uint8_t touchEvent[sizeof(GSEventRecord) + sizeof(GSHandInfo) + sizeof(GSPathInfo)];
// types for touches
typedef enum __GSHandInfoType2 {
kGSHandInfoType2TouchDown = 1, // first down
kGSHandInfoType2TouchDragged = 2, // drag
kGSHandInfoType2TouchChange = 5, // nr touches change
kGSHandInfoType2TouchFinal = 6, // final up
} GSHandInfoType2;
static void sendGSEventToSpringBoard(GSEventRecord *eventRecord){
mach_port_t purple(0);
purple = (*GSTakePurpleSystemEventPort)();
if (purple) {
GSSendEvent(eventRecord, purple);
}
if (purple && PurpleAllocated){
mach_port_deallocate(mach_task_self(), purple);
}
}
// decide on GSHandInfoType
static GSHandInfoType getHandInfoType(int touch_before, int touch_now){
if (!touch_before) {
return (GSHandInfoType) kGSHandInfoType2TouchDown;
}
if (touch_before == touch_now){
return (GSHandInfoType) kGSHandInfoType2TouchDragged;
}
if (touch_now) {
return (GSHandInfoType) kGSHandInfoType2TouchChange;
}
return (GSHandInfoType) kGSHandInfoType2TouchFinal;
}
static void postMouseEventToSpringBoard(float x, float y, int click){
static int prev_click = 0;
if (!click && !prev_click) return;
CGPoint location = CGPointMake(x, y);
// structure of touch GSEvent
struct GSTouchEvent {
GSEventRecord record;
GSHandInfo handInfo;
} * event = (struct GSTouchEvent*) &touchEvent;
bzero(touchEvent, sizeof(touchEvent));
// set up GSEvent
event->record.type = kGSEventHand;
event->record.windowLocation = location;
event->record.timestamp = GSCurrentEventTimestamp();
event->record.infoSize = sizeof(GSHandInfo) + sizeof(GSPathInfo);
event->handInfo.type = getHandInfoType(prev_click, click);
if (is_50_or_higher){
event->handInfo.x52 = 1;
} else {
event->handInfo.pathInfosCount = 1;
}
bzero(&event->handInfo.pathInfos[0], sizeof(GSPathInfo));
event->handInfo.pathInfos[0].pathIndex = 1;
event->handInfo.pathInfos[0].pathIdentity = 2;
event->handInfo.pathInfos[0].pathProximity = click ? 0x03 : 0x00;;
event->handInfo.pathInfos[0].pathLocation = location;
// send GSEvent to SpringBoard
sendGSEventToSpringBoard( (GSEventRecord*) event);
prev_click = click;
}
//==============================================================================
static void try_rocketbootstrap_cfmessageportexposelocal(CFMessagePortRef local){
void * rbs_lib = dlopen("/usr/lib/librocketbootstrap.dylib", RTLD_LAZY);
if (!rbs_lib) return;
void (*cfmessageportexposelocal)(CFMessagePortRef) =(void (*)(CFMessagePortRef)) dlsym(rbs_lib, "rocketbootstrap_cfmessageportexposelocal");
if (!cfmessageportexposelocal);
cfmessageportexposelocal(local);
}
//==============================================================================
static void loadPreferences()
{
// defaults
BOOL swapButtonsLeftRight = NO;
mouseSpeed = 1.0f;
NSArray *keys = [NSArray arrayWithObjects:@"swapButtonsOneTwo", @"swapButtonsTwoThree", @"mouseSpeed", nil];
NSDictionary *dict = (NSDictionary *)CFPreferencesCopyMultiple((CFArrayRef)keys, CFSTR(APP_ID),
kCFPreferencesCurrentUser, kCFPreferencesCurrentHost);
// NSLog(@"MouseSupport prefs %@", dict);
if (dict) {
NSArray *values = [dict objectsForKeys:keys notFoundMarker:[NSNull null]];
id obj;
obj = [values objectAtIndex:0];
if ([obj isKindOfClass:[NSNumber class]])
swapButtonsLeftRight = [obj boolValue];
//
// ignore swap buttons 2 & 3
//
obj = [values objectAtIndex:2];
if ([obj isKindOfClass:[NSNumber class]])
mouseSpeed = [obj floatValue];
[dict release];
}
// set mouse buttons
if (swapButtonsLeftRight) {
buttonHome = BUTTON_PRIMARY;
buttonLock = BUTTON_SECONDARY;
buttonClick = BUTTON_TERTIARY;
} else {
buttonClick = BUTTON_PRIMARY;
buttonLock = BUTTON_SECONDARY;
buttonHome = BUTTON_TERTIARY;
}
}
static void reloadPreferences(CFNotificationCenterRef center, void *observer,
CFStringRef name, const void *object, CFDictionaryRef userInfo)
{
// NOTE: Must synchronize preferences from disk
CFPreferencesAppSynchronize(CFSTR(APP_ID));
loadPreferences();
}
static void updateOrientation()
{
mouseView.transform = CGAffineTransformMakeRotation(orientation_ * M_PI / 180.0f);
}
static CFDataRef mouseCallBack(CFMessagePortRef local, SInt32 msgid, CFDataRef cfData, void *info)
{
// orig:
// static BOOL idleTimerDisabled = NO;
// NOTE: Handle the most common case first
switch (msgid) {
case MouseMessageTypeEvent:
// Handle the mouse event
if (CFDataGetLength(cfData) == sizeof(MouseEvent)) {
MouseEvent *event = (MouseEvent *)[(NSData *)cfData bytes];
if (event != NULL) {
SpringBoard *springBoard = (SpringBoard *)[UIApplication sharedApplication];
if (event->absolute) {
[springBoard handleMouseEventAtPoint:CGPointMake(event->x, event->y) buttons:event->buttons];
}
else {
[springBoard handleMouseEventWithX:event->x Y:event->y buttons:event->buttons];
}
}
}
break;
case MouseMessageTypeSetEnabled:
// Make sure pointer is visible and matches device orientation
if (CFDataGetLength(cfData) == sizeof(BOOL)) {
BOOL *enabled = (BOOL *)[(NSData *)cfData bytes];
if (enabled != NULL) {
SpringBoard *springBoard = (SpringBoard *)[UIApplication sharedApplication];
[springBoard setMousePointerEnabled:(*enabled)];
}
}
break;
default:
NSLog(@"Mouse: Unknown message type: %x", (int) msgid);
break;
}
// Do not return a reply to the caller
return NULL;
}
//
// support for notification center gestures
//
#define EDGE_THRESHOLD 2.0f
#define ACTIVATE_THRESHOLD 100.0f;
@interface SBBulletinListController : NSObject
-(void)showListViewAnimated:(BOOL)animated;
-(void)hideListViewAnimated:(BOOL)animated;
-(BOOL)listViewIsActive;
@end
typedef enum {
no_touch = 1,
swipe_from_top,
swipe_from_bottom,
wait_for_release
} gesture_t;
static gesture_t control_gesture_state = no_touch;
static gesture_t notification_gesture_state = no_touch;
float getMouseInterfaceYForCurrentOrientation(CGPoint point){
switch (orientation_) {
default:
case 0: // Home button bottom
return point.y;
case 90: // Home button right
return screen_width - point.x;
case -90: // Home button left
return point.x;
case 180: // Home button top
return screen_height - point.y;
}
}
float getInterfaceHeightForCurrentOrientation(void){
switch (orientation_) {
default:
case 0: // Home button bottom
case 180: // Home button top
return screen_height;
case -90: // Home button left
case 90: // Home button right
return screen_width;
}
}
BOOL mouseAtTopEdge(CGPoint point){
return getMouseInterfaceYForCurrentOrientation(point) <= EDGE_THRESHOLD;
}
BOOL mouseAtBottomEdge(CGPoint point){
float distanceToBottom = getInterfaceHeightForCurrentOrientation() - getMouseInterfaceYForCurrentOrientation(point);
return distanceToBottom <= EDGE_THRESHOLD;
}
BOOL mouseBelowTopThreshold(CGPoint point){
return getMouseInterfaceYForCurrentOrientation(point) >= ACTIVATE_THRESHOLD;
}
BOOL mouseAboveBottomThreshold(CGPoint point){
return getInterfaceHeightForCurrentOrientation() - getMouseInterfaceYForCurrentOrientation(point) >= ACTIVATE_THRESHOLD;
}
// return true if event was handled/eaten
BOOL isControlCenterShown(){
return [(SBControlCenterController*) [%c(SBControlCenterController) sharedInstance] isVisible];
}
BOOL isNotificationCenterShown(){
return [(SBBulletinListController*) [%c(SBBulletinListController) sharedInstance] listViewIsActive] ||
[(SBNotificationCenterController*) [%c(SBNotificationCenterController) sharedInstance] isVisible];
}
BOOL handleNotificationCenterGestures(CGPoint point, int button){
if (isControlCenterShown()) return false;
if (control_gesture_state != no_touch) false;
// iOS 5-6
SBBulletinListController * bulletinController = (SBBulletinListController*) [%c(SBBulletinListController) sharedInstance];
// iOS 7
SBNotificationCenterController * notificationController = (SBNotificationCenterController*) [%c(SBNotificationCenterController) sharedInstance];
if (!bulletinController && !notificationController) return false;
BOOL isShown = isNotificationCenterShown();
// state = local state + list view is active
switch (notification_gesture_state){
case no_touch:
if (!button) break;
if (isShown){
if (!mouseAtBottomEdge(point)) break;
notification_gesture_state = swipe_from_bottom;
} else {
if (!mouseAtTopEdge(point)) break;
notification_gesture_state = swipe_from_top;
}
return true;
case swipe_from_top:
if (!button || isShown){
notification_gesture_state = no_touch;
break;
}
if (!mouseBelowTopThreshold(point)) break;
[bulletinController showListViewAnimated:YES];
[notificationController presentAnimated:YES];
notification_gesture_state = wait_for_release;
return true;
case swipe_from_bottom:
if (!button || !isShown){
notification_gesture_state = no_touch;
break;
}
if (!mouseAboveBottomThreshold(point)) break;
[bulletinController hideListViewAnimated:YES];
[notificationController dismissAnimated:YES];
notification_gesture_state = wait_for_release;
return true;
case wait_for_release:
if (button) break;
notification_gesture_state = no_touch;
return true;
}
return false;
}
// return true if event was handled/eaten
BOOL handleControlCenterGestures(CGPoint point, int button){
if (isNotificationCenterShown()) return false;
if (notification_gesture_state != no_touch) false;
// iOS 7
SBControlCenterController * controlCenterController = (SBControlCenterController*) [%c(SBControlCenterController) sharedInstance];
if (!controlCenterController) return false;
BOOL isShown = isControlCenterShown();
// state = local state + list view is active
switch (control_gesture_state){
case no_touch:
if (!button) break;
if (isShown){
if (!mouseAtTopEdge(point)) break;
control_gesture_state = swipe_from_top;
} else {
if (!mouseAtBottomEdge(point)) break;
control_gesture_state = swipe_from_bottom;
}
return true;
case swipe_from_bottom:
if (!button || isShown){
control_gesture_state = no_touch;
break;
}
if (!mouseAboveBottomThreshold(point)) break;
[controlCenterController presentAnimated:YES];
control_gesture_state = wait_for_release;
return true;
case swipe_from_top:
if (!button || !isShown){
control_gesture_state = no_touch;
break;
}
if (!mouseBelowTopThreshold(point)) break;
[controlCenterController dismissAnimated:YES];
control_gesture_state = wait_for_release;
return true;
case wait_for_release:
if (button) break;
control_gesture_state = no_touch;
return true;
}
return false;
}
// END NOTIFICATION CENTER CODE
#ifndef __LP64__
#define QuartzCore "/System/Library/Frameworks/QuartzCore.framework/QuartzCore"
// NOTE: The mouse pointer image interferes with hit tests as the pointer
// covers the point being clicked. To work around this, make hit tests
// on the render context of the mouse pointer always return NULL;
// CA::Render::Context::hit_test(CGPoint, unsigned int)
MSHook(void *, _ZN2CA6Render7Context8hit_testE7CGPointj, Context *context, CGPoint point, unsigned int unknown)
{
return (context == mouseRenderContext) ? NULL : __ZN2CA6Render7Context8hit_testE7CGPointj(context, point, unknown);
}
// CA::Render::Context::hit_test(CA::Vec2<float> const&, unsigned int)
MSHook(void *, _ZN2CA6Render7Context8hit_testERKNS_4Vec2IfEEj, Context *context, void * point, unsigned int unknown)
{
return (context == mouseRenderContext) ? NULL : __ZN2CA6Render7Context8hit_testERKNS_4Vec2IfEEj(context, point, unknown);
}
#endif
//
// Lock/Dim management - handled by hid-support before iOS 6
// -- hid-support is in backboardd from iOS 6 on, so it cannot handle lock/dimming
// -- we do it here in lack of a better / not complex solution to this
static bool isLocked() {
// pre iOS 7:
if (%c(SBAwayController)){
return [[%c(SBAwayController) sharedAwayController] isLocked];
}
if (%c(SBLockScreenManager)){
// request device unlock, if locked
SBLockScreenManager * sbLockScreenManager = (SBLockScreenManager*) [%c(SBLockScreenManager) sharedInstance];
return [sbLockScreenManager isUILocked];
}
return NO;
}
static void undimDisplay(){
// pre iOS 7:
if (%c(SBAwayController)){
// prevent dimming - from BTstack Keyboard
[(SpringBoard *)[%c(SpringBoard) sharedApplication] resetIdleTimerAndUndim:YES];
}
if (%c(SBLockScreenManager)){
// turn on screen (nop if already on)
SBUserAgent * sbUserAget = [%c(SBUserAgent) sharedUserAgent];
[sbUserAget undimScreen];
// and prevent dimming
[(SpringBoard *)[%c(SpringBoard) sharedApplication] resetIdleTimerAndUndim];
}
}
static void unlockDevice(){
// pre iOS 7:
if (%c(SBAwayController)){
// from BTstack Keyboard
bool wasDimmed = [[%c(SBAwayController) sharedAwayController] isDimmed ];
bool wasLocked = [[%c(SBAwayController) sharedAwayController] isLocked ];
// handle user unlock
if ( wasDimmed || wasLocked ){
[[%c(SBAwayController) sharedAwayController] attemptUnlock];
[[%c(SBAwayController) sharedAwayController] unlockWithSound:NO];
}
}
if (%c(SBLockScreenManager)){
// request device unlock, if locked
SBLockScreenManager * sbLockScreenManager = (SBLockScreenManager*) [%c(SBLockScreenManager) sharedInstance];
if ([sbLockScreenManager isUILocked]){
[sbLockScreenManager unlockUIFromSource:0 withOptions:nil];
}
}
}
%hook SpringBoard
%new(v@:c)
- (void)setMousePointerEnabled:(BOOL)enabled
{
static int pointerRefCount = 0;
// update ref count
if (enabled) {
pointerRefCount++;
} else if (pointerRefCount > 0){
pointerRefCount--;
}
if (pointerRefCount) {
if (mouseWin) return;
// Create a transparent window that will float above everything else
// NOTE: The window level value was not chosen scientifically; it is
// assumed to be large enough (the largest values used by
// SpringBoard seen so far have been less than 2000).
mouseWin = [[UIWindow alloc] initWithFrame:CGRectZero];
mouseWin.windowLevel = 5001; // CallBar uses 5000
[mouseWin setUserInteractionEnabled:NO];
[mouseWin setHidden:NO];
if ([mouseWin respondsToSelector:@selector(_setSecure:)]){
NSLog(@"Set Secure to YES");
[mouseWin _setSecure:YES];
}
// Create a mouse pointer and add to the window
mouseView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"MousePointer.png"]];
mouseImageSize = mouseView.bounds.size;
// NSLog(@"image size %f,%f", mouseImageSize.width, mouseImageSize.height);
[mouseWin addSubview:mouseView];
// Set the initial orientation and limits for the pointer
updateOrientation();
if (cloakingSupport) {
// Store the address of the window's render context to cloak it from clicks
CAContextImpl *&_layerContext = MSHookIvar<CAContextImpl *>(mouseWin, "_layerContext");
if (_layerContext != NULL)
mouseRenderContext = [_layerContext renderContext];
}
} else {
mouseRenderContext = NULL;
[mouseView release];
mouseView = nil;
[mouseWin release];
mouseWin = nil;
}
}
// handles size of mouse pointer
%new(v@:{CGPoint=ff})
-(void)moveMousePointerToPoint:(CGPoint)point
{
currentMouseLocation = point;
// NSLog(@"moveMousePointerToPoint %f/%f orientation %u, cloakingSupport", point.x, point.y, orientation_, cloakingSupport);
// Get pos of on-screen pointer
CGPoint mousePoint;
switch(orientation_){
default:
case 0:
mousePoint.x = point.x;
mousePoint.y = point.y;
if (!cloakingSupport){
mousePoint.x += 1;
mousePoint.y += 1;
}
break;
case 90:
mousePoint.x = point.x - mouseImageSize.height;
mousePoint.y = point.y;
if (!cloakingSupport){
mousePoint.x -= 1;
mousePoint.y += 1;
}
break;
case 180:
mousePoint.x = point.x - mouseImageSize.width;
mousePoint.y = point.y - mouseImageSize.height;
if (!cloakingSupport){
mousePoint.x -= 1;
mousePoint.y -= 1;
}
break;
case -90: // Home button left
case 270:
mousePoint.x = point.x;
mousePoint.y = point.y - mouseImageSize.width;
if (!cloakingSupport){
mousePoint.x += 1;
mousePoint.y -= 1;
}
break;
}
mouseView.origin = mousePoint;
}
%new({CGPoint=ff}@:)
- (CGPoint)mouseLocation{
return currentMouseLocation;
}
// @deprecated: use hid_inject_gseventrecord directly
%new(v@:^v)
-(void)sendCustomMouseEvent:(void *) event{
// NSLog(@"sendCustomMouseEvent");
hid_inject_gseventrecord((uint8_t*)event);
}
%new(v@:{CGPoint=ff}i)
- (void)handleMouseEventAtPoint:(CGPoint)point buttons:(int)buttons
{
// NSLog(@"handleMouseEventAtPoint %f/%f, buttons %u (click %u, home %u)", point.x, point.y, buttons, buttonClick, buttonHome);
// NOTE: Must store button state for comparision, port for
// mouse dragging and button up
static int buttons_;
int diff = buttons_ ^ buttons;
bool twas((buttons_ & buttonClick) != 0);
bool tis ((buttons & buttonClick) != 0);
buttons_ = buttons;
// Round point values to prevent subpixel coordinates
point.x = roundf(point.x);
point.y = roundf(point.y);
// Get pos of on-screen pointer
[self moveMousePointerToPoint:point];
// unlock/undim if needed on iOS 6 and higher
if (is_60_or_higher) {
if (isLocked()){
if (diff){
unlockDevice();
undimDisplay();
}
} else {
undimDisplay();
}
}
// Check for mouse button events
if ((diff & 0x10) != 0) {
// Simulate Headset button press
struct GSEventRecord record;
memset(&record, 0, sizeof(record));
record.timestamp = GSCurrentEventTimestamp();
record.type = (buttons & 0x10) != 0 ? kGSEventHeadsetButtonDown : kGSEventHeadsetButtonUp;
GSSendSystemEvent(&record);
}
if ((diff & buttonHome) != 0) {
if (buttons & buttonHome){
hid_inject_button_down(HWButtonHome);
} else {
hid_inject_button_up(HWButtonHome);
}
}
if ((diff & buttonLock) != 0) {
if (buttons & buttonLock){
hid_inject_button_down(HWButtonLock);
} else {
hid_inject_button_up(HWButtonLock);
}
}
if (twas != tis || tis) {
// support notification center
BOOL done = handleNotificationCenterGestures(point, tis);
if (done) return;
done = handleControlCenterGestures(point, tis);
if (done) return;
// forward all apps to SpringBoard while app switcher is showing
SBUIController * controller = [%c(SBUIController) sharedInstance];
if ([controller respondsToSelector:@selector(isSwitcherShowing)]){
if ([controller isSwitcherShowing]){
postMouseEventToSpringBoard(point.x, point.y, buttons & 1);
return;
}
}
hid_inject_mouse_abs_move(buttons & buttonClick ? 1 : 0, point.x, point.y);
}
}
// NOTE: Values of x and y are relative to the previous value, not absolute
%new({CGPoint=ff}@:{CGPoint=ff}i)
- (CGPoint)handleMouseEventWithX:(float)x Y:(float)y buttons:(int)buttons
{
x *= mouseSpeed;
y *= mouseSpeed;
CGPoint point = [self mouseLocation];
switch (orientation_) {
case 0: // Home button bottom
point.x += x;
point.y += y;
break;
case 90: // Home button right
point.x -= y;
point.y += x;
break;
case -90: // Home button left
point.x += y;
point.y -= x;
break;
case 180: // Home button top
point.x -= x;
point.y -= y;
break;
default:
break;
}
CGPoint outer = { 0,0 };
if (point.x < 0) {
outer.x = point.x;
point.x = 0;
}
if (point.x > screen_width) {
outer.x = point.x - screen_width;
point.x = screen_width;
}
if (point.y < 0) {
outer.y = point.y;
point.y = 0;
}
if (point.y > screen_height) {
outer.y = point.y - screen_height;
point.y = screen_height;
}
[self handleMouseEventAtPoint:point buttons:buttons];
return outer;
}
%new
-(void)mouseHandleOrientationChange:(int)orientation{
// Update pointer orientation
switch (orientation) {
case UIInterfaceOrientationPortraitUpsideDown:
orientation_ = 180;
break;
case UIInterfaceOrientationLandscapeLeft:
orientation_ = -90;
break;
case UIInterfaceOrientationLandscapeRight:
orientation_ = 90;
break;