SCsub 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/usr/bin/env python
  2. Import("env")
  3. env.editor_sources = []
  4. import os
  5. import glob
  6. from platform_methods import run_in_subprocess
  7. from compat import open_utf8
  8. import editor_builders
  9. def _make_doc_data_class_path(to_path):
  10. # NOTE: It is safe to generate this file here, since this is still executed serially
  11. g = open_utf8(os.path.join(to_path, "doc_data_class_path.gen.h"), "w")
  12. g.write("static const int _doc_data_class_path_count = " + str(len(env.doc_class_path)) + ";\n")
  13. g.write("struct _DocDataClassPath { const char* name; const char* path; };\n")
  14. g.write("static const _DocDataClassPath _doc_data_class_paths[" + str(len(env.doc_class_path) + 1) + "] = {\n")
  15. for c in sorted(env.doc_class_path):
  16. g.write('\t{"' + c + '", "' + env.doc_class_path[c] + '"},\n')
  17. g.write("\t{NULL, NULL}\n")
  18. g.write("};\n")
  19. g.close()
  20. if env["tools"]:
  21. # Register exporters
  22. reg_exporters_inc = '#include "register_exporters.h"\n'
  23. reg_exporters = "void register_exporters() {\n"
  24. for e in env.platform_exporters:
  25. # Glob all .cpp files in export folder
  26. files = Glob("#platform/" + e + "/export/" + "*.cpp")
  27. env.add_source_files(env.editor_sources, files)
  28. reg_exporters += "\tregister_" + e + "_exporter();\n"
  29. reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n'
  30. reg_exporters += "}\n"
  31. # NOTE: It is safe to generate this file here, since this is still executed serially
  32. with open_utf8("register_exporters.gen.cpp", "w") as f:
  33. f.write(reg_exporters_inc)
  34. f.write(reg_exporters)
  35. # Core API documentation.
  36. docs = []
  37. docs += Glob("#doc/classes/*.xml")
  38. # Module API documentation.
  39. module_dirs = []
  40. for d in env.doc_class_path.values():
  41. if d not in module_dirs:
  42. module_dirs.append(d)
  43. for d in module_dirs:
  44. if not os.path.isabs(d):
  45. docs += Glob("#" + d + "/*.xml") # Built-in.
  46. else:
  47. docs += Glob(d + "/*.xml") # Custom.
  48. _make_doc_data_class_path(env.Dir("#editor/doc").abspath)
  49. docs = sorted(docs)
  50. env.Depends("#editor/doc_data_compressed.gen.h", docs)
  51. env.CommandNoCache("#editor/doc_data_compressed.gen.h", docs, run_in_subprocess(editor_builders.make_doc_header))
  52. # Editor interface and class reference translations incur a significant size
  53. # cost for the editor binary (see godot-proposals#3421).
  54. # To limit it, we only include translations with a high enough completion
  55. # ratio (20% for the editor UI, 10% for the class reference).
  56. # Generated with `make include-list` for each resource.
  57. # Note: In 3.x, we also exclude languages that depend on complex text
  58. # layouts to be displayed properly: ar,bn,fa,he,hi,ml,si,ta,te,ur.
  59. # Editor translations
  60. to_include = (
  61. "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,sv,th,tr,uk,vi,zh_CN,zh_TW"
  62. ).split(",")
  63. tlist = [env.Dir("#editor/translations").abspath + "/" + f + ".po" for f in to_include]
  64. env.Depends("#editor/editor_translations.gen.h", tlist)
  65. env.CommandNoCache(
  66. "#editor/editor_translations.gen.h", tlist, run_in_subprocess(editor_builders.make_editor_translations_header)
  67. )
  68. # Documentation translations
  69. to_include = "de,es,fr,ja,zh_CN".split(",")
  70. tlist = [env.Dir("#doc/translations").abspath + "/" + f + ".po" for f in to_include]
  71. env.Depends("#editor/doc_translations.gen.h", tlist)
  72. env.CommandNoCache(
  73. "#editor/doc_translations.gen.h", tlist, run_in_subprocess(editor_builders.make_doc_translations_header)
  74. )
  75. # Fonts
  76. flist = glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.ttf")
  77. flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.otf"))
  78. flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff"))
  79. flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff2"))
  80. flist.sort()
  81. env.Depends("#editor/builtin_fonts.gen.h", flist)
  82. env.CommandNoCache("#editor/builtin_fonts.gen.h", flist, run_in_subprocess(editor_builders.make_fonts_header))
  83. env.add_source_files(env.editor_sources, "*.cpp")
  84. env.add_source_files(env.editor_sources, "register_exporters.gen.cpp")
  85. SConscript("collada/SCsub")
  86. SConscript("doc/SCsub")
  87. SConscript("fileserver/SCsub")
  88. SConscript("icons/SCsub")
  89. SConscript("import/SCsub")
  90. SConscript("plugins/SCsub")
  91. lib = env.add_library("editor", env.editor_sources)
  92. env.Prepend(LIBS=[lib])