Implement some basic debug printing function.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 21 Aug 2017 12:46:50 +0000 (14:46 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 21 Aug 2017 12:46:50 +0000 (14:46 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
Makefile
lib/debug.c
lib/debug.h

index 2a3ae221164a3d8a19d2b6d5197fa8b1da2616c5..fd4ca9a54c37265c4eed0d92a88b3fae22dace57 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ endif
 
 # Putting header files in the source directory is not the purpose of this INCLUDES_PATH variable
 INCLUDES_PATH := $(INCLUDES_PATH) -I$(LIBRARY_PATH)
-CFLAGS := $(CFLAGS) $(CFLAGS_LTO) $(WARN_FLAGS) $(STD_FLAG) $(OPTI_FLAG) $(DEBUG_FLAG) $(INCLUDES_PATH)
+CFLAGS := -DBUILD_TYPE=$(BUILD_TYPE) $(CFLAGS) $(CFLAGS_LTO) $(WARN_FLAGS) $(STD_FLAG) $(OPTI_FLAG) $(DEBUG_FLAG) $(INCLUDES_PATH)
 LIBCFLAGS := -fPIC $(CFLAGS)
 LDFLAGS := $(LDFLAGS) $(LDFLAGS_LTO) $(LDFLAGS_GOLD) $(STRIP_FLAG)
 LIBLDFLAGS := $(SHLIBLDFLAG) $(LDFLAGS)
index 653207954de9478dab789cbc2aeea90cb6efd9eb..e00ce9f23ca859a2c36ecfd94925066f42ba7bb9 100644 (file)
@@ -19,7 +19,6 @@
 #include <string.h>
 
 #include "othello.h"
-#include "constants.h"
 #include "debug.h"
 
 void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]) {
@@ -33,6 +32,10 @@ void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][b
     }
 }
 
-/* void dbg_mvprintv(int y, int x, ) {
-
-} */
+#if BUILD_TYPE == debug
+void dbg_mvprintv(int y, int x, char* debug_text) {
+    mvprintw(y, x, debug_text);
+}
+#else
+void dbg_mvprintv(int y, int x, char* debug_text) { }
+#endif
index 8d4d3b9d945911b4aefcf7d8e32f010f6dfcbbfa..e87809de4f6109f180f8d4144bca845ee0552f1e 100644 (file)
  * =====================================================================================
  */
 
+#ifndef DEBUG_H
+#define DEBUG_H
+
 #include <ncurses.h>
 
+#include "constants.h"
 void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]);
+
+#endif /* DEBUG_H */