update javadoc from package client.view

This commit is contained in:
Quentin Legot 2021-12-09 16:07:03 +01:00
parent 4caa131a4c
commit fb408a3f78
2 changed files with 24 additions and 36 deletions

View File

@ -37,13 +37,15 @@ public class Cell extends Rectangle {
public Cell(int x, int y){
setWidth(Window.cellSize);
setHeight(Window.cellSize);
relocate(x*Window.cellSize,y*Window.cellSize);
setFill(Color.valueOf("#ffffff"));
relocate(x * Window.cellSize,y * Window.cellSize);
setFill(Color.WHITE);
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){
StackPane sp = new StackPane();
Image in;

View File

@ -11,9 +11,14 @@ import java.util.HashMap;
import java.util.Objects;
import java.util.Scanner;
/**
* View manager, main access to every views
*/
public final class ViewManager {
private final Game game;
private final Class<? extends View> viewType;
public HashMap<Player, ClientPlayer> players = new HashMap<>();
public ViewManager(Game game, Class<? extends View> viewType, ViewLambda lambda) {
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() {
players.get(game.getCurrentPlayer()).getView().show();
}
/**
* This method is call when the view is a terminal
*/
public void terminalView() {
Terminal.scanner = new Scanner(System.in);
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) {
players.get(game.getCurrentPlayer()).getView().displayWinner(winner);
}
/**
* This method is call after initialized view manager to display a first screen
*/
public void run() {
if (viewType == Terminal.class) {
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 + ']';
}
}