forked from Farama-Foundation/ViZDoom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
delta_buttons.py
executable file
·77 lines (53 loc) · 2.27 KB
/
delta_buttons.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
#!/usr/bin/python
from __future__ import print_function
from time import sleep
from vizdoom import *
game = DoomGame()
game.set_vizdoom_path("../../bin/vizdoom")
game.set_doom_game_path("../../scenarios/freedoom2.wad")
# game.set_doom_game_path("../../scenarios/doom2.wad") # Not provided with environment due to licences.
game.set_doom_map("map01")
game.set_screen_resolution(ScreenResolution.RES_640X480)
# Adds delta buttons that will be allowed and set the maximum allowed value (optional).
game.add_available_button(Button.MOVE_FORWARD_BACKWARD_DELTA, 10)
game.add_available_button(Button.MOVE_LEFT_RIGHT_DELTA, 5)
game.add_available_button(Button.TURN_LEFT_RIGHT_DELTA, 5)
game.add_available_button(Button.LOOK_UP_DOWN_DELTA)
# For normal buttons (binary) all values other than 0 are interpreted as pushed.
# For delta buttons values determine a precision/speed.
#
# For TURN_LEFT_RIGHT_DELTA and LOOK_UP_DOWN_DELTA value is the angle (in degrees)
# of which the viewing angle will change.
#
# For MOVE_FORWARD_BACKWARD_DELTA, MOVE_LEFT_RIGHT_DELTA, MOVE_UP_DOWN_DELTA (rarely used)
# value is the speed of movement in a given direction (100 is close to the maximum speed).
action = [100, 10, 10, 1]
# If button's absolute value > max button's value then value = max value with original value sign.
# Delta buttons in spectator modes correspond to mouse movements.
# Maximum allowed values also apply to spectator modes.
# game.add_game_args("+freelook 1") # Use this to enable looking around with the mouse.
# game.set_mode(Mode.SPECTATOR)
game.set_window_visible(True)
game.init()
episodes = 10
sleep_time = 0.028
for i in range(episodes):
print("Episode #" + str(i + 1))
game.new_episode()
while not game.is_episode_finished():
state = game.get_state()
reward = game.make_action(action)
time = game.get_episode_time()
action[0] = time % 100 - 50
action[1] = time % 100 - 50
action[2] = time % 100 - 50
if not time % 50:
action[3] = -action[3]
print("State #" + str(state.number))
print("Action made: ", action)
print("=====================")
if sleep_time > 0:
sleep(sleep_time)
print("Episode finished.")
print("************************")
game.close()