2026-02-11 19:40:26 +08:00
|
|
|
-- ==============================================
|
|
|
|
|
-- Collision Demo 示例 - Xmake 构建脚本
|
|
|
|
|
-- 支持平台: MinGW (Windows), Nintendo Switch
|
|
|
|
|
-- ==============================================
|
|
|
|
|
|
|
|
|
|
-- 获取当前脚本所在目录(示例根目录)
|
|
|
|
|
local example_dir = os.scriptdir()
|
|
|
|
|
|
|
|
|
|
-- 可执行文件目标
|
|
|
|
|
target("collision_demo")
|
|
|
|
|
set_kind("binary")
|
|
|
|
|
add_files("main.cpp")
|
2026-02-25 21:22:35 +08:00
|
|
|
add_includedirs("../../include")
|
2026-02-11 19:40:26 +08:00
|
|
|
add_deps("extra2d")
|
|
|
|
|
|
|
|
|
|
-- 使用与主项目相同的平台配置
|
|
|
|
|
if is_plat("switch") then
|
|
|
|
|
set_targetdir("../../build/examples/collision_demo")
|
|
|
|
|
|
|
|
|
|
-- 构建后生成 NRO 文件
|
|
|
|
|
after_build(function (target)
|
|
|
|
|
local devkitPro = os.getenv("DEVKITPRO") or "C:/devkitPro"
|
|
|
|
|
local elf_file = target:targetfile()
|
|
|
|
|
local output_dir = path.directory(elf_file)
|
|
|
|
|
local nacp_file = path.join(output_dir, "collision_demo.nacp")
|
|
|
|
|
local nro_file = path.join(output_dir, "collision_demo.nro")
|
|
|
|
|
local nacptool = path.join(devkitPro, "tools/bin/nacptool.exe")
|
|
|
|
|
local elf2nro = path.join(devkitPro, "tools/bin/elf2nro.exe")
|
|
|
|
|
|
|
|
|
|
if os.isfile(nacptool) and os.isfile(elf2nro) then
|
|
|
|
|
os.vrunv(nacptool, {"--create", "Collision Demo", "Extra2D Team", "1.0.0", nacp_file})
|
|
|
|
|
local romfs = path.join(example_dir, "romfs")
|
|
|
|
|
if os.isdir(romfs) then
|
|
|
|
|
os.vrunv(elf2nro, {elf_file, nro_file, "--nacp=" .. nacp_file, "--romfsdir=" .. romfs})
|
|
|
|
|
else
|
|
|
|
|
os.vrunv(elf2nro, {elf_file, nro_file, "--nacp=" .. nacp_file})
|
|
|
|
|
end
|
|
|
|
|
print("Generated NRO: " .. nro_file)
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
-- 打包时将 NRO 文件复制到 package 目录
|
|
|
|
|
after_package(function (target)
|
|
|
|
|
local nro_file = path.join(target:targetdir(), "collision_demo.nro")
|
|
|
|
|
local package_dir = target:packagedir()
|
|
|
|
|
if os.isfile(nro_file) and package_dir then
|
|
|
|
|
os.cp(nro_file, package_dir)
|
|
|
|
|
print("Copied NRO to package: " .. package_dir)
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
elseif is_plat("mingw") then
|
|
|
|
|
set_targetdir("../../build/examples/collision_demo")
|
|
|
|
|
add_ldflags("-mwindows", {force = true})
|
|
|
|
|
|
|
|
|
|
-- 复制资源到输出目录
|
|
|
|
|
after_build(function (target)
|
|
|
|
|
local romfs = path.join(example_dir, "romfs")
|
|
|
|
|
if os.isdir(romfs) then
|
|
|
|
|
local target_dir = path.directory(target:targetfile())
|
|
|
|
|
local assets_dir = path.join(target_dir, "assets")
|
|
|
|
|
|
|
|
|
|
-- 创建 assets 目录
|
|
|
|
|
if not os.isdir(assets_dir) then
|
|
|
|
|
os.mkdir(assets_dir)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- 复制所有资源文件(包括子目录)
|
|
|
|
|
os.cp(path.join(romfs, "assets/**"), assets_dir)
|
|
|
|
|
print("Copied assets from " .. romfs .. " to " .. assets_dir)
|
|
|
|
|
else
|
|
|
|
|
print("Warning: romfs directory not found at " .. romfs)
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
target_end()
|