From 843777bb3395730392eea2e54c0dd4aae5e019ac Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Thu, 28 Nov 2013 13:30:40 +0100 Subject: [PATCH] Allow castling and e.p. to be edited in opening book --- book.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/book.c b/book.c index 2bb542f..ec3f543 100644 --- a/book.c +++ b/book.c @@ -759,6 +759,9 @@ TextToMoves (char *text, int moveNum, entry_t *entries) text = strstr(text, yy_textstr) + strlen(yy_textstr); // skip what we parsed if(!valid || moveType != NormalMove && moveType != WhiteDrop && moveType != BlackDrop && moveType != WhitePromotion && moveType != BlackPromotion + && moveType != WhiteCapturesEnPassant && moveType != BlackCapturesEnPassant + && moveType != WhiteKingSideCastle && moveType != BlackKingSideCastle + && moveType != WhiteQueenSideCastle && moveType != BlackQueenSideCastle && moveType != WhiteNonPromotion && moveType != BlackNonPromotion) continue; if(*text == ' ' && sscanf(text+1, "{%hd/%hd}", &entries[count].learnPoints, &entries[count].learnCount) == 2) { text = strchr(text+1, '}') + 1; -- 1.7.0.4