HexLife
The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.
The "game" is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves, or, for advanced "players", by creating patterns with particular properties.
What To Do:
- Click the cells to toggle their state ('alive' or 'dead')
- Use the functions at the bottom to play, pause, reset, control speed, and generate a random starting pattern.
This implementation explores the properties of the simulation of a hexagonal grid, while following the same simple rules of the original:
- Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
Source code
Source code can be downloaded via my bitbucket: https://bitbucket.org/alexpech12/hexlife
Mirrored on GitHub: https://github.com/alexpech12/HexLife
Status | Released |
Platforms | HTML5 |
Author | rednax |
Genre | Simulation |
Tags | automaton, cellular, gameoflife, hex, life, mathematics |
Average session | A few minutes |
Inputs | Mouse |
Leave a comment
Log in with itch.io to leave a comment.