hanze/game-client

src/main/java/nl/isygameclient/controllers/games/tictactoe/TicTacToeSinglePlayerController.java in main
Repositories | Summary | Log | Files

TicTacToeSinglePlayerController.java (3782B) download


  1package nl.isygameclient.controllers.games.tictactoe;
  2
  3import com.jfoenix.controls.JFXButton;
  4import com.jfoenix.controls.JFXComboBox;
  5
  6import java.util.ArrayList;
  7import java.util.List;
  8import java.util.stream.Stream;
  9
 10import javafx.event.ActionEvent;
 11import javafx.fxml.FXML;
 12import javafx.scene.control.Label;
 13import javafx.scene.layout.GridPane;
 14import nl.isygameclient.Window;
 15import nl.isygameclient.controllers.games.GameController;
 16import nl.isygameclient.models.Game;
 17import nl.isygameclient.models.Player;
 18import nl.isygameclient.models.PlayerManager;
 19import nl.isygameclient.models.games.TicTacToe;
 20import nl.isygameclient.util.StageHandler;
 21import nl.isygameclient.util.Vector2D;
 22
 23public class TicTacToeSinglePlayerController implements GameController {
 24
 25	private Game game;
 26	private final ArrayList<JFXButton> boardButtons = new ArrayList<>();
 27
 28	@FXML
 29	protected Label currentPlayer;
 30	@FXML
 31	public Label gameOverText;
 32
 33	@FXML
 34	protected GridPane grid;
 35
 36
 37	@FXML
 38	protected void initialize() {
 39		initializeGame();
 40		initializeBoard();
 41		updateCurrentPlayerLabel();
 42	}
 43
 44	private void  initializeGame() {
 45		var players = new ArrayList<>(List.of(new Player("player1", "x") {
 46			@Override
 47			public Vector2D<Integer, Integer> onPlayerTurn() {
 48				return null;
 49			}
 50		}, new Player("player2", "o") {
 51			@Override
 52			public Vector2D<Integer, Integer> onPlayerTurn() {
 53				return null;
 54			}
 55		}));
 56		var manager = new PlayerManager(0, players);
 57		game = new TicTacToe(manager);
 58
 59	}
 60
 61
 62	private void initializeBoard() {
 63		var board = game.getBoard();
 64		for (int y = 0; y < board.getWidth(); y++) {
 65			for (int x = 0; x < board.getHeight(); x++) {
 66				JFXButton button = new JFXButton();
 67
 68				var index = x + "," + y;
 69				button.setId(index);
 70				button.setMinSize(200.0, 200.0);
 71				var styleClass = button.getStyleClass();
 72				styleClass.add("ttt-button");
 73				styleClass.add("display-large");
 74				button.setOnAction((ActionEvent event) -> onMoveButtonClick(button));
 75				boardButtons.add(button);
 76				grid.add(button, x, y);
 77			}
 78		}
 79	}
 80
 81	private void updateCurrentPlayerLabel() {
 82		currentPlayer.setText(game.getPlayerManager().getCurrentPlayer().getPlayingAs());
 83	}
 84
 85	private void onMoveButtonClick(JFXButton button) {
 86		// Move
 87		var id = button.getId().split(",");
 88		var index = Stream.of(id).mapToInt(Integer::parseInt).toArray();
 89		var manager = game.getPlayerManager();
 90		var currentPlayer = manager.getCurrentPlayer();
 91		if (game.isMoveValid(currentPlayer, new Vector2D<>(index[0], index[1]))) {
 92			game.move(currentPlayer, new Vector2D<>(index[0], index[1]));
 93			button.setText(currentPlayer.getPlayingAs());
 94			updateCurrentPlayerLabel();
 95		}
 96
 97		// Game Over
 98		if (game.isGameOver()) {
 99			onGameOver();
100		}
101	}
102
103	private void onGameOver() {
104		disableBoardButtons();
105		if (game.isDraw()) {
106			gameOverText.setText("Draw!");
107			gameOverText.setVisible(true);
108		} else {
109			var winner = game.getWinners().get(0).getPlayingAs().toUpperCase();
110			gameOverText.setText(String.format("%s, is the Winner!\n\n", winner));
111			gameOverText.setVisible(true);
112		}
113	}
114
115	private void clearBoardButtons() {
116		for (JFXButton button : boardButtons) {
117			button.setText("");
118		}
119	}
120
121	private void disableBoardButtons() {
122		for (JFXButton button : boardButtons) {
123			button.setDisable(true);
124		}
125	}
126
127	private void enableBoardButtons() {
128		for (JFXButton button : boardButtons) {
129			button.setDisable(false);
130		}
131	}
132
133	@Override
134	public void onNewGameButtonClick(ActionEvent e) {
135		// Make new Game
136		game.restart();
137
138		clearBoardButtons();
139		enableBoardButtons();
140		gameOverText.setVisible(false);
141	}
142
143	@Override
144	public void onMainMenuButtonClick(ActionEvent e) {
145		StageHandler.get().changeSceneOfStage(Window.GAME,"/nl/isygameclient/views/games/tictactoe/TicTacToeMainMenu.fxml");
146	}
147}