7bf9787921
Configured for a max line length of 120 characters.
psf/black is very opinionated and purposely doesn't leave much room for
configuration. The output is mostly OK so that should be fine for us,
but some things worth noting:
- Manually wrapped strings will be reflowed, so by using a line length
of 120 for the sake of preserving readability for our long command
calls, it also means that some manually wrapped strings are back on
the same line and should be manually merged again.
- Code generators using string concatenation extensively look awful,
since black puts each operand on a single line. We need to refactor
these generators to use more pythonic string formatting, for which
many options are available (`%`, `format` or f-strings).
- CI checks and a pre-commit hook will be added to ensure that future
buildsystem changes are well-formatted.
(cherry picked from commit cd4e46ee65
)
73 lines
1.4 KiB
Python
Executable file
73 lines
1.4 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import glob
|
|
import os
|
|
|
|
enc = "utf-8"
|
|
|
|
# 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__)))
|
|
|
|
# Generate include files
|
|
|
|
f = open("theme_data.h", "wb")
|
|
|
|
f.write(b"// THIS FILE HAS BEEN AUTOGENERATED, DON'T EDIT!!\n")
|
|
|
|
# Generate png image block
|
|
f.write(b"\n// png image block\n")
|
|
|
|
pixmaps = glob.glob("*.png")
|
|
pixmaps.sort()
|
|
|
|
for x in pixmaps:
|
|
|
|
var_str = x[:-4] + "_png"
|
|
|
|
s = "\nstatic const unsigned char " + var_str + "[] = {\n\t"
|
|
f.write(s.encode(enc))
|
|
|
|
pngf = open(x, "rb")
|
|
|
|
b = pngf.read(1)
|
|
while len(b) == 1:
|
|
f.write(hex(ord(b)).encode(enc))
|
|
b = pngf.read(1)
|
|
if len(b) == 1:
|
|
f.write(b", ")
|
|
|
|
f.write(b"\n};\n")
|
|
pngf.close()
|
|
|
|
# Generate shaders block
|
|
f.write(b"\n// shaders block\n")
|
|
|
|
shaders = glob.glob("*.gsl")
|
|
shaders.sort()
|
|
|
|
for x in shaders:
|
|
|
|
var_str = x[:-4] + "_shader_code"
|
|
|
|
s = "\nstatic const char *" + var_str + " = \n"
|
|
f.write(s.encode(enc))
|
|
|
|
sf = open(x, "rb")
|
|
|
|
b = sf.readline()
|
|
while b != "":
|
|
if b.endswith("\r\n"):
|
|
b = b[:-2]
|
|
if b.endswith("\n"):
|
|
b = b[:-1]
|
|
s = ' "' + b
|
|
f.write(s.encode(enc))
|
|
b = sf.readline()
|
|
if b != "":
|
|
f.write(b'"\n')
|
|
|
|
f.write(b'";\n')
|
|
sf.close()
|
|
|
|
f.close()
|