Report as inappropriate.
'Ninto's Game of Life':
//Made with the rules from John Conway's 'Conway's Game of Life'(C).
//Inspiration from tkiesel's 'Conway's Game of Life'. (http://greenfootgallery.org/scenarios/663)
//Check also Wikipedia's entry to 'Conway's Game of Life'. (http://en.wikipedia.org/wiki/Conway's_Game_of_Life)
This games simulates the life of a lot of cells, that are "dead"(white) or "alive"(black).
Rules:
1. Any live cell with fewer than two live neighbours dies, as if by needs caused by underpopulation.
2. Any live cell with more than three live neighbours dies, as if by overcrowding.
3. Any live cell with two or three live neighbours lives, unchanged, to the next generation.
4. Any dead cell with exactly three live neighbours becomes a live cell.
Controls:
-space: run.
-a: act once and stop.
-c: kill all cells (clear).
-r: randomize all cells.
-leftClick: add living cell.
-rightClick: kill living cell.
Objective:
-Not existing.
There is no HTML 5 translation of this scenario available.
View legacy version (requires Java plugin)
This scenarios uses Java features that are not available for use after conversion to HTML 5. Please try the legacy version, which requires the Java plugin to be installed.
Want to leave a comment? You must first log in.
2013/6/8
2013/11/8