diff options
author | marynate <mary.w.nate@gmail.com> | 2014-05-22 16:24:46 +0800 |
---|---|---|
committer | marynate <mary.w.nate@gmail.com> | 2014-05-22 16:26:55 +0800 |
commit | 1e41bfa9cf525d031a63919ef23e54350ef24620 (patch) | |
tree | f8544fa38a5fbbf0978da6679b9f3ef890cfda35 /tools/editor/icons | |
parent | fee28f7a9d15e4b2bd71cb2365937910f92c8144 (diff) |
Use cStringIO to write editor_icons.cpp, lower the opportunity file access conflit when buiding with spawn_jobs
Diffstat (limited to 'tools/editor/icons')
-rw-r--r-- | tools/editor/icons/SCsub | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/tools/editor/icons/SCsub b/tools/editor/icons/SCsub index a7e550feac..aea053d22b 100644 --- a/tools/editor/icons/SCsub +++ b/tools/editor/icons/SCsub @@ -3,13 +3,15 @@ Import('env') def make_editor_icons_action(target, source, env): import os + import cStringIO dst = target[0].srcnode().abspath pixmaps = source + + s = cStringIO.StringIO() - f = open(dst,"wb") - f.write("#include \"editor_icons.h\"\n\n") - f.write("#include \"scene/resources/theme.h\"\n\n") + s.write("#include \"editor_icons.h\"\n\n") + s.write("#include \"scene/resources/theme.h\"\n\n") for x in pixmaps: @@ -17,37 +19,41 @@ def make_editor_icons_action(target, source, env): var_str=os.path.basename(x)[:-4]+"_png"; #print(var_str) - f.write("static const unsigned char "+ var_str +"[]={\n"); + s.write("static const unsigned char "+ var_str +"[]={\n"); pngf=open(x,"rb"); b=pngf.read(1); while(len(b)==1): - f.write(hex(ord(b))) + s.write(hex(ord(b))) b=pngf.read(1); if (len(b)==1): - f.write(",") + s.write(",") - f.write("\n};\n\n\n"); + s.write("\n};\n\n\n"); pngf.close(); - f.write("static Ref<ImageTexture> make_icon(const uint8_t* p_png) {\n") - f.write("\tRef<ImageTexture> texture( memnew( ImageTexture ) );\n") - f.write("\ttexture->create_from_image( Image(p_png),ImageTexture::FLAG_FILTER );\n") - f.write("\treturn texture;\n") - f.write("}\n\n") + s.write("static Ref<ImageTexture> make_icon(const uint8_t* p_png) {\n") + s.write("\tRef<ImageTexture> texture( memnew( ImageTexture ) );\n") + s.write("\ttexture->create_from_image( Image(p_png),ImageTexture::FLAG_FILTER );\n") + s.write("\treturn texture;\n") + s.write("}\n\n") - f.write("void editor_register_icons(Ref<Theme> p_theme) {\n\n") + s.write("void editor_register_icons(Ref<Theme> p_theme) {\n\n") for x in pixmaps: x=os.path.basename(str(x)) type=x[5:-4].title().replace("_",""); var_str=x[:-4]+"_png"; - f.write("\tp_theme->set_icon(\""+type+"\",\"EditorIcons\",make_icon("+var_str+"));\n"); + s.write("\tp_theme->set_icon(\""+type+"\",\"EditorIcons\",make_icon("+var_str+"));\n"); - f.write("\n\n}\n\n"); + s.write("\n\n}\n\n"); + + f = open(dst,"wb") + f.write(s.getvalue()) f.close() + s.close() make_editor_icons_builder = Builder(action=make_editor_icons_action, suffix = '.cpp', |