An implementation of Conway's Game of Life written in Java.
This was written as a way to simulate Conway's Game of Life. It follows the original rules of the game that can be found here: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
You can compile from the source code by executing command
javac MainFrame.java
from the directory containing the code. Run with command:
java MainFrame
Alternatively, you can download the JAR file and run that.
- Click the cells of the grid to spawn cells and create some initial configuration
- Choose your speed from the dropdown menu
- Push Start to begin the simulation.
- You can pause/resume the simulation at any point.
- Pushing the reset button will stop the simulation and clear the grid.