mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
1820a0e168
Let's see if it works out, if not, we can revert it.
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
#!/usr/bin/env python3
|
|
import argparse
|
|
import hashlib
|
|
import os
|
|
|
|
os.chdir(os.path.dirname(__file__) + "/..")
|
|
|
|
def hash_bytes(b):
|
|
return "0x{}".format(hashlib.sha256(b).hexdigest()[:8])
|
|
|
|
def hash_file(filename):
|
|
with open(filename, "rb") as f:
|
|
return hash_bytes(f.read())
|
|
|
|
def main():
|
|
p = argparse.ArgumentParser(description="Checksums source files")
|
|
p.add_argument("list_file", metavar="LIST_FILE", help="File listing all the files to hash")
|
|
p.add_argument("extra_file", metavar="EXTRA_FILE", help="File containing extra strings to be hashed")
|
|
args = p.parse_args()
|
|
|
|
with open(args.list_file) as f:
|
|
files = f.read().splitlines()
|
|
with open(args.extra_file, "rb") as f:
|
|
extra = f.read().splitlines()
|
|
hashes_files = [hash_file(file) for file in files]
|
|
hashes_extra = [hash_bytes(line) for line in extra]
|
|
hashes = hashes_files + hashes_extra
|
|
print("""\
|
|
#include <engine/client/checksum.h>
|
|
|
|
void CChecksumData::InitFiles()
|
|
{
|
|
""", end="")
|
|
print("\tm_NumFiles = {};".format(len(hashes_files)))
|
|
print("\tm_NumExtra = {};".format(len(hashes_extra)))
|
|
for i, h in enumerate(hashes):
|
|
print("\tm_aFiles[0x{:03x}] = {};".format(i, h))
|
|
print("}")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|