Finalize the implementation of the playable shots list displaying
[Project_algorithmic_C.git] / lib / ui.c
CommitLineData
480acfeb
JB
1/*
2 * =====================================================================================
3 *
4 * Filename: ui.c
5 *
b5e9ccd0 6 * Description: Routines to handle the user interface
480acfeb
JB
7 *
8 * Version: 1.0
9 * Created: 24/04/2017 16:41:15
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
74e2b93b 19#include <string.h>
480acfeb
JB
20
21#include "ui.h"
54f1c58c 22#include "debug.h"
9240af1a 23#include "list.h"
480acfeb
JB
24
25/* in all print routine, y and x are the coordinates of the first character of the shape
26 * which can be a space ' ' */
27
28/* FIXME: one can split this shape in building blocks and build it using them */
29void print_board(int y, int x) {
30
4ddf6f1a
JB
31 mvprintw(y, x, " A | B | C | D | E | F | G | H");
32 mvprintw(y+1, x, " -----+----+----+----+----+----+----+-----");
33 mvprintw(y+2, x, "1| | | | | | | | |");
34 mvprintw(y+3, x, " | | | | | | | | |");
35 mvprintw(y+4, x, " +----+----+----+----+----+----+----+----+");
36 mvprintw(y+5, x, "2| | | | | | | | |");
37 mvprintw(y+6, x, " | | | | | | | | |");
38 mvprintw(y+7, x, " +----+----+----+----+----+----+----+----+");
39 mvprintw(y+8, x, "3| | | | | | | | |");
40 mvprintw(y+9, x, " | | | | | | | | |");
41 mvprintw(y+10, x, " +----+----+----+----+----+----+----+----+");
42 mvprintw(y+11, x, "4| | | | | | | | |");
43 mvprintw(y+12, x, " | | | | | | | | |");
44 mvprintw(y+13, x, " +----+----+----+----+----+----+----+----+");
45 mvprintw(y+14, x, "5| | | | | | | | |");
46 mvprintw(y+15, x, " | | | | | | | | |");
47 mvprintw(y+16, x, " +----+----+----+----+----+----+----+----+");
74e2b93b 48 mvprintw(y+17, x, "6| | | | | | | | |");
4ddf6f1a
JB
49 mvprintw(y+18, x, " | | | | | | | | |");
50 mvprintw(y+19, x, " +----+----+----+----+----+----+----+----+");
74e2b93b 51 mvprintw(y+20, x, "7| | | | | | | | |");
4ddf6f1a 52 mvprintw(y+21, x, " | | | | | | | | |");
74e2b93b
JB
53 mvprintw(y+22, x, " +----+----+----+----+----+----+----+----+");
54 mvprintw(y+23, x, "8| | | | | | | | |");
55 mvprintw(y+24, x, " | | | | | | | | |");
56 mvprintw(y+25, x, " -----+----+----+----+----+----+----+-----");
480acfeb
JB
57}
58
a8b54576
JB
59static void set_default_colors() {
60
61 init_pair(1, COLOR_WHITE, COLOR_BLACK);
62 attron(COLOR_PAIR(1));
63}
64
74e2b93b 65static void print_o(int y, int x, unsigned int type) {
480acfeb 66
74e2b93b
JB
67 if (type == black) {
68 init_color(COLOR_CYAN, 0, 0, 0); /* redefine to a dark black color */
69 init_pair(2, COLOR_WHITE, COLOR_CYAN);
70 attron(COLOR_PAIR(2));
71 } else {
72 init_pair(3, COLOR_BLACK, COLOR_WHITE);
73 attron(COLOR_PAIR(3));
74 }
480acfeb
JB
75 mvprintw(y, x, "/\\");
76 mvprintw(y+1, x, "\\/");
74e2b93b 77 /* reset to default */
a8b54576 78 set_default_colors();
480acfeb
JB
79}
80
9240af1a 81/* used for pawn placement hints */
74e2b93b 82static void print_x(int y, int x, unsigned int type) {
2e5c1894 83
74e2b93b
JB
84 if (type == hint_allowed) {
85 init_pair(4, COLOR_GREEN, COLOR_BLACK);
86 attron(COLOR_PAIR(4));
87 } else {
88 init_pair(5, COLOR_RED, COLOR_BLACK);
89 attron(COLOR_PAIR(5));
90 }
2e5c1894
JB
91 mvprintw(y, x, "\\/");
92 mvprintw(y+1, x,"/\\");
74e2b93b 93 /* reset to default */
a8b54576 94 set_default_colors();
2e5c1894 95}
4ddf6f1a 96
2e5c1894
JB
97/* y = 1: y -> 0 x = 1: 1 -> 1
98 * y > 1: y -> y + 3 x > 1: x -> x + 5 */
480acfeb 99static int remap_y(int y) {
b5e9ccd0 100
480acfeb 101 if (y == 1) {
74e2b93b 102 return 2;
54f1c58c 103 } else if (y > 1 && y <= board_size) {
74e2b93b 104 return (remap_y(y - 1) + 3);
54f1c58c
JB
105 } else {
106 return -1;
480acfeb
JB
107 }
108}
109
110static int remap_x(int x) {
111
112 if (x == 1) {
74e2b93b 113 return 3;
54f1c58c 114 } else if (x > 1 && x <= board_size) {
2e5c1894 115 return (remap_x(x - 1) + 5);
54f1c58c
JB
116 } else {
117 return -1;
2e5c1894
JB
118 }
119}
120
74e2b93b 121void print_pawns(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]) {
54f1c58c 122
a80646b7
JB
123 for (int i = 1; i <= board_size; i++) {
124 for (int j = 1; j <= board_size; j++) {
54f1c58c
JB
125 if (!is_box_type(i, j, pawn_array, empty)) {
126 print_o(base_y + remap_y(i), base_x + remap_x(j), get_box_value(i, j, pawn_array));
74e2b93b 127 }
2e5c1894 128 }
480acfeb
JB
129 }
130}
74e2b93b 131
9240af1a
JB
132void print_shots_list(int base_y, int base_x, struct shots_list_s* shots_list) {
133 struct shots_list_s* list_counter;
134
135 list_for_each_entry(list_counter, &shots_list->list, list) {
136 print_x(base_y + remap_y(list_counter->y), base_x + remap_x(list_counter->x), list_counter->type);
137 }
138}
139
45ce2fe3 140int map_col_letter_to_index(char c) {
b5e9ccd0 141
74e2b93b
JB
142 if (c == 'a' || c == 'A') {
143 return 1;
144 } else if (c == 'b' || c == 'B') {
145 return 2;
146 } else if (c == 'c' || c == 'C') {
147 return 3;
148 } else if (c == 'd' || c == 'D') {
149 return 4;
150 } else if (c == 'e' || c == 'E') {
151 return 5;
152 } else if (c == 'f' || c == 'F') {
153 return 6;
154 } else if (c == 'g' || c == 'G') {
155 return 7;
156 } else if (c == 'h' || c == 'H') {
157 return 8;
54f1c58c
JB
158 } else {
159 return -1;
74e2b93b 160 }
74e2b93b
JB
161}
162
45ce2fe3
JB
163/* return capital letters */
164char map_col_index_to_letter(int index) {
b5e9ccd0 165
45ce2fe3
JB
166 if (index == 1) {
167 return 'A';
168 } else if (index == 2) {
169 return 'B';
170 } else if (index == 3) {
171 return 'C';
172 } else if (index == 4) {
173 return 'D';
174 } else if (index == 5) {
175 return 'E';
176 } else if (index == 6) {
177 return 'F';
178 } else if (index == 7) {
179 return 'G';
180 } else if (index == 9) {
181 return 'H';
182 } else {
183 return -1;
184 }
185}
186
74e2b93b
JB
187int prompt_values(WINDOW* windows, int base_y, int base_x, const char* msg, int* y, char* x) {
188 mvwprintw(windows, base_y, base_x, "%s\n", msg);
a80646b7
JB
189 int retval = mvwscanw(windows, base_y + 1, base_x + strlen(msg)/2, "%d%c", y, x);
190 return (retval == 1) ? 0 : 1;
74e2b93b 191}