2020-02-14 14:48:29 +01:00

62 lines
1.5 KiB
Java

package inf101.v18.connectfour.board;
/**
* An IGrid can store and retrieve anything of type T.
*
* @param <T>
*/
public interface IGrid<T> {
/**
* @return The height of the grid.
*/
int getHeight();
/**
* @return The width of the grid.
*/
int getWidth();
/**
*
* Set the contents of the cell in the given x,y location.
*
* y must be greater than or equal to 0 and less than getHeight().
* x must be greater than or equal to 0 and less than getWidth().
*
* @param x The column of the cell to change the contents of
* @param y The row of the cell to change the contents of
* @param element The contents the cell is to have
*/
void set(int x, int y, T element);
/**
* Get the contents of the cell in the given x,y location.
*
* y must be greater than or equal to 0 and less than getHeight().
* x must be greater than or equal to 0 and less than getWidth().
*
* @param x The column of the cell to get the contents of
* @param y The row of the cell to get contents of
*/
T get(int x, int y);
/**
* Make a copy
*
* @return A fresh copy of the grid, with the same elements
*/
IGrid<T> copy();
/**
* Checks if the grid is absolutely full.
*
* @return True if it is full
*/
boolean isFull();
/**
* Sets all spaces in the grid to the element representing an empty tile.
*/
void flush();
}