2019-03-18 16:05:51 -07:00
|
|
|
# Conway
|
2019-03-18 18:13:49 -07:00
|
|
|
This is a program for running [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)
|
|
|
|
on the command line.
|
2019-03-18 16:48:54 -07:00
|
|
|
|
2019-06-15 17:36:34 -07:00
|
|
|

|
2019-05-25 23:14:06 -07:00
|
|
|
|
2019-03-18 17:56:51 -07:00
|
|
|
## Building
|
|
|
|
`make` to build and `make install` to install.
|
|
|
|
|
|
|
|
## Usage
|
2019-03-18 17:20:07 -07:00
|
|
|
Command line flags:
|
|
|
|
|
2019-06-13 15:01:50 -07:00
|
|
|
* `-S [0-8]*` the rules for when an alive cell survives
|
|
|
|
* `-B [0-8]*` the rules for when a new cell is born
|
2019-06-13 15:19:35 -07:00
|
|
|
* `-A <color>` provide a color for alive cells (RGB hex, either 3 or 6 chars)
|
|
|
|
* `-D <color>` provide a color for dead cells (RGB hex, either 3 or 6 chars)
|
2019-03-18 17:20:07 -07:00
|
|
|
|
|
|
|
Some interesting rulesets can be found in [this list](http://psoup.math.wisc.edu/mcell/rullex_life.html).
|
2019-03-18 16:48:54 -07:00
|
|
|
|
2019-03-18 17:37:37 -07:00
|
|
|
Actions:
|
|
|
|
|
2019-03-18 17:56:51 -07:00
|
|
|
* Mouse: draw cells (by default: create new cells)
|
2019-03-18 17:37:37 -07:00
|
|
|
* Space: toggle mouse mode between create/destroy
|
|
|
|
* `p`: toggle play/pause
|
|
|
|
* `q` or Escape: quit
|
|
|
|
* `c`: clear the world
|