From 41d720dbd78d91ac85239c8352cd479ec898f9e0 Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 6 Nov 2023 01:55:26 -0600 Subject: add cell.js --- src/world/cell.js | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/world/cell.js (limited to 'src/world/cell.js') diff --git a/src/world/cell.js b/src/world/cell.js new file mode 100644 index 0000000..5783d72 --- /dev/null +++ b/src/world/cell.js @@ -0,0 +1,41 @@ +'use strict'; + +export function cells_update(cells, update_rules) { + return cells + .map((row, y) => row.map((cell, x) => [x, y, cell.type])) + .flat() + .reduce((acc, [x, y, type]) => [...acc, update_rules[type](cells, x, y)], []) + .filter(x => x !== undefined) +} + + +export function cells_valid(cells, proposal) { + if (!proposal.world_updates) { return true; } + return proposal.world_updates.reduce( + (acc, update) => { + const valid = + (update.x >= 0 && update.x < cells[0].length) && + (update.y >= 0 && update.y < cells.length) && + (cells[update.y][update.x].type == update.from) + return valid && acc; + }, + true + ); +} + + +export function cells_apply(cells, proposals) { + return proposals.reduce( + (acc, prop) => { + const change = (prop.world_updates || []).reduce( + (acc_, update) => { + acc_[update.y][update.x].type = update.to; + return acc_ + }, + [...acc] + ); + return change; + }, + [...cells] + ); +} -- cgit v1.2.1