-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathplay_coins.py
84 lines (68 loc) · 2.67 KB
/
play_coins.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
# Copyright 2022 DeepMind Technologies Limited.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A simple human player for testing `coins`.
Use `WASD` keys to move the character around.
Use `TAB` to switch between players.
"""
import argparse
import json
from meltingpot.configs.substrates import coins
from meltingpot.human_players import level_playing_utils
from ml_collections import config_dict
MAX_SCREEN_WIDTH = 600
MAX_SCREEN_HEIGHT = 450
FRAMES_PER_SECOND = 8
environment_configs = {
'coins': coins,
}
def no_op() -> int:
"""Gets direction pressed."""
return level_playing_utils.MOVEMENT_MAP['NONE']
_ACTION_MAP = {
'move': level_playing_utils.get_direction_pressed,
'turn': level_playing_utils.get_turn_pressed,
}
def verbose_fn(env_timestep, player_index, current_player_index):
del env_timestep, player_index, current_player_index
pass
def main():
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
'--level_name', type=str, default='coins',
choices=environment_configs.keys(),
help='Level name to load')
parser.add_argument(
'--observation', type=str, default='RGB', help='Observation to render')
parser.add_argument(
'--settings', type=json.loads, default={}, help='Settings as JSON string')
# Activate verbose mode with --verbose=True.
parser.add_argument(
'--verbose', type=bool, default=False, help='Print debug information')
# Activate events printing mode with --print_events=True.
parser.add_argument(
'--print_events', type=bool, default=False, help='Print events')
args = parser.parse_args()
env_module = environment_configs[args.level_name]
env_config = env_module.get_config()
with config_dict.ConfigDict(env_config).unlocked() as env_config:
roles = env_config.default_player_roles
env_config.lab2d_settings = env_module.build(roles, env_config)
level_playing_utils.run_episode(
args.observation, args.settings, _ACTION_MAP, env_config,
level_playing_utils.RenderType.PYGAME, MAX_SCREEN_WIDTH,
MAX_SCREEN_HEIGHT, FRAMES_PER_SECOND,
verbose_fn if args.verbose else None,
print_events=args.print_events)
if __name__ == '__main__':
main()