https://github.com/arranf/gameoflife
A JavaFX GUI version of Conway's Game of Life
https://github.com/arranf/gameoflife
Last synced: 2 months ago
JSON representation
A JavaFX GUI version of Conway's Game of Life
- Host: GitHub
- URL: https://github.com/arranf/gameoflife
- Owner: arranf
- Created: 2016-06-26T11:24:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-14T21:07:27.000Z (over 9 years ago)
- Last Synced: 2025-03-11T18:53:36.807Z (over 1 year ago)
- Language: Java
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
Prerequisites:
Compile LifeGrid and GameOfLife with java
Run GameOfLife with the command "java GameOfLife"
GameOfLife takes the following parameters, all of which are optional.
GameOfLife --x=50 --y=50 --runfor=10 --file="test_blinker.txt"
Where:
x is the dimensions of the width of the grid
y is the dimensions of the height of the grid
file is a *string* which is the source file to initially populate the grid
runfor is the number of generations that should be calculated at a time
If no paramters are provided the program will default to a 30 by 30 grid calculating one generation at a time with a random initial seed.