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
use rand::{Rng, thread_rng};
use analysis;
use impls::tak::{Color, Direction, Piece};
use impls::tak::ply::Ply;
use impls::tak::state::State;
lazy_static! {
static ref SLIDE_TABLE: Vec<Vec<Vec<u8>>> = generate_slide_table(8);
}
impl analysis::Extrapolatable<Ply> for State {
fn extrapolate(&self) -> Vec<Ply> {
let mut plies = Vec::new();
let next_color = if self.ply_count % 2 == 0 {
Color::White
} else {
Color::Black
};
if self.ply_count >= 2 {
for (x, column) in self.board.iter().enumerate() {
for (y, stack) in column.iter().enumerate() {
if stack.is_empty() {
plies.push(Ply::Place {
x: x,
y: y,
piece: Piece::Flatstone(next_color),
});
plies.push(Ply::Place {
x: x,
y: y,
piece: Piece::StandingStone(next_color),
});
match next_color {
Color::White => if self.p1_capstones > 0 {
plies.push(Ply::Place {
x: x,
y: y,
piece: Piece::Capstone(next_color),
});
},
Color::Black => if self.p2_capstones > 0 {
plies.push(Ply::Place {
x: x,
y: y,
piece: Piece::Capstone(next_color),
});
},
}
} else if stack.last().unwrap().get_color() == next_color {
let board_size = self.board.len();
for &(direction, distance) in &[
(Direction::North, board_size - 1 - y),
(Direction::East, board_size - 1 - x),
(Direction::South, y),
(Direction::West, x),
] {
let max_grab = if stack.len() <= board_size {
stack.len()
} else {
board_size
};
for drops in &SLIDE_TABLE[max_grab] {
if drops.len() <= distance {
plies.push(Ply::Slide {
x: x,
y: y,
direction: direction,
drops: drops.clone(),
});
}
}
}
}
}
}
} else {
for (x, column) in self.board.iter().enumerate() {
for (y, stack) in column.iter().enumerate() {
if stack.is_empty() {
plies.push(Ply::Place {
x: x,
y: y,
piece: Piece::Flatstone(next_color.flip()),
});
}
}
}
}
thread_rng().shuffle(&mut plies);
plies
}
}
fn generate_slide_table(size: u8) -> Vec<Vec<Vec<u8>>> {
let mut result: Vec<Vec<Vec<u8>>> = Vec::with_capacity(size as usize);
result.push(Vec::new());
for stack in 1..(size + 1) {
let mut out = Vec::with_capacity((2 as usize).pow(stack as u32) - 1);
for i in 1..(stack + 1) {
out.push(vec![i]);
for sub in &result[(stack - i) as usize] {
let mut t = vec![0; sub.len() + 1];
t[0] = i;
t[1..].clone_from_slice(sub);
out.push(t);
}
}
result.push(out);
}
result
}