37 lines
722 B
C
37 lines
722 B
C
//#include <stdio.h>
|
|
|
|
#include "bug.h"
|
|
|
|
#include "chessdefs.h"
|
|
#include "bitboard.h"
|
|
#include "position.h"
|
|
#include "fen.h"
|
|
|
|
int main(int ac, char**av)
|
|
{
|
|
pos_t *pos;
|
|
|
|
const char *fen;
|
|
char revfen[128];
|
|
int comp;
|
|
//debug_init(5, stderr, true);
|
|
//pos_pool_init();
|
|
bitboard_init();
|
|
pos = pos_new();
|
|
if (ac == 1) {
|
|
fen = startfen;
|
|
startpos(pos);
|
|
} else {
|
|
fen = av[1];
|
|
fen2pos(pos, fen);
|
|
}
|
|
pos_print(pos);
|
|
|
|
pos2fen(pos, revfen);
|
|
//printf("reverse fen=[%s]\n", pos2fen(pos, NULL));
|
|
comp = strcmp(fen, revfen);
|
|
printf("compare=%d - %s\n", comp, comp? "NOK": "OK");
|
|
pos_print_board_raw(pos, 0);
|
|
pos_print_board_raw(pos, 1);
|
|
}
|