forked from Farama-Foundation/ViZDoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seed.py
executable file
·101 lines (81 loc) · 3.61 KB
/
seed.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
#!/usr/bin/env python3
#####################################################################
# This script presents how to run deterministic episodes by setting
# seed. After setting the seed every episode will look the same (if
# agent will behave deterministicly of course).
# Configuration is loaded from "../../scenarios/<SCENARIO_NAME>.cfg" file.
# <episodes> number of episodes are played.
# Random combination of buttons is chosen for every action.
#
# Game variables from state and last reward are printed.
#
# To see the scenario description go to "../../scenarios/README.md"
#
#####################################################################
from __future__ import print_function
import itertools as it
from random import choice
from time import sleep
from argparse import ArgumentParser
import vizdoom as vzd
DEFAULT_CONFIG = "../../scenarios/basic.cfg"
if __name__ == "__main__":
parser = ArgumentParser("ViZDoom example showing how to set seed to have deterministic episodes.")
parser.add_argument(dest="config",
default=DEFAULT_CONFIG,
nargs="?",
help="Path to the configuration file of the scenario."
" Please see "
"../../scenarios/*cfg for more scenarios.")
parser.add_argument("-s", "--seed",
default=666,
type=int,
help="Seed for the random generator in DoomGame.")
parser.add_argument("-e", "--per_episode",
action="store_true",
help="Set seed for every episode.")
args = parser.parse_args()
game = vzd.DoomGame()
# Choose the scenario config file you wish to watch.
# Don't load two configs cause the second will overrite the first one.
# Multiple config files are ok but combining these ones doesn't make much sense.
game.load_config(args.config)
game.set_screen_resolution(vzd.ScreenResolution.RES_640X480)
# Lets make episode shorter and observe starting position of Cacodemon.
game.set_episode_timeout(50)
if args.seed is not None:
# Sets the seed. It can be change after init.
game.set_seed(args.seed)
game.init()
# Creates all possible actions depending on how many buttons there are.
actions_num = game.get_available_buttons_size()
actions = []
for perm in it.product([False, True], repeat=actions_num):
actions.append(list(perm))
episodes = 10
sleep_time = 0.028
for i in range(episodes):
print("Episode #" + str(i + 1))
# Seed can be changed anytime. It will take effect from next episodes.
# game.set_seed(seed)
if args.seed is not None and args.per_episode:
game.set_seed(args.seed)
game.new_episode()
while not game.is_episode_finished():
# Gets the state and possibly to something with it
state = game.get_state()
screen_buf = state.screen_buffer
vars = state.game_variables
# Check which action you chose!
reward = game.make_action(choice(actions))
print("State #" + str(state.number))
print("Game Variables:", vars)
print("Last Reward:", reward)
print("Seed:", game.get_seed())
print("=====================")
# Sleep some time because processing is too fast to watch.
if sleep_time > 0:
sleep(sleep_time)
print("Episode finished!")
print("Total reward:", game.get_total_reward())
print("************************")