2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
2022-07-20 06:28:22 +00:00
|
|
|
/* godot_ios.mm */
|
2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2023-06-08 12:51:32 +00:00
|
|
|
#import "os_ios.h"
|
|
|
|
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/string/ustring.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "main/main.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2022-07-20 06:28:22 +00:00
|
|
|
static OS_IOS *os = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-07-15 18:59:57 +00:00
|
|
|
int add_path(int p_argc, char **p_args) {
|
|
|
|
NSString *str = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"godot_path"];
|
|
|
|
if (!str) {
|
|
|
|
return p_argc;
|
|
|
|
}
|
|
|
|
|
|
|
|
p_args[p_argc++] = (char *)"--path";
|
|
|
|
p_args[p_argc++] = (char *)[str cStringUsingEncoding:NSUTF8StringEncoding];
|
2021-04-29 09:47:24 +00:00
|
|
|
p_args[p_argc] = nullptr;
|
2020-07-15 18:59:57 +00:00
|
|
|
|
|
|
|
return p_argc;
|
2022-02-16 12:56:32 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-07-15 18:59:57 +00:00
|
|
|
int add_cmdline(int p_argc, char **p_args) {
|
|
|
|
NSArray *arr = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"godot_cmdline"];
|
|
|
|
if (!arr) {
|
|
|
|
return p_argc;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (NSUInteger i = 0; i < [arr count]; i++) {
|
|
|
|
NSString *str = [arr objectAtIndex:i];
|
|
|
|
if (!str) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
p_args[p_argc++] = (char *)[str cStringUsingEncoding:NSUTF8StringEncoding];
|
2022-02-16 12:56:32 +00:00
|
|
|
}
|
2015-11-16 00:07:21 +00:00
|
|
|
|
2021-04-29 09:47:24 +00:00
|
|
|
p_args[p_argc] = nullptr;
|
2020-07-15 18:59:57 +00:00
|
|
|
|
|
|
|
return p_argc;
|
2022-02-16 12:56:32 +00:00
|
|
|
}
|
2020-07-15 18:59:57 +00:00
|
|
|
|
2022-11-29 10:21:08 +00:00
|
|
|
int ios_main(int argc, char **argv) {
|
2019-10-24 14:34:18 +00:00
|
|
|
size_t len = strlen(argv[0]);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
while (len--) {
|
2020-07-15 18:59:57 +00:00
|
|
|
if (argv[0][len] == '/') {
|
2014-02-10 01:10:30 +00:00
|
|
|
break;
|
2020-07-15 18:59:57 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (len >= 0) {
|
|
|
|
char path[512];
|
|
|
|
memcpy(path, argv[0], len > sizeof(path) ? sizeof(path) : len);
|
|
|
|
path[len] = 0;
|
|
|
|
chdir(path);
|
|
|
|
}
|
|
|
|
|
2022-11-29 10:21:08 +00:00
|
|
|
os = new OS_IOS();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-07-20 16:35:34 +00:00
|
|
|
// We must override main when testing is enabled
|
|
|
|
TEST_MAIN_OVERRIDE
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
char *fargv[64];
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
fargv[i] = argv[i];
|
2022-02-16 12:56:32 +00:00
|
|
|
}
|
2020-04-01 23:20:12 +00:00
|
|
|
fargv[argc] = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
argc = add_path(argc, fargv);
|
2014-03-14 01:57:24 +00:00
|
|
|
argc = add_cmdline(argc, fargv);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Error err = Main::setup(fargv[0], argc - 1, &fargv[1], false);
|
2022-07-01 23:05:20 +00:00
|
|
|
|
2024-03-06 17:50:35 +00:00
|
|
|
if (err != OK) {
|
|
|
|
if (err == ERR_HELP) { // Returned by --help and --version, so success.
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
return EXIT_FAILURE;
|
2020-07-15 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
os->initialize_modules();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2024-03-06 17:50:35 +00:00
|
|
|
return os->get_exit_code();
|
2022-02-16 12:56:32 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-07-20 06:28:22 +00:00
|
|
|
void ios_finish() {
|
2014-02-10 01:10:30 +00:00
|
|
|
Main::cleanup();
|
|
|
|
delete os;
|
2022-02-16 12:56:32 +00:00
|
|
|
}
|