Device battery indicators on your Lock Screen
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

174 lines
4.9KB

  1. #import "Kai.h"
  2. %hook KAITarget //This class is defined in %ctor, KAITarget is not a class name.
  3. %property (nonatomic, assign) BOOL hasKai;
  4. -(void)_layoutStackView {
  5. NSInteger lastSlot = [[self stackView].subviews count] -1;
  6. //this code is used to determine if kai is at the bottom of the stack view
  7. if([[self stackView].subviews objectAtIndex:lastSlot] != [KAIBattery sharedInstance] && belowMusic) {
  8. //if it is not, but the option to have kai below music is on, i simply remove from it's current pos.
  9. //and insert into last slot.
  10. [[self stackView] removeArrangedSubview:[KAIBattery sharedInstance]];
  11. [[self stackView] insertArrangedSubview:[KAIBattery sharedInstance] atIndex:lastSlot];
  12. }
  13. //makes kai lay itself out when the stack does
  14. NSLog(@"kai: laying out stack view");
  15. [self KaiUpdate];
  16. %orig;
  17. }
  18. -(void)setStackView:(UIStackView *)arg1 {
  19. if(!KAISelf.hasKai) {
  20. KAIBattery *battery = [[KAIBattery alloc] init];
  21. //Add noti observer
  22. [[NSNotificationCenter defaultCenter] addObserver:self
  23. selector:@selector(KaiInfo)
  24. name:@"KaiInfoChanged"
  25. object:nil];
  26. KAISelf.hasKai = YES;
  27. if(![arg1.subviews containsObject:battery]) { //if not added
  28. //add kai to the stack view
  29. [arg1 addArrangedSubview:battery];
  30. }
  31. //send the adjusted stackview as arg1
  32. %orig(arg1);
  33. }
  34. }
  35. %new
  36. -(void)KaiUpdate {
  37. KAIBattery *battery = [KAIBattery sharedInstance];
  38. [UIView animateWithDuration:0.3 animations:^{
  39. if(!battery.heightConstraint) {
  40. battery.heightConstraint.active = NO;
  41. battery.heightConstraint = [battery.heightAnchor constraintEqualToConstant:85];
  42. //set an initial constraint
  43. battery.heightConstraint.active = YES;
  44. } else {
  45. int height = (battery.number * (bannerHeight + spacing)); //big brain math
  46. battery.heightConstraint.active = NO; //deactivation
  47. battery.heightConstraint.constant = height;
  48. battery.heightConstraint.active = YES; //forcing reactivation
  49. UIStackView *s = [self stackView];
  50. s.frame = CGRectMake(s.frame.origin.x, s.frame.origin.y, s.frame.size.width, (s.frame.size.height - 1));
  51. //literally does nothing but makes the stack view lay itself out (doesnt adjust frame because translatesAutoreszingMaskIntoConstraints = NO on stack views)
  52. }
  53. }];
  54. }
  55. %new
  56. -(void)KaiInfo {
  57. if(!isUpdating) {
  58. isUpdating = YES;
  59. //NSLog(@"kai: kai info will update");
  60. [[KAIBattery sharedInstance] updateBattery];
  61. [self KaiUpdate];
  62. isUpdating = NO;
  63. /*isUpdating = YES;
  64. [UIView animateWithDuration:0.3 animations:^{
  65. //nice fade out
  66. [KAIBattery sharedInstance].alpha = 0;
  67. } completion:^(BOOL finished){
  68. [[KAIBattery sharedInstance] updateBattery];
  69. [self KaiUpdate];
  70. [UIView animateWithDuration:0.35 animations:^{
  71. //fade back in
  72. [KAIBattery sharedInstance].alpha = 1;
  73. } completion:^(BOOL finished){
  74. isUpdating = NO;
  75. }];
  76. }];*/
  77. }
  78. }
  79. %end
  80. %hook BCBatteryDevice
  81. - (id)initWithIdentifier:(id)arg1 vendor:(long long)arg2 productIdentifier:(long long)arg3 parts:(unsigned long long)arg4 matchIdentifier:(id)arg5 {
  82. //Posts a notification to self when these keys change
  83. [self addObserver:self forKeyPath:@"charging" options:NSKeyValueObservingOptionNew context:nil];
  84. [self addObserver:self forKeyPath:@"batterySaverModeActive" options:NSKeyValueObservingOptionNew context:nil];
  85. [self addObserver:self forKeyPath:@"percentCharge" options:NSKeyValueObservingOptionNew context:nil];
  86. return %orig;
  87. }
  88. -(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{
  89. dispatch_async(dispatch_get_main_queue(), ^{
  90. //sends the noti to update battery info
  91. [[NSNotificationCenter defaultCenter] postNotificationName:@"KaiInfoChanged" object:nil userInfo:nil];
  92. });
  93. }
  94. %end
  95. %hook KAICSTarget //Again, not a class
  96. -(void)_transitionChargingViewToVisible:(BOOL)arg1 showBattery:(BOOL)arg2 animated:(BOOL)arg3 {
  97. if(hideChargingAnimation) {
  98. //Yeah bro this just makes the method never call to show the charging thing
  99. %orig(NO,NO,NO);
  100. }
  101. }
  102. -(void)_transitionChargingViewToVisible:(BOOL)arg1 showBattery:(BOOL)arg2 animated:(BOOL)arg3 force:(BOOL)arg4 { //might just be ios12
  103. if(hideChargingAnimation) {
  104. //Same idea
  105. %orig(NO,NO,NO,NO);
  106. }
  107. }
  108. %end
  109. %ctor {
  110. preferencesChanged();
  111. CFNotificationCenterAddObserver(
  112. CFNotificationCenterGetDarwinNotifyCenter(),
  113. &observer,
  114. (CFNotificationCallback)applyPrefs,
  115. kSettingsChangedNotification,
  116. NULL,
  117. CFNotificationSuspensionBehaviorDeliverImmediately
  118. );
  119. //Bro Muirey helped me figure out a logical way to do this because iOS 12-13 classes have changed
  120. Class cls = kCFCoreFoundationVersionNumber > 1600 ? ([objc_getClass("CSAdjunctListView") class]) : ([objc_getClass("SBDashBoardAdjunctListView") class]);
  121. Class CSCls = kCFCoreFoundationVersionNumber > 1600 ? ([objc_getClass("CSCoverSheetViewController") class]) : ([objc_getClass("SBDashBoardViewController") class]);
  122. if(enabled) {
  123. %init(KAITarget = cls, KAICSTarget = CSCls); //BIG BRAIN BRO!!
  124. }
  125. }