Implementation of cellular automaton in python using pygame (mainly Conway's Game of Life)
-
GOL
- Conway's Game of Life, developed to test speed of various cell update modes
- Simple mode: all cells are updated
- Bounding Box mode: The bounding box of the live cells is calculated and only cells within it are updated (faster)
- Active Cells mode: only the cells around the active cells are updated (work in progress)
- Controls:
Enter
= StepSpace
= Run/PauseMMB
= Run/PauseLMB
= Set cellsRMB
= Clear cellsM
= Change modeS
= Toggle separationP
= Toggle prev stateC
= Clear allG
= Gosper glider gun patterng
= Glider patternR
= Random patternESC
= Quit
GIF is current as of commit dc9ffef