summaryrefslogtreecommitdiff
path: root/main/SCsub
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-12-16 16:11:13 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-12-16 16:11:13 -0300
commitcf84ee22a9b884453ac8d50b4c3216baf2e3897a (patch)
tree88136b39a990bf218cec062cbbf47d785a5c1ea5 /main/SCsub
parentc93cb30cbb8374bad0a5fac8f63b3fc6915d411d (diff)
Added custom editor splash (including sponsor logo).
Diffstat (limited to 'main/SCsub')
-rw-r--r--main/SCsub24
1 files changed, 24 insertions, 0 deletions
diff --git a/main/SCsub b/main/SCsub
index 2cc617fc2c..37491636e1 100644
--- a/main/SCsub
+++ b/main/SCsub
@@ -24,6 +24,27 @@ def make_splash(target, source, env):
g.write("#endif")
+def make_splash_editor(target, source, env):
+
+ src = source[0].srcnode().abspath
+ dst = target[0].srcnode().abspath
+ f = open(src, "rb")
+ g = open(dst, "w")
+
+ buf = f.read()
+
+ g.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n")
+ g.write("#ifndef BOOT_SPLASH_EDITOR_H\n")
+ g.write("#define BOOT_SPLASH_EDITOR_H\n")
+ g.write('static const Color boot_splash_editor_bg_color = Color::html("#232323");\n')
+ g.write("static const unsigned char boot_splash_editor_png[] = {\n")
+ for i in range(len(buf)):
+ g.write(byte_to_str(buf[i]) + ",\n")
+ g.write("};\n")
+ g.write("#endif")
+
+
+
def make_app_icon(target, source, env):
src = source[0].srcnode().abspath
@@ -51,6 +72,9 @@ Export('env')
env.Depends("#main/splash.gen.h", "#main/splash.png")
env.Command("#main/splash.gen.h", "#main/splash.png", make_splash)
+env.Depends("#main/splash_editor.gen.h", "#main/splash.png")
+env.Command("#main/splash_editor.gen.h", "#main/splash_editor.png", make_splash_editor)
+
env.Depends("#main/app_icon.gen.h", "#main/app_icon.png")
env.Command("#main/app_icon.gen.h", "#main/app_icon.png", make_app_icon)