commit 618b1d9371fa6236cc82a1527d9967b427932f6a parent 6f60c17181f1a3e7d04ffa54adbbd5d5acfc171d Author: A Koens <[email protected]> Date: Fri, 3 Feb 2023 08:48:11 +0100 Othello Multiplayer Diffstat:
12 files changed, 529 insertions(+), 8 deletions(-)
diff --git a/src/main/java/nl/isygameclient/Application.java b/src/main/java/nl/isygameclient/Application.java @@ -20,7 +20,7 @@ public class Application extends javafx.application.Application { public static final List<GameCardControl> GAMES = List.of( new GameCardControl("Tic Tac Toe", "/nl/isygameclient/imgs/tictactoe_logo.png", "/nl/isygameclient/views/games/tictactoe/TicTacToeMainMenu.fxml"), - new GameCardControl("Othello", "/nl/isygameclient/imgs/othello_logo.png", "/nl/isygameclient/views/games/othello/OthelloSinglePlayer.fxml")); + new GameCardControl("Othello", "/nl/isygameclient/imgs/othello_logo.png", "/nl/isygameclient/views/games/othello/OthelloMainMenu.fxml")); public static void main(String[] args) { launch(); @@ -39,7 +39,10 @@ public class Application extends javafx.application.Application { stageHandler.changeSceneOfStage(Window.APP, "/nl/isygameclient/views/app.fxml"); stageHandler.focusStage(Window.APP); - stageHandler.getStage(Window.APP).setOnCloseRequest((e) -> stageHandler.saveStages()); + stageHandler.getStage(Window.APP).setOnCloseRequest((e) -> { + stageHandler.saveStages(); + stageHandler.closeStages(); + }); } diff --git a/src/main/java/nl/isygameclient/controllers/games/othello/OthelloMainMenuController.java b/src/main/java/nl/isygameclient/controllers/games/othello/OthelloMainMenuController.java @@ -0,0 +1,19 @@ +package nl.isygameclient.controllers.games.othello; + +import javafx.fxml.FXML; +import nl.isygameclient.Window; +import nl.isygameclient.controllers.games.GameController; +import nl.isygameclient.util.StageHandler; + +public class OthelloMainMenuController extends GameController { + @FXML + public void onSinglePlayerButtonClick() { + StageHandler.get().changeSceneOfStage(Window.GAME, "/nl/isygameclient/views/games/othello/OthelloSinglePlayer.fxml"); + } + + @FXML + public void onMultiplayerButtonClick() { + StageHandler.get().changeSceneOfStage(Window.GAME,"/nl/isygameclient/views/games/othello/OthelloMultiPlayer.fxml"); + } + +} diff --git a/src/main/java/nl/isygameclient/controllers/games/othello/OthelloMultiPlayerController.java b/src/main/java/nl/isygameclient/controllers/games/othello/OthelloMultiPlayerController.java @@ -0,0 +1,258 @@ +package nl.isygameclient.controllers.games.othello; + +import com.jfoenix.controls.JFXButton; +import javafx.application.Platform; +import javafx.event.ActionEvent; +import javafx.fxml.FXML; +import javafx.fxml.Initializable; +import javafx.scene.control.TextField; +import javafx.scene.layout.GridPane; +import javafx.scene.paint.Color; +import javafx.scene.shape.Circle; +import nl.isygameclient.controllers.games.GameController; +import nl.isygameclient.models.Ai; +import nl.isygameclient.models.Player; +import nl.isygameclient.models.PlayerManager; +import nl.isygameclient.models.games.Othello; +import nl.isygameclient.network.GameClient; +import nl.isygameclient.network.GameType; +import nl.isygameclient.network.Match; +import nl.isygameclient.util.Vector2D; + +import java.io.IOException; +import java.net.URL; +import java.util.ArrayList; +import java.util.List; +import java.util.Objects; +import java.util.ResourceBundle; +import java.util.stream.Stream; + +public class OthelloMultiPlayerController extends GameController implements Runnable, Initializable { + + private Thread gameThread; + private boolean running; + + private GameClient client; + private Match match; + private String playerSelf = "X", playerOther = "O"; + + private JFXButton[][] boardButtons; + + @FXML + private TextField hostField; + @FXML + private TextField portField; + @FXML + private TextField nameField; + + @FXML + private TextField opponentField; + @FXML + private GridPane boardGrid; + + private int[][] heuristics = { + {4, 3, 3, 3, 3, 3, 3, 4}, + {3, 2, 2, 2, 2, 2, 2, 3}, + {3, 2, 1, 1, 1, 1, 2, 3}, + {3, 2, 1, 1, 1, 1, 2, 3}, + {3, 2, 1, 1, 1, 1, 2, 3}, + {3, 2, 1, 1, 1, 1, 2, 3}, + {3, 2, 2, 2, 2, 2, 2, 3}, + {4, 3, 3, 3, 3, 3, 3, 4} + }; + + private boolean hasClicked = false; + private Vector2D<Integer, Integer> clickedPos; + + @Override + public void initialize(URL url, ResourceBundle resourceBundle) { + var player = new Player("player1", "white") { + @Override + public Vector2D<Integer, Integer> onPlayerTurn() { + return clickedPos; + } + }; + var players = List.of(player, new Ai("player2", "black", heuristics)); + var manager = new PlayerManager(0, new ArrayList<>(players)); + game = new Othello(manager); + initializeBoard(); + updateButtons(); + } + + private void initializeBoard() { + var board = game.getBoard(); + boardButtons = new JFXButton[board.getHeight()][board.getWidth()]; + for (int i = 0; i < board.getHeight(); i++) { + for (int j = 0; j < board.getWidth(); j++) { + JFXButton button = new JFXButton(); + var index = i + "," + j; + button.setId(index); + button.setMinSize(60.0, 60.0); + button.setMaxSize(60.0, 60.0); + + var styleClass = button.getStyleClass(); + styleClass.add("othello-button"); + styleClass.add("headline-small"); + button.setOnAction((ActionEvent event) -> onMoveButtonClick(button)); + boardButtons[i][j] = button; + boardGrid.add(button, i, j); + } + } + } + + private void updateButtons() { + clearBoardButtons(); + var board = game.getBoard(); + for (int i = 0; i < board.getHeight(); i++) { + for (int j = 0; j < board.getWidth(); j++) { + var index = board.get(new Vector2D<>(i, j)); + if (index == null) continue; + if (Objects.equals("white", index.getPlayingAs())) { + addStone(boardButtons[i][j], Color.WHITE); + } else if (Objects.equals("black", index.getPlayingAs())) { + addStone(boardButtons[i][j], Color.BLACK); + } + } + } + } + + private void addStone(JFXButton button, Color color) { + var circle = new Circle(); + circle.setRadius(20); + circle.setFill(color); + button.setGraphic(circle); + } + + private void onMoveButtonClick(JFXButton button) { + // Move + var id = button.getId().split(","); + var index = Stream.of(id).mapToInt(Integer::parseInt).toArray(); + var manager = game.getPlayerManager(); + var currentPlayer = manager.getCurrentPlayer(); + if (game.getValidMoves(currentPlayer).isEmpty()) { + manager.nextPlayer(); + return; + } + if (game.isMoveValid(currentPlayer, new Vector2D<>(index[0], index[1]))) { + game.move(currentPlayer, new Vector2D<>(index[0], index[1])); + updateButtons(); + } + + if (game.isGameOver()) { + disableBoardButtons(); + } + } + + public void run() { + running = true; +// try { +// client = new GameClient(hostField.getText(), Integer.parseInt(portField.getText())); +// client.login(nameField.getText()); +// +// if (opponentField.getText().length() == 0) +// match = client.match(GameType.TICTACTOE); +// else +// match = client.match(GameType.TICTACTOE, opponentField.getText()); +// +// while (running) { +// match.update(); +// +// if (!match.isStarted()) +// continue; +// +// // game.setCurrentPlayer(match.isYourTurn() ? playerSelf : playerOther); +// // game.move(Integer.parseInt(moveMap.get("move"))); +// Platform.runLater(() -> { +// playingAgainstLabel.setText(match.getOpponent()); +// +// if (match.isYourTurn()) { +// currentPlayer.setText(playerSelf); +// enableBoardButtons(); +// } else { +// currentPlayer.setText(playerOther); +// disableBoardButtons(); +// } +// for (int i = 0; i < 3 * 3; i++) { +// switch (match.getMove(i)) { +// case -1 -> boardButtons.get(i).setText(playerOther); +// case 0 -> boardButtons.get(i).setText(""); +// case 1 -> boardButtons.get(i).setText(playerSelf); +// } +// } +// }); +// +// if (match.getOutcome() == null) +// continue; +// +// running = false; +// +// Platform.runLater(() -> { +// switch (match.getOutcome().type) { +// case DRAW: +// System.out.println("Draw!"); +// gameOverText.setText("Draw!"); +// gameOverText.setVisible(true); +// break; +// case LOSS: +// System.out.printf("%s, Is the Winner!\n\n", playerOther); +// gameOverText.setText(String.format("%s, is the Winner!\n\n", playerOther)); +// gameOverText.setVisible(true); +// break; +// case WIN: +// System.out.printf("%s, Is the Winner!\n\n", playerSelf); +// gameOverText.setText(String.format("%s, is the Winner!\n\n", playerSelf)); +// gameOverText.setVisible(true); +// default: +// } +// }); +// } +// match.abort(); +// client.close(); +// } catch (IOException e) { +// e.printStackTrace(); +// } + } + + + private void clearBoardButtons() { + for (JFXButton[] row : boardButtons) { + for (JFXButton button : row) { + button.setGraphic(null); + } + } + } + + private void disableBoardButtons() { + for (JFXButton[] row : boardButtons) { + for (JFXButton button : row) { + button.setDisable(true); + } + } + } + + private void enableBoardButtons() { + for (JFXButton[] row : boardButtons) { + for (JFXButton button : row) { + button.setDisable(false); + } + } + } + + public void onNewGameButtonClick(ActionEvent actionEvent) throws NumberFormatException, InterruptedException{ + game.restart(); +// gameOverText.setVisible(false); + + if (gameThread != null && running) { + running = false; + gameThread.join(); + } + gameThread = new Thread(this); + gameThread.start(); + + updateButtons(); + enableBoardButtons(); + } + + public void onMainMenuButtonClick(ActionEvent actionEvent) { + } +} diff --git a/src/main/java/nl/isygameclient/controllers/games/othello/OthelloSinglePlayerController.java b/src/main/java/nl/isygameclient/controllers/games/othello/OthelloSinglePlayerController.java @@ -80,7 +80,7 @@ public class OthelloSinglePlayerController extends GameController implements In var board = game.getBoard(); for (int i = 0; i < board.getHeight(); i++) { for (int j = 0; j < board.getWidth(); j++) { - var index = board.get(new Vector2D<>(j,i)); + var index = board.get(new Vector2D<>(i,j)); if (index == null) continue; if (Objects.equals( "white", index.getPlayingAs())) { addStone(boardButtons[i][j], Color.WHITE); @@ -111,7 +111,6 @@ public class OthelloSinglePlayerController extends GameController implements In if (game.isMoveValid(currentPlayer, new Vector2D<>(index[0], index[1]))) { game.move(currentPlayer, new Vector2D<>(index[0], index[1])); updateButtons(); - manager.nextPlayer(); } if (game.isGameOver()) { diff --git a/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeMainMenuController.java b/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeMainMenuController.java @@ -8,12 +8,12 @@ import nl.isygameclient.util.StageHandler; public class TicTacToeMainMenuController extends GameController { @FXML public void onSinglePlayerButtonClick() { - StageHandler.get().changeSceneOfStage(Window.GAME, "views/games/TicTacToe/TicTacToeSinglePlayer.fxml"); + StageHandler.get().changeSceneOfStage(Window.GAME, "/nl/isygameclient/views/games/tictactoe/TicTacToeSinglePlayer.fxml"); } @FXML public void onMultiplayerButtonClick() { - StageHandler.get().changeSceneOfStage(Window.GAME,"views/games/TicTacToe/TicTacToeMultiPlayer.fxml"); + StageHandler.get().changeSceneOfStage(Window.GAME,"/nl/isygameclient/views/games/tictactoe/TicTacToeMultiPlayer.fxml"); } } diff --git a/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeMultiPlayerController.java b/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeMultiPlayerController.java @@ -198,6 +198,6 @@ public class TicTacToeMultiPlayerController extends GameController implements Ru @FXML protected void onMainMenuButtonClick() { - StageHandler.get().changeSceneOfStage(Window.GAME,"views/games/TicTacToe/TicTacToeMainMenu.fxml"); + StageHandler.get().changeSceneOfStage(Window.GAME,"views/games/TicTacToe/OthelloMainMenu.fxml"); } } diff --git a/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeSettingsController.java b/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeSettingsController.java @@ -0,0 +1,28 @@ +package nl.isygameclient.controllers.games.tictactoe; + +import com.jfoenix.controls.JFXComboBox; +import javafx.event.ActionEvent; +import javafx.fxml.Initializable; + +import java.net.URL; +import java.util.ResourceBundle; + +public class TicTacToeSettingsController implements Initializable { + public JFXComboBox<String> opponentCombo; + public JFXComboBox<String> playingAsCombo; + public JFXComboBox<String> difficultyCombo; + + @Override + public void initialize(URL url, ResourceBundle resourceBundle) { + + } + + public void onDifficultyComboSelect(ActionEvent actionEvent) { + } + + public void onPlayingAsComboSelect(ActionEvent actionEvent) { + } + + public void onOpponentComboSelect(ActionEvent actionEvent) { + } +} diff --git a/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeSinglePlayerController.java b/src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeSinglePlayerController.java @@ -136,6 +136,6 @@ public class TicTacToeSinglePlayerController extends GameController { @FXML protected void onMainMenuButtonClick() { - StageHandler.get().changeSceneOfStage(Window.GAME,"views/games/TicTacToe/TicTacToeMainMenu.fxml"); + StageHandler.get().changeSceneOfStage(Window.GAME,"views/games/TicTacToe/OthelloMainMenu.fxml"); } } diff --git a/src/main/java/nl/isygameclient/util/StageHandler.java b/src/main/java/nl/isygameclient/util/StageHandler.java @@ -84,6 +84,13 @@ public class StageHandler { } } + public void closeStages() { + for (Stage stage : + stages.values()) { + stage.hide(); + } + } + /** * This function loads all the stages stored in the settings file into the singleton. */ diff --git a/src/main/resources/nl/isygameclient/views/games/othello/OthelloMainMenu.fxml b/src/main/resources/nl/isygameclient/views/games/othello/OthelloMainMenu.fxml @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> + + +<?import com.jfoenix.controls.JFXButton?> +<?import javafx.geometry.Insets?> +<?import javafx.scene.control.Label?> +<?import javafx.scene.layout.AnchorPane?> +<?import javafx.scene.layout.VBox?> +<?import java.lang.*?> +<?import java.net.URL?> +<AnchorPane xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" + fx:controller="nl.isygameclient.controllers.games.othello.OthelloMainMenuController" + prefWidth="680" prefHeight="480"> + <VBox alignment="CENTER" AnchorPane.rightAnchor="0" AnchorPane.leftAnchor="0" AnchorPane.bottomAnchor="0" AnchorPane.topAnchor="0"> + <styleClass> + <String fx:value="surface"/> + </styleClass> + <Label text="Othello"> + <styleClass> + <String fx:value="display-large"/> + <String fx:value="on-surface-text"/> + </styleClass> + <padding> + <Insets topRightBottomLeft="50"/> + </padding> + </Label> + <VBox spacing="10" alignment="CENTER" maxWidth="200"> + <JFXButton text="Single Player" onAction="#onSinglePlayerButtonClick" prefWidth="Infinity"> + <styleClass> + <String fx:value="primary"/> + <String fx:value="on-primary-text"/> + <String fx:value="title-medium"/> + </styleClass> + </JFXButton> + <JFXButton text="Multiplayer" onAction="#onMultiplayerButtonClick" prefWidth="Infinity"> + <styleClass> + <String fx:value="primary"/> + <String fx:value="on-primary-text"/> + <String fx:value="title-medium"/> + </styleClass> + </JFXButton> + <JFXButton text="Exit" onAction="#onExitButtonClick" prefWidth="Infinity"> + <styleClass> + <String fx:value="primary"/> + <String fx:value="on-primary-text"/> + <String fx:value="title-medium"/> + </styleClass> + </JFXButton> + </VBox> + </VBox> + <stylesheets> + <URL value="@../../../css/style.css" /> + <URL value="@../../../css/themes/dark.theme.css" /> + <!-- <URL value="@../css/themes/light.theme.css" />--> + </stylesheets> +</AnchorPane> diff --git a/src/main/resources/nl/isygameclient/views/games/othello/OthelloMultiPlayer.fxml b/src/main/resources/nl/isygameclient/views/games/othello/OthelloMultiPlayer.fxml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import com.jfoenix.controls.JFXButton?> +<?import java.lang.String?> +<?import java.net.URL?> +<?import javafx.geometry.Insets?> +<?import javafx.scene.layout.BorderPane?> +<?import javafx.scene.layout.GridPane?> +<?import javafx.scene.layout.Pane?> +<?import javafx.scene.layout.VBox?> + +<?import javafx.scene.control.TextField?> +<?import javafx.scene.control.Label?> +<BorderPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" + fx:controller="nl.isygameclient.controllers.games.othello.OthelloMultiPlayerController"> + <styleClass> + <String fx:value="background" /> + </styleClass> + <left> + <VBox prefWidth="200" spacing="20" styleClass="surface"> + <padding> + <Insets topRightBottomLeft="20" /> + </padding> + <Label text="Host" styleClass="surface-text"/> + <TextField fx:id="hostField"/> + <Label text="Port" styleClass="surface-text"/> + <TextField fx:id="portField"/> + <Label text="Player Name" styleClass="surface-text"/> + <TextField fx:id="nameField" /> + <Label text="Opponent Name" styleClass="surface-text"/> + <TextField fx:id="opponentField"/> + <!-- Window Controls --> + <Pane VBox.vgrow="ALWAYS" /> + <VBox alignment="CENTER" spacing="10"> + <JFXButton onAction="#onNewGameButtonClick" prefWidth="Infinity" text="New Game"> + <styleClass> + <String fx:value="primary" /> + <String fx:value="primary-text" /> + <String fx:value="title-medium" /> + </styleClass> + </JFXButton> + <JFXButton onAction="#onMainMenuButtonClick" prefWidth="Infinity" text="Main Menu"> + <styleClass> + <String fx:value="primary" /> + <String fx:value="primary-text" /> + <String fx:value="title-medium" /> + </styleClass> + </JFXButton> + <JFXButton onAction="#onExitButtonClick" prefWidth="Infinity" text="Exit"> + <styleClass> + <String fx:value="primary" /> + <String fx:value="primary-text" /> + <String fx:value="title-medium" /> + </styleClass> + </JFXButton> + </VBox> + </VBox> + </left> + <center> + <GridPane fx:id="boardGrid" alignment="CENTER" hgap="2" vgap="2"> + <padding> + <Insets topRightBottomLeft="10" /> + </padding> + </GridPane> + </center> + <stylesheets> + <URL value="@../../../css/style.css" /> + <URL value="@../../../css/themes/dark.theme.css" /> + <!-- <URL value="@../../../css/themes/light.theme.css" />--> + </stylesheets> +</BorderPane> diff --git a/src/main/resources/nl/isygameclient/views/games/tictactoe/TicTacToeSettings.fxml b/src/main/resources/nl/isygameclient/views/games/tictactoe/TicTacToeSettings.fxml @@ -0,0 +1,80 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.scene.layout.*?> + +<?import javafx.scene.control.Label?> +<?import java.lang.String?> +<?import javafx.scene.control.Separator?> +<?import com.jfoenix.controls.JFXComboBox?> +<AnchorPane xmlns="http://javafx.com/javafx" + xmlns:fx="http://javafx.com/fxml" + fx:controller="nl.isygameclient.controllers.games.tictactoe.TicTacToeSettingsController" + prefHeight="400.0" prefWidth="600.0"> + + + <!-- Difficulty Controls --> + <VBox> + <Label text="Difficulty"> + <styleClass> + <String fx:value="headline-small"/> + <String fx:value="on-surface-variant-text"/> + </styleClass> + </Label> + <Separator styleClass="on-surface-variant-text"/> + <JFXComboBox fx:id="difficultyCombo" prefWidth="Infinity" onAction="#onDifficultyComboSelect"> + <styleClass> + <String fx:value="primary"/> + <String fx:value="on-primary-text"/> + <String fx:value="body-large"/> + </styleClass> + </JFXComboBox> + </VBox> + + <!-- Playing As Controls --> + <VBox> + <Label text="Playing As"> + <styleClass> + <String fx:value="headline-small"/> + <String fx:value="on-surface-variant-text"/> + </styleClass> + </Label> + <Separator styleClass="on-surface-variant-text"/> + <JFXComboBox fx:id="playingAsCombo" prefWidth="Infinity" onAction="#onPlayingAsComboSelect"> + <styleClass> + <String fx:value="primary"/>--> + <String fx:value="on-primary-text"/> + <String fx:value="body-large"/> + </styleClass> + </JFXComboBox> + </VBox> + + <!-- Opponents Controls --> + <VBox> + <Label text="Opponent"> + <styleClass> + <String fx:value="headline-small"/> + <String fx:value="on-surface-variant-text"/> + </styleClass> + </Label> + <Separator styleClass="on-surface-variant-text"/> + <JFXComboBox fx:id="opponentCombo" prefWidth="Infinity" onAction="#onOpponentComboSelect"> + <styleClass> + <String fx:value="primary"/>--> + <String fx:value="on-primary-text"/> + <String fx:value="body-large"/> + </styleClass> + </JFXComboBox> + </VBox> + + <!-- Best of Controls --> + <VBox> + <Label text="Best Of"> + <styleClass> + <String fx:value="headline-small"/> + <String fx:value="on-surface-variant-text"/> + </styleClass> + </Label> + <Separator styleClass="on-surface-variant-text"/> + </VBox> + +</AnchorPane>