Conway's Game of Life

RoiziBlaze - Custom level - Jan 30, 2022 from Android
Revision #2, updated Jan 30, 2022
PlayEdit 2 players liked this.
Issues trying to play levels? Troubleshoot issues playing levels

The Game of Life is a cellular automaton divided by the British mathematician John Horton Conway in 1970. Rules: The playing field is marked up into cells, each of which can be alive (white) or dead (black). There are 4 cases:

  1. Any live cell with fewer than two live neighbours dies, as if by under population.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overpopulation.
  4. Any dead cell with exactly three live neighbours becomes alive cell, as if by reproduction.

Control (main panel): F - Shift by one step G - Play/Pause J - Clear field or fill it by random live cells H - Show/Hide messages

Sliders: Z - Frequency X - Field scale (just scale, not number of the cells)

You can click on the field to place or remove live cells.

You can change the variables "widthX" and "heightY" in the Lua Script with id 1 to change the number of cells in the field.

Views: 100 - Downloads: 54 - Level ID: 362

Comments

2 years ago SkyWell: new bee