rtmc/x.py

75 lines
1.7 KiB
Python
Raw Normal View History

2024-08-17 23:08:11 +00:00
#!/usr/bin/python
import hashlib
2024-08-17 23:08:11 +00:00
OUTPUT="keypadOS.lua";
FILES= [
2024-08-18 00:34:13 +00:00
"updater.lua",
"config.lua",
"ui.lua",
"utils.lua",
"main.lua",
2024-08-17 23:08:11 +00:00
]
2024-08-18 11:37:59 +00:00
MINIMISE=True
2024-08-17 23:08:11 +00:00
def read_file(p: str) -> str:
buf = "";
2024-08-18 00:34:13 +00:00
with open("src/"+p, "r", encoding="utf-8") as f:
2024-08-18 11:37:59 +00:00
buf += f"rawset(__BUNDLER_FILES, \"{p}\", function ()\n";
2024-08-18 00:34:13 +00:00
for line in f.readlines():
2024-08-18 11:37:59 +00:00
buf += " " + line;
buf += "\nend)";
if not MINIMISE:
buf += f"-- FILE END: {p} --\n";
else:
buf += "\n";
2024-08-17 23:08:11 +00:00
return buf;
2024-08-18 11:37:59 +00:00
def minimise(buf: str) -> str:
newbuf = "";
for line in buf.splitlines():
if line.strip().startswith("--"):
continue;
if line.strip() == "":
continue
newbuf += line + "\n";
return newbuf;
2024-08-17 23:08:11 +00:00
def get_hash(buf: str) -> str:
hasher = hashlib.sha1();
hasher.update(bytes(buf, "utf-8"));
return hasher.hexdigest();
2024-08-17 23:08:11 +00:00
def main():
2024-08-18 00:34:13 +00:00
buf = ""
buf += "local __BUNDLER_FILES = {}\n";
buf += "local __DEFAULT_IMPORT = require\n";
buf += "local require = function(path)\n";
2024-08-18 00:43:01 +00:00
buf += " if __BUNDLER_FILES[path] then\n";
buf += " return __BUNDLER_FILES[path]()\n";
buf += " else\n";
2024-08-18 01:13:38 +00:00
buf += " return __DEFAULT_IMPORT(path)\n";
2024-08-18 00:43:01 +00:00
buf += " end\n";
2024-08-18 00:34:13 +00:00
buf += "end\n";
2024-08-17 23:08:11 +00:00
for file in FILES:
print(f"=== FILE: {file}");
buf += read_file(file);
2024-08-18 00:34:13 +00:00
2024-08-18 11:37:59 +00:00
buf += "require(\"main.lua\").Main()\n";
if MINIMISE:
buf = minimise(buf);
update_hash = get_hash(buf);
buf = f"local __UPDATE_HASH = \"{update_hash}\"\n" + buf;
2024-08-18 00:34:13 +00:00
print(f"=== UPDATE HASH: {update_hash}")
2024-08-17 23:08:11 +00:00
with open(OUTPUT, "w", encoding="utf-8") as f:
f.write(buf);
print("DONE");
if __name__ == "__main__":
main();