mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-12-11 16:42:41 +01:00
DroidFish: Updated FIXME list.
This commit is contained in:
@@ -141,6 +141,7 @@ public class DroidFish extends Activity implements GUIInterface {
|
|||||||
|
|
||||||
// FIXME!!! Better behavior if engine is terminated. How exactly?
|
// FIXME!!! Better behavior if engine is terminated. How exactly?
|
||||||
// FIXME!!! Handle PGN intents with more than one game.
|
// FIXME!!! Handle PGN intents with more than one game.
|
||||||
|
// FIXME!!! Make engine hash size configurable.
|
||||||
|
|
||||||
private ChessBoard cb;
|
private ChessBoard cb;
|
||||||
private static DroidChessController ctrl = null;
|
private static DroidChessController ctrl = null;
|
||||||
|
|||||||
@@ -334,7 +334,7 @@ public class TextIO {
|
|||||||
ret.append("O-O-O");
|
ret.append("O-O-O");
|
||||||
}
|
}
|
||||||
} else if (move.from == bKingOrigPos && pos.getPiece(bKingOrigPos) == Piece.BKING) {
|
} else if (move.from == bKingOrigPos && pos.getPiece(bKingOrigPos) == Piece.BKING) {
|
||||||
// Check white castle
|
// Check black castle
|
||||||
if (move.to == Position.getSquare(6, 7)) {
|
if (move.to == Position.getSquare(6, 7)) {
|
||||||
ret.append("O-O");
|
ret.append("O-O");
|
||||||
} else if (move.to == Position.getSquare(2, 7)) {
|
} else if (move.to == Position.getSquare(2, 7)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user