This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Tweak.xm
504 lines (413 loc) · 19.3 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
//
// Tweak.mm
// Ultrasound
//
// Created by Ayden Panhuyzen on 9/4/18.
// Copyright © 2018 Ayden Panhuyzen. All rights reserved.
//
#import "Headers.h"
#import "NSObject+SafeKVC.h"
#import "_ABVolumeHUDOrientationManager.h"
#import "ABVolumeHUDSystemVolumeInfoProvider.h"
#import "ABVolumeHUDSystemTapticFeedbackProvider.h"
// Use boot backlight adjustment source as it will never be used by SpringBoard directly
#define kWillowBacklightAdjustmentSource 15
#define kPrefsAppID CFSTR("applebetas.ios.tweak.willow")
@interface VolumeControl (Additions)
- (void)__us_commonInit;
- (BOOL)__us_presentVolumeHUDWithMode:(int)mode volume:(float)volume;
- (void)__us_presentVolumeHUDWithMode:(int)mode;
- (void)updateSliderVolumeWithNotification:(NSNotification *)note;
- (void)volumeHUDControlHidden;
@end
// MARK: - Convenience
static void wakeScreen() {
[[%c(SBLockScreenManager) sharedInstance] unlockUIFromSource:0x5 withOptions:@{@"SBUIUnlockOptionsStartFadeInAnimation": @YES, @"SBUIUnlockOptionsTurnOnScreenFirstKey": @YES}];
[[%c(SBScreenWakeAnimationController) sharedInstance] _startWakeIfNecessary];
}
static SBLockScreenViewControllerBase *getLockScreenViewController() {
SBLockScreenManager *manager = [%c(SBLockScreenManager) sharedInstance];
if ([manager respondsToSelector:@selector(coverSheetViewController)]) return [manager coverSheetViewController];
if ([manager respondsToSelector:@selector(lockScreenViewController)]) return [manager lockScreenViewController];
return nil;
}
// MARK: - Settings
static BOOL hasLoadedSettings = NO;
static BOOL enabled = YES;
static CGFloat timeout = 1.5;
static BOOL showVolumePercentage = YES;
static BOOL enableOLEDMode = YES;
static BOOL showOLEDVolumeIcon = YES;
static BOOL showOLEDVolumePercentage = YES;
static BOOL enableHapticFeedback = YES;
static NSString *themeName = nil;
static NSString *darkModeThemeName = nil;
static ABVolumeHUDStyle volumeStyle = ABVolumeHUDStyleIconic;
static BOOL themeChanged = NO;
static BOOL styleChanged = NO;
static void applySettings() {
[ABVolumeHUDViewSettings sharedSettings].timeout = timeout;
[ABVolumeHUDViewSettings sharedSettings].showVolumePercentage = showVolumePercentage;
if (!enabled) [[ABVolumeHUDManager sharedManager].visibilityManager hideImmediatelyIfPossible];
[ABVolumeHUDViewSettings sharedSettings].showOLEDVolumeIcon = showOLEDVolumeIcon;
[ABVolumeHUDViewSettings sharedSettings].showOLEDVolumePercentage = showOLEDVolumePercentage;
[ABVolumeHUDManager sharedManager].lightModeTheme = themeName ? [[NSClassFromString(themeName) alloc] init] : nil;
[ABVolumeHUDManager sharedManager].darkModeTheme = themeName ? [[NSClassFromString(darkModeThemeName) alloc] init] : nil;
[ABVolumeHUDViewSettings sharedSettings].style = volumeStyle;
[ABVolumeHUDViewSettings sharedSettings].enableHapticFeedback = enableHapticFeedback;
// If we changed theme or style, show the volume HUD for a preview
if ((themeChanged || styleChanged) && enabled) [[ABVolumeHUDSystemVolumeInfoProvider activeVolumeControl] __us_presentVolumeHUDWithMode:ABVolumeHUDVolumeModeAudio];
}
static void loadSettings() {
// TODO: Clean this up
NSDictionary *settings = nil;
CFPreferencesAppSynchronize(kPrefsAppID);
CFArrayRef keyList = CFPreferencesCopyKeyList(kPrefsAppID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
if (keyList) {
settings = (NSDictionary *)CFBridgingRelease(CFPreferencesCopyMultiple(keyList, kPrefsAppID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost));
CFRelease(keyList);
}
if (settings && settings[@"Enabled"]) enabled = [settings[@"Enabled"] boolValue];
if (settings && settings[@"Timeout"]) timeout = [settings[@"Timeout"] doubleValue];
if (settings && settings[@"ShowVolumePercentage"]) showVolumePercentage = [settings[@"ShowVolumePercentage"] boolValue];
if (settings && settings[@"EnableOLEDMode"]) {
enableOLEDMode = [settings[@"EnableOLEDMode"] boolValue];
} else {
enableOLEDMode = [ABVolumeHUDDeviceInfo infoForCurrentDevice].hasOLEDScreen;
NSDictionary *dict = [NSDictionary dictionaryWithObject:@(enableOLEDMode) forKey:@"EnableOLEDMode"];
CFPreferencesSetMultiple((__bridge CFDictionaryRef)dict, nil, kPrefsAppID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
CFPreferencesAppSynchronize(kPrefsAppID);
}
if (settings && settings[@"ShowVolumeIconOLED"]) showOLEDVolumeIcon = [settings[@"ShowVolumeIconOLED"] boolValue];
if (settings && settings[@"ShowVolumePercentageOLED"]) showOLEDVolumePercentage = [settings[@"ShowVolumePercentageOLED"] boolValue];
if (settings && settings[@"Theme"]) {
NSString *newThemeName = [settings[@"Theme"] stringValue];
themeChanged = hasLoadedSettings && themeName && ![themeName isEqualToString:newThemeName];
themeName = newThemeName;
}
if (settings && settings[@"ThemeInDarkMode"]) {
NSString *newThemeName = [settings[@"ThemeInDarkMode"] stringValue];
themeChanged = hasLoadedSettings && (themeChanged || (darkModeThemeName == nil) != (newThemeName == nil) || (darkModeThemeName && ![darkModeThemeName isEqualToString:newThemeName])); // this sucks
darkModeThemeName = newThemeName;
}
if (settings && settings[@"Style"]) {
ABVolumeHUDStyle newStyle = (ABVolumeHUDStyle)[settings[@"Style"] integerValue];
styleChanged = hasLoadedSettings && volumeStyle != newStyle;
volumeStyle = newStyle;
}
if (settings && settings[@"EnableHapticFeedback"]) enableHapticFeedback = [settings[@"EnableHapticFeedback"] boolValue];
hasLoadedSettings = YES;
applySettings();
}
static void settingsChanged(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo) {
loadSettings();
}
// MARK: - Window Management
static ABVolumeHUDWindow *hudWindow;
static void createWindowIfNeeded() {
if (hudWindow != nil) return;
hudWindow = [[ABVolumeHUDWindow alloc] init];
[[ABVolumeHUDManager sharedManager] setTargetView:hudWindow];
}
static void changeFakeScreenOffAlpha(CGFloat alpha) {
createWindowIfNeeded();
hudWindow.darkScreenImitationAlpha = alpha;
}
static void setInOLEDMode(BOOL isInOLEDMode) {
if ([ABVolumeHUDManager sharedManager]) [ABVolumeHUDManager sharedManager].oledMode = isInOLEDMode;
// Prevent screen from using system idle timer and accidentally turning off on its own while in OLED mode
if (isInOLEDMode) [[%c(SBBacklightController) sharedInstance] preventIdleSleep];
else [[%c(SBBacklightController) sharedInstance] allowIdleSleep];
}
// MARK: - Hooks
static BOOL pretendToNotBeLocked = NO;
static BOOL isGoingToDisplayOLEDVolume = NO;
static BOOL isDisplayingOLEDVolume = NO;
// Renamed to SBVolumeControl on iOS 13+
%hook VolumeControl
// iOS 13+
- (instancetype)initWithHUDController:(id)arg1 ringerControl:(id)arg2 {
self = %orig;
if (self) [self __us_commonInit];
return self;
}
// iOS 12 and lower
- (instancetype)init {
self = %orig;
if (self) [self __us_commonInit];
return self;
}
%new
- (void)__us_commonInit {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateSliderVolumeWithNotification:) name:kVolumeChangeNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateVolumeModeWithNotification:) name:kVolumeModeChangeNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(volumeHUDControlVisibilityChangedWithNotification:) name:kControlVisibilityChangedNotification object:nil];
}
%new
- (BOOL)__us_presentVolumeHUDWithMode:(int)mode volume:(float)volume {
if (!enabled) return NO;
createWindowIfNeeded();
if (!hudWindow) return NO;
if (enableOLEDMode && [getLockScreenViewController() isInScreenOffMode]) {
// Add black curtain and wake screen for OLED mode
isGoingToDisplayOLEDVolume = YES;
changeFakeScreenOffAlpha(1);
// Delay a tiny bit to allow curtain to appear on slow phones
if (!isDisplayingOLEDVolume) {
dispatch_after(DISPATCH_TIME_NOW + 0.01, dispatch_get_main_queue(), ^{
[[%c(SBBacklightController) sharedInstance] _animateBacklightToFactor:1 duration:0 source:kWillowBacklightAdjustmentSource silently:YES completion:^{
isDisplayingOLEDVolume = YES;
[[ABVolumeHUDManager sharedManager] volumeChangedTo:volume withMode:(ABVolumeHUDVolumeMode)mode];
}];
});
return YES;
}
isDisplayingOLEDVolume = YES;
}
[[ABVolumeHUDManager sharedManager] volumeChangedTo:volume withMode:(ABVolumeHUDVolumeMode)mode];
return YES;
}
%new
- (void)__us_presentVolumeHUDWithMode:(int)mode {
float volume = [self respondsToSelector:@selector(_getMediaVolumeForIAP)] ? [self _getMediaVolumeForIAP] : [self getMediaVolume];
[self __us_presentVolumeHUDWithMode:mode volume:volume];
}
// Exists only on iOS 13+
- (void)_presentVolumeHUDWithVolume:(float)volume {
if ([self __us_presentVolumeHUDWithMode:ABVolumeHUDVolumeModeAudio volume:volume]) return;
%orig;
}
// Exists only on iOS 12 and below
- (void)_presentVolumeHUDWithMode:(int)mode volume:(float)volume {
if ([self __us_presentVolumeHUDWithMode:mode volume:volume]) return;
%orig;
}
- (BOOL)_HUDIsDisplayableForCategory:(NSString *)category {
if (!enabled) return %orig;
SBLockScreenManager *manager = [%c(SBLockScreenManager) sharedInstance];
if (manager.isUILocked) {
// By default, lock screen doesn't show volume HUD, but users likely want to see it on the lock screen with Ultrasound.
// If the screen is off (OLED mode) or no media controls are shown, we force it to show on the lock screen.
SBLockScreenViewControllerBase *lsViewController = getLockScreenViewController();
return [lsViewController isInScreenOffMode] || ![lsViewController isShowingMediaControls] || %orig;
}
return %orig;
}
- (void)handleVolumeButtonWithType:(long long)arg1 down:(BOOL)arg2 {
pretendToNotBeLocked = YES;
%orig;
pretendToNotBeLocked = NO;
}
- (void)hideVolumeHUDIfVisible {
%orig;
[[ABVolumeHUDManager sharedManager].visibilityManager hideImmediatelyIfPossible];
}
//- US Notifications
%new
- (void)updateSliderVolumeWithNotification:(NSNotification *)note {
CGFloat volume = [note.userInfo[@"volume"] floatValue];
if ([note.userInfo[@"mode"] integerValue] == ABVolumeHUDVolumeModeRinger) {
// Changing the ringer volume
[[%c(AVSystemController) sharedAVSystemController] setVolumeTo:volume forCategory:@"Ringtone"];
} else {
// Changing the media volume
if ([self respondsToSelector:@selector(setMediaVolume:)]) [self setMediaVolume:volume];
else if ([self respondsToSelector:@selector(_setMediaVolumeForIAP:)]) [self _setMediaVolumeForIAP:volume];
}
}
%new
- (void)updateVolumeModeWithNotification:(NSNotification *)note {
int mode = [note.userInfo[@"mode"] intValue];
[self safelySetValue:@(mode) forKey:@"_mode"];
}
%new
- (void)volumeHUDControlVisibilityChangedWithNotification:(NSNotification *)note {
if ([note.userInfo[@"visible"] boolValue]) return;
if (![ABVolumeHUDManager sharedManager].oledMode || !isDisplayingOLEDVolume || ((SBBacklightController *)[%c(SBBacklightController) sharedInstance]).screenIsOn) return;
[[%c(SBBacklightController) sharedInstance] setBacklightFactor:0 source:kWillowBacklightAdjustmentSource];
isDisplayingOLEDVolume = NO;
isGoingToDisplayOLEDVolume = NO;
changeFakeScreenOffAlpha(0);
}
%end
%hook SBRingerHUDController
+ (void)activate:(int)arg1 {
// Call the original activate method so we get test vibration based on user settings (fix HUD showing below)
%orig;
if (!enabled) return;
createWindowIfNeeded();
if (!hudWindow) return;
float volume;
if (![[%c(AVSystemController) sharedAVSystemController] getVolume:&volume forCategory:@"Ringtone"]) return;
[[ABVolumeHUDManager sharedManager] volumeChangedTo:volume withMode:ABVolumeHUDVolumeModeRinger];
}
%end
%hook SBHUDController
// iOS 12 and below
- (void)presentHUDView:(UIView *)view autoDismissWithDelay:(double)delay {
// Never show the ringer HUD view (since we still call activate for vibrate)
if (enabled && [view isKindOfClass:%c(SBRingerHUDView)]) return;
%orig;
}
%end
%hook SBLockScreenManager
- (BOOL)isUILocked {
// Getting called for the volume HUD presentation requires isUILocked to be NO
if (enabled && enableOLEDMode && pretendToNotBeLocked) return NO;
return %orig;
}
%end
%hook SBBacklightController
- (BOOL)screenIsOn {
// If we're in OLED mode, trick system into thinking the screen is off
if (enabled && isDisplayingOLEDVolume) return NO;
return %orig;
}
- (BOOL)screenIsDim {
// If we're in OLED mode, trick system into thinking the screen is dim
if (enabled && isDisplayingOLEDVolume) return YES;
return %orig;
}
-(void)_animateBacklightToFactor:(float)factor duration:(double)duration source:(long long)source silently:(BOOL)silently completion:(/*^block*/id)completion {
if (enableOLEDMode && isDisplayingOLEDVolume && source != kWillowBacklightAdjustmentSource) {
// Hacky solution to fix animations not working because SpringBoard ignores this wake
// Basically, when we wake for OLED mode, we do it with silently set to YES. The rest of SpringBoard isn't notified.
// But when we actually want to wake up the phone for real, it isn't sent because the factor is already 1.
// Here we adjust the factor by a tiny bit so that the events get sent throughout SpringBoard.
[[%c(SBBacklightController) sharedInstance] _animateBacklightToFactor:factor-.0001 duration:0 source:kWillowBacklightAdjustmentSource silently:YES completion:nil];
}
%orig;
if (!enableOLEDMode || !isDisplayingOLEDVolume || source == kWillowBacklightAdjustmentSource) return;
// Animate the OLED mode curtain away if we're animating backlight
isDisplayingOLEDVolume = NO;
isGoingToDisplayOLEDVolume = NO;
[UIView animateWithDuration:duration animations:^{
changeFakeScreenOffAlpha(0);
} completion:^(BOOL finished) {
if (!finished) return;
isGoingToDisplayOLEDVolume = NO;
// Let biometric auth know we actually turned on so it can get ready
[[%c(SBUIBiometricResource) sharedInstance] noteScreenWillTurnOn];
}];
}
- (void)setBacklightFactor:(float)factor source:(long long)source {
if (enableOLEDMode && isDisplayingOLEDVolume && factor <= 0 && source != kWillowBacklightAdjustmentSource) return;
%orig;
}
%end
%hook SBUIBiometricResource
- (void)noteScreenWillTurnOn {
if (enableOLEDMode && (isDisplayingOLEDVolume || isGoingToDisplayOLEDVolume)) {
// If we're in OLED mode, disable Face ID detecting faces
[self safelySetValue:@NO forKey:@"_isPresenceDetectionAllowed"];
return;
}
%orig;
}
%end
@interface SpringBoard (Willow)
@property (nonatomic, retain) _ABVolumeHUDOrientationManager *__willow_orientationManager;
@end;
%hook SpringBoard
%property (nonatomic, retain) _ABVolumeHUDOrientationManager *__willow_orientationManager;
- (instancetype)init {
self = %orig;
if (self) {
self.__willow_orientationManager = [[_ABVolumeHUDOrientationManager alloc] init];
[self addActiveOrientationObserver:self.__willow_orientationManager];
}
return self;
}
- (void)applicationDidFinishLaunching:(id)arg1 {
%orig;
[ABVolumeHUDManager sharedManager].tapticFeedbackProvider = [[ABVolumeHUDSystemTapticFeedbackProvider alloc] init];
[ABVolumeHUDManager sharedManager].volumeInfoProvider = [[ABVolumeHUDSystemVolumeInfoProvider alloc] init];
[ABVolumeHUDManager sharedManager].orientation = [self activeInterfaceOrientation];
loadSettings();
}
%end
%group iOS11
%hook SBDashBoardViewController
-(void)setInScreenOffMode:(BOOL)inScreenOffMode forAutoUnlock:(BOOL)autoUnlock {
%orig;
// Set OLED mode based on screen state
if (enabled) setInOLEDMode(inScreenOffMode && enableOLEDMode);
}
%end
%hook SBLiftToWakeManager
- (void)liftToWakeController:(id)arg1 didObserveTransition:(NSInteger)transition {
if (enabled && isDisplayingOLEDVolume && transition == 2) {
// Restore lift to wake while in OLED mode
wakeScreen();
return;
}
%orig;
}
%end
%end
%group iOS12Up
%hook SBDashBoardViewController
-(void)setInScreenOffMode:(BOOL)inScreenOffMode forAutoUnlock:(BOOL)autoUnlock fromUnlockSource:(int)source {
%orig;
// Set OLED mode based on screen state
if (enabled) setInOLEDMode(inScreenOffMode && enableOLEDMode);
}
%end
%hook SBLiftToWakeManager
- (void)liftToWakeController:(id)arg1 didObserveTransition:(NSInteger)transition deviceOrientation:(NSInteger)deviceOrientation {
if (enabled && isDisplayingOLEDVolume && transition == 2) {
// Restore lift to wake while in OLED mode
wakeScreen();
return;
}
%orig;
}
%end
%end
%group iOS13Up
%hook SBRingerControl
- (void)activateRingerHUD:(int)arg1 withInitialVolume:(float)initialVolume fromSource:(unsigned long long)source {
// Call the original activate method so we get test vibration based on user settings (fix HUD showing below)
%orig;
if (!enabled) return;
createWindowIfNeeded();
if (!hudWindow) return;
[[ABVolumeHUDManager sharedManager] volumeChangedTo:[self volume] withMode:ABVolumeHUDVolumeModeRinger];
}
- (void)setVolume:(float)volume forKeyPress:(BOOL)forKeyPress {
%orig;
if (!enabled || !hudWindow) return;
[[ABVolumeHUDManager sharedManager] volumeChangedTo:[self volume] withMode:ABVolumeHUDVolumeModeRinger];
}
%end
// on iOS 13+, the system determines whether or not to vibrate for a ringer change by checking if the HUD is currently presented, so now just literally hide the view
%hook SBRingerHUDViewController
- (void)viewDidLayoutSubviews {
%orig;
if (enabled) ((UIViewController *)self).view.hidden = YES;
}
%end
%end
%ctor {
@autoreleasepool {
[[NSNotificationCenter defaultCenter] addObserverForName:kOLEDWindowTappedNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
if ([%c(SBTapToWakeController) isTapToWakeSupported]) wakeScreen();
}];
// listen for notifications from settings
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(),
NULL,
(CFNotificationCallback)settingsChanged,
CFSTR("applebetas.ios.tweak.willow.changed"),
NULL,
CFNotificationSuspensionBehaviorDeliverImmediately);
// This is a bit bad™ for future-proofing as apple could change more details of the class, but for now they're mostly the same (save for one method)
BOOL isiOS13 = [[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){13,0,0}];
%init(VolumeControl=objc_getClass(isiOS13 ? "SBVolumeControl" : "VolumeControl"));
if (@available(iOS 13.0, *)) %init(iOS13Up);
if (@available(iOS 12.0, *)) {
%init(iOS12Up, SBDashBoardViewController=objc_getClass(isiOS13 ? "CSCoverSheetViewController" : "SBDashBoardViewController"));
} else {
%init(iOS11);
}
}
}