Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikorasu/cellularautomata
Nik's Cellular Automata Projects
https://github.com/nikorasu/cellularautomata
cellular-automata conways-game-of-life game-of-life game-of-life-python gameoflife john-conway life maze-generator numpy numpy-arrays pygame python python3 rle simulation turing-pattern turing-patterns
Last synced: 6 days ago
JSON representation
Nik's Cellular Automata Projects
- Host: GitHub
- URL: https://github.com/nikorasu/cellularautomata
- Owner: Nikorasu
- License: gpl-3.0
- Created: 2021-05-30T16:26:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-15T01:47:07.000Z (7 months ago)
- Last Synced: 2024-11-07T06:36:48.967Z (about 2 months ago)
- Topics: cellular-automata, conways-game-of-life, game-of-life, game-of-life-python, gameoflife, john-conway, life, maze-generator, numpy, numpy-arrays, pygame, python, python3, rle, simulation, turing-pattern, turing-patterns
- Language: Python
- Homepage:
- Size: 200 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 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](https://github.com/Nikorasu/CellularAutomata "Cellular Automata - GitHub").---
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](patterns/rip_john_conway.gif "RIP John Conway")