-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPacman.py
331 lines (277 loc) · 13.2 KB
/
Pacman.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
from util import manhattanDistance
from game import Directions
import random, util
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 __init__(self):
self.lastPositions = []
self.dc = None
def getAction(self, gameState):
"""
getAction chooses among the best options according to the evaluation function.
getAction takes a GameState and returns some Directions.X for some X in the set {North, South, West, East, Stop}
------------------------------------------------------------------------------
Description of GameState and helper functions:
A GameState specifies the full game state, including the food, capsules,
agent configurations and score changes. In this function, the |gameState| argument
is an object of GameState class. Following are a few of the helper methods that you
can use to query a GameState object to gather information about the present state
of Pac-Man, the ghosts and the maze.
gameState.getLegalActions():
Returns the legal actions for the agent specified. Returns Pac-Man's legal moves by default.
gameState.generateSuccessor(agentIndex, action):
Returns the successor state after the specified agent takes the action.
Pac-Man is always agent 0.
gameState.getPacmanState():
Returns an AgentState object for pacman (in game.py)
state.configuration.pos gives the current position
state.direction gives the travel vector
gameState.getGhostStates():
Returns list of AgentState objects for the ghosts
gameState.getNumAgents():
Returns the total number of agents in the game
gameState.getScore():
Returns the score corresponding to the current state of the game
The GameState class is defined in pacman.py and you might want to look into that for
other helper methods, though you don't need to.
"""
# 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
return legalMoves[chosenIndex]
def evaluationFunction(self, currentGameState, action):
"""
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 (oldFood) 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.
"""
# Useful information you can extract from a GameState (pacman.py)
successorGameState = currentGameState.generatePacmanSuccessor(action)
newPos = successorGameState.getPacmanPosition()
oldFood = currentGameState.getFood()
newGhostStates = successorGameState.getGhostStates()
newScaredTimes = [ghostState.scaredTimer for ghostState in newGhostStates]
return successorGameState.getScore()
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)
######################################################################################
# Problem 1b: implementing minimax
class MinimaxAgent(MultiAgentSearchAgent):
"""
Your minimax agent (problem 1)
"""
def getAction(self, gameState):
"""
Returns the minimax action from the current gameState using self.depth
and self.evaluationFunction. Terminal states can be found by one of the following:
pacman won, pacman lost or there are no legal moves.
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
Directions.STOP:
The stop direction, which is always legal
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
gameState.getScore():
Returns the score corresponding to the current state of the game
gameState.isWin():
Returns True if it's a winning state
gameState.isLose():
Returns True if it's a losing state
self.depth:
The depth to which search should continue
"""
# if d == 0:
# return self.evaluationFunction(gameState)
# elif gameState.isWin() == True or gameState.isLose() == True:
# return gameState.getScore()
# actionScores = []
# if agentIndex == self.index:
# legalActions = []
# for action in gameState.getLegalActions(agentIndex):
# succState = gameState.generateSuccessor(agentIndex, action)
# value, action = minimaxRecurse(succState, agentIndex + 1, d)
# legalActions.append((value, action))
# return max(actionScores)
# else:
# legalActions = []
# for action in gameState.getLegalActions(agentIndex):
# succState = gameState.generateSuccessor(agentIndex, action)
# if agentIndex == gameState.getNumAgents() - 1:
# value, action = minimaxRecurse(succState, self.index, d - 1)
# else:
# value, action = minimaxRecurse(succState, agentIndex + 1, d)
# legalActions.append((value, action))
# return min(actionScores)
# BEGIN_YOUR_CODE (our solution is 26 lines of code, but don't worry if you deviate from this)
# 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
# return legalMoves[chosenIndex]
def valueOfState(gameState, agentIndex, d):
if d == 0:
return self.evaluationFunction(gameState)
elif gameState.isWin() == True or gameState.isLose() == True or gameState.getLegalActions(agentIndex) == 0:
return gameState.getScore()
if agentIndex == gameState.getNumAgents() - 1:
actionScores = []
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
actionScores.append(valueOfState(succState, self.index, d - 1))
return min(actionScores)
else:
actionScores = []
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
actionScores.append(valueOfState(succState, agentIndex + 1, d))
if agentIndex == self.index:
return max(actionScores)
else:
return min(actionScores)
valueList = []
legalActions = gameState.getLegalActions(self.index)
for action in gameState.getLegalActions(self.index):
succState = gameState.generateSuccessor(self.index, action)
valueList.append(valueOfState(gameState, self.index, self.depth))
bestScore = max(valueList)
bestIndex = valueList.index(bestScore)
return legalActions[bestIndex]
# END_YOUR_CODE
######################################################################################
# Problem 2a: implementing alpha-beta
class AlphaBetaAgent(MultiAgentSearchAgent):
"""
Your minimax agent with alpha-beta pruning (problem 2)
"""
def getAction(self, gameState):
"""
Returns the minimax action using self.depth and self.evaluationFunction
"""
# BEGIN_YOUR_CODE (our solution is 49 lines of code, but don't worry if you deviate from this)
def minimaxRecurseAB(gameState, agentIndex, d, alpha, beta):
if d == 0:
return self.evaluationFunction(gameState)
elif gameState.isWin() == True or gameState.isLose() == True or gameState.getLegalActions(agentIndex) == 0:
return gameState.getScore()
if agentIndex == gameState.getNumAgents() - 1:
value = float("inf")
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
getValue = minimaxRecurseAB(succState, self.index, d - 1, alpha, beta)
value = min(value, getValue)
if alpha >= beta:
break
return value
elif agentIndex == self.index:
value = float("-inf")
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
getValue = minimaxRecurseAB(succState, agentIndex + 1, d, alpha, beta)
value = max(value, getValue)
if alpha >= beta:
break
return value
else:
value = float("inf")
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
getValue = minimaxRecurseAB(succState, agentIndex + 1, d, alpha, beta)
value = min(value, getValue)
if alpha >= beta:
break
return value
valueList = []
legalActions = gameState.getLegalActions(self.index)
for action in gameState.getLegalActions(self.index):
succState = gameState.generateSuccessor(self.index, action)
valueList.append(minimaxRecurseAB(gameState, self.index, self.depth, float("-inf"), float("inf")))
bestScore = max(valueList)
bestIndices = [index for index in range(len(valueList)) if valueList[index] == bestScore]
chosenIndex = random.choice(bestIndices)
return legalActions[chosenIndex]
# END_YOUR_CODE
######################################################################################
# Problem 3b: implementing expectimax
class ExpectimaxAgent(MultiAgentSearchAgent):
"""
Your expectimax agent (problem 3)
"""
def getAction(self, 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.
"""
# BEGIN_YOUR_CODE (our solution is 25 lines of code, but don't worry if you deviate from this)
def valueOfState(gameState, agentIndex, d):
if d == 0:
return self.evaluationFunction(gameState)
elif gameState.isWin() == True or gameState.isLose() == True or gameState.getLegalActions(agentIndex) == 0:
return gameState.getScore()
if agentIndex == gameState.getNumAgents() - 1:
actionScores = []
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
actionScores.append(valueOfState(succState, self.index, d - 1))
return sum(actionScores) / len(gameState.getLegalActions(agentIndex))
else:
actionScores = []
for action in gameState.getLegalActions(agentIndex):
succState = gameState.generateSuccessor(agentIndex, action)
actionScores.append(valueOfState(succState, agentIndex + 1, d))
if agentIndex == self.index:
return max(actionScores)
else:
return sum(actionScores) / len(gameState.getLegalActions(agentIndex))
valueList = []
legalActions = gameState.getLegalActions(self.index)
for action in gameState.getLegalActions(self.index):
succState = gameState.generateSuccessor(self.index, action)
valueList.append(valueOfState(gameState, self.index, self.depth))
bestScore = max(valueList)
bestIndices = [index for index in range(len(valueList)) if valueList[index] == bestScore]
chosenIndex = random.choice(bestIndices)
return legalActions[chosenIndex]
# END_YOUR_CODE