The application is a game written in Python. It is an adaptation of the Pac-Man game, which original version was created in 1980.
To start the application you need to install Python and pygame package, which you can install by entering the following command on the command line:
pip install pygame
Also to start game you need to download following files from repository:
- app.py,
- main.py,
- ghost.py,
- pacman_player.py,
- settings.py,
- background.png,
- eat.wav,
- win.wav,
- game_over.wav,
- pacman_dead.wav,
- highscores.txt,
- walls.txt.
The next steps should be performed from the folder where the downloaded files are located.
You need to run main.py.
This can be done from the command line by entering the following command:
python main.py
or in any editor.
After launching the file, the application window will open.
You can use the apllication only locally.