-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecord.py
81 lines (64 loc) · 2.09 KB
/
record.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
import gymnasium as gym
import numpy as np
import pygame
from minigrid.core.actions import Actions
from minigrid.wrappers import FullyObsWrapper, ImgObsWrapper
class ManualControl:
def __init__(self, env):
self.env = env
self.closed = False
self.last_obs = None
self.observations = []
self.actions = []
def start(self):
self.reset()
while not self.closed:
for event in pygame.event.get():
if event.type == pygame.KEYDOWN:
key = pygame.key.name(int(event.key))
self.key_handler(key)
self.env.close()
if len(self.observations) > 0 and len(self.actions) == len(self.observations):
np.save('observations.npy', self.observations)
np.save('actions.npy', self.actions)
else:
print("No data saved")
def step(self, action):
self.observations.append(self.last_obs)
self.actions.append(action)
self.last_obs, _, terminated, truncated, _ = self.env.step(action)
if terminated or truncated:
self.reset()
else:
self.env.render()
def reset(self):
self.last_obs, _ = self.env.reset()
self.env.render()
def key_handler(self, key):
# print(self.observations)
if key == "escape":
self.closed = True
return
if key == "backspace":
self.reset()
return
key_to_action = {
"left": Actions.left,
"right": Actions.right,
"up": Actions.forward,
"space": Actions.toggle,
"tab": Actions.pickup,
}
if key in key_to_action.keys():
action = key_to_action[key]
self.step(action)
env = gym.make(
"MiniGrid-Empty-6x6-v0",
render_mode="human",
highlight=False,
screen_size=640
)
env = FullyObsWrapper(env)
env = ImgObsWrapper(env)
manual_control = ManualControl(env)
manual_control.start()