-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenju.c
375 lines (341 loc) · 8.33 KB
/
renju.c
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
/*
Copyright (C) 2011 by the Computer Poker Research Group, University of Alberta
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#define __STDC_LIMIT_MACROS
#include <stdint.h>
#include "renju.h"
void initBoardState(BoardState *boardState)
{
boardState->lcol=0;
boardState->lrow=0;
boardState->ltype=0;
int i;
for(i=0;i<BOARD_SIZE*BOARD_SIZE;++i)
boardState->board[i] = 0;
}
uint8_t getPiece(const BoardState* bs, const uint8_t col,const uint8_t row) {
if((col<0 || col>BOARD_SIZE || row<0 || row>BOARD_SIZE))
return 3; //应该没有“3”状态,故为错误
return bs->board[col*BOARD_SIZE + row];
}
uint8_t addPiece(BoardState*bs, const uint8_t col,const uint8_t row,const uint8_t type) {
if ((col<0 || col>BOARD_SIZE || row<0 || row>BOARD_SIZE))
return 0;
if (!getPiece(bs, col, row)) {
bs->board[col*BOARD_SIZE + row] = type;
bs->lrow = row;
bs->lcol = col;
bs->ltype = type;
return 1;
} else {
return 0;
}
}
void clearBoard(BoardState*bs) {
memset(bs->board, 0, (BOARD_SIZE*BOARD_SIZE * sizeof(uint8_t)));
}
void initState( MatchState *state )
{
state->numGames = 0;
state->numActions = 0;
state->numRounds = 1;
state->firstPlayer = 1;
state->currentPlayer = state->firstPlayer;
state->finished = 0;
state->viewingPlayer = 1;
}
void resetState( MatchState *state )
{
state->finished = 0;
state->numActions = 0;
state->numRounds = 1;
state->firstPlayer = (state->firstPlayer==1)?2:1;
state->currentPlayer = state->firstPlayer;
state->viewingPlayer = state->firstPlayer;
++state->numGames;
}
int checkLine(const BoardState *boardState, const Action *action, const uint8_t secondCol, const uint8_t secondRow)
{
if(action->row==secondRow&&action->col==secondCol)
return 1;
/* with origin piece valid,
when accessing the invalided target which has the output of 3,
, the return of the following expression will be false */
if(getPiece(boardState,action->col,action->row)!=getPiece(boardState, secondCol,secondRow))
return 0;
uint8_t next_row,next_col;
if(secondRow<action->row)
next_row = secondRow + 1;
else if(secondRow>action->row)
next_row = secondRow -1;
else
next_row = secondRow;
if(secondCol<action->col)
next_col = secondCol + 1;
else if(secondCol>action->col)
next_col = secondCol - 1;
else
next_col = secondCol;
return checkLine(boardState,action,next_col,next_row);
}
int checkWinningPiece(const BoardState *boardState, const Action *action){
//检查边界五点
if(checkLine(boardState,action,action->col-4,action->row)) return 1;
if(checkLine(boardState,action,action->col-4,action->row-4)) return 1;
if(checkLine(boardState,action,action->col,action->row-4)) return 1;
if(checkLine(boardState,action,action->col+4,action->row)) return 1;
if(checkLine(boardState,action,action->col+4,action->row+4)) return 1;
if(checkLine(boardState,action,action->col,action->row+4)) return 1;
if(checkLine(boardState,action,action->col+4,action->row-4)) return 1;
if(checkLine(boardState,action,action->col-4,action->row+4)) return 1;
return 0;
}
uint8_t currentPlayer( const MatchState *state )
{
return state->currentPlayer;
}
uint8_t numRounds( const MatchState *state )
{
return state->numRounds;
}
uint8_t numAction( const MatchState *state )
{
return state->numActions;
}
int isValidAction( const BoardState *boardState,const Action *action )
{
//only when a piece is 0 will the location be valid
if(getPiece(boardState,action->col,action->row)==0){
return 1;
}else{
return 0;
}
}
void doAction( Action *action, MatchState *state ,BoardState* boardState )
{
if(action->type!=3){ //if not give up
++state->numActions;
if(state->currentPlayer==state->firstPlayer){
action->type = 1;
++state->numRounds;
}else{
action->type = 2;
}
addPiece(boardState,action->col,action->row,action->type);
state->currentPlayer = (state->currentPlayer==1)?2:1;
/*做完动作检查是否已经胜利*/
state->finished = isWin(boardState, action->type);
}else{
state->finished = (state->currentPlayer==1)?2:1; //opponent win
}
}
int isWin(const BoardState *boardState, const uint8_t type)
{
Action act;
act.type = type;
int i, j;
for (i=0; i < BOARD_SIZE; i++) {
for (j=0; j < BOARD_SIZE; j++) {
if (getPiece(boardState,i,j)==type) {
act.row = j;
act.col = i;
if (checkWinningPiece(boardState, &act))
return type; //确认胜利,返回胜利的类型
}
}
}
return 0;
}
int printMatchCommonState( const MatchState *state,
const int maxLen, char *string )
{
int c,r;
c=0;
/* General State: MATCHSTATE:viewingplayer:currentplayer:currentGames:currentRounds:finishedFlag */
/* HEADER = MATCHSTATE:viewingplayer */
r = snprintf( string, maxLen - c, "MATCHSTATE:%"SCNu8, state->viewingPlayer );
if( r < 0 ) {
return -1;
}
c += r;
/*:currentplayer*/
r = snprintf( string+c, maxLen - c, ":%"SCNu8, state->currentPlayer );
if( r < 0 ) {
return -1;
}
c += r;
/*:games*/
r = snprintf( string+c, maxLen - c, ":%"SCNu32, state->numGames );
if( r < 0 ) {
return -1;
}
c += r;
/*:rounds*/
r = snprintf( string+c, maxLen - c, ":%"SCNu8, state->numRounds );
if( r < 0 ) {
return -1;
}
c += r;
/*:finishedflag*/
r = snprintf( string+c, maxLen - c, ":%"SCNu8, state->finished );
if( r < 0 ) {
return -1;
}
c += r;
if( c >= maxLen ) {
return -1;
}
string[ c ] = 0;
return c;
}
int printMatchState( const MatchState *state, const BoardState *boardState,
const int maxLen, char *string )
{
int c,t;
c=0;
t = printMatchCommonState(state,maxLen,string);
c += t;
if(state->numActions!=0){
Action act;
act.row = boardState->lrow;
act.col = boardState->lcol;
act.type = boardState->ltype;
t = printAction(&act, maxLen - c, string + c);
c += t;
}else{
string[c] = ':';
++c;
}
return c;
}
int readMatchState( const char *string,const MatchState *state)
{
int c=0, t;
uint8_t tempNum;
uint32_t tempNum32;
/* General State: MATCHSTATE:viewingplayer:currentplayer
:currentGames:currentRounds:finishedFlag */
/*viewingplayer*/
if (sscanf(string , "MATCHSTATE:%"SCNu8"%n", &tempNum, &t) < 1) {
return -1;
}
//viewing player bu zuo pan duan
c += t;
/* currentplayer */
if (sscanf(string+c, ":%"SCNu8"%n", &tempNum, &t) < 1) {
return -1;
}
if(tempNum!=state->currentPlayer){
return -1;
}
c += t;
/* currentGames */
if (sscanf(string+c, ":%"SCNu32"%n", &tempNum32, &t) < 1) {
return -1;
}
if(tempNum32!=state->numGames){
return -1;
}
c += t;
/* currentRounds */
if (sscanf(string+c, ":%"SCNu8"%n", &tempNum, &t) < 1) {
return -1;
}
if(tempNum!=state->numRounds){
return -1;
}
c += t;
/* finished flag */
if (sscanf(string+c, ":%"SCNu8"%n", &tempNum, &t) < 1) {
return -1;
}
if(tempNum!=state->finished){
return -1;
}
c += t;
return c;
}
int readAction( const char *string, Action *action )
{
int c=0, t;
uint8_t tempNum;
/* General Action: col/row */
/*col*/
if (sscanf(string , "%"SCNu8"%n", &tempNum, &t) < 1) {
return -1;
}
action->col = tempNum;
c += t;
/* row */
if (sscanf(string+c, "/%"SCNu8"%n", &tempNum, &t) < 1) {
return -1;
}
action->row = tempNum;
c += t;
return c;
}
int printState( const MatchState *state,const int maxLen, char *string )
{
int c,r;
c=0;
/* General State: MATCHSTATE:currentGames:totalRounds:finishedFlag */
/* HEADER = MATCH:currentGames */
r = snprintf( string, maxLen - c, "MATCH:%"SCNu32, state->numGames );
if( r < 0 ) {
return -1;
}
c += r;
/*:totalRounds*/
r = snprintf( string+c, maxLen - c, ":%"SCNu8, state->numRounds );
if( r < 0 ) {
return -1;
}
c += r;
/*:finishedFlag*/
r = snprintf( string+c, maxLen - c, ":%"SCNu8, state->finished );
if( r < 0 ) {
return -1;
}
c += r;
if( c >= maxLen ) {
return -1;
}
string[ c ] = 0;
return c;
}
int printAction( const Action *action,
const int maxLen, char *string )
{
int c, r;
c = 0;
/* :Action */
/* Action = col/row/type */
r = snprintf(&string[c], maxLen - c, ":%"PRIu8,
action->col);
if (r < 0) {
return -1;
}
c += r;
r = snprintf(&string[c], maxLen - c, "/%"PRIu8,
action->row);
if (r < 0) {
return -1;
}
c += r;
r = snprintf(&string[c], maxLen - c, "/%"PRIu8,
action->type);
if (r < 0) {
return -1;
}
c += r;
if (c >= maxLen) {
return -1;
}
string[c] = 0;
return c;
}