Game of Life

Game of Life

This game is from ldjam.com, which is currently unavailable.
You can try viewing the original page on Web Archive (may not load correctly).
overall: 3.28
fun: 2.34
innovation: 3.75
theme: 3.66
Game of Life is a so called * *'cellular automaton'* *, in which evolution takes place on a two-dimensional orthogonal grid of square cells. Each square can either contain an alive cell or be empty (dead cell).

At the beginning the board (in this instance measuring 50x50 squares = 2500 cells) is randomly populated. The 'seed intensity' parameter defines percentage of alive cells in relation to all possible cells on the board. Default value of 50% means that approximately (there is a probability factor involved) half (that is 1250) cells is alive at the start.

Cellular automaton evolves in steps. Current state directly determines state of a following step. Standard (Conway's) rules of Game of Life describe multiplications and deaths of cells:

1. For a square that is * *'alive'* *:
- Each cell with one or no neighbors dies,
- Each cell with four or more neighbors dies,
- Each cell with two or three neighbors survives.
2. For a square that is * *'empty'* * or * *'dead' * *
- Each cell with three neighbors becomes alive.


An example of an evolution step:

In this instance, cells are color-coded according to amount of neighbouring cells.

During the course of the game, cells of a chosen colour can be temporarily protected from dying. Not every colour is worth protecting, which results from the Game of Life's rules.

Protection from dying lasts for 12 evolution steps and is not 100% effective. Its strength decreases with each evolution step until reaches 0%. Protection can be turned on for the first time after 20 steps pass (and the color selection panel appears). Turning consecutive protection on is possible after 8 evolution steps.

The aim of the game is to survive at least 250 evolution steps with at least 250 alive cells (10% of the board)
Found a bug?
Tell us on Discord