A Simplified Version of Pacman Game Coded with Python 2.7 using "Colorama" Module.
Has "Auto saving" and "game speed" option!
Check out the executable version in dist folder!
(Help)
- Requirements:
OS: Windows (Because of "msvcrt" Module)
Python Version 2.7
Colorama Module
Source code is in "pacman.py" file.
I also used "py2exe" Module for building a ".exe version" of the game which is stored in "dist" folder.
Saving option uses python pickle files.
You can create your own map file.
- Map format description:
First line: Indicates Size of Console Window. (Width Height)
Second line: Indicates number of walls.
Last line: Indicates number of enemies.
Other lines: Indicates position of walls.
Command for running game (in CMD):
python pacman.py
Requires colorama. If not installed, simply install it using Python Package Index (pip):
pip install colorama