diff options
Diffstat (limited to 'editor/template_builders.py')
-rw-r--r-- | editor/template_builders.py | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/editor/template_builders.py b/editor/template_builders.py index d5932a08fe..c79c9bd8af 100644 --- a/editor/template_builders.py +++ b/editor/template_builders.py @@ -54,41 +54,41 @@ def parse_template(inherits, source, delimiter): def make_templates(target, source, env): dst = target[0] - s = StringIO() - s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n\n") - s.write("#ifndef _CODE_TEMPLATES_H\n") - s.write("#define _CODE_TEMPLATES_H\n\n") - s.write('#include "core/object/object.h"\n') - s.write('#include "core/object/script_language.h"\n') - - delimiter = "#" # GDScript single line comment delimiter by default. - if source: - ext = os.path.splitext(source[0])[1] - if ext == ".cs": - delimiter = "//" - - parsed_template_string = "" - number_of_templates = 0 - - for filepath in source: - node_name = os.path.basename(os.path.dirname(filepath)) - parsed_template = parse_template(node_name, filepath, delimiter) - parsed_template_string += "\t" + parsed_template - number_of_templates += 1 - - s.write("\nstatic const int TEMPLATES_ARRAY_SIZE = " + str(number_of_templates) + ";\n") - s.write("\nstatic const struct ScriptLanguage::ScriptTemplate TEMPLATES[" + str(number_of_templates) + "] = {\n") - - s.write(parsed_template_string) + with StringIO() as s: + s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n\n") + s.write("#ifndef _CODE_TEMPLATES_H\n") + s.write("#define _CODE_TEMPLATES_H\n\n") + s.write('#include "core/object/object.h"\n') + s.write('#include "core/object/script_language.h"\n') + + delimiter = "#" # GDScript single line comment delimiter by default. + if source: + ext = os.path.splitext(source[0])[1] + if ext == ".cs": + delimiter = "//" + + parsed_template_string = "" + number_of_templates = 0 + + for filepath in source: + node_name = os.path.basename(os.path.dirname(filepath)) + parsed_template = parse_template(node_name, filepath, delimiter) + parsed_template_string += "\t" + parsed_template + number_of_templates += 1 + + s.write("\nstatic const int TEMPLATES_ARRAY_SIZE = " + str(number_of_templates) + ";\n") + s.write( + "\nstatic const struct ScriptLanguage::ScriptTemplate TEMPLATES[" + str(number_of_templates) + "] = {\n" + ) - s.write("};\n") + s.write(parsed_template_string) - s.write("\n#endif\n") + s.write("};\n") - with open(dst, "w", encoding="utf-8", newline="\n") as f: - f.write(s.getvalue()) + s.write("\n#endif\n") - s.close() + with open(dst, "w", encoding="utf-8", newline="\n") as f: + f.write(s.getvalue()) if __name__ == "__main__": |