Game of Life

Game of Life

Download for Windows Download for Mac Download for Linux

Overview

Conway’s Game of Life is a zero player game, meaning the player sets an initial state and then sits back as the simulation is run. The simulation consists of a grid of cells that exist in one of two states, alive or dead. These cells are governed by 4 rules, based on the 8 neighboring cells surrounding any given cell:

  • If there are less than 2 living cells surrounding a living cell, it will die, as if by underpopulation.
  • If there are 2 or 3 living cells surrounding a living cell, it will continue to live.
  • If there are more than 3 living cells surrounding a living cell, it will die, as if by overpopulation.
  • If there are exactly 3 living cells surrounding a dead cell, it will become alive, as if by reproduction.

This leads to many interesting patterns and is fascinating to mess around with. Interestingly enough, it is also Turing complete, meaning it can simulate a computer. The Game of Life itself has been built with the Game of Life!

Instructions

Input

  • Right mouse button: Add a new cell to the grid.
  • Left mouse button: Remove an existing cell from the grid.
  • Arrow keys: Scroll around the grid.
  • Spacebar: Reset the scroll position to the default.
  • Start/Stop: Start or stop the simulation.
  • Store: Store current grid state in memory.
  • Reset: Reset the grid to the state saved in memory.
  • Clear: Clear the grid completely.
  • Save: Save the current grid state to a file named saved.
  • Cells: Select the cell type to place on the grid.

Screenshots