A terminal version of Conway's Game of Life.
Go to file
2025-02-28 01:23:08 -05:00
conway.1 Added manpage 2019-06-13 15:43:23 -07:00
conway.c Bugfix color escape sequence 2025-02-28 01:23:08 -05:00
LICENSE Initial commit 2019-03-18 16:05:51 -07:00
Makefile Removed -ltermbox from makefile 2019-09-22 19:36:17 -07:00
README.md Updated image URL 2019-06-15 17:36:34 -07: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 <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)

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