This project is about re-developing the famous « PAC-MAN » game made by Namco and released in 1980. Our version was made using C++ and the SDL library.
- Game rules : https://www.gamedeveloper.com/design/the-pac-man-dossier
- Coding style : https://google.github.io/styleguide/cppguide.html
- Model : https://www.youtube.com/watch?v=7O1OYQRqUag
Normal speed video accessible here : https://youtu.be/FxbC6NFKyzQ
- EL-CHAMAA Omar
- FREITAG Matthieu (Zapharaos)
sudo apt-get update
sudo apt install cmake g++ libsdl2-dev
Set up the build environment
mkdir build && cd build
Build using cmake
cmake ..
make
Run the game
./PacMan
- ← : moving left
- ↑ : moving up
- → : moving right
- ↓ : moving down
- SPACE : pause/resume game
Enjoy !