Implementation of two algorithms to automate the movement of the ghosts (the enemies) in PacMan.
- Breath First Search
- Shuffled Frog Leaping Algorithm
The game is built using the python pygame module
-
pip install -r requirements.txt
-
To run the game with Breath First Search
cd BFS
python main.py
-
To run the game with Shuffled Frog Leaping Algorithm
cd SFLA_sol
python main.py