package fr.evolving.automata; import java.io.Serializable; import com.badlogic.gdx.Gdx; public class Grid implements Serializable{ public Cell[][] Cells; public Integer sizeX,sizeY; public Grid(Integer X,Integer Y) { this.sizeX=X; this.sizeY=Y; this.Cells = new Cell[this.sizeX][this.sizeY]; for (int x=0;x=5) GetXY(x,y).Copper_calc=GetXY(x,y).Copper_calc+20; } else { if (GetCoppercalc(x,y)!=60) { int oldvalue=GetXY(x,y).Copper_calc; if (GetCoppercalc(x-1,y-1)==15 || GetCoppercalc(x-1,y-1)==35) value++; if (GetCoppercalc(x,y-1)==15 || GetCoppercalc(x,y-1)==35) value++; if (GetCoppercalc(x+1,y-1)==15 || GetCoppercalc(x+1,y-1)==35) value++; if (GetCoppercalc(x-1,y)==15 || GetCoppercalc(x-1,y)==35) value++; if (GetCoppercalc(x+1,y)==15 || GetCoppercalc(x+1,y)==35) value++; if (GetCoppercalc(x-1,y+1)==15 || GetCoppercalc(x-1,y+1)==35) value++; if (GetCoppercalc(x,y+1)==15 || GetCoppercalc(x,y+1)==35) value++; if (GetCoppercalc(x+1,y+1)==15 || GetCoppercalc(x+1,y+1)==35) value++; if (value>=1 && oldvalue!=1 && oldvalue!=2 && oldvalue!=4 && oldvalue!=8 && oldvalue!=10 && oldvalue!=5) GetXY(x,y).Copper_calc=oldvalue+20; } } } for (int x=0;x0) GetXY(x,y).Copper_calc=oldvalue+22+value; } } return; } public Cell GetXY(float X,float Y) { if (X<0 || Y<0 || X>=this.sizeX || Y>=this.sizeY) return null; else return this.Cells[(int)X][(int)Y]; } public boolean GetCopper(float X,float Y) { Cell cell=GetXY(X,Y); if (cell==null) return false; else return cell.Copper; } public int GetCoppercalc(float X,float Y) { Cell cell=GetXY(X,Y); if (cell==null) return 0; else return cell.Copper_calc; } }