Marlio
March 25, 2025, 12:52pm
1
So, apparently this has been done a few times, but here’s my simulator for Conway’s Game of Life!
If you don’t know what Conway’s Game of Life, then here are the rules:
If a living cell has less than two or more than 3 living neighbors, then that cell will die.
If a living cell has 2-3 living neighbors, then the cell will stay alive.
If a dead cell has exactly 3 living neighbors, then that cell will come back to life.
If you want more information, here’s a link to a wiki about the “game”:
The Game of Life, also known as Conway's Game of Life or simply Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970. It 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. It is Turing complete and can simulate a universal constructor or any other Turing machine.
The universe of the Game of...
9 Likes
Yo this is actually sick
making it mouse compatible is really cool
1 Like
Marlio
March 28, 2025, 5:15pm
3
It should also be comparable with hardware.
1 Like
NEW UPDATE.
I have slightly updated this project and made it so that there are slight improvements to things such as the pause menu and the non-mouse controls for the cursor. Here’s the updated project:
1 Like