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
|
2018-03-10 17:37:33 +00:00
|
|
|
import os.path
|
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:
|
2019-07-22 11:57:39 +00:00
|
|
|
env.add_source_files(env.editor_sources, "#platform/" + e + "/export/export.cpp")
|
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
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
_make_doc_data_class_path(os.path.join(env.Dir("#").abspath, "editor"))
|
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
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
path = env.Dir(".").abspath
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2020-03-18 17:34:36 +00:00
|
|
|
# Editor translations
|
2017-02-08 23:07:44 +00:00
|
|
|
tlist = glob.glob(path + "/translations/*.po")
|
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
|
|
|
|
tlist = glob.glob(env.Dir("#doc").abspath + "/translations/*.po")
|
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
|
2017-03-05 13:21:25 +00:00
|
|
|
flist = glob.glob(path + "/../thirdparty/fonts/*.ttf")
|
2018-08-28 18:38:47 +00:00
|
|
|
flist.extend(glob.glob(path + "/../thirdparty/fonts/*.otf"))
|
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")
|
|
|
|
|
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])
|