mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
33 lines
969 B
Python
33 lines
969 B
Python
import hashlib, sys, re
|
|
|
|
alphanum = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_".encode()
|
|
|
|
def cstrip(lines):
|
|
d = "".encode()
|
|
for l in lines:
|
|
l = re.sub("#.*".encode(), "".encode(), l)
|
|
l = re.sub("//.*".encode(), "".encode(), l)
|
|
d += l + " ".encode()
|
|
d = re.sub("\/\*.*?\*/".encode(), "".encode(), d) # remove /* */ comments
|
|
d = d.replace("\t".encode(), " ".encode()) # tab to space
|
|
d = re.sub(" *".encode(), " ".encode(), d) # remove double spaces
|
|
d = re.sub("".encode(), "".encode(), d) # remove /* */ comments
|
|
|
|
d = d.strip()
|
|
|
|
# this eats up cases like 'n {'
|
|
i = 1
|
|
while i < len(d)-2:
|
|
if d[i:i + 1] == " ".encode():
|
|
if not (d[i - 1:i] in alphanum and d[i+1:i + 2] in alphanum):
|
|
d = d[:i] + d[i + 1:]
|
|
i += 1
|
|
return d
|
|
|
|
f = "".encode()
|
|
for filename in sys.argv[1:]:
|
|
f += cstrip([l.strip() for l in open(filename, "rb")])
|
|
|
|
hash = hashlib.md5(f).hexdigest().lower()[16:]
|
|
print('#define GAME_NETVERSION_HASH "%s"' % hash)
|