{"id":24648112,"url":"https://github.com/musadiqpasha/cellular-automata-visualizer","last_synced_at":"2026-05-04T04:33:52.368Z","repository":{"id":272276104,"uuid":"916049891","full_name":"MusadiqPasha/Cellular-Automata-Visualizer","owner":"MusadiqPasha","description":"Cellular-Automata-Visualizer is a collection of four interactive cellular automaton simulations with real-time, color-coded grid visualizations, implemented in Python mode using Processing.","archived":false,"fork":false,"pushed_at":"2025-01-13T14:54:16.000Z","size":77681,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T18:52:37.697Z","etag":null,"topics":["automata","automata-simulator","cellular-automata","processing","processing3","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MusadiqPasha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-13T11:07:29.000Z","updated_at":"2025-01-13T14:54:20.000Z","dependencies_parsed_at":"2025-03-23T18:54:20.372Z","dependency_job_id":null,"html_url":"https://github.com/MusadiqPasha/Cellular-Automata-Visualizer","commit_stats":null,"previous_names":["musadiqpasha/cellular-automata-visualizer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MusadiqPasha/Cellular-Automata-Visualizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MusadiqPasha%2FCellular-Automata-Visualizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MusadiqPasha%2FCellular-Automata-Visualizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MusadiqPasha%2FCellular-Automata-Visualizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MusadiqPasha%2FCellular-Automata-Visualizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MusadiqPasha","download_url":"https://codeload.github.com/MusadiqPasha/Cellular-Automata-Visualizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MusadiqPasha%2FCellular-Automata-Visualizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32595197,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automata","automata-simulator","cellular-automata","processing","processing3","python3"],"created_at":"2025-01-25T16:04:48.346Z","updated_at":"2026-05-04T04:33:52.354Z","avatar_url":"https://github.com/MusadiqPasha.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cellular-Automata-Visualizer\nThis is a collection of interactive simulations for various cellular automata models, including Amoeba, Game of Life, and more. It provides real-time visualization of the grid evolution, allowing users to explore different patterns and behaviors of these automata.\n\nA collection of cellular automata simulations implemented using [Processing.org](https://processing.org/). To run the project, make sure to use Python mode in Processing for proper execution and visualization of grid evolution.\n\nThis project features four unique games: \n\n- **Amoeba**\n- **Brian's Brain**\n- **Game of Life**\n- **Larger Than Life**\n  \neach demonstrating distinct rules and behaviors for cellular automata.\n\n## Features\n- **Interactive Visualization**: Dynamic, grid-based simulations with color-coded states for easy visualization.\n- **Four Cellular Automata Games**:\n  1. **Amoeba**: Simulates organic-like growth patterns with unique rules.\n  2. **Brian's Brain**: A three-state cellular automaton with \"on,\" \"dying,\" and \"off\" cells.\n  3. **Game of Life**: Conway's famous simulation of life and death based on simple neighbor-count rules.\n  4. **Larger Than Life**: A generalized automaton with custom rules for more complex patterns.\n\n## How It Works\n\n- The grid is initialized with random states or a preset configuration.\n- Each simulation computes the next generation based on its specific rules.\n- Color-coded grids visually represent the changes in real time.\n\n## Color Representation\n\n### Default States:\n- Blue: \"Off\" or inactive.\n- White: Neutral or empty state.\n  \n### Dynamic States:\n- Yellow: Cells being compared or in transition.\n- Red: Cells marked for change (e.g., \"Dying\").\n- Black: Cells in an active state (e.g., \"On\").\n  \n## Cellular Automata Rules\n### 1. **Amoeba**\n- Generates organic, amoeba-like growths and contractions.\n- Simulates dynamic and organic growth patterns.\n- Rules are tailored to produce self-sustaining patterns.\n\n\n\u003cimg src='https://github.com/MusadiqPasha/Cellular-Automata-Visualizer/blob/main/ca%20demo/amoeba.gif'\u003e\n\n### 2. **Brian's Brain**\n- Produces glowing wave-like patterns that resemble firing neurons.\n- Each cell has three states: **On** (blue), **Dying** (red), and **Off** (white).\n- Rules:\n  - **Off** → **On** if exactly two neighbors are \"On.\"\n  - **On** → **Dying** in the next step.\n  - **Dying** → **Off** in the subsequent step.\n\n\u003cimg src='https://github.com/MusadiqPasha/Cellular-Automata-Visualizer/blob/main/ca%20demo/Brains_Brain.gif'\u003e\n\n### 3. **Game of Life**\n- A classic cellular automaton invented by John Conway.\n- Each cell can be **Alive** (black) or **Dead** (white).\n- Rules:\n  - **Dead** → **Alive** if it has exactly three live neighbors.\n  - **Alive** → **Dead** if it has fewer than two or more than three live neighbors.\n  - **Alive** → **Alive** if it has two or three live neighbors.\n\n \u003cimg src='https://github.com/MusadiqPasha/Cellular-Automata-Visualizer/blob/main/ca%20demo/Game%20of%20Life.gif'\u003e\n\n### 4. **Larger Than Life**\n\n- Behavior: Creates large, intricate patterns.\n- A generalization of Conway's rules, allowing larger neighborhoods.\n- Birth: A dead cell (0) turns \"on\" (1) if it has 3, 4, 5, 6, 7, or 8 neighbors that are \"on.\"\n- Survival: An \"on\" cell (1) remains \"on\" if it has 3, 4, 5, 6, 7, or 8 neighbors that are \"on.\"\n- Death: All other cells turn \"off.\"\n\n \n\u003cimg src='https://github.com/MusadiqPasha/Cellular-Automata-Visualizer/blob/main/ca%20demo/Larger_than_life.gif'\u003e\n\n## Installation\n1. Download and install [Processing](https://processing.org/) [use Python Mode]\n2. Clone this repository or download the ZIP file:\n   ```bash\n   git clone https://github.com/kmusadiqpasha/cellular-automata-visualizer\n\n3. Open the .pde files for each simulation in Processing.\n4. Run the sketches and watch the cellular automata come to life!\n\n### License\n- This project is licensed under the MIT License - see the LICENSE file for details.\n\n##\n## Just follow me and Star ⭐ my repository \n## Thank You!!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmusadiqpasha%2Fcellular-automata-visualizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmusadiqpasha%2Fcellular-automata-visualizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmusadiqpasha%2Fcellular-automata-visualizer/lists"}