From: Dylan Lloyd Date: Mon, 17 Dec 2012 02:48:58 +0000 (-0500) Subject: added button to regenerate 1d automaton X-Git-Url: https://disinclined.org/git/?a=commitdiff_plain;h=85eaec7cc93196dd0c2362e967d550c190fb10dc;p=cellular-automaton.git added button to regenerate 1d automaton --- 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