TP 13 exo2: Code cleanups
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 22 Mar 2017 22:48:08 +0000 (23:48 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 22 Mar 2017 22:48:08 +0000 (23:48 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP_13/exo2/lib/coordinates.c
TP_13/exo2/lib/display.c
TP_13/exo2/lib/display.h

index 624de14df11ad3715e57f19d505fced123191cdf..2f02405f9f24f4d678cd297bfd739d7702e01a72 100644 (file)
@@ -18,8 +18,6 @@
 
 #include "coordinates.h"
 
-#include <ncurses.h>
-
 void init_coordinates(coordinates_t* coordinates_array) {
 
     for (unsigned i = 0; i < MAX_COORDINATES; i++) {
index 21d85bb84cbece58dff339b217de62212d6cfb3a..c04b51b1feb5e4ae0dfebbd2d258503e362d3891 100644 (file)
@@ -23,6 +23,7 @@
 /* in all print routine, y and x are the coordinates of the first character of the shape
  * which can be a space ' ' */
 
+/* FIXME: one can split this shape in building blocks and build it using them */
 void print_board(int y, int x) {
 
     mvprintw(y, x, "    |    |");
@@ -97,19 +98,3 @@ void print_coordinates(coordinates_t coordinates_array[], int base_y, int base_x
         i++;
     }
 }
-
-/* void printf_result(unsigned player, unsigned round) {
-    char* result_msg = "";
-
-    if (round < MAX_COORDINATES + 1) {
-        if (player == 0) {
-            result_msg = "Joueur 1";
-        } else {
-            result_msg = "Joueur 2";
-        }
-        printf("%s gagne !\n", result_msg);
-    } else {
-        printf("Egalite !\n");
-    }
-} */
-
index 762c908e5ca5cc9110ad49912a267ba3f313d50d..39671163fbaf634e7f27c1691738d8ce6f9fb238 100644 (file)
@@ -26,6 +26,5 @@ void print_board(int y, int x);
 void print_coordinates(coordinates_t coordinates_array[], int base_y, int base_x);
 
 /* non ncurses printing */
-/* void printf_result(unsigned player, unsigned round); */
 
 #endif /* DISPLAY_H */