From 85eaec7cc93196dd0c2362e967d550c190fb10dc Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Sun, 16 Dec 2012 21:48:58 -0500 Subject: [PATCH] added button to regenerate 1d automaton --- 1d.js | 10 +++++++++- index.php | 2 ++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/1d.js b/1d.js index 8ce01bd..a24f5bd 100644 --- a/1d.js +++ b/1d.js @@ -43,6 +43,8 @@ $(document).ready(function(){ var world = []; var x = 0; var y = 0; + generation = 0; + generations = 100; for (var i = 0; i < cells; i++) { world.push(new cell(x, y, cellWidth, cellHeight)); x += cellWidth; @@ -66,7 +68,13 @@ $(document).ready(function(){ } var world = populate_world(); - while (generations) { generate(); generations-- } + while (generations - generation) { generate();} //var tick_id = setInterval(generate, 100); + $('#controls #regenerate-automaton').click(function(e){ + c.clearRect(0,0,canvas.width,canvas.height); + world = populate_world(); + while (generations - generation) { generate(); } + }); + }); diff --git a/index.php b/index.php index 959899f..06878e3 100644 --- a/index.php +++ b/index.php @@ -26,6 +26,8 @@
100 Generations
100 Cells +

+ Regenerate automaton -- 2.30.2