This commit is contained in:
Guillaume LE CHARTIER 2024-04-10 16:50:13 +02:00
parent 1603461d0a
commit 8d7512000e
1 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,60 @@
package backend;
import java.util.ArrayList;
public class Table {
private int height;
private int width;
private ArrayList<ArrayList<Cell>> table;
//TODO-INPROGRESS : create constructor
public Table(int height, int width) {
this.height = height;
this.width = width;
//initialize the table
int vertexCount = 3;
table = new ArrayList<>(vertexCount);
}
public int getheight() {
return this.height;
}
public int getwidth() {
return this.width;
}
//TODO-COMPLETE : create getCell
public Cell getCell(int x,int y) {
//return the Cell object of coordinates x, y
return table.get(x).get(y);
}
//TODO-complete : set(Cell, x, y) set an object Cell to coordinate x, y
public void setCell(Cell cell, int x int y){
this.table.get(x).get(y) = cell;
}
//TODO-complete : count near (xy) -> return how many cells around this cell
public int countNear(int x, int y){
int cellCount =0;
// if border is true
for (int i = x-1;i<=x+1;i++){
for (int j = y-1;j<=y+1;y++){
if not(i == j){
this.table.getCell(i,j).getValue +=cellCount;
}
}
}
//if border is false
}
//TODO : set agent (x y agent) load an agent to coordinates x,y
//TODO : set random (density) create a random table of determined density
//TODO : load(filepath) turn a loaded saveable file into a table
//TODO : save(filename) turn the table into saveable file
}