Skip to content
Snippets Groups Projects
EL-CHAMAA OMAR's avatar
EL-CHAMAA OMAR authored
Resolve "Todos"

Closes #74

See merge request !86
52a252e8

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/32FccmnIAMc

  • 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 !