-
Notifications
You must be signed in to change notification settings - Fork 0
/
replay.py
95 lines (76 loc) · 3.28 KB
/
replay.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
import pickle
from typing import Tuple, List
import numpy as np
import settings as s
from agents import Agent
from environment import GenericWorld, WorldArgs
from fallbacks import pygame
from items import Coin
class ReplayWorld(GenericWorld):
def __init__(self, args: WorldArgs):
super().__init__(args)
replay_file = args.replay
self.logger.info(f'Loading replay file "{replay_file}"')
self.replay_file = replay_file
with open(replay_file, 'rb') as f:
self.loaded_replay = pickle.load(f)
if not 'n_steps' in self.loaded_replay:
self.loaded_replay['n_steps'] = s.MAX_STEPS
pygame.display.set_caption(f'{replay_file}')
# Recreate the agents
agents = []
for name, _, b, xy in self.loaded_replay["agents"]:
avatar_sprite_desc = bomb_sprite_desc = self.colors.pop()
if "display_names" in self.loaded_replay:
display_name = self.loaded_replay["display_names"][name]
if name in self.loaded_replay["avatars"]:
avatar_sprite_desc = self.loaded_replay["avatars"][name]
if name in self.loaded_replay["bombs"]:
bomb_sprite_desc = self.loaded_replay["bombs"][name]
else:
display_name = name
agents.append(ReplayAgent(name, display_name, avatar_sprite_desc, bomb_sprite_desc))
self.agents = agents
def build_arena(self) -> Tuple[np.array, List[Coin], List[Agent]]:
arena = np.array(self.loaded_replay['arena'])
coins = []
for xy in self.loaded_replay['coins']:
if arena[xy] == 0:
coins.append(Coin(xy, True))
else:
coins.append(Coin(xy, False))
agents = []
for i, agent in enumerate(self.agents):
agents.append(agent)
agent.x, agent.y = self.loaded_replay['agents'][i][-1]
return arena, coins, agents
def poll_and_run_agents(self):
# Perform recorded agent actions
perm = self.loaded_replay['permutations'][self.step - 1]
self.replay['permutations'].append(perm)
for i in perm:
a = self.active_agents[i]
self.logger.debug(f'Repeating action from agent <{a.name}>')
action = self.loaded_replay['actions'][a.name][self.step - 1]
self.logger.info(f'Agent <{a.name}> chose action {action}.')
self.replay['actions'][a.name].append(action)
self.perform_agent_action(a, action)
def time_to_stop(self):
time_to_stop = super().time_to_stop()
if self.step == self.loaded_replay['n_steps']:
self.logger.info('Replay ends here, wrap up round')
time_to_stop = True
return time_to_stop
class ReplayAgent(Agent):
"""
Agents class firing off a predefined sequence of actions.
"""
def __init__(self, name, display_name, avatar_sprite_desc, bomb_sprite_desc):
"""Recreate the agent as it was at the beginning of the original game."""
super().__init__(name, None, display_name, False, None, avatar_sprite_desc, bomb_sprite_desc)
def setup(self):
pass
def act(self, game_state):
pass
def wait_for_act(self):
return 0, self.actions.popleft()