Skip to content
Snippets Groups Projects
FREITAG MATTHIEU's avatar
FREITAG MATTHIEU authored
f35ce69e

PacMan

pipeline status

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.

Our PacMan as GIF

Normal speed video accessible here : https://youtu.be/FxbC6NFKyzQ

  • EL-CHAMAA Omar
  • FREITAG Matthieu (Zapharaos)

Linux

Installation

sudo apt-get update
sudo apt install cmake g++ libsdl2-dev

Usage

Set up the build environment

mkdir build && cd build

Build using cmake

cmake ..
make

Run the game

./PacMan

Controls

  • : moving left
  • : moving up
  • : moving right
  • : moving down
  • SPACE : pause/resume game

Enjoy !