mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 19:06:53 +01:00
44 lines
835 B
Python
44 lines
835 B
Python
|
#!/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("paint_icons.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()
|
||
|
|
||
|
f.close()
|