-
Notifications
You must be signed in to change notification settings - Fork 0
/
MoveScope.hpp
258 lines (210 loc) · 5.69 KB
/
MoveScope.hpp
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
#pragma once
#include <Piece.hpp>
#include <MoveLine.hpp>
// kind of like lock_scope, but for moves
template <typename BoardT>
struct MoveScope {
BoardT &b;
bool is_acting_scope = true;
// make a move on constructor
INLINE explicit MoveScope(BoardT &b, move_t m) noexcept:
b(b)
{
b.make_move(m);
}
explicit MoveScope(const MoveScope &other) = delete;
explicit INLINE MoveScope(MoveScope &&other):
b(other.b)
{
other.is_acting_scope = false;
}
// unmake a move when leaving scope
INLINE ~MoveScope() noexcept {
if(!is_acting_scope)return;
b.retract_move();
}
};
// kind of like lock_scope, but for moves
template <typename BoardT>
struct MoveUnfinalizedScope {
BoardT &b;
bool is_acting_scope = true;
// make a move on constructor
INLINE explicit MoveUnfinalizedScope(BoardT &b, move_t m) noexcept:
b(b)
{
//b.make_move_unfinalized(m);
b.make_move(m);
}
explicit MoveUnfinalizedScope(const MoveUnfinalizedScope &other) = delete;
explicit INLINE MoveUnfinalizedScope(MoveUnfinalizedScope &&other):
b(other.b)
{
other.is_acting_scope = false;
}
// unmake a move when leaving scope
INLINE ~MoveUnfinalizedScope() noexcept {
if(!is_acting_scope)return;
b.retract_move();
}
};
template <typename BoardT>
INLINE decltype(auto) make_move_scope(BoardT &b, move_t m) {
return MoveScope<BoardT>(b, m);
}
template <typename BoardT>
INLINE decltype(auto) make_move_unfinalized_scope(BoardT &b, move_t m) {
return MoveUnfinalizedScope<BoardT>(b, m);
}
template <typename BoardT>
struct RecursiveMoveScope {
BoardT &b;
int counter = 0;
bool is_acting_scope = true;
INLINE explicit RecursiveMoveScope(BoardT &b) noexcept:
b(b)
{}
explicit RecursiveMoveScope(const RecursiveMoveScope &other) = delete;
INLINE explicit RecursiveMoveScope(RecursiveMoveScope &&other):
b(other.b), counter(other.counter)
{
other.is_acting_scope = false;
}
INLINE void scope(move_t m) {
b.make_move(m);
++counter;
}
INLINE ~RecursiveMoveScope() {
if(!is_acting_scope)return;
for(int i = 0; i < counter; ++i) {
b.retract_move();
}
}
};
template <typename BoardT>
struct RecursiveMoveUnfinalizedScope {
BoardT &b;
int counter = 0;
bool is_acting_scope = true;
INLINE explicit RecursiveMoveUnfinalizedScope(BoardT &b) noexcept:
b(b)
{}
explicit RecursiveMoveUnfinalizedScope(const RecursiveMoveUnfinalizedScope &other) = delete;
INLINE explicit RecursiveMoveUnfinalizedScope(RecursiveMoveUnfinalizedScope &&other):
b(other.b), counter(other.counter)
{
other.is_acting_scope = false;
}
INLINE void scope(move_t m) {
//b.make_move_unfinalized(m);
b.make_move(m);
++counter;
}
INLINE ~RecursiveMoveUnfinalizedScope() {
if(!is_acting_scope)return;
for(int i = 0; i < counter; ++i) {
b.retract_move();
}
}
};
template <typename BoardT>
INLINE decltype(auto) make_recursive_move_scope(BoardT &b) {
return RecursiveMoveScope<BoardT>(b);
}
template <typename BoardT>
INLINE decltype(auto) make_recursive_move_unfinalized_scope(BoardT &b) {
return RecursiveMoveUnfinalizedScope<BoardT>(b);
}
template <typename BoardT>
struct MoveLineScope {
BoardT &b;
MoveLine &mline;
bool is_acting_scope = true;
INLINE explicit MoveLineScope(BoardT &b, move_t m, MoveLine &mline):
b(b), mline(mline)
{
b.make_move(m);
mline.premove(m);
}
explicit MoveLineScope(const MoveLineScope &other) = delete;
INLINE explicit MoveLineScope(MoveLineScope &&other):
b(other.b), mline(other.mline)
{
other.is_acting_scope = false;
}
INLINE ~MoveLineScope() {
if(!is_acting_scope)return;
mline.recall();
b.retract_move();
}
};
template <typename BoardT>
struct MoveLineUnfinalizedScope {
BoardT &b;
MoveLine &mline;
bool is_acting_scope = true;
INLINE explicit MoveLineUnfinalizedScope(BoardT &b, move_t m, MoveLine &mline):
b(b), mline(mline)
{
b.make_move_unfinalized(m);
mline.premove(m);
}
explicit MoveLineUnfinalizedScope(const MoveLineUnfinalizedScope &other) = delete;
INLINE explicit MoveLineUnfinalizedScope(MoveLineUnfinalizedScope &&other):
b(other.b), mline(other.mline)
{
other.is_acting_scope = false;
}
INLINE ~MoveLineUnfinalizedScope() {
if(!is_acting_scope)return;
mline.recall();
b.retract_move();
}
};
template <typename BoardT>
INLINE decltype(auto) make_mline_scope(BoardT &b, move_t m, MoveLine &mline) {
return MoveLineScope<BoardT>(b, m, mline);
}
template <typename BoardT>
INLINE decltype(auto) make_mline_unfinalized_scope(BoardT &b, move_t m, MoveLine &mline) {
return MoveLineUnfinalizedScope<BoardT>(b, m, mline);
}
template <typename BoardT>
struct RecursiveMoveLineScope {
BoardT &b;
MoveLine &mline;
int counter = 0;
bool is_acting_scope = true;
INLINE explicit RecursiveMoveLineScope(BoardT &b, MoveLine &mline):
b(b), mline(mline)
{}
explicit RecursiveMoveLineScope(const RecursiveMoveLineScope &other) = delete;
INLINE explicit RecursiveMoveLineScope(RecursiveMoveLineScope &&other):
b(other.b), mline(other.mline), counter(other.counter)
{
other.is_acting_scope = false;
}
INLINE void scope(move_t m) {
b.make_move(m);
mline.premove(m);
++counter;
}
INLINE void unscope() {
assert(counter > 0);
mline.recall();
b.retract_move();
--counter;
}
INLINE ~RecursiveMoveLineScope() {
if(!is_acting_scope)return;
for(int i = 0; i < counter; ++i) {
b.retract_move();
}
mline.recall_n(counter);
counter = 0;
}
};
template <typename BoardT>
INLINE decltype(auto) make_recursive_mline_scope(BoardT &b, MoveLine &mline) {
return RecursiveMoveLineScope<BoardT>(b, mline);
}