xxxxxxxxxx
98
let res;
let grid;
let nextGrid;
let InitialSand;
function setup() {
createCanvas(800, 800);
res = 10;
InitialSand = 6000;
grid = [];
nextGrid = [];
grid = make2DArray(grid, width/res);
nextGrid = make2DArray(nextGrid, height/res);
for (let x = 0; x < width / res; x++) {
for (let y = 0; y < height / res; y++) {
grid[x][y] = 0;
}
}
for (let x = 0; x < width / res; x++) {
for (let y = 0; y < height / res; y++) {
nextGrid[x][y] = 0;
}
}
grid[width / res / 2][height / res / 2] = InitialSand;
console.log(grid);
}
function draw() {
background(220);
stroke(220);
strokeWeight(1);
for(let i = 0; i < 50; i++){
sandPile();
}
render();
}
function sandPile(){
for (let x = 0; x < width / res; x++) {
for (let y = 0; y < height / res; y++) {
if (grid[x][y] < 4) {
nextGrid[x][y] = grid[x][y];
}
}
}
for (let x = 0; x < width / res; x++) {
for (let y = 0; y < height / res; y++) {
if (grid[x][y] >= 4) {
nextGrid[x][y] = (grid[x][y] - 4);
if(x < (width / res) - 1)
nextGrid[x + 1][y] += 1;
if(x > 0)
nextGrid[x - 1][y] += 1;
if(y < (height / res) - 1)
nextGrid[x][y + 1] += 1;
if(y > 0)
nextGrid[x][y - 1] += 1;
}
}
}
grid = nextGrid;
}
function render(){
for (let x = 0; x < width / res; x++) {
for (let y = 0; y < height / res; y++) {
if (grid[x][y] == 0) {
fill(255);
rect(x * res, y * res, res, res);
} else if (grid[x][y] == 1) {
fill(255, 255, 0);
rect(x * res, y * res, res, res);
} else if (grid[x][y] == 2) {
fill(255, 0, 255);
rect(x * res, y * res, res, res);
} else if (grid[x][y] == 3) {
fill(0, 255, 255);
rect(x * res, y * res, res, res);
} else if (grid[x][y] >= 4) {
fill(255, 0, 0);
rect(x * res, y * res, res, res);
}
}
}
}
function make2DArray(arr, amt) {
for (let i = 0; i < amt; i++) {
arr[i] = [];
}
return arr;
}