ddnet/scripts/cmd5.py

33 lines
969 B
Python
Raw Normal View History

2009-06-07 14:40:58 +00:00
import hashlib, sys, re
2007-08-22 21:13:33 +00:00
alphanum = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_".encode()
2007-08-22 21:13:33 +00:00
def cstrip(lines):
d = "".encode()
2007-08-22 21:13:33 +00:00
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
2007-08-22 21:13:33 +00:00
d = d.strip()
2007-08-22 21:13:33 +00:00
# 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:]
2007-08-22 21:13:33 +00:00
i += 1
return d
f = "".encode()
2007-08-22 21:13:33 +00:00
for filename in sys.argv[1:]:
2011-01-06 11:41:24 +00:00
f += cstrip([l.strip() for l in open(filename, "rb")])
2007-08-22 21:13:33 +00:00
hash = hashlib.md5(f).hexdigest().lower()[16:]
print('#define GAME_NETVERSION_HASH "%s"' % hash)