Implemented color swapping

+ swapColor method in Board
+ Button for swapping colors in MainWindow
This commit is contained in:
delvh 2019-07-23 09:31:20 +02:00
parent 68d1996bd6
commit b3710a878f
4 changed files with 21 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.8.0_212">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<attributes>
<attribute name="module" value="true"/>
</attributes>

View File

@ -108,6 +108,17 @@ public class Game {
public void disconnect() {
players.values().forEach(Player::disconnect);
}
public void swapColors() {
players.values().forEach(Player::cancelMove);
Player white = players.get(Color.WHITE);
Player black = players.get(Color.BLACK);
white.setColor(Color.BLACK);
black.setColor(Color.WHITE);
players.put(Color.WHITE, black);
players.put(Color.BLACK, white);
players.get(board.getActiveColor()).requestMove();
}
public Board getBoard() { return board; }
}

View File

@ -67,7 +67,13 @@ public class MainWindow {
JButton btnRestart = new JButton("Restart");
btnRestart.addActionListener((evt) -> { if (game != null) game.reset(); game.start(); });
JButton btnSwapColors = new JButton("Swap Colors");
btnSwapColors.addActionListener((evt) -> game.swapColors());
toolPanel.add(btnRestart);
toolPanel.add(btnSwapColors);
mframe.pack();
mframe.setLocationRelativeTo(null);
}

View File

@ -34,7 +34,7 @@ public class MenuBar extends JMenuBar {
JMenuItem aiMenuItem = new JMenuItem("Game against artificial opponent");
JMenuItem aiVsAiMenuItem = new JMenuItem("Watch AI vs. AI");
JMenuItem uciMenuItem = new JMenuItem("UCI");
naturalMenuItem.addActionListener((evt) -> startGame(Game.createNatural(boardPane)));
aiMenuItem.addActionListener((evt) -> {
@ -53,11 +53,12 @@ public class MenuBar extends JMenuBar {
JOptionPane.QUESTION_MESSAGE);
if (enginePath != null) startGame(Game.createUCI(boardPane, enginePath));
});
gameMenu.add(naturalMenuItem);
gameMenu.add(aiMenuItem);
gameMenu.add(aiVsAiMenuItem);
gameMenu.add(uciMenuItem);
add(gameMenu);