-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiAgents.py
383 lines (322 loc) · 15.7 KB
/
multiAgents.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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
from __future__ import print_function
# multiAgents.py
# --------------
# Licensing Information: You are free to use or extend these projects for
# educational purposes provided that (1) you do not distribute or publish
# solutions, (2) you retain this notice, and (3) you provide clear
# attribution to UC Berkeley, including a link to http://ai.berkeley.edu.
#
# Attribution Information: The Pacman AI projects were developed at UC Berkeley.
# The core projects and autograders were primarily created by John DeNero
# ([email protected]) and Dan Klein ([email protected]).
# Student side autograding was added by Brad Miller, Nick Hay, and
# Pieter Abbeel ([email protected]).
import pandas as pd
from util import manhattanDistance
from game import Directions
import random, util
import os
from collections import OrderedDict
from game import Agent
class ReflexAgent(Agent):
"""
A reflex agent chooses an action at each choice point by examining
its alternatives via a state evaluation function.
The code below is provided as a guide. You are welcome to change
it in any way you see fit, so long as you don't touch our method
headers.
"""
def getAction(self, gameState):
"""
You do not need to change this method, but you're welcome to.
getAction chooses among the best options according to the evaluation function.
Just like in the previous project, getAction takes a GameState and returns
some Directions.X for some X in the set {North, South, West, East, Stop}
"""
# Collect legal moves and successor states
legalMoves = gameState.getLegalActions()
# Choose one of the best actions
scores = [self.evaluationFunction(gameState, action) for action in legalMoves]
bestScore = max(scores)
bestIndices = [index for index in range(len(scores)) if scores[index] == bestScore]
chosenIndex = random.choice(bestIndices) # Pick randomly among the best
"Add more of your code here if you want to"
return legalMoves[chosenIndex]
def evaluationFunction(self, currentGameState, action):
"""
Design a better evaluation function here.
The evaluation function takes in the current and proposed successor
GameStates (pacman.py) and returns a number, where higher numbers are better.
The code below extracts some useful information from the state, like the
remaining food (newFood) and Pacman position after moving (newPos).
newScaredTimes holds the number of moves that each ghost will remain
scared because of Pacman having eaten a power pellet.
Print out these variables to see what you're getting, then combine them
to create a masterful evaluation function.
"""
# Useful information you can extract from a GameState (pacman.py)
successorGameState = currentGameState.generatePacmanSuccessor(action)
newPos = successorGameState.getPacmanPosition()
newFood = successorGameState.getFood()
newGhostStates = successorGameState.getGhostStates()
newScaredTimes = [ghostState.scaredTimer for ghostState in newGhostStates]
"*** YOUR CODE HERE ***"
"""Calculating distance to the farthest food pellet"""
newFoodList = newFood.asList()
min_food_distance = -1
for food in newFoodList:
distance = util.manhattanDistance(newPos, food)
if min_food_distance >= distance or min_food_distance == -1:
min_food_distance = distance
"""Calculating the distances from pacman to the ghosts. Also, checking for the proximity of the ghosts (at distance of 1) around pacman."""
distances_to_ghosts = 1
proximity_to_ghosts = 0
for ghost_state in successorGameState.getGhostPositions():
distance = util.manhattanDistance(newPos, ghost_state)
distances_to_ghosts += distance
if distance <= 1:
proximity_to_ghosts += 1
"""Combination of the above calculated metrics."""
return successorGameState.getScore() + (1 / float(min_food_distance)) - (1 / float(distances_to_ghosts)) - proximity_to_ghosts
def scoreEvaluationFunction(currentGameState):
"""
This default evaluation function just returns the score of the state.
The score is the same one displayed in the Pacman GUI.
This evaluation function is meant for use with adversarial search agents
(not reflex agents).
"""
return currentGameState.getScore()
class MultiAgentSearchAgent(Agent):
"""
This class provides some common elements to all of your
multi-agent searchers. Any methods defined here will be available
to the MinimaxPacmanAgent, AlphaBetaPacmanAgent & ExpectimaxPacmanAgent.
You *do not* need to make any changes here, but you can if you want to
add functionality to all your adversarial search agents. Please do not
remove anything, however.
Note: this is an abstract class: one that should not be instantiated. It's
only partially specified, and designed to be extended. Agent (game.py)
is another abstract class.
"""
def __init__(self, evalFn = 'scoreEvaluationFunction', depth = '2'):
self.index = 0 # Pacman is always agent index 0
self.evaluationFunction = util.lookup(evalFn, globals())
self.depth = int(depth)
class MinimaxAgent(MultiAgentSearchAgent):
"""
Your minimax agent (question 2)
"""
def getAction(self, gameState):
"""
Returns the minimax action from the current gameState using self.depth
and self.evaluationFunction.
Here are some method calls that might be useful when implementing minimax.
gameState.getLegalActions(agentIndex):
Returns a list of legal actions for an agent
agentIndex=0 means Pacman, ghosts are >= 1
gameState.generateSuccessor(agentIndex, action):
Returns the successor game state after an agent takes an action
gameState.getNumAgents():
Returns the total number of agents in the game
"""
"*** YOUR CODE HERE ***"
def minimax(agent, depth, gameState):
if gameState.isLose() or gameState.isWin() or depth == self.depth: # return the utility in case the defined depth is reached or the game is won/lost.
return self.evaluationFunction(gameState)
if agent == 0: # maximize for pacman
return max(minimax(1, depth, gameState.generateSuccessor(agent, newState)) for newState in gameState.getLegalActions(agent))
else: # minize for ghosts
nextAgent = agent + 1 # calculate the next agent and increase depth accordingly.
if gameState.getNumAgents() == nextAgent:
nextAgent = 0
if nextAgent == 0:
depth += 1
return min(minimax(nextAgent, depth, gameState.generateSuccessor(agent, newState)) for newState in gameState.getLegalActions(agent))
"""Performing maximize action for the root node i.e. pacman"""
maximum = float("-inf")
action = Directions.WEST
for agentState in gameState.getLegalActions(0):
utility = minimax(1, 0, gameState.generateSuccessor(0, agentState))
if utility > maximum or maximum == float("-inf"):
maximum = utility
action = agentState
return action
class AlphaBetaAgent(MultiAgentSearchAgent):
"""
Your minimax agent with alpha-beta pruning (question 3)
"""
def getAction(self, gameState):
"""
Returns the minimax action using self.depth and self.evaluationFunction
"""
"*** YOUR CODE HERE ***"
def maximizer(agent, depth, game_state, a, b): # maximizer function
v = float("-inf")
for newState in game_state.getLegalActions(agent):
v = max(v, alphabetaprune(1, depth, game_state.generateSuccessor(agent, newState), a, b))
if v > b:
return v
a = max(a, v)
return v
def minimizer(agent, depth, game_state, a, b): # minimizer function
v = float("inf")
next_agent = agent + 1 # calculate the next agent and increase depth accordingly.
if game_state.getNumAgents() == next_agent:
next_agent = 0
if next_agent == 0:
depth += 1
for newState in game_state.getLegalActions(agent):
v = min(v, alphabetaprune(next_agent, depth, game_state.generateSuccessor(agent, newState), a, b))
if v < a:
return v
b = min(b, v)
return v
def alphabetaprune(agent, depth, game_state, a, b):
if game_state.isLose() or game_state.isWin() or depth == self.depth: # return the utility in case the defined depth is reached or the game is won/lost.
return self.evaluationFunction(game_state)
if agent == 0: # maximize for pacman
return maximizer(agent, depth, game_state, a, b)
else: # minimize for ghosts
return minimizer(agent, depth, game_state, a, b)
"""Performing maximizer function to the root node i.e. pacman using alpha-beta pruning."""
utility = float("-inf")
action = Directions.WEST
alpha = float("-inf")
beta = float("inf")
for agentState in gameState.getLegalActions(0):
ghostValue = alphabetaprune(1, 0, gameState.generateSuccessor(0, agentState), alpha, beta)
if ghostValue > utility:
utility = ghostValue
action = agentState
if utility > beta:
return utility
alpha = max(alpha, utility)
return action
class ExpectimaxAgent(MultiAgentSearchAgent):
"""
Your expectimax agent (question 4)
"""
def getAction(self, gameState):
# print("Game state type:",type(gameState))
# print("Game state:",gameState)
"""
Returns the expectimax action using self.depth and self.evaluationFunction
All ghosts should be modeled as choosing uniformly at random from their
legal moves.
"""
"*** YOUR CODE HERE ***"
def expectimax(agent, depth, gameState):
if gameState.isLose() or gameState.isWin() or depth == self.depth: # return the utility in case the defined depth is reached or the game is won/lost.
return self.evaluationFunction(gameState)
if agent == 0: # maximizing for pacman
return max(expectimax(1, depth, gameState.generateSuccessor(agent, newState)) for newState in gameState.getLegalActions(agent))
else: # performing expectimax action for ghosts/chance nodes.
nextAgent = agent + 1 # calculate the next agent and increase depth accordingly.
if gameState.getNumAgents() == nextAgent:
nextAgent = 0
if nextAgent == 0:
depth += 1
return sum(expectimax(nextAgent, depth, gameState.generateSuccessor(agent, newState)) for newState in gameState.getLegalActions(agent)) / float(len(gameState.getLegalActions(agent)))
"""Performing maximizing task for the root node i.e. pacman"""
maximum = float("-inf")
action = Directions.WEST
for agentState in gameState.getLegalActions(0):
utility = expectimax(1, 0, gameState.generateSuccessor(0, agentState))
if utility > maximum or maximum == float("-inf"):
maximum = utility
action = agentState
# start filling data into the dataframe
columns = list()
rows = list()
grid_values = [[0 for i in range(7)] for j in range(20)]
# fill walls as -3, -4 for now, will add 1 to it for empty cells
for i in range(20):
for j in range(7):
grid_values[i][j] = -4*gameState.getWalls()[i][j]
# fill food cells as +3, empty cells as +1
for i in range(20):
for j in range(7):
grid_values[i][j] = 2*gameState.getFood()[i][j] + gameState.getWalls()[i][j] + 1
# fill pacman position as 0
x,y = gameState.getPacmanPosition()
grid_values[x][y] = 0
# fill ghost position as -10
for i in range(2):
x,y = map(int,gameState.getGhostPositions()[i])
grid_values[x][y] = -10
# fill capsule positions as +10
for i in range(len(gameState.getCapsules())):
x,y = gameState.getCapsules()[i]
grid_values[x][y] = +10
# fill rows and columns to add to dataset
for i in range(20):
for j in range(7):
rows.append(grid_values[i][j])
columns.append("Grid" + str(i) + "_" + str(j))
# Add action to columns
columns.append("Action")
rows.append(action)
# print(grid_values)
direction = OrderedDict()
direction["North"] = 0
direction["East"] = 0
direction["South"] = 0
direction["West"] = 0
columns.append("North")
columns.append("East")
columns.append("South")
columns.append("West")
epsilon = 0.5
setOfLegalActions = gameState.getLegalActions(0)
setOfLegalActions.remove('Stop')
if(action is not 'Stop'):
if(len(setOfLegalActions) is not 1):
for i in setOfLegalActions:
direction[i] = epsilon/(len(setOfLegalActions) - 1)
direction[action] = 1 - epsilon
else:
direction[action] = 1
for key, value in direction.items():
rows.append(value)
df = pd.DataFrame(columns = columns)
if(os.stat("data.csv").st_size != 0):
df.loc[len(columns)] = rows
df.to_csv ("data.csv", index = None,mode='a', header=False)
else:
df.append(rows)
df.to_csv ("data.csv", index = None, header=True)
return action
else:
return action
# print(grid_values)
def betterEvaluationFunction(currentGameState):
"""
Your extreme ghost-hunting, pellet-nabbing, food-gobbling, unstoppable
evaluation function (question 5).
DESCRIPTION: <write something here so we know what you did>
"""
"*** YOUR CODE HERE ***"
"""Calculating distance to the closest food pellet"""
newPos = currentGameState.getPacmanPosition()
newFood = currentGameState.getFood()
newFoodList = newFood.asList()
min_food_distance = -1
for food in newFoodList:
distance = util.manhattanDistance(newPos, food)
if min_food_distance >= distance or min_food_distance == -1:
min_food_distance = distance
"""Calculating the distances from pacman to the ghosts. Also, checking for the proximity of the ghosts (at distance of 1) around pacman."""
distances_to_ghosts = 1
proximity_to_ghosts = 0
for ghost_state in currentGameState.getGhostPositions():
distance = util.manhattanDistance(newPos, ghost_state)
distances_to_ghosts += distance
if distance <= 1:
proximity_to_ghosts += 1
"""Obtaining the number of capsules available"""
newCapsule = currentGameState.getCapsules()
numberOfCapsules = len(newCapsule)
"""Combination of the above calculated metrics."""
return currentGameState.getScore() + (1 / float(min_food_distance)) - (1 / float(distances_to_ghosts)) - proximity_to_ghosts - numberOfCapsules
# Abbreviation
better = betterEvaluationFunction