forked from fauvet/API_BUT5.5
58 lines
925 B
Java
58 lines
925 B
Java
|
|
package fr.iut_fbleau.raw_api_body.entity;
|
||
|
|
|
||
|
|
import java.util.Iterator;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The interface Plateau.
|
||
|
|
*/
|
||
|
|
public interface Plateau {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Return the current player
|
||
|
|
*
|
||
|
|
* @return the player
|
||
|
|
*/
|
||
|
|
Player getPlayer();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Return the game status
|
||
|
|
* - true if party is finished
|
||
|
|
* - false else
|
||
|
|
*
|
||
|
|
* @return the boolean
|
||
|
|
*/
|
||
|
|
boolean isFinished();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Return the result of a try
|
||
|
|
* - if the move is winnable : 1
|
||
|
|
* - if the move is a draw : 0
|
||
|
|
* - if its a defeat move : -1
|
||
|
|
*
|
||
|
|
* @return the result
|
||
|
|
*/
|
||
|
|
Result getResult();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Gives previous played plies
|
||
|
|
*
|
||
|
|
* @return the iterator
|
||
|
|
*/
|
||
|
|
Iterator<Ply> givePlies();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Play a ply
|
||
|
|
*
|
||
|
|
* @param ply the ply
|
||
|
|
*/
|
||
|
|
void doo(Ply ply);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Removed a ply.
|
||
|
|
*
|
||
|
|
* @param ply the ply
|
||
|
|
*/
|
||
|
|
void undo(Ply ply);
|
||
|
|
|
||
|
|
}
|