-
Notifications
You must be signed in to change notification settings - Fork 0
/
field.d
337 lines (301 loc) · 7.41 KB
/
field.d
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
import std.c.stdlib, std.algorithm, std.conv,
std.container, std.random, std.exception;
import exception;
enum{BLANK, RED, YELLOW};
struct Field
{
private byte[] field_body;
private int m_dim;
private byte m_turn;
private immutable int NUM_MOKU;
private int[] current_top;
private SList!(int) history;
this(int m_dim)
{
this.m_dim = m_dim;
field_body.length = m_dim^^2;
m_turn = RED;
current_top.length = m_dim;
current_top[] = m_dim;
NUM_MOKU = 4;
}
bool opEquals(ref const Field o)
{
return this.field_body[] == o.field_body[];
}
int opCmp(ref const Field o)
{
return this.field_body[] >= o.field_body[];
}
byte get(int x, int y)
in{
assert(0 <= x && x < m_dim && 0 <= y && y < m_dim);
}
out(result){
assert(result == RED || result == YELLOW
|| result == BLANK);
}
body{
return field_body[x + m_dim * y];
}
private void set(int x, int y, byte var)
in{
assert(0 <= x && x < m_dim);
assert(0 <= y && y < m_dim);
assert(var == RED || var == YELLOW || var == BLANK);
}
body{
field_body[x + m_dim * y] = var;
}
@property int dim(){return m_dim;}
@property int turn(){return m_turn;}
void setDim(int m_dim)
{
if(m_dim <= 0){
throw new NonPositiveException("Non positive error",
m_dim);
}
this.m_dim = m_dim;
field_body.length = this.m_dim^^2;
clear();
}
byte reverseTurn()
{
return m_turn == RED ? YELLOW : RED;
}
void clear()
{
foreach(ref byte var; field_body){
var = 0;
}
current_top[] = m_dim;
history.clear();
m_turn = RED;
}
void unput()
{
if(history.empty()){
throw new NoHistoryException("History error");
}
set(history.front(), current_top[history.front()], BLANK);
current_top[history.front()]++;
history.removeFront();
m_turn = reverseTurn();
}
void put(int x)
{
if(x < 0 || m_dim <= x){
throw new OutOfFieldException("Invalid input", x);
assert(false);
}
if(get(x, 0) != BLANK){
throw new FullColumnException("Invalid input", x);
assert(false);
}
// current_topは実際に石が置かれている場所を指すので-1しなければならない
set(x, current_top[x] - 1, m_turn);
// for(int i = m_dim - 1; i >= 0; i--){
// if(get(x, i) == BLANK){
// set(x, i, m_turn);
// break;
// }
// }
current_top[x]--;
history.insertFront(x);
m_turn = reverseTurn();
}
bool isWin(int x)
in{
assert(0 <= x && x < m_dim);
}
body{
byte y = 0;
while(y < m_dim && get(x, y) == BLANK){
y++;
}
if(m_dim <= y){
return false;
}
byte color = get(x, y);
bool result;
// 列のチェック
result = findFour(x, 0, false, true, false, false, 0, 0, 0, color);
if(result) return result;
// 行のチェック
result = findFour(0, y, true, false, false, false, 0, 0, 0, color);
if(result) return result;
// 斜め(左上から右下)のチェック
result = findFour(x, y, true, true, false, false, abs(x - y),
-min(x, y), -min(x, y), color);
if(result) return result;
// 斜め(左下から右上)のチェック
result = findFour(x, y, true, true, false, true, abs(x - (dim - y - 1)),
-min(x, m_dim - y - 1), min(x, m_dim - y - 1), color);
if(result) return result;
// 列のチェック
// bool inCheck = false;
// int count = 0;
// for(int i = 0; i < m_dim; i++){
// if(!inCheck && get(x, i) == turn){
// inCheck = true;
// count++;
// }else if(inCheck && get(x, i) != turn){
// if(count == NUM_MOKU) return true;
// inCheck = false;
// count = 0;
// }else if(inCheck && get(x, i) == turn){
// count++;
// }
// }
// if(count == NUM_MOKU){
// return true;
// }
// // 行のチェック
// inCheck = false;
// count = 0;
// for(int i = 0; i < m_dim; i++){
// if(!inCheck && get(i, y) == turn){
// inCheck = true;
// count++;
// }else if(inCheck && get(i, y) != turn){
// if(count == NUM_MOKU) return true;
// inCheck = false;
// count = 0;
// }else if(inCheck && get(i, y) == turn){
// count++;
// }
// }
// if(count == NUM_MOKU){
// return true;
// }
// 斜め(左上から右下)のチェック
// inCheck = false;
// count = 0;
// int offset = min(x, y);
// for(int i = 0; i < m_dim - abs(x - y); i++){
// if(!inCheck && get(x + i - offset, y + i - offset) == turn){
// inCheck = true;
// count++;
// }else if(inCheck && get(x + i - offset, y + i - offset) != turn){
// if(count == NUM_MOKU) return true;
// inCheck = false;
// count = 0;
// }else if(inCheck && get(x + i - offset, y + i - offset) == turn){
// count++;
// }
// }
// if(count == NUM_MOKU){
// return true;
// }
// // 斜め(左下から右上)のチェック
// inCheck = false;
// count = 0;
// offset = min(x, m_dim - y - 1);
// for(int i = 0; i < m_dim - abs(x - (dim - y - 1)); i++){
// if(!inCheck && get(x + i - offset, y - i + offset) == turn){
// inCheck = true;
// count++;
// }else if(inCheck && get(x + i - offset, y - i + offset) != turn){
// if(count == NUM_MOKU) return true;
// inCheck = false;
// count = 0;
// }else if(inCheck && get(x + i - offset, y - i + offset) == turn){
// count++;
// }
// }
// if(count == NUM_MOKU){
// return true;
// }
return false;
}
bool isEmpty(int x)
in{
assert(0 <= x && x < m_dim);
}
body{
if(get(x, 0) == BLANK) return true;
else return false;
}
bool isFull()
{
for(int i = 0; i < m_dim; i++){
if(isEmpty(i)){
return false;
}
}
return true;
}
template direction(int n){
static if(n == 0){
int xi = x;
int yi = i;
}else{
int xi = i;
int yi = y;
}
}
private bool findFour(int x, int y, bool isXI, bool isYI,
bool isXINeg, bool isYINeg,
int loopOffset,
int getXOffset, int getYOffset,
byte color)
{
bool inCheck = false;
int count = 0;
int xi;
int yi;
for(int i = 0; i < m_dim - loopOffset; i++){
xi = x + (isXI ? i : 0) * (isXINeg ? -1 : 1)
+ getXOffset;
yi = y + (isYI ? i : 0) * (isYINeg ? -1 : 1)
+ getYOffset;
if(!inCheck && get(xi, yi) == color){
inCheck = true;
count++;
}else if(inCheck && get(xi, yi) != color){
if(count == NUM_MOKU){
return true;
}
inCheck = false;
count = 0;
}else if(inCheck && get(xi, yi) == color){
count++;
}
}
if(count == NUM_MOKU){
return true;
}
return false;
}
unittest
{
Field fd = Field(6);
// UI cui = new CUI();
// fd.put(2);
// cui.display(fd);
// fd.put(3);
// cui.display(fd);
// fd.put(0);
// cui.display(fd);
// fd.unput();
// cui.display(fd);
// fd.unput();
// cui.display(fd);
// fd.put(0);
// cui.display(fd);
// fd.clear();
// cui.display(fd);
// fd.put(3);
// cui.display(fd);
// fd.put(3);
// cui.display(fd);
// fd.unput();
// cui.display(fd);
// fd.unput();
// cui.display(fd);
// fd.unput();
// cui.display(fd);
// fd.unput();
// cui.display(fd);
}
}