2017-04-27 08:57:43 +02:00
|
|
|
#!/usr/bin/env python
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
import glob
|
2019-07-22 14:02:33 +02:00
|
|
|
import os
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-05-19 15:51:49 +02:00
|
|
|
enc = "utf-8"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-07-22 14:02:33 +02:00
|
|
|
# Change to the directory where the script is located,
|
|
|
|
# so that the script can be run from any location
|
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
# Generate include files
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
f = open("theme_data.h", "wb")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
f.write(b"// THIS FILE HAS BEEN AUTOGENERATED, DON'T EDIT!!\n")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
# Generate png image block
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(b"\n// png image block\n")
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
pixmaps = glob.glob("*.png")
|
|
|
|
pixmaps.sort()
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
for x in pixmaps:
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
var_str = x[:-4] + "_png"
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2018-05-19 15:51:49 +02:00
|
|
|
s = "\nstatic const unsigned char " + var_str + "[] = {\n\t"
|
|
|
|
f.write(s.encode(enc))
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
pngf = open(x, "rb")
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
b = pngf.read(1)
|
2020-03-30 08:28:32 +02:00
|
|
|
while len(b) == 1:
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(hex(ord(b)).encode(enc))
|
2016-11-01 00:24:30 +01:00
|
|
|
b = pngf.read(1)
|
2020-03-30 08:28:32 +02:00
|
|
|
if len(b) == 1:
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(b", ")
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(b"\n};\n")
|
2016-11-01 00:24:30 +01:00
|
|
|
pngf.close()
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
# Generate shaders block
|
2020-03-30 08:28:32 +02:00
|
|
|
f.write(b"\n// shaders block\n")
|
2015-12-20 22:21:53 +01:00
|
|
|
|
|
|
|
shaders = glob.glob("*.gsl")
|
2016-11-01 00:24:30 +01:00
|
|
|
shaders.sort()
|
2015-12-20 22:21:53 +01:00
|
|
|
|
|
|
|
for x in shaders:
|
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
var_str = x[:-4] + "_shader_code"
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2018-05-19 15:51:49 +02:00
|
|
|
s = "\nstatic const char *" + var_str + " = \n"
|
|
|
|
f.write(s.encode(enc))
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
sf = open(x, "rb")
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
b = sf.readline()
|
2020-03-30 08:28:32 +02:00
|
|
|
while b != "":
|
|
|
|
if b.endswith("\r\n"):
|
2016-10-30 18:57:40 +01:00
|
|
|
b = b[:-2]
|
2020-03-30 08:28:32 +02:00
|
|
|
if b.endswith("\n"):
|
2016-10-30 18:57:40 +01:00
|
|
|
b = b[:-1]
|
2020-03-30 08:28:32 +02:00
|
|
|
s = ' "' + b
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(s.encode(enc))
|
2016-11-01 00:24:30 +01:00
|
|
|
b = sf.readline()
|
2020-03-30 08:28:32 +02:00
|
|
|
if b != "":
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(b'"\n')
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2018-05-19 15:51:49 +02:00
|
|
|
f.write(b'";\n')
|
2016-11-01 00:24:30 +01:00
|
|
|
sf.close()
|
2015-12-20 22:21:53 +01:00
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
f.close()
|