package laboratoire4; public class PusherBoard { private Pawn[][] board; public PusherBoard() { this.newGame(); } public void newGame(){ this.board = new Pawn[8][8]; for(int i = 0 ;i7 || from_col<0)||((from_row >7 || from_row<0))||((to_col >7 || to_col<0))||((to_row >7 || to_row<0))) return false; //no pawn to move? Pawn pawnToMove = board[from_row][from_col]; if(pawnToMove == null) return false; //Pawn at destination is our own pawn? Pawn destination = board[to_row][to_col]; char source_color = pawnToMove.name().charAt(0); if(destination != null){ char destination_color = destination.name().charAt(0); if(source_color == destination_color) return false; } //Pawn goes back? or move is in valid range? if(source_color == 'R'){ if(from_row>to_row) return false; if(from_row+1 != to_row) return false; }else if(source_color == 'B'){ if(from_row=0; i--){ for (int j = 0 ; j < this.board.length; j++){ if(this.board[i][j] != null){ System.out.print(this.board[i][j] + " | "); }else{ System.out.print(" | "); } } System.out.println(); System.out.println("----------------------------------------------------------------------------------------"); } } }