ppsspp/ios/LocationHelper.mm
Florin9doi 5fbf2d7713 Add camera/location support for iOS
Add front camera support for Android
Allow to change the active camera in-game
2020-01-25 16:54:45 +02:00

35 lines
879 B
Plaintext

#import "LocationHelper.h"
@interface LocationHelper()
@end
@implementation LocationHelper
-(id) init {
NSLog(@"LocationHelper::init");
locationManager = [[CLLocationManager alloc] init];
[locationManager setDelegate:self];
return self;
}
-(void) startLocationUpdates {
NSLog(@"LocationHelper::startLocationUpdates");
if ([locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
[locationManager requestWhenInUseAuthorization];
}
[locationManager startUpdatingLocation];
}
-(void) stopLocationUpdates {
NSLog(@"LocationHelper::stopLocationUpdates");
[locationManager stopUpdatingLocation];
}
- (void) locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations {
for (id location in locations) {
[self.delegate SetGpsDataIOS:location];
}
}
@end