I know Conway was slightly resentful that game of life overshadowed some of his other work in the public's imagination, but I've always been entranced by it.
I remember as a child the first computer my family had was a dual boot of Microsoft DOS and Windows 3.1 (or something like that?). On the Windows 3.1 side was a version of Conway's Game of Life which was preinstalled, and I'd spend hours messing around with it. You could place two different colors of cells, and I'd set patterns up and then let the simulation go to see which one would "win", or outlast the other.
Conway's Game of Life was also one of the first meaningful things I'd programmed, and even today I like to reimplement game of life when learning a new langauge. Typically I like to let the user assign different colors to the grid, and have new cells born be a blend of all of their neighboring colors as a kind of simulation of natural selection. Right now I'm learning network programming for game development, and I'm finishing up a networked implementation of game of life so multiple people can join and manipulate a running simulation. In general I think it's a good project to use when playing around with learning something new.
I just really like cellular automatons, and game of life in particular.
Conway's Game of Life has a slightly different rule set. Cellular Automata is the blanket term for things like this and there are a pretty incredible variety of rulesets.
Set it up so that you only have to agree to the number of life cells you can both place, as soon as the last cell is placed the game fires and runs to completion.
Two sliders, starting at 50 cells or so, both players can lower the slider as long as the cells have not been all places. Each player sets a cell to their colour in turn.
Excellent little idea, it won't make you any money in the short run but it has a fair chance of going viral.
Core wars for life.
Really neat little idea.
edit: and now the Hacker News variation on this, set it up so there is an API where hackers can pit their skills against each other, a sort of face off arena for cellular automaton placement strategies.
There is your machine learning angle.
For extra points provide a schedule and a way for spectators to follow the action.
1) There is a classic space shooter game whose physical engine is defined solely in terms of a cellular automaton. However, to make this work the rules are not exactly Conway's rules, and cells have more than two states (multiple colors instead of black/white).
2) Strategy Game: A long time ago I developed such a concept with a friend, but we never implementated that game. The idea was to have a strategic game whose units (and their strength/weaknesses) are fully described by Conway's rules, such that new "units" are not defined by the game designers, but by the players. And dicovering new interesting Game-of-life structure may give you an advantage over your competitor.
3) However, somebody else implemented a strategy game of top of Conway's game of life. It has a very different concept than what my friend and me envisioned, though, so I guess there is room for many more different games:
you've heard of game of life, right? They've already created computers in that even simpler cellular automata world. They've even recreated the game of life within game of life...
There is a rather roundabout route to compiling software to game of life cells that is pretty interesting. It is of course completely impractical but the idea that it could be done is intriguing.
Nice share. It probably can't compete with a major Game of Life simulator such as Golly, but I agree that Conway's Game of Life is an excellent little programming project that is entertaining to implement in different languages.
Shameless plug: Have some fun over possible setups of cellular-automata (which conway's game of life is a subset of): http://aperocky.com/cellular-automata/
It lets multiple cell colonies fight against each other using a modified ruleset.
reply