-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.py
97 lines (91 loc) · 2.99 KB
/
helper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python3
#
import re
import random
# Infos à garder up tout le temps, surtout le dictionnaire des joueurs qui garde le death count en mémoire.
death_phrases = [
" died like a lil' bitch",
" got rekt.",
" a découvert le sens de l'expression '6 pieds sous terre'",
" ahahahahahahahaha.",
" est parti rejoindre ses grands morts.",
"... CHEH!",
" a fait une Drim.",
" n'a pas couru assez vite.",
" git gud.",
"... Tu sais que le death count n'est pas un kikimeter?",
" va encore dire que c'est la faute du lag.",
"... Sans commentaires.",
", c'était pathétique.",
" n'a plus de skills, littéralement.",
" est mort. Je suis sûr qu'il voulait juste se tp à son lit.",
" IS NOT WORTHY!",
" pourrait essayer de jouer avec autre que ses pieds.",
"... Allume l'écran stp.",
"... Tu sais que pour aller au Valhalla il faut une mort glorieuse ?",
" nourrit les poissons.",
" a été aussi mauvais que Delmas sur Smash",
]
# Passe la structure players et la ligne de log à analyser
def parse_line(state, line: str, isPlayerAlive) -> None:
match = re.search(
"Got\scharacter\sZDOID\sfrom\s([\w\d]{1,})\s:\s(-?\d{1,}:-?\d{1,})", line
)
if match:
name = match.group(1)
if match.group(2) == "0:0":
death_count = state.inc_death_count(name)
isPlayerAlive[name] = False
return str(
name
+ death_phrases[random.randint(0, len(death_phrases) - 1)]
+ "\n(Death count: "
+ str(death_count)
+ ")"
)
else:
if name in isPlayerAlive:
if not(isPlayerAlive[name]):
players[name] = True
return ""
else:
return str(name + " HAS ARRIVED")
else:
players[name] = True
return str(name + " HAS ARRIVED")
else:
match = re.search("Closing socket (.*)", line)
if match and match.group(1) != "0":
return "A player has left !"
else:
return ""
def verify_date(date: str) -> bool:
try:
match = re.search(
"([0-9]{4})/([0-9]{2})/([0-9]{2})-([0-9]{2}):([0-9]{2}):([0-9]{2})", date
)
return (
match
and int(match.group(2)) <= 12
and int(match.group(3)) <= 31
and int(match.group(4)) <= 24
and int(match.group(5)) < 60
and int(match.group(6)) < 60
)
except ValueError:
return False
def get_next_offset(line: str) -> str:
match = re.search(
"([0-9]{2})/([0-9]{2})/([0-9]{4}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", line
)
if match:
return "%s/%s/%s-%s:%s:%s" % (
match.group(3),
match.group(1),
match.group(2),
match.group(4),
match.group(5),
match.group(6),
)
else:
return ""