2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
2018-09-28 11:29:52 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
env.editor_sources = []
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-12-16 11:12:22 +00:00
|
|
|
import os
|
2020-03-08 16:34:09 +00:00
|
|
|
import glob
|
2018-03-17 22:23:55 +00:00
|
|
|
import editor_builders
|
2017-02-08 23:07:44 +00:00
|
|
|
|
2018-03-10 17:37:33 +00:00
|
|
|
|
2017-09-12 20:42:36 +00:00
|
|
|
def _make_doc_data_class_path(to_path):
|
2018-03-17 22:23:55 +00:00
|
|
|
# NOTE: It is safe to generate this file here, since this is still executed serially
|
2020-03-25 13:36:03 +00:00
|
|
|
g = open(os.path.join(to_path, "doc_data_class_path.gen.h"), "w", encoding="utf-8")
|
2018-03-10 17:37:33 +00: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 06:28:32 +00:00
|
|
|
g.write("static const _DocDataClassPath _doc_data_class_paths[" + str(len(env.doc_class_path) + 1) + "] = {\n")
|
2018-03-10 17:37:33 +00:00
|
|
|
for c in sorted(env.doc_class_path):
|
2020-03-30 06:28:32 +00:00
|
|
|
g.write('\t{"' + c + '", "' + env.doc_class_path[c] + '"},\n')
|
2020-04-01 23:20:12 +00:00
|
|
|
g.write("\t{nullptr, nullptr}\n")
|
2018-03-10 17:37:33 +00:00
|
|
|
g.write("};\n")
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2018-03-10 17:37:33 +00:00
|
|
|
g.close()
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
if env["tools"]:
|
2017-02-08 23:07:44 +00:00
|
|
|
# Register exporters
|
2016-10-30 17:57:40 +00:00
|
|
|
reg_exporters_inc = '#include "register_exporters.h"\n'
|
2020-03-30 06:28:32 +00:00
|
|
|
reg_exporters = "void register_exporters() {\n"
|
2016-10-30 17:44:57 +00:00
|
|
|
for e in env.platform_exporters:
|
2021-07-13 19:17:17 +00: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 06:28:32 +00:00
|
|
|
reg_exporters += "\tregister_" + e + "_exporter();\n"
|
2016-10-30 17:57:40 +00:00
|
|
|
reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n'
|
2020-03-30 06:28:32 +00:00
|
|
|
reg_exporters += "}\n"
|
2018-03-17 22:23:55 +00:00
|
|
|
|
|
|
|
# NOTE: It is safe to generate this file here, since this is still executed serially
|
2020-03-25 13:36:03 +00:00
|
|
|
with open("register_exporters.gen.cpp", "w", encoding="utf-8") as f:
|
2018-03-10 17:37:33 +00:00
|
|
|
f.write(reg_exporters_inc)
|
|
|
|
f.write(reg_exporters)
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2020-03-08 16:34:09 +00:00
|
|
|
# Core API documentation.
|
2017-10-21 17:31:23 +00:00
|
|
|
docs = []
|
2020-03-08 16:34:09 +00:00
|
|
|
docs += Glob("#doc/classes/*.xml")
|
2017-11-16 17:53:54 +00:00
|
|
|
|
2020-03-08 16:34:09 +00: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 17:53:54 +00:00
|
|
|
|
2020-03-08 16:34:09 +00: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 20:42:36 +00:00
|
|
|
|
2021-10-20 11:47:50 +00:00
|
|
|
_make_doc_data_class_path(env.Dir("#editor").abspath)
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2017-11-15 19:16:51 +00:00
|
|
|
docs = sorted(docs)
|
2017-06-23 15:03:41 +00:00
|
|
|
env.Depends("#editor/doc_data_compressed.gen.h", docs)
|
2020-07-27 18:00:26 +00:00
|
|
|
env.CommandNoCache(
|
|
|
|
"#editor/doc_data_compressed.gen.h",
|
|
|
|
docs,
|
|
|
|
env.Run(editor_builders.make_doc_header, "Generating documentation header."),
|
|
|
|
)
|
2018-03-17 22:23:55 +00:00
|
|
|
|
2021-10-20 11:47:50 +00: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
|
|
|
|
# ratio (30% for the editor UI, 10% for the class reference).
|
|
|
|
# Generated with `make include-list` for each resource.
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2020-03-18 17:34:36 +00:00
|
|
|
# Editor translations
|
2021-10-20 11:47:50 +00:00
|
|
|
to_include = (
|
2022-03-09 09:33:03 +00:00
|
|
|
"ar,bg,bn,ca,cs,de,el,eo,es_AR,es,fi,fr,gl,he,hu,id,it,ja,ko,lv,ms,nb,nl,pl,pt_BR,pt,ro,ru,sk,sv,th,tl,tr,uk,vi,zh_CN,zh_TW"
|
2021-10-20 11:47:50 +00:00
|
|
|
).split(",")
|
|
|
|
tlist = [env.Dir("#editor/translations").abspath + "/" + f + ".po" for f in to_include]
|
2020-03-30 06:28:32 +00:00
|
|
|
env.Depends("#editor/editor_translations.gen.h", tlist)
|
|
|
|
env.CommandNoCache(
|
2020-07-27 18:00:26 +00:00
|
|
|
"#editor/editor_translations.gen.h",
|
|
|
|
tlist,
|
|
|
|
env.Run(editor_builders.make_editor_translations_header, "Generating editor translations header."),
|
2020-03-30 06:28:32 +00:00
|
|
|
)
|
2020-03-18 17:34:36 +00:00
|
|
|
|
|
|
|
# Documentation translations
|
2021-11-03 14:00:43 +00:00
|
|
|
to_include = "de,es,fr,ja,zh_CN".split(",")
|
2021-10-20 11:47:50 +00:00
|
|
|
tlist = [env.Dir("#doc/translations").abspath + "/" + f + ".po" for f in to_include]
|
2020-03-30 06:28:32 +00:00
|
|
|
env.Depends("#editor/doc_translations.gen.h", tlist)
|
|
|
|
env.CommandNoCache(
|
2020-07-27 18:00:26 +00:00
|
|
|
"#editor/doc_translations.gen.h",
|
|
|
|
tlist,
|
|
|
|
env.Run(editor_builders.make_doc_translations_header, "Generating translations header."),
|
2020-03-30 06:28:32 +00:00
|
|
|
)
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
# Fonts
|
2021-10-20 11:47:50 +00:00
|
|
|
flist = glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.ttf")
|
|
|
|
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.otf"))
|
2022-03-25 08:54:32 +00:00
|
|
|
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff"))
|
|
|
|
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff2"))
|
2018-08-28 18:40:51 +00:00
|
|
|
flist.sort()
|
2020-03-30 06:28:32 +00:00
|
|
|
env.Depends("#editor/builtin_fonts.gen.h", flist)
|
2020-07-27 18:00:26 +00:00
|
|
|
env.CommandNoCache(
|
|
|
|
"#editor/builtin_fonts.gen.h",
|
|
|
|
flist,
|
|
|
|
env.Run(editor_builders.make_fonts_header, "Generating builtin fonts header."),
|
|
|
|
)
|
2018-03-17 22:23:55 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
env.add_source_files(env.editor_sources, "*.cpp")
|
2021-10-15 19:59:11 +00:00
|
|
|
env.add_source_files(env.editor_sources, "register_exporters.gen.cpp")
|
2017-02-08 23:07:44 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
SConscript("debugger/SCsub")
|
|
|
|
SConscript("fileserver/SCsub")
|
|
|
|
SConscript("icons/SCsub")
|
|
|
|
SConscript("import/SCsub")
|
|
|
|
SConscript("plugins/SCsub")
|
2017-02-08 23:07:44 +00:00
|
|
|
|
2017-11-28 20:27:57 +00:00
|
|
|
lib = env.add_library("editor", env.editor_sources)
|
2017-02-08 23:07:44 +00:00
|
|
|
env.Prepend(LIBS=[lib])
|