This repository was archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreward.py
119 lines (85 loc) · 2.9 KB
/
reward.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
def calc_reward(board):
food = []
reward = { 'n': 0,
'e': 0,
'w': 0,
's': 0}
regions = { 'n': 0,
'e': 0,
'w': 0,
's': 0}
distances = {}
# FIND THE FOOD
for x in range(board.get_width()):
for y in range(board.get_height()):
if board.is_food(x,y):
food.append((x,y))
print '%d Food(s): %s' % (len(food), food)
# THERE IS FOOD IN PLAY
if food:
# ITERATE OVER FOOD ON BOARD
for x, y in food:
# BASIC WEIGHTING TO DIRECTIONS
regions[board.get_direction_to_point(x,y)] += 1
#BUILD LIST OF FOOD POINTS AND DISTANCE
distances[(x,y)] = board.get_distance_to_point(x,y)
# ORDER THE DISTANCES FROM HEAD
# REVERSED SO BIGGER INDEX IS CLOSER
distances_orderd = list(sorted(distances, key=distances.__getitem__, reverse=True))
#distances_orderd.pop()
# HEAVY WEIGHTING INDEX ADDED TO DIRECTION
for index, point in enumerate(distances_orderd, start=1):
# JUST ADD IN THE TOP HALF
if index >= len(distances_orderd)/2:
regions[board.get_direction_to_point(point[0], point[1])] += index*2
#ORDER BY WEIGHT
regions_ordered = list(sorted(regions, key=regions.__getitem__))
print 'Internal Weight: %s' % regions
#EXTERNAL WEIGHTING IS SIMPLIFIED FOR NOW
for index, direction in enumerate(regions_ordered, start=1):
reward[direction] = index*13
return reward
def calc_risks(board, food=True):
items = []
distances = {}
risk = { 'n': 0,
'e': 0,
'w': 0,
's': 0}
regions = { 'n': 0,
'e': 0,
'w': 0,
's': 0}
for x in range(board.get_width()):
for y in range(board.get_height()):
if board.get_distance_to_point(x,y) <= 6:
if food and board.is_food(x,y):
items.append((x,y))
elif not food:
# JUST CONSIDER CLOSER EMEMIES
#if board.get_distance_to_point(x,y) <= 6:
if (board.is_snake(x,y) or board.is_wall(x,y)):
items.append((x,y))
print '%d %s(s): %s' % (len(items), {True:'Food'}.get(food, 'Enemy'), items)
if items:
# ITERATE OVER FOOD ON BOARD
for x, y in items:
# BASIC WEIGHTING TO DIRECTIONS
regions[board.get_direction_to_point(x,y)] += 1
#BUILD LIST OF FOOD POINTS AND DISTANCE
distances[(x,y)] = board.get_distance_to_point(x,y)
# ORDER THE DISTANCES FROM HEAD
# REVERSED SO BIGGER INDEX IS CLOSER
distances_orderd = list(sorted(distances, key=distances.__getitem__, reverse=True))
#distances_orderd.pop()
# HEAVY WEIGHTING INDEX ADDED TO DIRECTION
for index, point in enumerate(distances_orderd, start=1):
if index >= len(distances_orderd)/2:
regions[board.get_direction_to_point(point[0], point[1])] += index*2
#ORDER BY WEIGHT
regions_ordered = list(sorted(regions, key=regions.__getitem__))
print 'Internal Weight: %s' % regions
#EXTERNAL WEIGHTING IS SIMPLIFIED FOR NOW
for index, direction in enumerate(regions_ordered, start=1):
risk[direction] = index*{True:22}.get(food, 25)
return risk