Last active
November 14, 2015 15:51
-
-
Save PetrSnobelt/15014199d7bc44026c06 to your computer and use it in GitHub Desktop.
Game of Life in pure ES6 in 40 loc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
const near = [[-1,-1], [0,-1], [1,-1], | |
[-1, 0], [1, 0], | |
[-1, 1], [0, 1], [1, 1]]; | |
const neighbours = (p) => | |
near.map(i => [ (p[0] + i[0]), (p[1] + i[1]) ]); | |
var contain = (p, neig) => | |
neig.some(x => x[0] == p[0] && x[1] == p[1]); | |
var liveNeigh = (pos, gen) => | |
neighbours(pos).reduce((p, c) => | |
(p + (contain(c, gen) ? 1 : 0)), 0); | |
var rules = (no, isAlive) => | |
(no == 3 || (no == 2 && isAlive)); | |
var expand = (gen) => | |
gen.reduce((p, c) => { | |
neighbours(c).map(i => { | |
if (!contain(i, p)) p.push(i); | |
}); | |
return p; | |
},[]); | |
var gol = (gen) => | |
expand(gen).reduce(function(p, c) { | |
var n = liveNeigh(c, gen); | |
var found = contain(c, gen); | |
if (rules(n, found)) p.push(c); | |
return p; | |
},[]); | |
var blinker = [[0,0], [0,1], [0,2]]; | |
var pentomimo = [[-1, 0], [-1, 1], [0, -1], [0, 0], [1, 0]]; | |
var state = pentomimo; | |
state = gol(state); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment