From cab4a39ecd7a2305a2fec365a18827444aae9484 Mon Sep 17 00:00:00 2001 From: Vissarion Moutafis <44686370+VissaMoutafis@users.noreply.github.com> Date: Mon, 24 Feb 2020 13:06:19 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b1c3e6..4fae7c9 100755 --- a/README.md +++ b/README.md @@ -23,14 +23,14 @@ A simple snake game, with terminal GUI implemented using ncurses library. ## Prerequisities -You need to install the following two packages: +You need to install the following 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 +Open up a terminal and type the folllowing commands: ```shell #make sure everything is updated @@ -62,7 +62,7 @@ Now we will install and run the program, but first let's download the repo: and enjoy playing! -__Note__: You might want to delete the objective files and keep only the src part. In that case: +__Note__: You might want to delete the objective files and keep only the src part (__clean up__). In that case: ```shell ~$ make clean ``` From 1e7ea83b26583c8e81f83f0e418b5b7145069dc8 Mon Sep 17 00:00:00 2001 From: Vissarion Moutafis <44686370+VissaMoutafis@users.noreply.github.com> Date: Mon, 24 Feb 2020 20:21:32 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4fae7c9..2d8fd7e 100755 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ A simple snake game, with terminal GUI implemented using ncurses library. - [ ] Fix the window-resize factor, since it gets all messy when you minimize/maximize the terminal window. - [x] Create a 'Game' class and provide interface through that function so that the user don't have to mess with the graphics snake and controller classes. +- [ ] Implement the Game::printGameStatistics function to print the score and games played of each player. + --- ## Prerequisities From 4a9f313bdaf3a31e95624928f9aeebade764749f Mon Sep 17 00:00:00 2001 From: Vissarion Moutafis <44686370+VissaMoutafis@users.noreply.github.com> Date: Mon, 24 Feb 2020 20:21:53 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d8fd7e..7900e4b 100755 --- a/README.md +++ b/README.md @@ -17,8 +17,7 @@ A simple snake game, with terminal GUI implemented using ncurses library. - [x] Increase speed of the snake when it devours a snack. - [x] Add a scoreboard. - [ ] Fix the window-resize factor, since it gets all messy when you minimize/maximize the terminal window. -- [x] Create a 'Game' class and provide interface through that function so that the user don't have to mess with the graphics - snake and controller classes. +- [x] Create a 'Game' class and provide interface through that function so that the user don't have to mess with the graphics snake and controller classes. - [ ] Implement the Game::printGameStatistics function to print the score and games played of each player. ---