Implement the helper functions needed to list the playble shots
[Project_algorithmic_C.git] / lib / debug.c
CommitLineData
54f1c58c
JB
1/*
2 * =====================================================================================
3 *
4 * Filename: debug.c
5 *
6 * Description: Debugging functions
7 *
8 * Version: 1.0
9 * Created: 27/04/2017 12:58:37
10 * Revision: none
11 * Compiler: gcc
12 *
13 * Author: Jerome Benoit (fraggle), jerome.benoit@piment-noir.org
14 * Organization: Piment Noir
15 *
16 * =====================================================================================
17 */
18
19#include <string.h>
20
a80646b7
JB
21#include "othello.h"
22#include "constants.h"
54f1c58c
JB
23#include "debug.h"
24
a80646b7 25void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]) {
54f1c58c 26
a80646b7
JB
27 for (int i = 1; i <= board_size; i++) {
28 mvprintw(base_y + i, base_x, "%d", i);
29 for (int j = 1; j <= board_size; j++) {
30 mvprintw(base_y, base_x + j, "%d", j);
31 mvprintw(base_y + i, base_x + j, "%d", get_box_value(i, j, pawn_array));
32 }
33 }
54f1c58c 34}
bbbe0570
JB
35
36/* void dbg_mvprintv(int y, int x, ) {
37
38} */