A terminal version of Conway's Game of Life.
Go to file
2019-05-26 06:14:06 +00:00
conway.c Modulo (%) wrapping of negative numbers behaves differently on different 2019-03-18 21:22:39 -07:00
LICENSE Initial commit 2019-03-18 16:05:51 -07:00
Makefile Initial commit 2019-03-18 16:05:51 -07:00
README.md Added preview image 2019-05-26 06:14:06 +00:00

Conway

This is a program for running Conway's Game of Life on the command line.

Preview

Building

make to build and make install to install.

Usage

Command line flags:

  • -S[0-8]* the rules for when an alive cell survives
  • -B[0-8]* the rules for when a new cell is born
  • -A[0-256] provide a color for alive cells
  • -D[0-256] provide a color for dead cells

Some interesting rulesets can be found in this list.

Actions:

  • Mouse: draw cells (by default: create new cells)
  • Space: toggle mouse mode between create/destroy
  • p: toggle play/pause
  • q or Escape: quit
  • c: clear the world