mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
6ef9c8dbcd
teehistorian records all inputs from the players as well as the player positions in each tick. It stores this info in a highly compressible output format (I've achived 5x compression using xz or bz2).
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
import hashlib, sys, re, os
|
|
|
|
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:]
|
|
#TODO 0.7: improve nethash creation
|
|
if hash == "3dc531e4296de555":
|
|
hash = "626fce9a778df4d4"
|
|
print('#define GAME_NETVERSION_HASH "%s"' % hash)
|
|
print('#define GIT_SHORTREV_HASH "%s"' % os.popen('git rev-parse --short HEAD').readline().strip())
|