-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.c
443 lines (389 loc) · 9.19 KB
/
interface.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#include "interface.h"
void setInterface()
{
// Initialize curses
initscr();
cbreak();
noecho();
keypad(stdscr, TRUE);
start_color();
}
void allBlack() {
for (int i=0; i<=COLS; i++) {
for (int j=0; j<=LINES; j++) {
init_pair(1,COLOR_BLACK,COLOR_BLACK);
attron(COLOR_PAIR(1));
mvprintw(i, j, "");
}
}
}
struct logininfo * showLoginForm()
{
FIELD * field[3];
FORM * my_form;
int ch;
/* Initialize the fields */
field[0] = new_field(1, 25, 4, 20, 0, 0);
field[1] = new_field(1, 25, 6, 20, 0, 0);
field[2] = NULL;
/* Set field options */
set_field_back(field[0], A_UNDERLINE); /* Print a line for the option */
field_opts_off(field[0], O_AUTOSKIP); /* Don't go to next field when this */
/* Field is filled up */
set_field_back(field[1], A_UNDERLINE);
field_opts_off(field[1], O_AUTOSKIP);
/* Create the form and post it */
my_form = new_form(field);
post_form(my_form);
refresh();
mvprintw(2, 10, "DAMA CARLA v0.1");
mvprintw(4, 10, "Username:");
mvprintw(6, 10, "Password:");
refresh();
int exitCond = 0;
/* Loop through to get user requests */
while(!exitCond)
{
ch = getch();
switch(ch)
{
case '\n':
exitCond = 1;
break;
case KEY_BACKSPACE:
/* if backspace is hit, a char disappear*/
form_driver(my_form, REQ_DEL_PREV);
break;
case KEY_DOWN:
/* Go to next field */
form_driver(my_form, REQ_NEXT_FIELD);
/* Go to the end of the present buffer */
/* Leaves nicely at the last character */
form_driver(my_form, REQ_END_LINE);
break;
case KEY_UP:
/* Go to previous field */
form_driver(my_form, REQ_PREV_FIELD);
form_driver(my_form, REQ_END_LINE);
break;
default:
/* If this is a normal character, it gets */
/* Printed */
form_driver(my_form, ch);
break;
}
}
/* in any case, this small fix is needed in order to get data */
form_driver(my_form, REQ_PREV_FIELD);
form_driver(my_form, REQ_END_LINE);
char * username = field_buffer(field[0],0);
char * password = field_buffer(field[1],0);
struct logininfo * data = malloc(sizeof(struct logininfo));
data->username = copystring(username);
data->password = copystring(password);
/* Un post form and free the memory */
unpost_form(my_form);
free_form(my_form);
free_field(field[0]);
free_field(field[1]);
return data;
}
/*
* returns:
* 0: logout
* 1: join game
*/
int showMainMenu()
{
clear();
refresh();
int ch;
mvprintw(2, 10, "DAMA CARLA v0.1");
mvprintw(4, 10, "J : join a game");
mvprintw(6, 10, "Q : logout");
refresh();
/* Loop through to get user requests */
while(1)
{
ch = getch();
switch(ch)
{
case 'q': //logout
return 0;
case 'j': //join a game
return 1;
}
}
}
//various utils
int even(int n) {
if ((n % 2)==0) {
return 1;
} else {
return 0;
}
}
struct moveinfo * takeMove(struct board * b, int color)
{
FIELD * field[5];
FORM * my_form;
int ch;
/* Initialize the fields */
field[0] = new_field(1, 1, 3, 52, 0, 0);
field[1] = new_field(1, 1, 3, 54, 0, 0);
field[2] = new_field(1, 1, 5, 52, 0, 0);
field[3] = new_field(1, 1, 5, 54, 0, 0);
field[4] = NULL;
/* Set field options */
set_field_back(field[0], A_UNDERLINE); /* Print a line for the option */
field_opts_off(field[0], O_AUTOSKIP); /* Don't go to next field when this */
/* Field is filled up */
set_field_back(field[1], A_UNDERLINE);
field_opts_off(field[1], O_AUTOSKIP);
set_field_back(field[2], A_UNDERLINE);
field_opts_off(field[2], O_AUTOSKIP);
set_field_back(field[3], A_UNDERLINE);
field_opts_off(field[3], O_AUTOSKIP);
/* Create the form and post it */
my_form = new_form(field);
post_form(my_form);
refresh();
switch(color){
case 1:
printWhiteBoard(b);
break;
case 2:
printBlackBoard(b);
break;
}
init_pair(4,COLOR_WHITE,COLOR_BLACK);
attron(COLOR_PAIR(4));
mvprintw(1, 49, "Inserisci la tua prossima mossa");
mvprintw(3, 49, "da:");
mvprintw(5, 49, "a:");
refresh();
int exitCond = 0;
/* Loop through to get user requests */
while(!exitCond)
{
ch = getch();
switch(ch)
{
case '\n':
exitCond = 1;
break;
case KEY_BACKSPACE:
/* if backspace is hit, a char disappear*/
form_driver(my_form, REQ_DEL_PREV);
break;
case KEY_DOWN:
/* Go to next field */
form_driver(my_form, REQ_NEXT_FIELD);
/* Go to the end of the present buffer */
/* Leaves nicely at the last character */
form_driver(my_form, REQ_END_LINE);
break;
case KEY_UP:
/* Go to previous field */
form_driver(my_form, REQ_PREV_FIELD);
form_driver(my_form, REQ_END_LINE);
break;
default:
/* If this is a normal character, it gets */
/* Printed */
form_driver(my_form, ch);
break;
}
}
/* in any case, this small fix is needed in order to get data */
form_driver(my_form, REQ_PREV_FIELD);
form_driver(my_form, REQ_END_LINE);
char * daC = field_buffer(field[0],0);
char * daL = field_buffer(field[1],0);
char * aC = field_buffer(field[2],0);
char * aL = field_buffer(field[3],0);
struct moveinfo * data = malloc(sizeof(struct moveinfo));
data->daC = copystring(daC);
data->daL = copystring(daL);
data->aC = copystring(aC);
data->aL = copystring(aL);
/* Un post form and free the memory */
unpost_form(my_form);
free_form(my_form);
free_field(field[0]);
free_field(field[1]);
free_field(field[2]);
free_field(field[3]);
return data;
}
void printWhiteBoard(struct board * b) {
init_pair(4,COLOR_WHITE,COLOR_BLACK);
attron(COLOR_PAIR(4));
mvprintw(1, 42, "8");
mvprintw(4, 42, "7");
mvprintw(7, 42, "6");
mvprintw(10, 42, "5");
mvprintw(13, 42, "4");
mvprintw(16, 42, "3");
mvprintw(19, 42, "2");
mvprintw(22, 42, "1");
mvprintw(25, 2, "a");
mvprintw(25, 7, "b");
mvprintw(25, 12, "c");
mvprintw(25, 17, "d");
mvprintw(25, 22, "e");
mvprintw(25, 27, "f");
mvprintw(25, 32, "g");
mvprintw(25, 37, "h");
init_pair(1,COLOR_WHITE,COLOR_WHITE);
init_pair(2,COLOR_WHITE,COLOR_BLACK);
init_pair(3,COLOR_MAGENTA,COLOR_BLACK);
for (int a=0; a<8; a++) {
for (int c=0; c<8; c++) {
int k=a*3;
int l=c*5;
if (b->data[a][c]==1) {
attron(COLOR_PAIR(2));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "O");
} else if (b->data[a][c]==2) {
attron(COLOR_PAIR(2));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "@");
} else if (b->data[a][c]==3) {
attron(COLOR_PAIR(3));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "O");
} else if (b->data[a][c]==4) {
attron(COLOR_PAIR(3));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "@");
} else if (even(a+c)) {
attron(COLOR_PAIR(1));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
} else {
attron(COLOR_PAIR(2));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
}
}
}
refresh();
}
void printBlackBoard(struct board * b) {
int vettore[8][8];
for (int i=0;i<8;i++){
for (int j=0;j<8;j++){
vettore[i][j]=b->data[7-i][7-j];
}
}
init_pair(4,COLOR_WHITE,COLOR_BLACK);
attron(COLOR_PAIR(4));
mvprintw(1, 42, "1");
mvprintw(4, 42, "2");
mvprintw(7, 42, "3");
mvprintw(10, 42, "4");
mvprintw(13, 42, "5");
mvprintw(16, 42, "6");
mvprintw(19, 42, "7");
mvprintw(22, 42, "8");
mvprintw(25, 2, "h");
mvprintw(25, 7, "g");
mvprintw(25, 12, "f");
mvprintw(25, 17, "e");
mvprintw(25, 22, "d");
mvprintw(25, 27, "c");
mvprintw(25, 32, "b");
mvprintw(25, 37, "a");
init_pair(1,COLOR_WHITE,COLOR_WHITE);
init_pair(2,COLOR_WHITE,COLOR_BLACK);
init_pair(3,COLOR_MAGENTA,COLOR_BLACK);
for (int a=0; a<8; a++) {
for (int c=0; c<8; c++) {
int k=a*3;
int l=c*5;
if (vettore[a][c]==1) {
attron(COLOR_PAIR(2));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "O");
} else if (vettore[a][c]==2) {
attron(COLOR_PAIR(2));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "@");
} else if (vettore[a][c]==3) {
attron(COLOR_PAIR(3));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "O");
} else if (vettore[a][c]==4) {
attron(COLOR_PAIR(3));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
mvprintw(k+1, l+2, "@");
} else if (even(a+c)) {
attron(COLOR_PAIR(1));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
} else {
attron(COLOR_PAIR(2));
for (int i=k; i<k+3; i++) {
for (int j=l; j<l+5; j++) {
mvprintw(i, j, " ");
}
}
}
}
}
refresh();
}
void singleWindowMessage(char * message)
{
clear();
refresh();
mvprintw(5, 10, message);
refresh();
}
void unsetInterface()
{
endwin();
}