kopie van
https://github.com/Burrit0z/kai
synced 2025-07-03 06:06:48 +00:00
103 regels
3.7 KiB
Plaintext
103 regels
3.7 KiB
Plaintext
#import "KAIBattery.h"
|
|
|
|
KAIBattery *instance;
|
|
@implementation KAIBattery
|
|
|
|
-(instancetype)init {
|
|
self = [super init];
|
|
instance = self;
|
|
if (self) {
|
|
self.displayingDevices = [[NSMutableArray alloc] init];
|
|
[self updateBattery];
|
|
self.userInteractionEnabled = NO;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
long long batteryPercentage;
|
|
long long lastPercentage;
|
|
|
|
-(void)updateBattery {
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
if(!self.isUpdating) {
|
|
self.isUpdating = YES;
|
|
self.number = 0;
|
|
float y = 0;
|
|
BCBatteryDeviceController *bcb = [BCBatteryDeviceController sharedInstance];
|
|
NSArray *devices = MSHookIvar<NSArray *>(bcb, "_sortedDevices");
|
|
|
|
/*for( UIView *view in self.subviews ) {
|
|
@try {
|
|
[view removeFromSuperview];
|
|
} @catch (NSException *exception) {
|
|
//Panik
|
|
}
|
|
}*/
|
|
|
|
for (BCBatteryDevice *device in devices) {
|
|
NSString *deviceName = MSHookIvar<NSString *>(device, "_name");
|
|
double batteryPercentage = MSHookIvar<long long>(device, "_percentCharge");
|
|
BOOL charging = MSHookIvar<long long>(device, "_charging");
|
|
BOOL LPM = MSHookIvar<BOOL>(device, "_batterySaverModeActive");
|
|
|
|
BOOL shouldAdd = NO;
|
|
|
|
if(showAll) {
|
|
shouldAdd = YES;
|
|
NSLog(@"Kai: SHOULD ADD");
|
|
} else if(!showAll && charging) {
|
|
shouldAdd = YES;
|
|
NSLog(@"Kai: SHOULD ADD");
|
|
}
|
|
|
|
BOOL shouldRefresh = NO;
|
|
|
|
KAIBatteryCell *cell = [KAIBatteryCell cellForDeviceIfExists:device];
|
|
|
|
/*
|
|
@property (nonatomic, assign) BOOL lastChargingState;
|
|
@property (nonatomic, assign) BOOL lastLPM;
|
|
@property (nonatomic, assign) double lastPercent;
|
|
*/
|
|
if(cell.lastChargingState != charging || cell.lastLPM != LPM || cell.lastPercent != batteryPercentage) {
|
|
shouldRefresh = YES;
|
|
NSLog(@"Kai: SHOULD REFRESH");
|
|
}
|
|
|
|
if(shouldAdd && [deviceName length]!=0) {
|
|
|
|
if([self.displayingDevices containsObject:device] && shouldRefresh) {
|
|
NSLog(@"Kai: Updating cell: %@ for device:%@", cell, device);
|
|
} else if(![self.displayingDevices containsObject:deviceName]) {
|
|
KAIBatteryCell *newCell = [[KAIBatteryCell alloc] initWithFrame:CGRectMake(0, y, self.frame.size.width, bannerHeight) device:device];
|
|
[self.superview addSubview:newCell];
|
|
[self.displayingDevices addObject:deviceName];
|
|
//y+=bannerHeight + spacing;
|
|
NSLog(@"Kai: Added cell: %@ for device:%@", cell, device);
|
|
}
|
|
self.number +=1;
|
|
y+=bannerHeight + spacing;
|
|
NSLog(@"Kai: incremented y, so now it is %f", y);
|
|
[cell updateInfo];
|
|
|
|
} else if(!shouldAdd) {
|
|
|
|
if([self.displayingDevices containsObject:device]) {
|
|
[cell removeFromSuperview];
|
|
[self.displayingDevices removeObject:device];
|
|
NSLog(@"Kai: Removed cell: %@ for device: %@", cell, device);
|
|
}
|
|
|
|
}
|
|
}
|
|
//[self.heightAnchor constraintEqualToConstant:(self.number * 85)].active = YES;
|
|
self.isUpdating = NO;
|
|
}
|
|
});
|
|
}
|
|
|
|
+(KAIBattery *)sharedInstance {
|
|
return instance;
|
|
}
|
|
|
|
@end |