-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHumanPlayer.py
97 lines (87 loc) · 2.77 KB
/
HumanPlayer.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
# For human player
# A human player will use keys to control the snake
from SnakeGame import SnakeGame, Direction
# action [straight, right, left]
def go_up():
global action
'''
The result is to turn the snake move up.
if currently the snake is moving up, it should keep straight [1,0,0]
if it's moving right, it should turn left [0,0,1] in order to move up.
if it's moving left, it should turn right [0,1,1] in order to move up.
if it's moving down, moving up will cause collision. As such game over.
'''
if game.direction == Direction.UP:
action = [1,0,0]
elif game.direction == Direction.RIGHT:
action = [0,0,1] # turn left
elif game.direction == Direction.LEFT:
action = [0,1,0] # turn right
else: # must be down
action = [1, 0, 0]
game.direction = Direction.UP
return action
def go_down():
global action
if game.direction == Direction.DOWN:
action = [1, 0, 0]
elif game.direction == Direction.RIGHT:
action = [0, 1, 0]
elif game.direction == Direction.LEFT:
action = [0, 0, 1]
else: # must be up
action = [1, 0, 0]
game.direction = Direction.DOWN
return action
def go_right():
global action
if game.direction == Direction.RIGHT:
action = [1, 0, 0]
elif game.direction == Direction.UP:
action = [0, 1, 0]
elif game.direction == Direction.DOWN:
action = [0, 0, 1]
else: # must be left
action = [1, 0, 0]
game.direction = Direction.RIGHT
return action
def go_left():
global action
if game.direction == Direction.LEFT:
action = [1, 0, 0]
elif game.direction == Direction.DOWN:
action = [0, 1, 0]
elif game.direction == Direction.UP:
action = [0, 0, 1]
pass
else: # must be right
action = [1, 0, 0]
game.direction = Direction.LEFT
return action
def bindingkeys(win):
win.listen()
'''
The bindingkeys function should take the game screen as input,
and bind go_up, go_down, go_left and go_right to w,s,a,d accordingly.
'''
win.onkeypress(go_up, 'w')
win.onkeypress(go_down, 's')
win.onkeypress(go_left, 'a')
win.onkeypress(go_right, 'd')
win.onkeypress(go_up, 'Up')
win.onkeypress(go_down, 'Down')
win.onkeypress(go_left, 'Left')
win.onkeypress(go_right, 'Right')
# Add your code here
pass
# action [straight, right, left]
action = [1,0,0]
if __name__ == '__main__':
game = SnakeGame(delay=0.1)
bindingkeys(game.win)
while True :
game.play_step(action)
print(action)
action = [1,0,0]
if game.game_over == True:
game.reset()