Question: #JAVA Copy your ChessPiece class. Create a new application titled populateChessBoard that contains your main statement. In your populateChessBoard class create 2 arrays, one to
#JAVA
Copy your ChessPiece class.
Create a new application titled populateChessBoard that contains your main statement.
In your populateChessBoard class create 2 arrays, one to contain an array of white ChessPiece's and one for black ChessPiece's.
Use loops to initialize all the 32 appropriate chess pieces in their initial board positions.
Use another loop to printInfo each of the 32 pieces using Algebraic chess notation. See the link for more detailed information.
http://blog.chesshouse.com/how-to-read-and-write-algebraic-chess-notation/
CHESSPIECE CLASS:
class ChessPiece { private int row,col; private String colorChessPiece, nameChesspiece;
public int getPositionRow() //getting position of row { return row; } public int getPositionColumn() //getting position of column { return col; } public String getColor() //getting color of a chess piece { return colorChessPiece; } public String getPieceType() //getting name of a chess piece { return nameChesspiece; } public void setPosition(int x, int y) //setting position of a chess piece { row = x; col = y; } public void setColor(String color) //setting color of a chess piece { colorChessPiece = color; } public void setPieceType(String name) //setting name of a chess piece { nameChesspiece = name; } public void printInfo() //printing all the details of a chess piece { System.out.println("Chess Piece Details-"); System.out.println("---------------------"); System.out.println("Position: " + getPositionRow() + "," + getPositionColumn()); System.out.println("Color: " + getColor()); System.out.println("Name: " + getPieceType() + " "); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
