2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2018-09-28 13:29:52 +02:00
|
|
|
|
2017-02-09 00:07:44 +01:00
|
|
|
env.editor_sources = []
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-12-16 12:12:22 +01:00
|
|
|
import os
|
2020-04-04 13:46:15 +02:00
|
|
|
import glob
|
2018-03-17 23:23:55 +01:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
from compat import open_utf8
|
|
|
|
import editor_builders
|
2017-02-09 00:07:44 +01:00
|
|
|
|
2018-03-10 18:37:33 +01:00
|
|
|
|
2017-09-12 22:42:36 +02:00
|
|
|
def _make_doc_data_class_path(to_path):
|
2018-03-17 23:23:55 +01:00
|
|
|
# NOTE: It is safe to generate this file here, since this is still executed serially
|
|
|
|
g = open_utf8(os.path.join(to_path, "doc_data_class_path.gen.h"), "w")
|
2018-03-10 18:37:33 +01:00
|
|
|
g.write("static const int _doc_data_class_path_count = " + str(len(env.doc_class_path)) + ";\n")
|
|
|
|
g.write("struct _DocDataClassPath { const char* name; const char* path; };\n")
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
g.write("static const _DocDataClassPath _doc_data_class_paths[" + str(len(env.doc_class_path) + 1) + "] = {\n")
|
2018-03-10 18:37:33 +01:00
|
|
|
for c in sorted(env.doc_class_path):
|
2020-03-30 08:28:32 +02:00
|
|
|
g.write('\t{"' + c + '", "' + env.doc_class_path[c] + '"},\n')
|
2018-03-10 18:37:33 +01:00
|
|
|
g.write("\t{NULL, NULL}\n")
|
|
|
|
g.write("};\n")
|
2017-09-12 22:42:36 +02:00
|
|
|
|
2018-03-10 18:37:33 +01:00
|
|
|
g.close()
|
2017-09-12 22:42:36 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["tools"]:
|
2017-02-09 00:07:44 +01:00
|
|
|
# Register exporters
|
2016-10-30 18:57:40 +01:00
|
|
|
reg_exporters_inc = '#include "register_exporters.h"\n'
|
2020-03-30 08:28:32 +02:00
|
|
|
reg_exporters = "void register_exporters() {\n"
|
2016-10-30 18:44:57 +01:00
|
|
|
for e in env.platform_exporters:
|
2021-09-09 18:43:49 +02:00
|
|
|
# Glob all .cpp files in export folder
|
|
|
|
files = Glob("#platform/" + e + "/export/" + "*.cpp")
|
|
|
|
env.add_source_files(env.editor_sources, files)
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
reg_exporters += "\tregister_" + e + "_exporter();\n"
|
2016-10-30 18:57:40 +01:00
|
|
|
reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n'
|
2020-03-30 08:28:32 +02:00
|
|
|
reg_exporters += "}\n"
|
2018-03-17 23:23:55 +01:00
|
|
|
|
|
|
|
# NOTE: It is safe to generate this file here, since this is still executed serially
|
2018-03-10 18:37:33 +01:00
|
|
|
with open_utf8("register_exporters.gen.cpp", "w") as f:
|
|
|
|
f.write(reg_exporters_inc)
|
|
|
|
f.write(reg_exporters)
|
2016-10-30 18:44:57 +01:00
|
|
|
|
2020-04-04 13:46:15 +02:00
|
|
|
# Core API documentation.
|
2017-10-21 19:31:23 +02:00
|
|
|
docs = []
|
2020-04-04 13:46:15 +02:00
|
|
|
docs += Glob("#doc/classes/*.xml")
|
2017-11-16 18:53:54 +01:00
|
|
|
|
2020-04-04 13:46:15 +02:00
|
|
|
# Module API documentation.
|
|
|
|
module_dirs = []
|
|
|
|
for d in env.doc_class_path.values():
|
|
|
|
if d not in module_dirs:
|
|
|
|
module_dirs.append(d)
|
2017-11-16 18:53:54 +01:00
|
|
|
|
2020-04-04 13:46:15 +02:00
|
|
|
for d in module_dirs:
|
|
|
|
if not os.path.isabs(d):
|
|
|
|
docs += Glob("#" + d + "/*.xml") # Built-in.
|
|
|
|
else:
|
|
|
|
docs += Glob(d + "/*.xml") # Custom.
|
2017-09-12 22:42:36 +02:00
|
|
|
|
2021-10-20 13:47:50 +02:00
|
|
|
_make_doc_data_class_path(env.Dir("#editor/doc").abspath)
|
2017-09-12 22:42:36 +02:00
|
|
|
|
2017-11-15 20:16:51 +01:00
|
|
|
docs = sorted(docs)
|
2017-06-23 17:03:41 +02:00
|
|
|
env.Depends("#editor/doc_data_compressed.gen.h", docs)
|
2018-03-17 23:23:55 +01:00
|
|
|
env.CommandNoCache("#editor/doc_data_compressed.gen.h", docs, run_in_subprocess(editor_builders.make_doc_header))
|
|
|
|
|
2021-10-20 13:47:50 +02:00
|
|
|
# Editor interface and class reference translations incur a significant size
|
|
|
|
# cost for the editor binary (see godot-proposals#3421).
|
|
|
|
# To limit it, we only include translations with a high enough completion
|
2022-04-25 17:14:49 +02:00
|
|
|
# ratio (20% for the editor UI, 10% for the class reference).
|
2021-10-20 13:47:50 +02:00
|
|
|
# Generated with `make include-list` for each resource.
|
|
|
|
# Note: In 3.x, we also exclude languages that depend on complex text
|
|
|
|
# layouts to be displayed properly: ar,bn,fa,he,hi,ml,si,ta,te,ur.
|
2016-10-30 18:44:57 +01:00
|
|
|
|
2020-03-18 18:34:36 +01:00
|
|
|
# Editor translations
|
2021-10-20 13:47:50 +02:00
|
|
|
to_include = (
|
2022-04-25 17:14:49 +02:00
|
|
|
"bg,ca,cs,de,el,eo,es_AR,es,fi,fr,gl,hu,id,it,ja,ko,lv,ms,nb,nl,pl,pt_BR,pt,ro,ru,sk,th,tr,uk,vi,zh_CN,zh_TW"
|
2021-10-20 13:47:50 +02:00
|
|
|
).split(",")
|
|
|
|
tlist = [env.Dir("#editor/translations").abspath + "/" + f + ".po" for f in to_include]
|
2020-03-18 18:34:36 +01:00
|
|
|
env.Depends("#editor/editor_translations.gen.h", tlist)
|
|
|
|
env.CommandNoCache(
|
|
|
|
"#editor/editor_translations.gen.h", tlist, run_in_subprocess(editor_builders.make_editor_translations_header)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Documentation translations
|
2021-11-03 15:00:43 +01:00
|
|
|
to_include = "de,es,fr,ja,zh_CN".split(",")
|
2021-10-20 13:47:50 +02:00
|
|
|
tlist = [env.Dir("#doc/translations").abspath + "/" + f + ".po" for f in to_include]
|
2020-03-18 18:34:36 +01:00
|
|
|
env.Depends("#editor/doc_translations.gen.h", tlist)
|
|
|
|
env.CommandNoCache(
|
|
|
|
"#editor/doc_translations.gen.h", tlist, run_in_subprocess(editor_builders.make_doc_translations_header)
|
|
|
|
)
|
2016-10-30 18:44:57 +01:00
|
|
|
|
2017-02-09 00:07:44 +01:00
|
|
|
# Fonts
|
2021-10-20 13:47:50 +02:00
|
|
|
flist = glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.ttf")
|
|
|
|
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.otf"))
|
2022-03-25 18:31:09 +01:00
|
|
|
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff"))
|
|
|
|
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff2"))
|
2018-08-28 20:40:51 +02:00
|
|
|
flist.sort()
|
2020-03-30 08:28:32 +02:00
|
|
|
env.Depends("#editor/builtin_fonts.gen.h", flist)
|
|
|
|
env.CommandNoCache("#editor/builtin_fonts.gen.h", flist, run_in_subprocess(editor_builders.make_fonts_header))
|
2018-03-17 23:23:55 +01:00
|
|
|
|
2017-02-09 00:07:44 +01:00
|
|
|
env.add_source_files(env.editor_sources, "*.cpp")
|
2021-10-15 21:59:11 +02:00
|
|
|
env.add_source_files(env.editor_sources, "register_exporters.gen.cpp")
|
2017-02-09 00:07:44 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
SConscript("collada/SCsub")
|
|
|
|
SConscript("doc/SCsub")
|
|
|
|
SConscript("fileserver/SCsub")
|
|
|
|
SConscript("icons/SCsub")
|
|
|
|
SConscript("import/SCsub")
|
|
|
|
SConscript("plugins/SCsub")
|
2017-02-09 00:07:44 +01:00
|
|
|
|
2017-11-28 21:27:57 +01:00
|
|
|
lib = env.add_library("editor", env.editor_sources)
|
2017-02-09 00:07:44 +01:00
|
|
|
env.Prepend(LIBS=[lib])
|