-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
276 lines (237 loc) · 8.41 KB
/
server.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#! /usr/bin/env python
import asyncio
import json
import secrets
import websockets
from asyncio.base_events import Server
from enum import Enum, auto
class Pokemon(dict):
def __init__(self, paste):
species_line = paste.split('\n')[0]
if '(' in species_line:
species = species_line[species_line.find("(")+1:species_line.find(")")].strip()
else:
species = species_line.split('@')[0].strip()
dict.__init__(self, species=species, paste=paste)
def species_only(self):
return { "species": self['species'] }
class TeamName():
TEAM1 = "TEAM1"
TEAM2 = "TEAM2"
def other_team(team):
match team:
case TeamName.TEAM1:
return TeamName.TEAM2
case TeamName.TEAM2:
return TeamName.TEAM1
class Box(object):
def __init__(self, box_paste):
self.box = []
for paste in box_paste.strip().split('\n\n'):
self.box.append(Pokemon(paste))
self.game_score = 0
self.banned = set()
self.selected = set()
def full_box(self):
return self.box
def species_only_box(self):
return [pokemon.species_only() for pokemon in self.box]
def game_score(self):
return self.game_score
def team_paste(self, picks):
return '\n\n\n'.join([self.box[pick].paste for pick in picks])
def on_game_win(self):
self.game_score += 1
def on_select(self, selection):
self.selected.add(selection)
def on_ban(self, ban):
self.banned.add(ban)
class GameState(Enum):
FIRST_PICK = auto()
FIRST_BAN = auto()
SECOND_PICK = auto()
SECOND_BAN = auto()
THIRD_PICK = auto()
FOURTH_PICK = auto()
LOCKED_IN = auto()
class Game(object):
def __init__(self, team1, team2):
self.state = GameState.FIRST_PICK
self.team1 = team1
self.team2 = team2
self.team1_picks = []
self.team2_picks = []
self.team1_bans = []
self.team2_bans = []
self.team1_choices = []
self.team2_choices = []
def transition(self):
def add_selections():
for selection in self.team1_choices:
self.team1.on_select(selection)
for selection in self.team2_choices:
self.team2.on_select(selection)
def add_bans():
for ban in self.team1_choices:
self.team2.on_ban(ban)
for ban in self.team2_choices:
self.team1.on_ban(ban)
match self.state:
case GameState.FIRST_PICK:
add_selections()
self.state = GameState.FIRST_BAN
case GameState.FIRST_BAN:
add_bans()
self.state = GameState.SECOND_PICK
case GameState.SECOND_PICK:
add_selections()
self.state = GameState.SECOND_BAN
case GameState.SECOND_BAN:
add_bans()
self.state = GameState.THIRD_PICK
case GameState.THIRD_PICK:
add_selections()
self.state = GameState.FOURTH_PICK
case GameState.FOURTH_PICK:
add_selections()
self.state = GameState.LOCKED_IN
case GameState.LOCKED_IN:
raise
self.team1_choices = []
self.team2_choices = []
def ready_for_transition(self):
# CR efan: this isn't right for "lock" choices on THIRD_PICK / FOURTH_PICK
return len(self.team1_choices) > 0 and len(self.team2_choices) > 0
def team_paste(self, team):
match team:
case TeamName.TEAM1:
return self.team1.team_paste(self.team1_picks)
case TeamName.TEAM2:
return self.team2.team_paste(self.team2_picks)
def on_choice(self, team, choices):
match team:
case TeamName.TEAM1:
self.team1_choices = choices
case TeamName.TEAM2:
self.team2_choices = choices
class ClientMesssageType():
NEW_MATCH = "new_match"
JOIN_MATCH = "join_match"
JOIN_TEAM = "join_team"
UPDATE_BOX = "update_box"
class ServerMessageType():
JOINED_MATCH = "joined_match"
JOINED_TEAM = "joined_team"
TEAM_PLAYER_UPDATE = "team_player_update"
TEAM_BOX_UPDATE = "team_box_update"
class Match(object):
def __init__(self, id):
self.id = id
self.team1_connected = set()
self.team2_connected = set()
self.connected = set()
self.team1_players = []
self.team2_players = []
self.box1 = None
self.box2 = None
self.current_game = None
def on_box_paste(self, team, box_paste):
box = Box(box_paste)
full_box_event = {
"type": ServerMessageType.TEAM_BOX_UPDATE,
"team": team,
"box": box.full_box()
}
species_only_box_event = {
"type": ServerMessageType.TEAM_BOX_UPDATE,
"team": team,
"box": box.species_only_box()
}
match team:
case TeamName.TEAM1:
self.team1 = box
websockets.broadcast(self.team1_connected, json.dumps(full_box_event))
websockets.broadcast(self.team2_connected, json.dumps(species_only_box_event))
case TeamName.TEAM2:
self.team2 = box
websockets.broadcast(self.team2_connected, json.dumps(full_box_event))
websockets.broadcast(self.team1_connected, json.dumps(species_only_box_event))
def start_game(self):
self.current_game = Game(self.team1, self.team2)
def ready_to_start_game(self):
if self.current_game is None:
return self.box1 is not None and self.box2 is not None
else:
return self.current_game.state == GameState.LOCKED_IN
def add_to_team(self, team, name, websocket):
match team:
case TeamName.TEAM1:
self.team1_players.append(name)
self.team1_connected.add(websocket)
players = self.team1_players
case TeamName.TEAM2:
self.team2_players.append(name)
self.team2_connected.add(websocket)
players = self.team2_players
self.connected.add(websocket)
team_player_event = {
"type": ServerMessageType.TEAM_PLAYER_UPDATE,
"team": team,
"players": players
}
websockets.broadcast(self.connected, json.dumps(team_player_event))
MATCHES = {}
async def play(match, team, websocket):
async for message in websocket:
event = json.loads(message)
match event["type"]:
case ClientMesssageType.UPDATE_BOX:
match.on_box_paste(team, event["box_paste"])
async def join_match(id, websocket):
match = MATCHES[id]
try:
joined_match_event = {
"type": ServerMessageType.JOINED_MATCH,
"id": id,
"team1_players": match.team1_players,
"team2_players": match.team2_players
}
await websocket.send(json.dumps(joined_match_event))
join_team_message = await websocket.recv()
join_team_event = json.loads(join_team_message)
assert join_team_event["type"] == ClientMesssageType.JOIN_TEAM
team = join_team_event["team"]
name = join_team_event["name"]
match.add_to_team(team, name, websocket)
joined_team_event = {
"type": ServerMessageType.JOINED_TEAM,
"team": team
}
await websocket.send(json.dumps(joined_team_event))
await play(match, team, websocket)
finally:
pass
async def new_match(websocket):
id = secrets.token_urlsafe(8)
match = Match(id)
MATCHES[id] = match
try:
await join_match(id, websocket)
finally:
pass
async def handler(websocket):
message = await websocket.recv()
event = json.loads(message)
match event["type"]:
case ClientMesssageType.NEW_MATCH:
await new_match(websocket)
case ClientMesssageType.JOIN_MATCH:
id = event["id"]
await join_match(id, websocket)
case unexpected:
print(event)
async def main():
async with websockets.serve(handler, "", 8001):
await asyncio.Future() # run forever
if __name__ == "__main__":
asyncio.run(main())