You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
VissaMoutafis b58bb207a0 added a function to alter teh difficulty as the snake's getting bigger and bigger 5 years ago
.vscode Controller ready, Input methods ready, Board Ready, Snake collision events to be made and Snack class to be implemented 5 years ago
include added a function to alter teh difficulty as the snake's getting bigger and bigger 5 years ago
src added a function to alter teh difficulty as the snake's getting bigger and bigger 5 years ago
.gitignore Update .gitignore 5 years ago
LICENSE Initial commit 5 years ago
Makefile Controller ready, Input methods ready, Board Ready, Snake collision events to be made and Snack class to be implemented 5 years ago
README.md Update README.md 5 years ago

README.md

Snake Game in C++

Abstract

A simple snake game, with terminal GUI implemented using ncurses library.

Controls:

  • Up-Arrow to go up.
  • Down-Arrow to go down.
  • Left-Arrow to go left.
  • Right-Arrow to go right.
  • q to exit game.

TODO:

  • Add a scoreboard.

Prerequisities

You need to install the following two packages:

  • libncurses5-dev : Developer’s libraries for ncurses
  • libncursesw5-dev : Developer’s libraries for ncursesw
  • gcc : C\C++ compiler
  • make : instalation tool Open up a terminal and type the folllowing commands
~$ sudo apt update && sudo apt upgrade
#Now to install compiler and instalation tool
~$ sudo apt-get install gcc make
#And the actuall library
~$ sudo apt-get install libncurses5-dev libncursesw5-dev

Now you are ready to use the repo.


Downloading, Instalation and Running the Program

Now we will install and run teh program, but first let's download the repo:

~$ git clone https://github.com/VissaMoutafis/Snake_Game_in_Cpp
~$ cd Snake_Game_in_Cpp
~$ make run

and enjoy playing!

Note: You might want to delete the objective files and keep only the src part. In that case:

~$ make clean

and you are set.


Contributors

VissaM


Licence: MIT

Check the file LICENCE.

Enjoy!