CuckooChess: Fixed broken handling of UCI "searchmoves".

This commit is contained in:
Peter Osterlund 2012-01-17 23:34:41 +00:00
parent e4b468d88d
commit 7a762d1ff0
2 changed files with 12 additions and 4 deletions

View File

@ -129,8 +129,8 @@ public class EngineControl {
computeTimeLimit(sPar);
ponder = false;
infinite = (maxTimeLimit < 0) && (maxDepth < 0) && (maxNodes < 0);
startThread(minTimeLimit, maxTimeLimit, maxDepth, maxNodes);
searchMoves = sPar.searchMoves;
startThread(minTimeLimit, maxTimeLimit, maxDepth, maxNodes);
}
final public void startPonder(Position pos, List<Move> moves, SearchParams sPar) {
@ -229,9 +229,8 @@ public class EngineControl {
sc.setStrength(strength, randomSeed);
MoveGen.MoveList moves = moveGen.pseudoLegalMoves(pos);
MoveGen.removeIllegal(pos, moves);
if ((searchMoves != null) && (searchMoves.size() > 0)) {
Arrays.asList(moves.m).retainAll(searchMoves);
}
if ((searchMoves != null) && (searchMoves.size() > 0))
moves.filter(searchMoves);
final MoveGen.MoveList srchMoves = moves;
onePossibleMove = false;
if ((srchMoves.size < 2) && !infinite) {

View File

@ -18,6 +18,8 @@
package chess;
import java.util.List;
/**
*
* @author petero
@ -35,6 +37,13 @@ public final class MoveGen {
m = new Move[MAX_MOVES];
this.size = 0;
}
public final void filter(List<Move> searchMoves) {
int used = 0;
for (int i = 0; i < size; i++)
if (searchMoves.contains(m[i]))
m[used++] = m[i];
size = used;
}
}
/**