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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
/*
This file is part of ct.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with ct. If not, see <https://www.gnu.org/licenses/>.
*/
#include "actions.h"
#include "tak.h"
#include <stdio.h>
static uint8_t al_board_size;
// ===================================================================
// Helper method declarations
// ===================================================================
#define DANGER_MIN(a, b) (((a) < (b)) ? (a) : (b))
#define CLR_STONE NUM_MASK
static inline void list_append(action_list_t *list, const enum A_TYPE type,
const int8_t loc, const uint8_t data0,
const uint8_t data1);
static inline void list_prepend(action_list_t *list, const enum A_TYPE type,
const int8_t loc, const uint8_t data0,
const uint8_t data1);
static inline void inline_next_ply(tak_state_p state);
static inline void inline_prev_ply(tak_state_p state);
static inline uint8_t check_no_overflow(tak_state_p state, const uint8_t loc,
const int8_t delta, const uint8_t num,
const uint8_t steps,
const uint8_t gaps);
// ===================================================================
// Exported method implementations
// ===================================================================
int action_move_to_front(const action_t action, action_list_t *list) {
action_node_t *n = list->head;
// TODO: what if it's not in the list?
while (n) {
if (n->action == action) {
const action_t t = list->head->action;
list->head->action = action;
n->action = t;
return EXIT_SUCCESS;
}
n = n->next;
}
return EXIT_FAILURE;
}
void action_list_free(action_list_t *list) {
if (list) {
action_node_t *n = list->head, *nn;
while (n) {
nn = n->next;
free(n);
n = nn;
}
free(list);
}
}
// Keep track of move offsets
int8_t move_deltas[4];
void action_list_init(const uint8_t board_size) {
al_board_size = board_size;
move_deltas[0] = +board_size;
move_deltas[1] = -board_size;
move_deltas[2] = -1;
move_deltas[3] = +1;
}
// We bias place over move by prepending place actions and appending
// move actions to the generated list
action_list_t *action_list_generate(tak_state_p state) {
action_list_t *list = malloc(sizeof(struct action_list_s));
// TODO: trap errno
list->length = 0;
list->head = NULL;
/*
* The check for whether it's a black piece to be played is actually
* black = (ply < 2) ? (ply==1) : (ply & 1),
* but material will always be sufficient in ply < 2 so we might as
* well save on the conditional.
*/
const uint8_t material =
(state->ply & 1) ? state->black_count : state->white_count,
flat = material & 0x7F,
cap = ((state->ply >= 2) && (material & 0x80)),
standing = ((state->ply >= 2) && flat);
// Step across the board
for (int row = 0; row < state->board_size; row++) {
for (int col = 0; col < state->board_size; col++) {
// We'll need these at various points: the location of this
// square and the maximum number of stones we could pick up
const int loc = THE_COORDS(al_board_size, col, row);
const uint8_t count = DANGER_MIN(COUNT_AT(state, loc), al_board_size);
// Only try moves after CPS and if the colour is correct
if (count) {
if (state->ply >= 2 &&
((state->colours[loc] & 1) == state->current_colour)) {
// Pre-compute end-stops and crushes
uint8_t end_stops[4], crushes[4] = {0, 0, 0, 0};
// These are upper bounds, not counting walls and such.
// UP DOWN LEFT RIGHT
end_stops[0] = DANGER_MIN(al_board_size - row - 1, count);
end_stops[1] = DANGER_MIN(row, count);
end_stops[2] = DANGER_MIN(col, count);
end_stops[3] = DANGER_MIN(al_board_size - col - 1, count);
// Now we check for caps and walls
const uint8_t cap_top = STONE_AT(state, loc) == STONE_CAPSTONE;
for (int d = 0; d < 4; d++) {
const int delta = move_deltas[d];
const int stop = end_stops[d];
end_stops[d] = 0;
for (int k = 1; k <= stop; k++) {
const enum STONE_VARIANT stone = STONE_AT(state, loc + k * delta);
if (stone == STONE_STANDING) {
if (cap_top) {
crushes[d] = k;
end_stops[d]++;
}
break;
} else if (stone == STONE_CAPSTONE) {
break;
}
end_stops[d]++;
}
}
/*
* For each direction, generate all possible ordered integer
* partitions of 1 ≤ num ≤ count whose number of summands is in the
* range 1 ≤ # summands ≤ min(end_stops[dir], num) -- we write
* summands as steps.
*
* We exploit the `gaps' bijection here and elsewhere between ordered
* {integer partitions of n with s summands} and {binary strings of
* length n-1 with s-1 set bits}.
*/
for (enum MOVE_DIRECTION dir = M_UP; dir <= M_RIGHT; dir++) {
const int8_t delta = move_deltas[dir];
for (uint8_t num = 1; num <= count; num++) {
for (uint8_t steps = 1; steps <= end_stops[dir] && steps <= num;
steps++) {
uint8_t gaps = ((1 << (al_board_size - 2)) - 1) >>
(al_board_size - steps - 1);
// For 5x5 this gives 0b0000[0XXX] where steps-1 of those X's
// are 1s (starting with LSB) because 4-1=3 and 5-1=4
do {
/*
* We skip the partition if it calls for multiple stones at
* the end with a crush, or if it would cause any stack to
* grow beyond height 15.
*/
const uint8_t no_overflow =
check_no_overflow(state, loc, delta, num, steps, gaps);
const uint8_t last_drop_check =
(num > 1) ? (gaps & (1 << (num - 2))) : 1;
const uint8_t can_and_must_crush =
crushes[dir] == steps && last_drop_check;
const uint8_t crush_check =
can_and_must_crush || crushes[dir] != steps;
if (no_overflow && crush_check) {
// Store the move
list_append(list, A_MOVE, loc,
(can_and_must_crush << 7) | gaps,
(dir << 4) | num);
}
/*
* With thanks to
* https://graphics.stanford.edu/~seander/bithacks.html#NextBitPermutation
* we have the following magic to generate the next
* permutation of steps-many set bits
*/
uint8_t t = (gaps | (gaps - 1));
gaps =
(t + 1) | (((~t & -~t) - 1) >> (__builtin_ctz(gaps) + 1));
} while (gaps && (gaps + 1 <= (1 << (num - 1))));
}
}
}
}
} // end of if (count) { ... }
else if (material) {
// Empty square, generate placements
if (flat) {
list_prepend(list, A_PLACE, loc, STONE_FLAT, 0);
if (standing)
list_prepend(list, A_PLACE, loc, STONE_STANDING, 0);
}
if (cap)
list_prepend(list, A_PLACE, loc, STONE_CAPSTONE, 0);
}
}
}
return list;
}
void action_take(tak_state_p state, const action_t action) {
const int8_t loc = A_GET_LOC(action);
if (A_GET_TYPE(action) == A_PLACE) {
const uint8_t black = (state->current_colour == C_BLACK);
switch (A_GET_DATA0(action)) {
case STONE_FLAT: {
if (black)
state->black_count--;
else
state->white_count--;
state->colours[loc] = state->current_colour;
state->celldat[loc] = NUM_INC | STONE_FLAT;
break;
}
case STONE_STANDING: {
if (black)
state->black_count--;
else
state->white_count--;
state->colours[loc] = state->current_colour;
state->celldat[loc] = NUM_INC | STONE_STANDING;
break;
}
default: {
if (black)
state->black_count &= 0x7F;
else
state->white_count &= 0x7F;
state->colours[loc] = state->current_colour;
state->celldat[loc] = NUM_INC | STONE_CAPSTONE;
break;
}
}
} else {
/*
* See the discussion around line 160 for an explanation of the encoding.
* Here we are not interested in whether we crushed, it will work out by
* anyway because we overwrite the top stone type. See (*) later for when we
* do need to know.
*/
const uint8_t gaps = A_GET_DATA0(action) & 0x7F,
num = A_GET_DATA1(action) & 0x0F, // unpack
dir = A_GET_DATA1(action) >> 4;
int8_t delta = move_deltas[dir];
// Use the Kernighan method to count the set bits
int8_t steps = 1;
for (uint8_t _gaps = gaps; _gaps; steps++)
_gaps &= _gaps - 1;
// Move top stone type to destination
state->celldat[loc + steps * delta] &= CLR_STONE; // necessary for crushing
state->celldat[loc + steps * delta] |= STONE_AT(state, loc);
state->celldat[loc] &= CLR_STONE;
state->celldat[loc] |= STONE_FLAT; // should be optimised out
uint8_t total = 1, gap_bit = 1 << (num - 2); // it's not important what
// negative shifts do here, we
// don't use gap_bit if num < 2
// move stuff starting at destination
for (uint8_t d = 1; d < num; d++, total++, gap_bit >>= 1) {
// We took a step, move everything over so far
if (gaps & gap_bit) {
state->colours[loc + steps * delta] <<= total;
state->colours[loc + steps * delta] |=
state->colours[loc] & ((1 << total) - 1);
state->colours[loc] >>= total;
state->celldat[loc + steps * delta] += total * NUM_INC;
state->celldat[loc] -= total * NUM_INC;
// Reset for next step
total = 0;
steps--;
}
}
// Move what remains (steps == 1 here always, so we simplify)
state->colours[loc + delta] <<= total;
state->colours[loc + delta] |= state->colours[loc] & ((1 << total) - 1);
state->colours[loc] >>= total;
state->celldat[loc + delta] += total * NUM_INC;
state->celldat[loc] -= total * NUM_INC;
}
// Next ply
inline_next_ply(state);
}
void action_undo(tak_state_p state, const action_t action) {
// Previous ply
inline_prev_ply(state);
const int8_t loc = A_GET_LOC(action);
if (A_GET_TYPE(action) == A_PLACE) {
const uint8_t black = (state->current_colour == C_BLACK);
state->celldat[loc] = 0;
if (A_GET_DATA0(action) == STONE_CAPSTONE) {
if (black)
state->black_count |= 0x80;
else
state->white_count |= 0x80;
} else {
if (black)
state->black_count++;
else
state->white_count++;
}
} else {
// See action_take for comments, this is the time reversal, but
// there is one caveat -- undoing a crush! (*)
const uint8_t gaps = A_GET_DATA0(action) & 0x7F,
crush = A_GET_DATA0(action) & 0x80,
num = A_GET_DATA1(action) & 0x0F,
dir = A_GET_DATA1(action) >> 4;
const int8_t delta = move_deltas[dir];
int8_t steps = 1;
uint8_t gap_bit = 1, total = 1;
for (int8_t d = 1; d < num; d++, total++, gap_bit <<= 1) {
if (gaps & gap_bit) {
state->colours[loc] <<= total;
state->colours[loc] |=
state->colours[loc + steps * delta] & ((1 << total) - 1);
state->colours[loc + steps * delta] >>= total;
state->celldat[loc] += total * NUM_INC;
state->celldat[loc + steps * delta] -= total * NUM_INC;
total = 0;
steps++;
}
}
state->colours[loc] <<= total;
state->colours[loc] |=
state->colours[loc + steps * delta] & ((1 << total) - 1);
state->colours[loc + steps * delta] >>= total;
state->celldat[loc] += total * NUM_INC;
// celldat[loc] &= CLR_STONE; is not necessary, as STONE_FLAT == 0
state->celldat[loc] |= STONE_AT(state, loc + steps * delta);
state->celldat[loc + steps * delta] -= total * NUM_INC;
state->celldat[loc + steps * delta] &= CLR_STONE;
if (crush) {
state->celldat[loc + steps * delta] |= STONE_STANDING;
} else {
state->celldat[loc + steps * delta] |=
STONE_FLAT; // should be optimised out
}
}
}
void action_to_ptn(const action_t action, char *out_ptn) {
const int8_t loc = A_GET_LOC(action);
if (A_GET_TYPE(action) == A_PLACE) {
generate_place(al_board_size, loc, A_GET_DATA0(action), out_ptn);
} else {
const uint8_t gaps = A_GET_DATA0(action) & 0x7F,
num = A_GET_DATA1(action) & 0x0F, // unpack
dir = A_GET_DATA1(action) >> 4;
uint8_t drops[al_board_size]; // we only ever need al_board_size-1 in drops
// actually, the last spot is to skip a bounds
// check at (**)
uint8_t mask = 1, steps = 0;
// Translate to a drop sequence
drops[0] = 1;
mask = 1;
for (uint8_t d = 1; d < num; d++) {
if (gaps & mask) {
steps++;
drops[steps] = 1; // (**) no bounds check
} else {
drops[steps] += 1;
}
mask <<= 1;
}
generate_move(al_board_size, loc, dir, steps + 1, drops, out_ptn);
}
}
// ===================================================================
// Helper method implementations
// ===================================================================
static inline void list_append(action_list_t *list, const enum A_TYPE type,
const int8_t loc, const uint8_t data0,
const uint8_t data1) {
action_node_t *new = malloc(sizeof(action_node_t));
// TODO: trap errno
new->next = NULL;
new->action = A_BUILD(type, loc, data0, data1);
if (list->length) {
list->tail->next = new;
list->tail = new;
} else {
list->head = new;
list->tail = new;
}
list->length++;
}
static inline void list_prepend(action_list_t *list, const enum A_TYPE type,
const int8_t loc, const uint8_t data0,
const uint8_t data1) {
action_node_t *new = malloc(sizeof(action_list_t));
// TODO: trap errno
new->next = list->head;
list->head = new;
new->action = A_BUILD(type, loc, data0, data1);
if (list->length == 0) {
list->tail = new;
}
list->length++;
}
static inline void inline_next_ply(tak_state_p state) {
state->ply++;
if (state->ply == 2) {
state->current_colour = C_WHITE;
} else {
if (state->current_colour == C_BLACK)
state->current_colour = C_WHITE;
else
state->current_colour = C_BLACK;
}
}
static inline void inline_prev_ply(tak_state_p state) {
if (state->ply > 0)
state->ply--;
if (state->ply == 1) {
state->current_colour = C_WHITE;
} else {
if (state->current_colour == C_BLACK)
state->current_colour = C_WHITE;
else
state->current_colour = C_BLACK;
}
}
static inline uint8_t check_no_overflow(tak_state_p state, const uint8_t loc,
const int8_t delta, const uint8_t num,
const uint8_t steps,
const uint8_t gaps) {
uint8_t total = 1, gap_bit = 1 << (num - 2), step = steps;
for (uint8_t d = 1; d < num; d++, total++, gap_bit >>= 1) {
if (gaps & gap_bit) {
if (COUNT_AT(state, loc + step * delta) + total > 15)
return 0;
step--;
total = 0;
}
}
if (COUNT_AT(state, loc + delta) + total > 15)
return 0;
return 1;
}
|