-
Notifications
You must be signed in to change notification settings - Fork 35
/
Tweak.x
597 lines (489 loc) · 20.1 KB
/
Tweak.x
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
#import <version.h>
#import <rootless.h>
#import "Header.h"
#import <YouTubeHeader/ASCollectionView.h>
#import <YouTubeHeader/ELMCellNode.h>
#import <YouTubeHeader/ELMContainerNode.h>
#import <YouTubeHeader/MLDefaultPlayerViewFactory.h>
#import <YouTubeHeader/MLPIPController.h>
#import <YouTubeHeader/QTMIcon.h>
#import <YouTubeHeader/YTBackgroundabilityPolicy.h>
#import <YouTubeHeader/YTColor.h>
#import <YouTubeHeader/YTColorPalette.h>
#import <YouTubeHeader/YTCommonColorPalette.h>
#import <YouTubeHeader/YTISlimMetadataButtonSupportedRenderers.h>
#import <YouTubeHeader/YTLocalPlaybackController.h>
#import <YouTubeHeader/YTMainAppControlsOverlayView.h>
#import <YouTubeHeader/YTMainAppVideoPlayerOverlayViewController.h>
#import <YouTubeHeader/YTPageStyleController.h>
#import <YouTubeHeader/YTPlaybackStrippedWatchController.h>
#import <YouTubeHeader/YTPlayerPIPController.h>
#import <YouTubeHeader/YTPlayerStatus.h>
#import <YouTubeHeader/YTSettingsSectionItem.h>
#import <YouTubeHeader/YTSettingsSectionItemManager.h>
#import <YouTubeHeader/YTSlimVideoDetailsActionView.h>
#import <YouTubeHeader/YTSlimVideoScrollableActionBarCellController.h>
#import <YouTubeHeader/YTSlimVideoScrollableDetailsActionsView.h>
#import <YouTubeHeader/YTTouchFeedbackController.h>
#import <YouTubeHeader/YTWatchViewController.h>
#define PiPButtonType 801
@interface YTMainAppControlsOverlayView (YP)
@property (retain, nonatomic) YTQTMButton *pipButton;
- (void)didPressPiP:(id)arg;
- (UIImage *)pipImage;
@end
@interface ASCollectionView (YP)
@property (retain, nonatomic) UIButton *pipButton;
@property (retain, nonatomic) YTTouchFeedbackController *pipTouchController;
- (void)didPressPiP:(UIButton *)button event:(UIEvent *)event;
@end
BOOL FromUser = NO;
BOOL PiPDisabled = NO;
extern BOOL LegacyPiP();
BOOL TweakEnabled() {
return [[NSUserDefaults standardUserDefaults] boolForKey:EnabledKey];
}
BOOL UsePiPButton() {
return [[NSUserDefaults standardUserDefaults] boolForKey:PiPActivationMethodKey];
}
BOOL NoMiniPlayerPiP() {
return [[NSUserDefaults standardUserDefaults] boolForKey:NoMiniPlayerPiPKey];
}
BOOL UseTabBarPiPButton() {
return [[NSUserDefaults standardUserDefaults] boolForKey:PiPActivationMethod2Key];
}
BOOL NonBackgroundable() {
return [[NSUserDefaults standardUserDefaults] boolForKey:NonBackgroundableKey];
}
BOOL isPictureInPictureActive(MLPIPController *pip) {
return [pip respondsToSelector:@selector(pictureInPictureActive)] ? [pip pictureInPictureActive] : [pip isPictureInPictureActive];
}
static NSString *PiPIconPath;
static NSString *TabBarPiPIconPath;
static void activatePiPBase(YTPlayerPIPController *controller, BOOL playPiP) {
MLPIPController *pip = [controller valueForKey:@"_pipController"];
if ([controller respondsToSelector:@selector(maybeEnablePictureInPicture)])
[controller maybeEnablePictureInPicture];
else if ([controller respondsToSelector:@selector(maybeInvokePictureInPicture)])
[controller maybeInvokePictureInPicture];
else {
BOOL canPiP = [controller respondsToSelector:@selector(canEnablePictureInPicture)] && [controller canEnablePictureInPicture];
if (!canPiP)
canPiP = [controller respondsToSelector:@selector(canInvokePictureInPicture)] && [controller canInvokePictureInPicture];
if (canPiP) {
if ([pip respondsToSelector:@selector(activatePiPController)])
[pip activatePiPController];
else
[pip startPictureInPicture];
}
}
AVPictureInPictureController *avpip = [pip valueForKey:@"_pictureInPictureController"];
if (playPiP) {
if ([avpip isPictureInPicturePossible])
[avpip startPictureInPicture];
} else {
if ([pip respondsToSelector:@selector(deactivatePiPController)])
[pip deactivatePiPController];
else
[avpip stopPictureInPicture];
}
}
static void activatePiP(YTLocalPlaybackController *local, BOOL playPiP) {
if (![local isKindOfClass:%c(YTLocalPlaybackController)])
return;
YTPlayerPIPController *controller = [local valueForKey:@"_playerPIPController"];
activatePiPBase(controller, playPiP);
}
static void bootstrapPiP(YTPlayerViewController *self, BOOL playPiP) {
YTLocalPlaybackController *local = [self valueForKey:@"_playbackController"];
activatePiP(local, playPiP);
}
#pragma mark - Video tab bar PiP Button (16.46.5 and below + offline mode)
static YTISlimMetadataButtonSupportedRenderers *makeUnderOldPlayerButton(NSString *title, int iconType, NSString *browseId) {
YTISlimMetadataButtonSupportedRenderers *supportedRenderer = [[%c(YTISlimMetadataButtonSupportedRenderers) alloc] init];
YTISlimMetadataButtonRenderer *metadataButtonRenderer = [[%c(YTISlimMetadataButtonRenderer) alloc] init];
YTIButtonSupportedRenderers *buttonSupportedRenderer = [[%c(YTIButtonSupportedRenderers) alloc] init];
YTIBrowseEndpoint *endPoint = [[%c(YTIBrowseEndpoint) alloc] init];
YTICommand *command = [[%c(YTICommand) alloc] init];
YTIButtonRenderer *button = [[%c(YTIButtonRenderer) alloc] init];
YTIIcon *icon = [[%c(YTIIcon) alloc] init];
endPoint.browseId = browseId;
command.browseEndpoint = endPoint;
icon.iconType = iconType;
button.style = 8; // Opacity style
button.tooltip = title;
button.size = 1; // Default size
button.isDisabled = NO;
button.text = [%c(YTIFormattedString) formattedStringWithString:title];
button.icon = icon;
button.navigationEndpoint = command;
buttonSupportedRenderer.buttonRenderer = button;
metadataButtonRenderer.button = buttonSupportedRenderer;
supportedRenderer.slimMetadataButtonRenderer = metadataButtonRenderer;
return supportedRenderer;
}
%hook YTIIcon
- (UIImage *)iconImageWithColor:(UIColor *)color {
if (self.iconType == PiPButtonType) {
UIImage *image = [%c(QTMIcon) tintImage:[UIImage imageWithContentsOfFile:TabBarPiPIconPath] color:[[%c(YTPageStyleController) currentColorPalette] textPrimary]];
if ([image respondsToSelector:@selector(imageFlippedForRightToLeftLayoutDirection)])
image = [image imageFlippedForRightToLeftLayoutDirection];
return image;
}
return %orig;
}
%end
%hook YTSlimVideoScrollableDetailsActionsView
- (void)createActionViewsFromSupportedRenderers:(NSMutableArray *)renderers { // for old YouTube version
if (UseTabBarPiPButton()) {
YTISlimMetadataButtonSupportedRenderers *PiPButton = makeUnderOldPlayerButton(@"PiP", PiPButtonType, @"YouPiP.pip.command");
if (![renderers containsObject:PiPButton])
[renderers addObject:PiPButton];
}
%orig;
}
- (void)createActionViewsFromSupportedRenderers:(NSMutableArray *)renderers withElementsContextBlock:(id)arg2 {
if (UseTabBarPiPButton()) {
YTISlimMetadataButtonSupportedRenderers *PiPButton = makeUnderOldPlayerButton(@"PiP", PiPButtonType, @"YouPiP.pip.command");
if (![renderers containsObject:PiPButton])
[renderers addObject:PiPButton];
}
%orig;
}
%end
%hook YTSlimVideoDetailsActionView
- (void)didTapButton:(id)arg1 {
if ([self.label.attributedText.string isEqualToString:@"PiP"]) {
YTSlimVideoScrollableActionBarCellController *_delegate = self.delegate;
YTPlayerViewController *playerViewController = nil;
@try {
id provider = [_delegate valueForKey:@"_metadataPanelStateProvider"];
if ([provider isKindOfClass:%c(YTWatchController)] || [provider isKindOfClass:%c(YTPlaybackStrippedWatchController)]) {
@try {
YTWatchViewController *watchViewController = [provider valueForKey:@"_watchViewController"];
playerViewController = [watchViewController valueForKey:@"_playerViewController"];
} @catch (id ex) {
playerViewController = [provider valueForKey:@"_playerViewController"];
}
}
} @catch (id ex) { // for old YouTube version
if ([[_delegate valueForKey:@"_ngwMetadataPanelStateProvider"] isKindOfClass:%c(YTNGWatchController)]) {
id provider = [_delegate valueForKey:@"_ngwMetadataPanelStateProvider"];
playerViewController = [provider valueForKey:@"_playerViewController"];
}
}
if (playerViewController && [playerViewController isKindOfClass:%c(YTPlayerViewController)]) {
FromUser = YES;
bootstrapPiP(playerViewController, YES);
}
return;
}
%orig;
}
%end
#pragma mark - Video tab bar PiP Button (17.01.4 and up)
static UIButton *makeUnderNewPlayerButton(ELMCellNode *node, NSString *title, NSString *accessibilityLabel) {
NSInteger pageStyle = [%c(YTPageStyleController) pageStyle];
YTCommonColorPalette *palette = pageStyle == 1 ? [%c(YTCommonColorPalette) darkPalette] : [%c(YTCommonColorPalette) lightPalette];
if (!palette) palette = [%c(YTColorPalette) colorPaletteForPageStyle:pageStyle]; // YouTube 17.18.4 and below
UIColor *textColor = [palette textPrimary];
ELMContainerNode *containerNode = (ELMContainerNode *)[[[[node yogaChildren] firstObject] yogaChildren] firstObject]; // To get node container properties
UIButton *buttonView = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 65, containerNode.calculatedSize.height)];
buttonView.center = CGPointMake(CGRectGetMaxX([node.layoutAttributes frame]) + 65 / 2, CGRectGetMidY([node.layoutAttributes frame]));
buttonView.backgroundColor = containerNode.backgroundColor;
buttonView.accessibilityLabel = accessibilityLabel;
buttonView.layer.cornerRadius = 16;
UIImageView *buttonImage = [[UIImageView alloc] initWithFrame:CGRectMake(12, ([buttonView frame].size.height - 15.5) / 2, 15.5, 15.5)];
buttonImage.image = [%c(QTMIcon) tintImage:[UIImage imageWithContentsOfFile:TabBarPiPIconPath] color:textColor];
UILabel *buttonTitle = [[UILabel alloc] initWithFrame:CGRectMake(33, 9, 20, 14)];
buttonTitle.font = [UIFont boldSystemFontOfSize:12];
buttonTitle.textColor = textColor;
buttonTitle.text = title;
[buttonView addSubview:buttonImage];
[buttonView addSubview:buttonTitle];
return buttonView;
}
%hook ASCollectionView
%property (retain, nonatomic) UIButton *pipButton;
%property (retain, nonatomic) YTTouchFeedbackController *pipTouchController;
- (ELMCellNode *)nodeForItemAtIndexPath:(NSIndexPath *)indexPath {
ELMCellNode *node = %orig;
if ([self.accessibilityIdentifier isEqualToString:@"id.video.scrollable_action_bar"] && UseTabBarPiPButton() && !self.pipButton) {
self.contentInset = UIEdgeInsetsMake(0, 0, 0, 73);
if (CGRectGetMaxX([node.layoutAttributes frame]) == [self contentSize].width) {
self.pipButton = makeUnderNewPlayerButton(node, @"PiP", @"Play in PiP");
[self addSubview:self.pipButton];
[self.pipButton addTarget:self action:@selector(didPressPiP:event:) forControlEvents:UIControlEventTouchUpInside];
YTTouchFeedbackController *controller = [[%c(YTTouchFeedbackController) alloc] initWithView:self.pipButton];
controller.touchFeedbackView.customCornerRadius = 16;
self.pipTouchController = controller;
}
}
return %orig;
}
- (void)nodesDidRelayout:(NSArray <ELMCellNode *> *)nodes {
if ([self.accessibilityIdentifier isEqualToString:@"id.video.scrollable_action_bar"] && UseTabBarPiPButton() && [nodes count] == 1) {
CGFloat offset = nodes[0].calculatedSize.width - [nodes[0].layoutAttributes frame].size.width;
[UIView animateWithDuration:0.3 animations:^{
self.pipButton.center = CGPointMake(self.pipButton.center.x + offset, self.pipButton.center.y);
}];
}
%orig;
}
%new(v@:@@)
- (void)didPressPiP:(UIButton *)button event:(UIEvent *)event {
CGPoint location = [[[event allTouches] anyObject] locationInView:button];
if (CGRectContainsPoint(button.bounds, location)) {
UIViewController *controller = [self.collectionNode closestViewController];
YTPlaybackStrippedWatchController *provider;
@try {
provider = [controller valueForKey:@"_metadataPanelStateProvider"];
} @catch (id ex) {
provider = [controller valueForKey:@"_ngwMetadataPanelStateProvider"];
}
YTWatchViewController *watchViewController = [provider valueForKey:@"_watchViewController"];
YTPlayerViewController *playerViewController = [watchViewController valueForKey:@"_playerViewController"];
FromUser = YES;
bootstrapPiP(playerViewController, YES);
}
}
- (void)dealloc {
self.pipButton = nil;
self.pipTouchController = nil;
%orig;
}
%end
#pragma mark - Overlay PiP Button
%hook YTMainAppVideoPlayerOverlayViewController
- (void)updateTopRightButtonAvailability {
%orig;
YTMainAppVideoPlayerOverlayView *v = [self videoPlayerOverlayView];
YTMainAppControlsOverlayView *c = [v valueForKey:@"_controlsOverlayView"];
c.pipButton.hidden = !UsePiPButton();
[c setNeedsLayout];
}
%end
static void createPiPButton(YTMainAppControlsOverlayView *self) {
if (self) {
CGFloat padding = [[self class] topButtonAdditionalPadding];
UIImage *image = [self pipImage];
self.pipButton = [self buttonWithImage:image accessibilityLabel:@"pip" verticalContentPadding:padding];
self.pipButton.hidden = YES;
self.pipButton.alpha = 0;
[self.pipButton addTarget:self action:@selector(didPressPiP:) forControlEvents:UIControlEventTouchUpInside];
@try {
[[self valueForKey:@"_topControlsAccessibilityContainerView"] addSubview:self.pipButton];
} @catch (id ex) {
[self addSubview:self.pipButton];
}
}
}
static NSMutableArray *topControls(YTMainAppControlsOverlayView *self, NSMutableArray *controls) {
if (UsePiPButton())
[controls insertObject:self.pipButton atIndex:0];
return controls;
}
%hook YTMainAppControlsOverlayView
%property (retain, nonatomic) YTQTMButton *pipButton;
- (id)initWithDelegate:(id)delegate {
self = %orig;
createPiPButton(self);
return self;
}
- (id)initWithDelegate:(id)delegate autoplaySwitchEnabled:(BOOL)autoplaySwitchEnabled {
self = %orig;
createPiPButton(self);
return self;
}
- (NSMutableArray *)topButtonControls {
return topControls(self, %orig);
}
- (NSMutableArray *)topControls {
return topControls(self, %orig);
}
- (void)setTopOverlayVisible:(BOOL)visible isAutonavCanceledState:(BOOL)canceledState {
if (UsePiPButton())
self.pipButton.alpha = canceledState || !visible ? 0.0 : 1.0;
%orig;
}
%new(@@:)
- (UIImage *)pipImage {
static UIImage *image = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
UIColor *color = [%c(YTColor) white1];
image = [%c(QTMIcon) tintImage:[UIImage imageWithContentsOfFile:PiPIconPath] color:color];
if ([image respondsToSelector:@selector(imageFlippedForRightToLeftLayoutDirection)])
image = [image imageFlippedForRightToLeftLayoutDirection];
});
return image;
}
%new(v@:@)
- (void)didPressPiP:(id)arg {
YTMainAppVideoPlayerOverlayViewController *c = [self valueForKey:@"_eventsDelegate"];
YTPlayerViewController *pvc = (YTPlayerViewController *)c.parentViewController;
FromUser = YES;
bootstrapPiP(pvc, YES);
}
%end
#pragma mark - PiP Support
%hook AVPictureInPictureController
+ (BOOL)isPictureInPictureSupported {
return YES;
}
%end
%hook AVPlayerController
- (BOOL)isPictureInPictureSupported {
return YES;
}
%end
%hook AVSampleBufferDisplayLayerPlayerController
- (void)setPictureInPictureAvailable:(BOOL)available {
%orig(YES);
}
%end
%hook MLPIPController
- (void)activatePiPController {
%orig;
if (!IS_IOS_OR_NEWER(iOS_15_0) && !LegacyPiP()) {
MLHAMSBDLSampleBufferRenderingView *view = [self valueForKey:@"_HAMPlayerView"];
CGSize size = [self renderSizeForView:view];
AVPictureInPictureController *avpip = [self valueForKey:@"_pictureInPictureController"];
[avpip sampleBufferDisplayLayerRenderSizeDidChangeToSize:size];
[avpip sampleBufferDisplayLayerDidAppear];
}
}
- (BOOL)isPictureInPictureSupported {
return YES;
}
%new(B@:@)
- (BOOL)pictureInPictureControllerPlaybackPaused:(AVPictureInPictureController *)pictureInPictureController {
return [self pictureInPictureControllerIsPlaybackPaused:pictureInPictureController];
}
%new(v@:@)
- (void)pictureInPictureControllerStartPlayback:(id)arg1 {
[self pictureInPictureControllerStartPlayback];
}
%new(v@:@)
- (void)pictureInPictureControllerStopPlayback:(id)arg1 {
[self pictureInPictureControllerStopPlayback];
}
%new(v@:{CGSize=dd})
- (void)renderingViewSampleBufferFrameSizeDidChange:(CGSize)size {
if (!IS_IOS_OR_NEWER(iOS_15_0) && size.width && size.height) {
AVPictureInPictureController *avpip = [self valueForKey:@"_pictureInPictureController"];
[avpip sampleBufferDisplayLayerRenderSizeDidChangeToSize:size];
}
}
%new(v@:@)
- (void)appWillEnterForeground:(id)arg1 {
if (!IS_IOS_OR_NEWER(iOS_15_0) && !LegacyPiP()) {
AVPictureInPictureController *avpip = [self valueForKey:@"_pictureInPictureController"];
[avpip sampleBufferDisplayLayerDidAppear];
}
}
%new(v@:@)
- (void)appWillEnterBackground:(id)arg1 {
if (!IS_IOS_OR_NEWER(iOS_15_0) && !LegacyPiP()) {
AVPictureInPictureController *avpip = [self valueForKey:@"_pictureInPictureController"];
[avpip sampleBufferDisplayLayerDidDisappear];
}
}
%end
%hook YTIIosMediaHotConfig
%new(B@:)
- (BOOL)enablePictureInPicture {
return YES;
}
%new(B@:)
- (BOOL)enablePipForNonBackgroundableContent {
return NonBackgroundable();
}
%new(B@:)
- (BOOL)enablePipForNonPremiumUsers {
return YES;
}
%end
#pragma mark - PiP Support, Backgroundable
%hook YTBackgroundabilityPolicy
- (void)updateIsBackgroundableByUserSettings {
%orig;
[self setValue:@(YES) forKey:@"_backgroundableByUserSettings"];
}
%end
#pragma mark - Hacks
BOOL YTSingleVideo_isLivePlayback_override = NO;
%hook YTSingleVideo
- (BOOL)isLivePlayback {
return YTSingleVideo_isLivePlayback_override ? NO : %orig;
}
%end
%hook YTPlayerPIPController
- (BOOL)canInvokePictureInPicture {
YTSingleVideo_isLivePlayback_override = YES;
BOOL value = %orig;
YTSingleVideo_isLivePlayback_override = NO;
return value;
}
- (BOOL)canEnablePictureInPicture {
YTSingleVideo_isLivePlayback_override = YES;
BOOL value = %orig;
YTSingleVideo_isLivePlayback_override = NO;
return value;
}
- (void)didStopPictureInPicture {
FromUser = NO;
%orig;
}
- (void)appWillResignActive:(id)arg1 {
// If PiP button on, PiP doesn't activate on app resign unless it's from user
BOOL hasPiPButton = UsePiPButton() || UseTabBarPiPButton();
BOOL disablePiP = hasPiPButton && !FromUser;
if (disablePiP) {
MLPIPController *pip = [self valueForKey:@"_pipController"];
[pip setValue:nil forKey:@"_pictureInPictureController"];
} else {
if (LegacyPiP())
activatePiPBase(self, YES);
%orig;
}
}
%end
%hook YTSingleVideoController
- (void)playerStatusDidChange:(YTPlayerStatus *)playerStatus {
%orig;
PiPDisabled = NoMiniPlayerPiP() && playerStatus.visibility == 1;
}
%end
%hook AVPictureInPicturePlatformAdapter
- (BOOL)isSystemPictureInPicturePossible {
return PiPDisabled ? NO : %orig;
}
%end
%hook YTIPlayabilityStatus
- (BOOL)isPlayableInPictureInPicture {
return YES;
}
- (BOOL)hasPictureInPicture {
return YES;
}
%end
NSBundle *YouPiPBundle() {
static NSBundle *bundle = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
NSString *tweakBundlePath = [[NSBundle mainBundle] pathForResource:@"YouPiP" ofType:@"bundle"];
if (tweakBundlePath)
bundle = [NSBundle bundleWithPath:tweakBundlePath];
else
bundle = [NSBundle bundleWithPath:ROOT_PATH_NS(@"/Library/Application Support/YouPiP.bundle")];
});
return bundle;
}
%ctor {
if (!TweakEnabled()) return;
NSBundle *tweakBundle = YouPiPBundle();
PiPIconPath = [tweakBundle pathForResource:@"yt-pip-overlay" ofType:@"png"];
TabBarPiPIconPath = [tweakBundle pathForResource:@"yt-pip-tabbar" ofType:@"png"];
%init;
}