Top "Pacman" questions

Pacman is an arcade game developed by Namco and licensed for distribution in the United States by Midway, first released in Japan on May 22, 1980.

PacMan: what kinds of heuristics are mainly used?

Beside A*, BFS, DFS and the like, what are other good path-finding algorithms/heuristics popularly used in Pacman? I don't …

algorithm path-finding heuristics pacman
Pathfinding Algorithm For Pacman

I wanted to implement the game Pacman. For the AI, I was thinking of using the A* algorithm, having seen …

path-finding pacman
ImportError: No module named sklearn.feature_extraction.text

I use from python 2.7 and pacman package manager, and install sclearn with it. but when i have an ImportError: >&…

python pacman
Is pac-man still protected by copyright?

I am planning to write and distribute a pac-man like game. So I would like to know if It is …

pacman
Pacman: how do the eyes find their way back to the monster hole?

I found a lot of references to the AI of the ghosts in Pacman, but none of them mentioned how …

artificial-intelligence path-finding heuristics pacman
Pacman Ghost AI

I'm currently making a pacman game in java. I have a question about the ghosts though. I understand that the …

java artificial-intelligence pacman
TypeError: argument of type 'instance' is not iterable

So heres my code and it breaks at the line: if (suc not in sFrontier) or (suc not in sExplored): …

python python-2.7 depth-first-search pacman
If I wanted to make a Pac-Man Game?

I am immediately placing this as a community wiki thing. I don't want to ask for help in programming yet …

c++ pacman
Countdown timer for pygame

I asked a question earlier about a multiple collision detection but I don't have the skill to create code to …

python pygame pacman
Able to find path using DFS but not able specify the right directions to Pacman _ Python

I am working on an assignment found on an AI course page at berkley website for fun. I need to …

python depth-first-search pacman