1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00
vcmi/launcher/ios/main.m
Andrey Filipenkov fab3216df0 add setting to control app launch type: launcher or game
- removes custom AppDelegate
- now starting launcher using qt_main_wrapper
- when starting SDL from launcher, SDLUIKitDelegate is created and assigned as app delegate

fix kambala-decapitator/vcmi#33
2022-09-24 15:55:23 +03:00

29 lines
1.0 KiB
Objective-C

/*
* main.m, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#import <UIKit/UIKit.h>
void launchGame(int argc, char * argv[]) {
@autoreleasepool {
__auto_type app = UIApplication.sharedApplication;
__auto_type qtNativeWindowIndex = [app.windows indexOfObjectPassingTest:^BOOL(__kindof UIWindow * _Nonnull window, NSUInteger idx, BOOL * _Nonnull stop) {
return [NSStringFromClass([window class]) isEqualToString:@"QUIWindow"];
}];
NSCAssert(qtNativeWindowIndex != NSNotFound, @"Qt native window doesn't exist");
__auto_type qtNativeWindow = app.windows[qtNativeWindowIndex];
qtNativeWindow.hidden = YES;
[qtNativeWindow.rootViewController.view removeFromSuperview];
qtNativeWindow.rootViewController = nil;
if (@available(iOS 13.0, *))
qtNativeWindow.windowScene = nil;
}
[NSNotificationCenter.defaultCenter postNotificationName:@"StartGame" object:nil];
}