-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAutoRotate.xm
234 lines (185 loc) · 4.61 KB
/
AutoRotate.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
#define PLIST_PATH @"/var/mobile/Library/Preferences/com.i0stweak3r.autorotate.plist"
#include <UIKit/UIKit.h>
#include <Foundation/Foundation.h>
inline bool GetPrefBool(NSString *key) {
return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
}
static bool kEnabled = YES;
static bool kiPadCapable= YES;
static bool kKey1 = YES;
//Lockscreen rotation
static bool kKey2 = YES;
//landscape rotation style
static bool kKey3 = YES;
//iPhone rotation style
static bool kKey31 = YES;
//iOS 10 CC always shifted
static bool kWantsDragging = YES;
//Can rotate while dragging icons
//One main method for iPad landscape style
%hook SBPlatformController
-(long long)medusaCapabilities {
if((kEnabled)&& (kKey2) &&(kiPadCapable)) {
return 1;
}
return %orig;
}
%end
/**
not used, for more possible split screen uses, iPad features
%hook UIApplication
-(bool)SKUI_isMedusaActive {
if((GetPrefBool(@"enabled"))&& (GetPrefBool(@"wantsMedusa"))) {
return 1;
}
return %orig;
}
%end
%hook SBMainWorkspace
-(BOOL)isMedusaEnabled {
if((GetPrefBool(@"enabled"))&& (GetPrefBool(@"wantsMedusa"))) {
return TRUE;
}
return %orig;
}
%end
**/
/*This is main method that rotates apps and makes them more like iPad, but crashes some. Need to use an AppList for this for final updated release. */
%hook SBApplication
-(BOOL)isMedusaCapable {
if((kEnabled)&& (kKey2) &&(kiPadCapable)) {
return YES;
}
return %orig;
}
%end
%hook SpringBoard
-(bool) homeScreenSupportsRotation {
if((kEnabled) && (kKey2)) {
return YES;
}
return %orig;
}
%end
//iOS 11.0+ only method
%hook SBHomeScreenViewController
-(bool)homeScreenAutorotatesEvenWhenIconIsDragging {
if((kEnabled) && (kWantsDragging)) {
return TRUE;
}
return %orig;
}
-(void)setHomeScreenAutorotatesEvenWhenIconIsDragging:(bool)arg1 {
if((kEnabled) && (kWantsDragging)) {
arg1= TRUE;
return %orig(arg1);
}
return %orig;
}
%end
//Lockscreen rotation
%hook SBDashBoardViewController
-(bool) shouldAutorotate {
if((kEnabled) && (kKey1)) {
return TRUE;
}
return %orig;
}
%end
%hook SBMedusaSettings
-(bool)anyRotationDebuggingEnabled {
if(kEnabled) {
return TRUE;
}
return %orig;
}
%end
%hook UIApplicationRotationFollowingWindow
-(bool)isInterfaceAutorotationDisabled {
if(kEnabled) {
return FALSE;
}
return %orig;
}
%end
%hook UIApplicationRotationFollowingController
-(bool) shouldAutorotate {
if(kEnabled) {
return TRUE;
}
return %orig;
}
-(bool) shouldAutorotateToInterfaceOrientation:(long long)arg1 {
if((kEnabled) && (kKey2)) {
return TRUE;
%orig;
}
return %orig;
}
-(void) setSizesWindowToScene:(bool)arg1 {
if((kEnabled) && (kKey2)) {
arg1= TRUE;
return %orig(arg1);
}
return %orig;
}
%end
%hook UIClientRotationContext
-(void) setupRotationOrderingKeyboardInAfterRotation:(bool)arg1 {
if((kEnabled) && (kKey2)) {
arg1= TRUE;
return %orig(arg1);
}
return %orig;
}
/* not sure if this method is needed but seems to work ok with landscape */
%end
%hook SpringBoard
-(long long) homeScreenRotationStyle {
if((kEnabled) && (kKey2)) {
return 1;
//iPad rotation style
}
else if((kEnabled) && (kKey3)) {
return 2;
/* Normal iOS 11 rotation style verticle dock
should probably remove kKey31 so it's automatic if enabled */
}
else {
return %orig;
}
}
%end
/* supports upside down CC ios 10, this isn't updated for iOS 11 yet */
%hook CCUIControlCenterPageContainerViewController
-(long long) layoutStyle {
if((kKey31) && (kEnabled)) {
return 1;
}
return %orig;
}
%end
static void loadPrefs()
{
NSMutableDictionary *prefs = [[NSMutableDictionary alloc] initWithContentsOfFile:PLIST_PATH];
if(prefs)
{
kEnabled = ([prefs objectForKey:@"enabled"] ? [[prefs objectForKey:@"enabled"] boolValue] : NO);
kKey1 = ([prefs objectForKey:@"key1"] ? [[prefs objectForKey:@"key1"] boolValue] : NO);
kKey2 = ([prefs objectForKey:@"key2"] ? [[prefs objectForKey:@"key2"] boolValue] : NO);
kKey3 = ([prefs objectForKey:@"key3"] ? [[prefs objectForKey:@"key3"] boolValue] : NO);
kKey31 = ([prefs objectForKey:@"key31"] ? [[prefs objectForKey:@"key31"] boolValue] : NO);
kiPadCapable = ([prefs objectForKey:@"iPadCapable"] ? [[prefs objectForKey:@"iPadCapable"] boolValue] : NO);
kWantsDragging = ([prefs objectForKey:@"wantsDragging"] ? [[prefs objectForKey:@"wantsDragging"] boolValue] : NO);
}
[prefs release];
}
static void settingschanged(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
{
loadPrefs();
}
%ctor
{
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, settingschanged, CFSTR("com.i0stweak3r.autorotate/saved"), NULL, CFNotificationSuspensionBehaviorCoalesce);
loadPrefs();
}