Skip to content

Nikorasu/CellularAutomata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cellular Automata Projects

Conway's Game of Life

gameoflife.py is my attempt at a Game of Life simulation. Uses Pygame, Numpy and RE. Includes controls to move around and zoom, change speed, or toggle color-mode. It can also load pre-made complex life patterns from RLE files. I've also made several alternative versions, life-infdict.py uses a dictionary so gliders and such can travel outward "forever". Other versions in 'old' folder.

Maze-like generation rule

mazegen.py is a version of life, with additional rules that result in maze-like patterns. Rules: B3/S12345 (or B3/S1234 for mazectric rules)

For more information, and future updates, see github page.


    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.
    If not, see: https://www.gnu.org/licenses/gpl-3.0.html
Copyright (c) 2021 Nikolaus Stromberg - [email protected]

ripconway