From: Dylan Lloyd Date: Mon, 17 Dec 2012 03:40:29 +0000 (-0500) Subject: allow random or blank reseed X-Git-Url: https://disinclined.org/git/?a=commitdiff_plain;h=96eed2a09cdd6d2e4796cf232347fd59291b594f;p=cellular-automaton.git allow random or blank reseed --- diff --git a/2d.js b/2d.js index 8669d2e..cb48fdf 100644 --- a/2d.js +++ b/2d.js @@ -30,9 +30,10 @@ $(document).ready(function(){ } } - function universe() { + function universe(blank) { this.population = []; this.generation = 0; + var blank = blank || 0; for (var i = 0; i < rows; i++) { var world = []; @@ -41,7 +42,8 @@ $(document).ready(function(){ for (var ii = 0; ii < columns; ii++) { world.push(new cell(x, y, cellWidth, cellHeight)); x += cellWidth; - Math.random() > .5 ? world[ii].revive() : world[ii].kill(); + if (blank) { world[ii].kill(); } + else { Math.random() > .5 ? world[ii].revive() : world[ii].kill(); } } this.population.push(world); } @@ -67,7 +69,7 @@ $(document).ready(function(){ } } - function tick(automaton) { + function tick(automaton, blank) { automaton.generation += 1; var universe = automaton.population; var newUniverse = []; @@ -128,8 +130,16 @@ $(document).ready(function(){ if (running) clearInterval(tickID); $('#controls #stop-automaton').hide(); $('#controls #start-automaton').show(); + automaton = new universe(); + running = 0; + }); + + $('#controls #custom-seed-automaton').click(function(e){ + if (running) clearInterval(tickID); + $('#controls #stop-automaton').hide(); + $('#controls #start-automaton').show(); + automaton = new universe(1); running = 0; - automaton = new universe; }); $('#2d-automaton').click(function(e) { diff --git a/index.php b/index.php index d8cd22d..1a48f88 100644 --- a/index.php +++ b/index.php @@ -15,9 +15,12 @@
2500 cells

- Start automaton - Stop automaton - Reseed automaton + Start automaton
+ Stop automaton
+ + Reseed random + or blank +