You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
516 B
19 lines
516 B
import os
|
|
|
|
RES_DIR = "../res/"
|
|
RES_FILE = "../include/res.hpp"
|
|
|
|
resources = os.fsencode(RES_DIR)
|
|
res = ""
|
|
|
|
for resource in os.listdir(resources):
|
|
encoded = f"const unsigned char {os.path.splitext(resource)[0].decode().upper()}[] = {'{'} "
|
|
file = open(RES_DIR + resource.decode(), "rb") # read binary
|
|
for byte in file.read():
|
|
encoded += f"0x{byte.to_bytes(1, byteorder='little').hex()}, "
|
|
encoded = encoded[:-2] + " };"
|
|
res += encoded + "\n"
|
|
|
|
res_file = open(RES_FILE, "w")
|
|
res_file.write(res)
|
|
res_file.close() |