X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=2d.js;h=97fac57c5c9823f3588217f21df4debc4a3d9105;hb=36c555d72a5ac9f60b9a13915a21235284e50c42;hp=f0e5f1e3ab318cb0106b529029b3d273ebf40e0f;hpb=eb70a4861e1e34d2b30b5e589cc5d4a07c0a18c9;p=cellular-automaton.git diff --git a/2d.js b/2d.js index f0e5f1e..97fac57 100644 --- a/2d.js +++ b/2d.js @@ -3,11 +3,6 @@ $(document).ready(function(){ var canvas = $('#2d-automaton')[0]; var c = canvas.getContext('2d'); - var rows = 50; - var columns = 50; - - var cellWidth = canvas.width / rows; - var cellHeight = canvas.height / columns; function cell(x, y, h, l) { this.x = x; @@ -30,40 +25,49 @@ $(document).ready(function(){ } } - function universe() { + function universe(blank) { this.population = []; this.generation = 0; - for (var i = 0; i < rows; i++) { + this.blank = blank || 0; + + this.rows = 50; + this.columns = 50; + + var cellWidth = canvas.width / this.rows; + var cellHeight = canvas.height / this.columns; + + for (var i = 0; i < this.rows; i++) { var world = []; var x = 0; var y = i * cellHeight; - for (var ii = 0; ii < columns; ii++) { + for (var ii = 0; ii < this.columns; ii++) { world.push(new cell(x, y, cellWidth, cellHeight)); x += cellWidth; - Math.random() > .5 ? world[ii].revive() : world[ii].kill(); + if (this.blank) { world[ii].kill(); } + else { Math.random() > .5 ? world[ii].revive() : world[ii].kill(); } } this.population.push(world); } - this.highlight = function() { - for (var i = 0; i < rows; i++) { - for (var ii = 0; ii < columns; ii++) { + this.redraw = function() { + for (var i = 0; i < this.rows; i++) { + for (var ii = 0; ii < this.columns; ii++) { if (this.population[i][ii].state == 1) { - this.population[i][ii].highlight(); + this.population[i][ii].redraw(); } } } } - this.redraw = function() { - for (var i = 0; i < rows; i++) { - for (var ii = 0; ii < columns; ii++) { - if (this.population[i][ii].state == 1) { - this.population[i][ii].redraw(); - } + this.serialize = function() { + var serial = ''; + for (var i = 0; i < this.rows; i++) { + for (var ii = 0; ii < this.columns; ii++) { + serial += this.population[i][ii].state; } } + return serialize; } } @@ -124,6 +128,22 @@ $(document).ready(function(){ running = 0; }); + $('#controls #reseed-automaton').click(function(e){ + 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; + }); + $('#2d-automaton').click(function(e) { if (!running) { var x = e.pageX - $('#2d-automaton').offset().left;