2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
javascript_files = [
|
2020-03-30 08:28:32 +02:00
|
|
|
"audio_driver_javascript.cpp",
|
|
|
|
"http_client_javascript.cpp",
|
|
|
|
"javascript_eval.cpp",
|
|
|
|
"javascript_main.cpp",
|
|
|
|
"os_javascript.cpp",
|
2020-09-17 18:01:36 +02:00
|
|
|
"api/javascript_tools_editor_plugin.cpp",
|
2014-02-10 02:10:30 +01:00
|
|
|
]
|
|
|
|
|
2020-01-19 11:44:19 +01:00
|
|
|
build_targets = ["#bin/godot${PROGSUFFIX}.js", "#bin/godot${PROGSUFFIX}.wasm"]
|
|
|
|
if env["threads_enabled"]:
|
|
|
|
build_targets.append("#bin/godot${PROGSUFFIX}.worker.js")
|
|
|
|
|
|
|
|
build = env.add_program(build_targets, javascript_files)
|
2017-02-20 13:36:54 +01:00
|
|
|
|
2020-10-17 23:31:30 +02:00
|
|
|
env.AddJSLibraries(
|
|
|
|
[
|
|
|
|
"native/http_request.js",
|
|
|
|
"native/library_godot_audio.js",
|
|
|
|
"native/library_godot_display.js",
|
|
|
|
"native/library_godot_os.js",
|
|
|
|
]
|
|
|
|
)
|
2017-10-26 03:39:41 +02:00
|
|
|
|
2020-10-17 23:31:30 +02:00
|
|
|
if env["tools"]:
|
|
|
|
env.AddJSLibraries(["native/library_godot_editor_tools.js"])
|
|
|
|
if env["javascript_eval"]:
|
|
|
|
env.AddJSLibraries(["native/library_godot_eval.js"])
|
|
|
|
for lib in env["JS_LIBS"]:
|
|
|
|
env.Append(LINKFLAGS=["--js-library", lib])
|
|
|
|
env.Depends(build, env["JS_LIBS"])
|
2020-01-19 11:44:19 +01:00
|
|
|
|
|
|
|
engine = [
|
|
|
|
"engine/preloader.js",
|
|
|
|
"engine/utils.js",
|
|
|
|
"engine/engine.js",
|
2018-08-09 02:58:39 +02:00
|
|
|
]
|
2020-01-19 11:44:19 +01:00
|
|
|
externs = [env.File("#platform/javascript/engine/externs.js")]
|
|
|
|
js_engine = env.CreateEngineFile("#bin/godot${PROGSUFFIX}.engine.js", engine, externs)
|
|
|
|
env.Depends(js_engine, externs)
|
2018-08-09 02:58:39 +02:00
|
|
|
|
2020-01-19 11:44:19 +01:00
|
|
|
wrap_list = [
|
|
|
|
build[0],
|
|
|
|
js_engine,
|
|
|
|
]
|
|
|
|
js_wrapped = env.Textfile("#bin/godot", [env.File(f) for f in wrap_list], TEXTFILESUFFIX="${PROGSUFFIX}.wrapped.js")
|
2018-03-21 15:51:44 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
zip_dir = env.Dir("#bin/.javascript_zip")
|
2020-01-19 11:44:19 +01:00
|
|
|
binary_name = "godot.tools" if env["tools"] else "godot"
|
|
|
|
out_files = [
|
|
|
|
zip_dir.File(binary_name + ".js"),
|
|
|
|
zip_dir.File(binary_name + ".wasm"),
|
|
|
|
zip_dir.File(binary_name + ".html"),
|
|
|
|
]
|
2020-09-14 13:18:49 +02:00
|
|
|
html_file = "#misc/dist/html/editor.html" if env["tools"] else "#misc/dist/html/full-size.html"
|
2020-01-19 11:44:19 +01:00
|
|
|
in_files = [js_wrapped, build[1], html_file]
|
|
|
|
if env["threads_enabled"]:
|
|
|
|
in_files.append(build[2])
|
|
|
|
out_files.append(zip_dir.File(binary_name + ".worker.js"))
|
|
|
|
|
|
|
|
zip_files = env.InstallAs(out_files, in_files)
|
2020-03-30 08:28:32 +02:00
|
|
|
env.Zip(
|
|
|
|
"#bin/godot",
|
|
|
|
zip_files,
|
|
|
|
ZIPROOT=zip_dir,
|
|
|
|
ZIPSUFFIX="${PROGSUFFIX}${ZIPSUFFIX}",
|
2020-09-18 14:09:51 +02:00
|
|
|
ZIPCOMSTR="Archiving $SOURCES as $TARGET",
|
2020-03-30 08:28:32 +02:00
|
|
|
)
|