2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 20:19:07 +00:00
|
|
|
from misc.utility.scons_hints import *
|
2016-10-17 06:50:25 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2024-05-21 13:14:59 +00:00
|
|
|
import os
|
2023-12-11 18:50:44 +00:00
|
|
|
import shutil
|
|
|
|
|
2024-05-21 13:14:59 +00:00
|
|
|
from platform_methods import detect_mvk, lipo
|
|
|
|
|
2023-12-11 18:50:44 +00:00
|
|
|
|
|
|
|
def generate_bundle(target, source, env):
|
|
|
|
bin_dir = Dir("#bin").abspath
|
|
|
|
|
|
|
|
# Template bundle.
|
|
|
|
app_prefix = "godot." + env["platform"]
|
|
|
|
rel_prefix = "libgodot." + env["platform"] + "." + "template_release"
|
|
|
|
dbg_prefix = "libgodot." + env["platform"] + "." + "template_debug"
|
|
|
|
if env.dev_build:
|
|
|
|
app_prefix += ".dev"
|
|
|
|
rel_prefix += ".dev"
|
|
|
|
dbg_prefix += ".dev"
|
|
|
|
if env["precision"] == "double":
|
|
|
|
app_prefix += ".double"
|
|
|
|
rel_prefix += ".double"
|
|
|
|
dbg_prefix += ".double"
|
|
|
|
|
|
|
|
# Lipo template libraries.
|
|
|
|
rel_target_bin = lipo(bin_dir + "/" + rel_prefix, env.extra_suffix + ".a")
|
|
|
|
dbg_target_bin = lipo(bin_dir + "/" + dbg_prefix, env.extra_suffix + ".a")
|
|
|
|
rel_target_bin_sim = lipo(bin_dir + "/" + rel_prefix, ".simulator" + env.extra_suffix + ".a")
|
|
|
|
dbg_target_bin_sim = lipo(bin_dir + "/" + dbg_prefix, ".simulator" + env.extra_suffix + ".a")
|
|
|
|
|
|
|
|
# Assemble Xcode project bundle.
|
|
|
|
app_dir = Dir("#bin/ios_xcode").abspath
|
|
|
|
templ = Dir("#misc/dist/ios_xcode").abspath
|
|
|
|
if os.path.exists(app_dir):
|
|
|
|
shutil.rmtree(app_dir)
|
|
|
|
shutil.copytree(templ, app_dir)
|
|
|
|
if rel_target_bin != "":
|
|
|
|
shutil.copy(rel_target_bin, app_dir + "/libgodot.ios.release.xcframework/ios-arm64/libgodot.a")
|
|
|
|
if dbg_target_bin != "":
|
|
|
|
shutil.copy(dbg_target_bin, app_dir + "/libgodot.ios.debug.xcframework/ios-arm64/libgodot.a")
|
|
|
|
if rel_target_bin_sim != "":
|
|
|
|
shutil.copy(
|
|
|
|
rel_target_bin_sim, app_dir + "/libgodot.ios.release.xcframework/ios-arm64_x86_64-simulator/libgodot.a"
|
|
|
|
)
|
|
|
|
if dbg_target_bin_sim != "":
|
|
|
|
shutil.copy(
|
|
|
|
dbg_target_bin_sim, app_dir + "/libgodot.ios.debug.xcframework/ios-arm64_x86_64-simulator/libgodot.a"
|
|
|
|
)
|
|
|
|
mvk_path = detect_mvk(env, "ios-arm64")
|
|
|
|
if mvk_path != "":
|
|
|
|
shutil.copytree(mvk_path, app_dir + "/MoltenVK.xcframework")
|
|
|
|
|
|
|
|
# ZIP Xcode project bundle.
|
|
|
|
zip_dir = Dir("#bin/" + (app_prefix + env.extra_suffix).replace(".", "_")).abspath
|
|
|
|
shutil.make_archive(zip_dir, "zip", root_dir=app_dir)
|
|
|
|
shutil.rmtree(app_dir)
|
|
|
|
|
|
|
|
|
2022-07-20 06:28:22 +00:00
|
|
|
ios_lib = [
|
|
|
|
"godot_ios.mm",
|
|
|
|
"os_ios.mm",
|
2020-03-30 06:28:32 +00:00
|
|
|
"main.m",
|
|
|
|
"app_delegate.mm",
|
|
|
|
"view_controller.mm",
|
|
|
|
"ios.mm",
|
2023-12-19 17:57:56 +00:00
|
|
|
"rendering_context_driver_vulkan_ios.mm",
|
2022-07-20 06:28:22 +00:00
|
|
|
"display_server_ios.mm",
|
|
|
|
"joypad_ios.mm",
|
2020-07-15 18:59:57 +00:00
|
|
|
"godot_view.mm",
|
2021-11-04 12:33:37 +00:00
|
|
|
"tts_ios.mm",
|
2020-07-15 18:59:57 +00:00
|
|
|
"display_layer.mm",
|
2020-11-11 15:18:08 +00:00
|
|
|
"godot_app_delegate.m",
|
2020-07-15 18:59:57 +00:00
|
|
|
"godot_view_renderer.mm",
|
2020-10-01 19:18:39 +00:00
|
|
|
"device_metrics.m",
|
2020-11-15 12:11:25 +00:00
|
|
|
"keyboard_input_view.mm",
|
2022-12-10 23:21:22 +00:00
|
|
|
"key_mapping_ios.mm",
|
2024-01-11 14:59:38 +00:00
|
|
|
"ios_terminal_logger.mm",
|
2014-02-10 01:10:30 +00:00
|
|
|
]
|
|
|
|
|
2016-10-31 23:24:30 +00:00
|
|
|
env_ios = env.Clone()
|
2022-07-20 06:28:22 +00:00
|
|
|
ios_lib = env_ios.add_library("ios", ios_lib)
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2020-06-22 20:15:52 +00:00
|
|
|
# (iOS) Enable module support
|
|
|
|
env_ios.Append(CCFLAGS=["-fmodules", "-fcxx-modules"])
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-10-02 15:01:43 +00:00
|
|
|
def combine_libs(target=None, source=None, env=None):
|
|
|
|
lib_path = target[0].srcnode().abspath
|
2018-12-22 11:31:43 +00:00
|
|
|
if "osxcross" in env:
|
2022-07-20 06:28:22 +00:00
|
|
|
libtool = "$IOS_TOOLCHAIN_PATH/usr/bin/${ios_triple}libtool"
|
2018-03-28 16:45:54 +00:00
|
|
|
else:
|
2022-07-20 06:28:22 +00:00
|
|
|
libtool = "$IOS_TOOLCHAIN_PATH/usr/bin/libtool"
|
2020-03-30 06:28:32 +00:00
|
|
|
env.Execute(
|
|
|
|
libtool + ' -static -o "' + lib_path + '" ' + " ".join([('"' + lib.srcnode().abspath + '"') for lib in source])
|
|
|
|
)
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
combine_command = env_ios.Command("#bin/libgodot" + env_ios["LIBSUFFIX"], [ios_lib] + env_ios["LIBS"], combine_libs)
|
2023-12-11 18:50:44 +00:00
|
|
|
|
|
|
|
if env["generate_bundle"]:
|
|
|
|
generate_bundle_command = env.Command("generate_bundle", [], generate_bundle)
|
|
|
|
command = env.AlwaysBuild(generate_bundle_command)
|
|
|
|
env.Depends(command, [combine_command])
|