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
|
#include <curses.h>
#include <stdlib.h>
#include "7w.h"
char* cards_getname(int era, int card);
int* cards_getcost(int era, int card);
int cards_gettype(int era, int card);
int* cards_getproduction(int era, int card);
char* getname(int res);
int gettypecolor(int type);
int* cards_getcoupons(int era, int card);
int* cards_getcouponed(int era, int card);
char* cards_specialmessage(int era, int card);
int data_getera();
int* data_gethand(int p);
int* get_special(int era, int card, int player);
void arraycpy(int *from, int *to, int len);
void io_init()
{
initscr();
clear();
noecho();
cbreak();
curs_set(0);
keypad(stdscr, TRUE);
start_color();
use_default_colors();
//This may seem slightly conveluted, but it's the curses way.
init_pair(0, A_NORMAL, -1);
init_pair(30, COLOR_BLACK, -1);
init_pair(31, COLOR_RED, -1);
init_pair(32, COLOR_GREEN, -1);
init_pair(33, COLOR_YELLOW, -1);
init_pair(34, COLOR_BLUE, -1);
init_pair(35, COLOR_MAGENTA, -1);
init_pair(36, COLOR_CYAN, -1);
init_pair(37, COLOR_WHITE, -1);
}
int io_getkey()
{
int c;
switch(c = getch()) {
case KEY_LEFT:
return LEFT;
break;
case KEY_RIGHT:
return RIGHT;
break;
case KEY_UP:
return UP;
break;
case KEY_DOWN:
return DOWN;
break;
case KEY_ENTER:
case '\n':
case '\r':
return ENTER;
break;
default:
return c;
break;
}
}
void io_clearscreen()
{
clear();
}
void io_printname(int x, int y, int era, int card)
{
mvprintw(y, x, "# ");
attron(COLOR_PAIR(gettypecolor(cards_gettype(era, card))));
printw("%-23s", cards_getname(era, card));
attrset(A_NORMAL);
printw(" #");
}
void io_printblankline(int x, int y, int width)
{
int i;
mvprintw(y, x, "#");
for(i = 0; i < width-1; i++) printw(" ");
printw("#");
}
int io_printtext(int xorigin, int y, int width, char* text)
{
width -= 1; //padding
int x = xorigin+2;
int wordlength;
int wordstart = 0;
int i;
//start with a cleared line
io_printblankline(xorigin, y, width);
while(text[wordstart] != '\0') {
wordlength = 0;
while(text[wordstart+(wordlength++)] != ' ' && text[wordstart+wordlength] != '\0' && text[wordstart+wordlength] != '\n');
if(x-xorigin+wordlength > width || text[wordstart] == '\n') {
io_printblankline(xorigin, ++y, width);
x = xorigin+2;
}
mvprintw(y, x, "");
for(i = wordstart; i < wordstart+wordlength; i++) {
if(text[i] != '\n') addch(text[i]);
}
x += wordlength;
wordstart += wordlength;
}
return y+1;
}
void io_printborder(int x, int y, int width)
{
int i;
for(i = 0; i < width; i++)
mvprintw(y, x+i, "#");
}
int io_printcard(int x, int y, int era, int card, int player)
{
io_printborder(x, y++, 28);
if(cards_getname(era, card)[0] != '\0')
io_printname(x, y++, era, card);
int *costs = cards_getcost(era, card);
int *products = cards_getproduction(era, card);
int hasCP = 0;
int i, j, k;
for(i = 0; i < NUMRESOURCES; i++)
if(costs[i] > 0) hasCP = 1;
for(i = 0; i < NUMPRODUCTS; i++)
if(products[i] > 0) hasCP = 1;
if(hasCP) {
mvprintw(y++, x, "# Costs: | Produces: #");
i = j = -1;
while(i < NUMRESOURCES || j < NUMPRODUCTS) {
while(i < NUMRESOURCES && costs[++i] == 0);
while(j < NUMPRODUCTS && products[++j] == 0);
if(i == NUMRESOURCES && j == NUMPRODUCTS) break;
mvprintw(y++, x, "# ");
if(i < NUMRESOURCES) printw(" %d %-6s| ", costs[i], getname(i));
else printw(" | ");
int isFinal = 1;
for(k = j+1; k < NUMPRODUCTS; k++)
if(products[k]) isFinal = 0;
if(j < NUMPRODUCTS)
if(isFinal || j == GOLD || j == SHIELD || j == VP) printw(" %d %-10s #", products[j], getname(j));
else printw(" %d %-7s or #", products[j], getname(j));
else printw(" #");
}
}
char* message = cards_specialmessage(era, card);
if(message[0] != '\0')
y = io_printtext(x, y, 28, message);
int* coupons = cards_getcoupons(era, card);
if(coupons[1] || coupons[3])
{ //print the coupons!
mvprintw(y++, x, "# Coupon for: #");
if(coupons[1])
io_printname(x, y++, coupons[0], coupons[1]);
if(coupons[3])
io_printname(x, y++, coupons[2], coupons[3]);
}
coupons = cards_getcouponed(era, card);
if(coupons[1] || coupons[3])
{ //print the coupons!
mvprintw(y++, x, "# Free if owned: #");
if(coupons[1])
io_printname(x, y++, coupons[0], coupons[1]);
if(coupons[3])
io_printname(x, y++, coupons[2], coupons[3]);
}
int* special = get_special(era, card, player);
if(special[0] || special[1])
{ //print special (vp, gold)
mvprintw(y++, x, "# In your case, produces: #");
mvprintw(y++, x, "# %2d victory points #", special[0]);
mvprintw(y++, x, "# %2d gold #", special[1]);
}
io_printborder(x, y, 28);
return y;
}
int* data_getdiscards();
int print_cards(int x, int y, int *cards, int cursor);
int io_printhand(int x, int y, int player, int cursor, int mode) //mode 0 is normal, 1 is discard search
{
int hand[7];
if(mode) arraycpy(data_getdiscards(), hand, 7);
else arraycpy(data_gethand(player), hand, 7);
int i;
io_printborder(x, y++, 28);
if(mode) {
y = io_printtext(x, y, 28, " Discards");
y = print_cards(x, y, hand, cursor);
y = io_printcard(x, y, hand[cursor*2], hand[cursor*2+1], player);
}
else {
y = io_printtext(x, y, 28, " Hand");
for(i = 0; hand[i] != -1 && i < 7; i++) {
io_printname(x, y++, data_getera(), hand[i]);
if(i == cursor) {
mvprintw(y-1, x+25, "*");
}
}
y = io_printtext(x, y, 28, " Trade...");
if(i == cursor)
mvprintw(y-1, x+25, "*");
else if(cursor >= 0 && cursor < 7 && hand[cursor] != -1)
y = io_printcard(x, y, data_getera(), hand[cursor], player);
else io_printborder(x, y++, 28);
}
return y;
}
void io_printplain(int x, int y, char *s)
{
mvprintw(y, x, "%s", s);
}
void io_printcolor(int x, int y, int color, char *s)
{
attron(COLOR_PAIR(color));
io_printplain(x, y, s);
attrset(A_NORMAL);
}
|