Re: How to: referencing variables using the contents of otehr
variables.
On Apr 15, 10:42 am, Joshua Cranmer <Pidgeo...@verizon.invalid> wrote:
fguy...@gmail.com wrote:
OK, my chessboard is represented by an 8x8 char array, call it posn[]
[]. each cell contains one char, which corresponds to FEN notation. an
empty square is '1'. A White King is 'K", a black king is 'k', and so
on.
The best implementation for this would probably be to use an enum:
enum ChessPiece {
Pawn('P'), Rook('R'), Bishop('B'), Knight('N'), Queen('Q'),
King('K');
private char representation;
ChessPiece(char rep) { representation = rep; }
public char getNotation() { return representation; }
public String toString() { return ""+representation; }
}
public class ChessGame {
private ChessPiece position[][] = new ChessPiece[8][8];
}
/* etc. */
In my program, a move is described by a starting an ending pair. In
having the program build a list of legal moves, I start by examining
each cell in the position array, looking for either uppercase or
lowercase letters depending on if it is white's turn or black's turn.
Using enum bodies, this is much, much easier:
public class Position {
// normal class with rank + file, etc.
// Probably ought to be immutable
}
enum ChessPiece {
Pawn('P') {
public List<Position> getMoves(Position pos, boolean isBlack,
G=
ameBoard board) {
List<Position> possibleMoves = new ArrayList<Position>(3=
);
Position naturalMove = new Position(pos.getFile(),
pos.getRank() + (isBlack ? -1 : 1));
if (!board.isOccupied(naturalMove))
possibleMoves.add(naturalMove);
if (pos.getFile() > 0) {
Position capture = new Position(pos.getFile() - 1);
if (board.isOccupied(capture))
possibleMoves.add(capture);
}
if (pos.getFile() < 7) {
Position capture = new Position(pos.getFile() + 1);
if (board.isOccupied(capture))
possibleMoves.add(capture);
}
// Yes, I know I forgot en passant.
return possibleMoves;
}
},
// And the other five pieces
public abstract List<Position> getMoves(Position pos, boolean isBl=
ack,
GameBoard board);
}
OK the select statement is not bad, and I want to keep the data
structure simple. It is more of an academic question really. Is there
some kind of built in JAVA reference function which would eliminate
the need for a switch statement?
A lot of switch statements can be replaced with careful implementation
of polymorphism. In this case, you'd be replacing it with enums
representing the information of specific types.
--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth
Thanks Joshua, I'll check it out. I'm not a java guru by any stretch.
This project was mostly a vehicle to help me learn java, rather than
to write a better chess program. So I'll probably end up having a
number of different implementations.
I have found that when a chess program analyzes several moves deep,
the search tree grows like crazy, and the choice of data structure is
critical to the speed. Often what looks like a real spiffy algorithm
in terms of neatness of code turns out to be slow as molasses.