summaryrefslogtreecommitdiff
path: root/src/ui
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-11-16 14:50:00 -0600
committersanine <sanine.not@pm.me>2023-11-16 14:50:00 -0600
commitf9fc4d26ec5fca9ee175c8a6fbcdd0fa36f10947 (patch)
treef190e6e465bb563c608a916f41fc8bf686ea2897 /src/ui
parent7825b92ce3be95a0ce1dfea9388adbaadce83b1f (diff)
clear out js files
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/canvas.js11
-rw-r--r--src/ui/index.js75
2 files changed, 0 insertions, 86 deletions
diff --git a/src/ui/canvas.js b/src/ui/canvas.js
deleted file mode 100644
index b04b966..0000000
--- a/src/ui/canvas.js
+++ /dev/null
@@ -1,11 +0,0 @@
-'use strict';
-
-export function draw(canvas, size, fn) {
- const ctx = canvas.getContext("2d");
- const scale = canvas.clientWidth/size;
- ctx.save();
- ctx.scale(scale, scale);
- ctx.clearRect(0, 0, size, size);
- fn(ctx);
- ctx.restore();
-}
diff --git a/src/ui/index.js b/src/ui/index.js
deleted file mode 100644
index 01068cb..0000000
--- a/src/ui/index.js
+++ /dev/null
@@ -1,75 +0,0 @@
-import { draw } from './canvas.js';
-import { create_team, create_epoch, update_epoch } from '../simulation/game.js';
-
-
-console.log("generating agents...");
-const start_teams = [...Array(4)].map(x => create_team(2, 400, 50));
-console.log("creating epoch...");
-let epoch = create_epoch(60, start_teams);
-console.log("ready!");
-
-
-function draw_cell(ctx, x, y, cell) {
- ctx.fillStyle = (() => {
- switch (cell.type) {
- case 'empty':
- return '#ffffff';
- case 'immutable':
- return '#0000ff';
- case 'mutable':
- return '#555555';
- case 'active':
- return '#000000';
- case 'flag':
- return '#ffff00';
- default:
- return '#00ff00';
- }
- })();
- ctx.fillRect(x, y, 1, 1);
-}
-
-function draw_agent(ctx, agent) {
- ctx.beginPath();
- ctx.fillStyle = '#ff0000';
- const { x, y } = agent;
- ctx.arc(x+.5, y+.5, .5, 0, 2*Math.PI);
- ctx.fill();
-}
-
-
-function render(canvas) {
- draw(canvas, epoch.size, (ctx) => {
- for (let y=0; y<epoch.size; y++) {
- for (let x=0; x<epoch.size; x++) {
- draw_cell(ctx, x, y, epoch.game.world.lattice[y][x]);
- }
- }
- epoch.game.world.agents.forEach(a => draw_agent(ctx, a));
- });
-}
-
-
-function update(canvas) {
- console.log('update');
- epoch = update_epoch(epoch);
- render(canvas);
- setTimeout(() => update(canvas), 1);
-}
-
-
-function main() {
- const canvas = document.getElementById('canvas');
- window.onresize = () => {
- const size = 0.95*window.innerWidth
- canvas.width = size;
- canvas.height = size;
- render(canvas);
- }
- window.onresize();
- console.log("c:");
- update(canvas);
-}
-
-
-window.onload = main;