2018-03-17 23:23:55 +01:00
|
|
|
"""Functions used to generate source files during build time
|
|
|
|
|
|
|
|
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
|
|
|
|
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
from platform_methods import subprocess_main
|
|
|
|
from compat import StringIO
|
|
|
|
|
|
|
|
|
|
|
|
def make_editor_icons_action(target, source, env):
|
|
|
|
|
|
|
|
dst = target[0]
|
|
|
|
svg_icons = source
|
|
|
|
|
|
|
|
icons_string = StringIO()
|
|
|
|
|
|
|
|
for f in svg_icons:
|
|
|
|
|
|
|
|
fname = str(f)
|
|
|
|
|
|
|
|
icons_string.write('\t"')
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
with open(fname, "rb") as svgf:
|
2018-03-17 23:23:55 +01:00
|
|
|
b = svgf.read(1)
|
2020-03-30 08:28:32 +02:00
|
|
|
while len(b) == 1:
|
2018-03-17 23:23:55 +01:00
|
|
|
icons_string.write("\\" + str(hex(ord(b)))[1:])
|
|
|
|
b = svgf.read(1)
|
|
|
|
|
|
|
|
icons_string.write('"')
|
|
|
|
if fname != svg_icons[-1]:
|
|
|
|
icons_string.write(",")
|
2020-03-30 08:28:32 +02:00
|
|
|
icons_string.write("\n")
|
2018-03-17 23:23:55 +01:00
|
|
|
|
|
|
|
s = StringIO()
|
|
|
|
s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n")
|
|
|
|
s.write("#ifndef _EDITOR_ICONS_H\n")
|
|
|
|
s.write("#define _EDITOR_ICONS_H\n")
|
|
|
|
s.write("static const int editor_icons_count = {};\n".format(len(svg_icons)))
|
|
|
|
s.write("static const char *editor_icons_sources[] = {\n")
|
|
|
|
s.write(icons_string.getvalue())
|
2020-03-30 08:28:32 +02:00
|
|
|
s.write("};\n\n")
|
2018-03-17 23:23:55 +01:00
|
|
|
s.write("static const char *editor_icons_names[] = {\n")
|
|
|
|
|
|
|
|
# this is used to store the indices of thumbnail icons
|
2020-03-30 08:28:32 +02:00
|
|
|
thumb_medium_indices = []
|
|
|
|
thumb_big_indices = []
|
2018-03-17 23:23:55 +01:00
|
|
|
index = 0
|
|
|
|
for f in svg_icons:
|
|
|
|
|
|
|
|
fname = str(f)
|
|
|
|
|
|
|
|
icon_name = os.path.basename(fname)[5:-4].title().replace("_", "")
|
|
|
|
# some special cases
|
2020-03-30 08:28:32 +02:00
|
|
|
if icon_name in ["Int", "Bool", "Float"]:
|
2018-03-17 23:23:55 +01:00
|
|
|
icon_name = icon_name.lower()
|
|
|
|
if icon_name.endswith("MediumThumb"): # don't know a better way to handle this
|
|
|
|
thumb_medium_indices.append(str(index))
|
|
|
|
if icon_name.endswith("BigThumb"): # don't know a better way to handle this
|
|
|
|
thumb_big_indices.append(str(index))
|
|
|
|
|
|
|
|
s.write('\t"{0}"'.format(icon_name))
|
|
|
|
|
|
|
|
if fname != svg_icons[-1]:
|
|
|
|
s.write(",")
|
2020-03-30 08:28:32 +02:00
|
|
|
s.write("\n")
|
2018-03-17 23:23:55 +01:00
|
|
|
|
|
|
|
index += 1
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
s.write("};\n")
|
2018-03-17 23:23:55 +01:00
|
|
|
|
|
|
|
if thumb_medium_indices:
|
|
|
|
s.write("\n\n")
|
|
|
|
s.write("static const int editor_md_thumbs_count = {};\n".format(len(thumb_medium_indices)))
|
|
|
|
s.write("static const int editor_md_thumbs_indices[] = {")
|
|
|
|
s.write(", ".join(thumb_medium_indices))
|
|
|
|
s.write("};\n")
|
|
|
|
if thumb_big_indices:
|
|
|
|
s.write("\n\n")
|
|
|
|
s.write("static const int editor_bg_thumbs_count = {};\n".format(len(thumb_big_indices)))
|
|
|
|
s.write("static const int editor_bg_thumbs_indices[] = {")
|
|
|
|
s.write(", ".join(thumb_big_indices))
|
|
|
|
s.write("};\n")
|
|
|
|
|
|
|
|
s.write("#endif\n")
|
|
|
|
|
|
|
|
with open(dst, "w") as f:
|
|
|
|
f.write(s.getvalue())
|
|
|
|
|
|
|
|
s.close()
|
|
|
|
icons_string.close()
|
|
|
|
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if __name__ == "__main__":
|
2018-03-17 23:23:55 +01:00
|
|
|
subprocess_main(globals())
|