tag. -->

John Conway's Game of Life

Below is a java version of John Conway's Game of Life.  It is fairly simple to use.  You can select some default starting points by using the combination box on the left of the bottom control panel.  You can also add cells directly by clicking on the grid.  If you click and drag, you add cells.  If you simply click on the grid you will change the cell - a blank cell will be filled and a filled cell will be empty.  Pressing the start button will start the program. Pressing stop will stop the program and allow you to enter new cells or figures.  The clear button starts the process over.

The Rules:

Below are the rules to life:

For a space that is 'populated':
Each cell with one or no neighbors dies, as if by loneliness.
Each cell with four or more neighbors dies, as if by overpopulation.
Each cell with two or three neighbors survives.
For a space that is 'empty' or 'unpopulated'
Each cell with three neighbors becomes populated.
 
In this version, the space is finite but unbounded - that is, in counting neighbors I wrap the grid around at the edges.

The set of presets is quite limited at this time.  If you send me others I will gladly add them to this list.

 

No Java 2 SDK, Standard Edition v 1.3 support for APPLET!!