update javadoc from package client.view
This commit is contained in:
parent
4caa131a4c
commit
fb408a3f78
@ -38,12 +38,14 @@ public class Cell extends Rectangle {
|
|||||||
setWidth(Window.cellSize);
|
setWidth(Window.cellSize);
|
||||||
setHeight(Window.cellSize);
|
setHeight(Window.cellSize);
|
||||||
relocate(x * Window.cellSize,y * Window.cellSize);
|
relocate(x * Window.cellSize,y * Window.cellSize);
|
||||||
setFill(Color.valueOf("#ffffff"));
|
setFill(Color.WHITE);
|
||||||
setStroke(Color.DARKGRAY);
|
setStroke(Color.DARKGRAY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object the object we'll define the type
|
||||||
|
* @return a pane which contains an image depending on the type of the object
|
||||||
|
*/
|
||||||
public static StackPane setImageObject(Object object, Game game){
|
public static StackPane setImageObject(Object object, Game game){
|
||||||
StackPane sp = new StackPane();
|
StackPane sp = new StackPane();
|
||||||
Image in;
|
Image in;
|
||||||
|
@ -11,9 +11,14 @@ import java.util.HashMap;
|
|||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* View manager, main access to every views
|
||||||
|
*/
|
||||||
public final class ViewManager {
|
public final class ViewManager {
|
||||||
|
|
||||||
private final Game game;
|
private final Game game;
|
||||||
private final Class<? extends View> viewType;
|
private final Class<? extends View> viewType;
|
||||||
|
public HashMap<Player, ClientPlayer> players = new HashMap<>();
|
||||||
|
|
||||||
public ViewManager(Game game, Class<? extends View> viewType, ViewLambda lambda) {
|
public ViewManager(Game game, Class<? extends View> viewType, ViewLambda lambda) {
|
||||||
this.game = game;
|
this.game = game;
|
||||||
@ -23,13 +28,16 @@ public final class ViewManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
public HashMap<Player, ClientPlayer> players = new HashMap<>();
|
* Call when we need to change or update view
|
||||||
|
*/
|
||||||
public void updateView() {
|
public void updateView() {
|
||||||
players.get(game.getCurrentPlayer()).getView().show();
|
players.get(game.getCurrentPlayer()).getView().show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method is call when the view is a terminal
|
||||||
|
*/
|
||||||
public void terminalView() {
|
public void terminalView() {
|
||||||
Terminal.scanner = new Scanner(System.in);
|
Terminal.scanner = new Scanner(System.in);
|
||||||
DisplayWinnerEvent displayWinnerEvent = new DisplayWinnerEvent();
|
DisplayWinnerEvent displayWinnerEvent = new DisplayWinnerEvent();
|
||||||
@ -52,10 +60,17 @@ public final class ViewManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method is call when the game is finish
|
||||||
|
* @param winner The winner of the game, can be null
|
||||||
|
*/
|
||||||
public void displayWinner(Player winner) {
|
public void displayWinner(Player winner) {
|
||||||
players.get(game.getCurrentPlayer()).getView().displayWinner(winner);
|
players.get(game.getCurrentPlayer()).getView().displayWinner(winner);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method is call after initialized view manager to display a first screen
|
||||||
|
*/
|
||||||
public void run() {
|
public void run() {
|
||||||
if (viewType == Terminal.class) {
|
if (viewType == Terminal.class) {
|
||||||
terminalView();
|
terminalView();
|
||||||
@ -64,33 +79,4 @@ public final class ViewManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Game game() {
|
|
||||||
return game;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Class<? extends View> viewType() {
|
|
||||||
return viewType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
if (obj == this) return true;
|
|
||||||
if (obj == null || obj.getClass() != this.getClass()) return false;
|
|
||||||
var that = (ViewManager) obj;
|
|
||||||
return Objects.equals(this.game, that.game) &&
|
|
||||||
Objects.equals(this.viewType, that.viewType);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return Objects.hash(game, viewType);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ViewManager[" +
|
|
||||||
"game=" + game + ", " +
|
|
||||||
"viewType=" + viewType + ']';
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user