-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDumpSystem.py
36 lines (32 loc) · 1.26 KB
/
DumpSystem.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
class DumpSystem:
def __init__(self,non_dump:bool,log_path:str,map_path:str):
self.path = log_path
self.non_dump = non_dump
if self.non_dump:
return
with open(map_path, mode="r") as f:
self.map_data = "".join(list(map(lambda x: x[2:],f.readlines())))
def set_name(self,cool_name:str,hot_name:str):
if self.non_dump:
return
with open(self.path,mode="w") as f:
f.write(f"{cool_name},{hot_name}\n")
f.write(self.map_data);
f.write("0,0");
def action(self,map_data:str,cool_pos:str,hot_pos:str,cool_item:int,hot_item:int):
if self.non_dump:
return
with open(self.path,mode="a") as f:
f.write(f"\n{map_data}\n{cool_pos}\n{hot_pos}\n{cool_item},{hot_item}")
def result(self,player:str,result:str,reason:str):
if self.non_dump:
return
winner = None
if result == "lose":
winner = "cool" if player == "hot" else "hot"
result = "win"
elif result == "win":
winner = player
with open(self.path,mode="a") as f:
f.write("\ngameend")
f.write(f"\n{winner},{result},{reason}")