explorata/main.js

87 lines
2.1 KiB
JavaScript
Raw Normal View History

2021-12-30 19:45:39 +01:00
let drawing = 1;
const form = Array.from(document.forms.rules.elements);
const canvas = document.getElementById('canvas');
const main = document.getElementById('main');
canvas.width = main.offsetWidth;
canvas.height = main.offsetHeight;
const dead = document.getElementById('dead');
const live = document.getElementById('live');
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
// The maximum is exclusive and the minimum is inclusive
2021-12-30 19:45:39 +01:00
return Math.floor(Math.random() * (max - min) + min);
}
function sleep(ms) {
2021-12-30 19:45:39 +01:00
return new Promise((resolve) => setTimeout(resolve, ms));
}
2021-12-30 19:45:39 +01:00
function evolve(state, acc, rules) {
const [x, y, z, ...xs] = state;
if (!xs.length) {
2021-12-30 19:45:39 +01:00
return acc[acc.length - 1] + acc + acc[0];
}
2021-12-30 19:45:39 +01:00
const rule = x + y + z;
const newAcc = acc.concat(rules[rule]);
return evolve(y + z + xs.join(''), newAcc, rules);
}
function draw(state, context, acc) {
2021-12-30 19:45:39 +01:00
const cellDim = 5;
Object.keys(state).forEach(
2021-12-30 19:45:39 +01:00
(key) => {
context.moveTo(key * cellDim, acc * cellDim);
context.fillRect(key * cellDim, acc * cellDim, cellDim, cellDim);
if (state[key] === '1') context.fillStyle = live.value;
else context.fillStyle = dead.value;
},
);
}
2021-12-30 19:45:39 +01:00
const start = document.getElementById('start');
start.addEventListener('click', async () => {
drawing = 1;
const rules = form.reduce((a, i) => {
if (i !== undefined
&& i.type === 'checkbox') {
if (i.checked) a[i.name] = '1';
else a[i.name] = '0';
}
return a;
}, {});
const ctx = canvas.getContext('2d');
const initialState = [...Array(canvas.width)].map(
(_) => getRandomInt(0, 2).toString(),
).join('');
let newState = evolve(initialState, '', rules);
let acc = 0;
while (acc < canvas.width) {
if (drawing === 0) {
break;
}
draw(newState, ctx, acc);
newState = evolve(newState, '', rules);
acc += 1;
await sleep(60);
}
2021-12-30 19:45:39 +01:00
});
const reset = document.getElementById('reset');
reset.addEventListener('click', async () => {
drawing = 0;
const ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
});