-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnerd_bot_ai.rb
211 lines (173 loc) · 4.93 KB
/
nerd_bot_ai.rb
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
require 'utils.rb'
LOG_FILE = 'game_logs/ants.log'
####################################
class NerdBotAi
include Utils
def initialize
@logger = Logger.new(LOG_FILE)
end
def setup(ai)
@ai = ai
@unseen = @ai.map.flatten
@enemy_hills = []
end
def next_step
move_ants_to next_directions
end
private
def move_ants_to(orders)
orders.each do |ant, dir|
ant.order dir
end
end
def next_directions
# orders is hash like {:ant => :W}
{}.tap do |orders|
# gathering food
farmer = FarmerStrategy.new(ai: @ai)
farmer.update_orders(orders)
# enemy hills
update_enemy_hills
# occupied enemy's hills
attacker = HillsAttackerStrategy.new(ai: @ai, enemy_hills: @enemy_hills)
attacker.update_orders(orders)
# not blocking hill
aimed_foods = farmer.aimed_foods
not_blocking = NotBlockingHillStrategy.new(ai: @ai, aimed_foods: aimed_foods)
not_blocking.update_orders(orders)
# update unseen map
update_unseen
# explorer unseen
explorer = ExplorerStrategy.new(ai: @ai, unseen: @unseen)
explorer.update_orders(orders)
end
end
def update_enemy_hills
@enemy_hills.concat(@ai.enemy_hills).uniq!
end
def update_unseen
@unseen.delete_if do |square|
@ai.my_ants.any? { |ant| ant.see?(square) }
end
end
end
####################################
class StrategyBase
include Utils
def initialize(args)
@ai = args[:ai]
@row_max = @ai.settings[:rows]
@col_max = @ai.settings[:cols]
@unseen = args[:unseen]
@aimed_foods = args[:aimed_foods]
@enemy_hills = args[:enemy_hills]
@logger = Logger.new(LOG_FILE)
end
# Return directions like [:N,:E]
def directions_for(from, to)
[].tap do |result|
if (from.row - to.row).abs > @row_max/2
result << :N if from.row < to.row
result << :S if from.row > to.row
else
result << :S if from.row < to.row
result << :N if from.row > to.row
end
if (from.col - to.col).abs > @col_max/2
result << :W if from.col < to.col
result << :E if from.col > to.col
else
result << :E if from.col < to.col
result << :W if from.col > to.col
end
end
end
# Return distances like [{:distance=>5.0, :target=>food, :ant=>ant}]
def distances_for(ants, targets)
type = case self.class.to_s
when 'FarmerStrategy' then :farmer
when 'HillsAttackerStrategy' then :attacker
when 'ExplorerStrategy' then :explorer
end
[].tap do |distances|
ants.each do |ant|
distances.concat targets.map { |target|
{
:distance=>spherical_distance(ant, target, @row_max, @col_max),
:ant=>ant,
:target=>target,
:type => type
}
}
end
end
end
# Return { :food => ant }, only NotBlockingHillStrategy needs
def do_locate(distances, orders)
aimed_targets = {}
sorted_distances = distances.sort_by { |hash| hash[:distance] }
sorted_distances.each do |move|
ant = move[:ant]
target = move[:target]
unless aimed_targets.keys.include?(target) || aimed_targets.values.include?(ant)
# random direction
directions_for(ant, target).shuffle.each do |dir|
if try_to_occupied(ant, dir, orders)
aimed_targets[target] = ant
break
end
end
end
end
aimed_targets
end
# this will change orders
def try_to_occupied(ant, dir, orders)
new_loc = ant.towards(dir)
unless new_loc.occupied? || planed_location?(new_loc, orders)
orders[ant] = dir
return true
end
false
end
def planed_location?(loc, orders)
orders.map { |ant, dir| ant.towards(dir) }.include?(loc)
end
end
####################################
class FarmerStrategy < StrategyBase
attr_reader :aimed_foods
def update_orders(orders)
distances = distances_for(@ai.my_ants, @ai.foods)
@aimed_foods = do_locate(distances, orders) # orders changed
end
end
####################################
class HillsAttackerStrategy < StrategyBase
def update_orders(orders)
distances = distances_for(@ai.my_ants, @enemy_hills)
do_locate(distances, orders)
end
end
####################################
class ExplorerStrategy < StrategyBase
def update_orders(orders)
free_ants = @ai.my_ants - orders.keys
unseen_distances = distances_for(free_ants, @unseen)
do_locate(unseen_distances, orders)
end
end
####################################
class NotBlockingHillStrategy < StrategyBase
def update_orders(orders)
@ai.my_ants_in_hill.each do |ant|
unless @aimed_foods.values.include?(ant)
[:N, :S, :W, :E].shuffle.each do |dir|
if try_to_occupied(ant, dir, orders)
break
end
end
end
end
end
end