123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- /**************************************************************************/
- /* godot_app_delegate.m */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #import "godot_app_delegate.h"
- #import "app_delegate.h"
- @interface GodotApplicationDelegate ()
- @end
- @implementation GodotApplicationDelegate
- static NSMutableArray<ApplicationDelegateService *> *services = nil;
- + (NSArray<ApplicationDelegateService *> *)services {
- return services;
- }
- + (void)load {
- services = [NSMutableArray new];
- [services addObject:[AppDelegate new]];
- }
- + (void)addService:(ApplicationDelegateService *)service {
- if (!services || !service) {
- return;
- }
- [services addObject:service];
- }
- // UIApplicationDelegate documentation can be found here: https://developer.apple.com/documentation/uikit/uiapplicationdelegate
- // MARK: Window
- - (UIWindow *)window {
- UIWindow *result = nil;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- UIWindow *value = [service window];
- if (value) {
- result = value;
- }
- }
- return result;
- }
- // MARK: Initializing
- - (BOOL)application:(UIApplication *)application willFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey, id> *)launchOptions {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application willFinishLaunchingWithOptions:launchOptions]) {
- result = YES;
- }
- }
- return result;
- }
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey, id> *)launchOptions {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application didFinishLaunchingWithOptions:launchOptions]) {
- result = YES;
- }
- }
- return result;
- }
- /* Can be handled by Info.plist. Not yet supported by Godot.
- // MARK: Scene
- - (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options {}
- - (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet<UISceneSession *> *)sceneSessions {}
- */
- // MARK: Life-Cycle
- - (void)applicationDidBecomeActive:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationDidBecomeActive:application];
- }
- }
- - (void)applicationWillResignActive:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationWillResignActive:application];
- }
- }
- - (void)applicationDidEnterBackground:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationDidEnterBackground:application];
- }
- }
- - (void)applicationWillEnterForeground:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationWillEnterForeground:application];
- }
- }
- - (void)applicationWillTerminate:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationWillTerminate:application];
- }
- }
- // MARK: Environment Changes
- - (void)applicationProtectedDataDidBecomeAvailable:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationProtectedDataDidBecomeAvailable:application];
- }
- }
- - (void)applicationProtectedDataWillBecomeUnavailable:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationProtectedDataWillBecomeUnavailable:application];
- }
- }
- - (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationDidReceiveMemoryWarning:application];
- }
- }
- - (void)applicationSignificantTimeChange:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationSignificantTimeChange:application];
- }
- }
- // MARK: App State Restoration
- - (BOOL)application:(UIApplication *)application shouldSaveSecureApplicationState:(NSCoder *)coder API_AVAILABLE(ios(13.2)) {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application shouldSaveSecureApplicationState:coder]) {
- result = YES;
- }
- }
- return result;
- }
- - (BOOL)application:(UIApplication *)application shouldRestoreSecureApplicationState:(NSCoder *)coder API_AVAILABLE(ios(13.2)) {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application shouldRestoreSecureApplicationState:coder]) {
- result = YES;
- }
- }
- return result;
- }
- - (UIViewController *)application:(UIApplication *)application viewControllerWithRestorationIdentifierPath:(NSArray<NSString *> *)identifierComponents coder:(NSCoder *)coder {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- UIViewController *controller = [service application:application viewControllerWithRestorationIdentifierPath:identifierComponents coder:coder];
- if (controller) {
- return controller;
- }
- }
- return nil;
- }
- - (void)application:(UIApplication *)application willEncodeRestorableStateWithCoder:(NSCoder *)coder {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application willEncodeRestorableStateWithCoder:coder];
- }
- }
- - (void)application:(UIApplication *)application didDecodeRestorableStateWithCoder:(NSCoder *)coder {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application didDecodeRestorableStateWithCoder:coder];
- }
- }
- // MARK: Download Data in Background
- - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application handleEventsForBackgroundURLSession:identifier completionHandler:completionHandler];
- }
- completionHandler();
- }
- // MARK: Remote Notification
- // Moved to the iOS Plugin
- // MARK: User Activity and Handling Quick Actions
- - (BOOL)application:(UIApplication *)application willContinueUserActivityWithType:(NSString *)userActivityType {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application willContinueUserActivityWithType:userActivityType]) {
- result = YES;
- }
- }
- return result;
- }
- - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray<id<UIUserActivityRestoring>> *restorableObjects))restorationHandler {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application continueUserActivity:userActivity restorationHandler:restorationHandler]) {
- result = YES;
- }
- }
- return result;
- }
- - (void)application:(UIApplication *)application didUpdateUserActivity:(NSUserActivity *)userActivity {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application didUpdateUserActivity:userActivity];
- }
- }
- - (void)application:(UIApplication *)application didFailToContinueUserActivityWithType:(NSString *)userActivityType error:(NSError *)error {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application didFailToContinueUserActivityWithType:userActivityType error:error];
- }
- }
- - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL succeeded))completionHandler {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application performActionForShortcutItem:shortcutItem completionHandler:completionHandler];
- }
- }
- // MARK: WatchKit
- - (void)application:(UIApplication *)application handleWatchKitExtensionRequest:(NSDictionary *)userInfo reply:(void (^)(NSDictionary *replyInfo))reply {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application handleWatchKitExtensionRequest:userInfo reply:reply];
- }
- }
- // MARK: HealthKit
- - (void)applicationShouldRequestHealthAuthorization:(UIApplication *)application {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service applicationShouldRequestHealthAuthorization:application];
- }
- }
- // MARK: Opening an URL
- - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:app openURL:url options:options]) {
- return YES;
- }
- }
- return NO;
- }
- // MARK: Disallowing Specified App Extension Types
- - (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(UIApplicationExtensionPointIdentifier)extensionPointIdentifier {
- BOOL result = NO;
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- if ([service application:application shouldAllowExtensionPointIdentifier:extensionPointIdentifier]) {
- result = YES;
- }
- }
- return result;
- }
- // MARK: SiriKit
- - (id)application:(UIApplication *)application handlerForIntent:(INIntent *)intent API_AVAILABLE(ios(14.0)) {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- id result = [service application:application handlerForIntent:intent];
- if (result) {
- return result;
- }
- }
- return nil;
- }
- // MARK: CloudKit
- - (void)application:(UIApplication *)application userDidAcceptCloudKitShareWithMetadata:(CKShareMetadata *)cloudKitShareMetadata {
- for (ApplicationDelegateService *service in services) {
- if (![service respondsToSelector:_cmd]) {
- continue;
- }
- [service application:application userDidAcceptCloudKitShareWithMetadata:cloudKitShareMetadata];
- }
- }
- /* Handled By Info.plist file for now
- // MARK: Interface Geometry
- - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {}
- */
- @end
|