ddnet/scripts/cmd5.py

36 lines
1 KiB
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:]
#TODO 0.7: improve nethash creation
2011-07-30 20:30:26 +00:00
if hash == "63d6e69c6025feff":
2011-06-09 21:28:40 +00:00
hash = "626fce9a778df4d4"
print('#define GAME_NETVERSION_HASH "%s"' % hash)