Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuulis/lifegame
Life Game made by OpenSiv3D.
https://github.com/yuulis/lifegame
cpp lifegame opensiv3d
Last synced: 20 days ago
JSON representation
Life Game made by OpenSiv3D.
- Host: GitHub
- URL: https://github.com/yuulis/lifegame
- Owner: Yuulis
- License: mit
- Created: 2022-01-02T10:35:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-14T05:54:14.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T09:53:59.627Z (almost 2 years ago)
- Topics: cpp, lifegame, opensiv3d
- Language: GLSL
- Homepage: https://yuulis.github.io/Yuulis-Home/works/lifeGameCpp.html
- Size: 152 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# LifeGame
A simple life game simulator made by [OpenSiv3D](https://github.com/Siv3D/OpenSiv3D).
**Operation verification is performed only on Windows 11. Operation cannot be guaranteed in other environments.**Website (Japanese) >> [Life Game | Yuulis Home](https://yuulis.github.io/Yuulis-Home/works/lifeGameCpp.html)
## Feature
* Large simulation field of 100x70 (Can change as you like)
* Can be simulated with seven types of rules
* Can change freely simulate speed and generation density
* Simple and easily UI## Change Logs
Latest and stable release is ``release-1.0``(Ver 1.0).
| Version | Release Date | Download | Source |
|:-----------:|:-------------:|:--------:|:--------:|
| release-1.0 | 2021/01/08 | [Here](https://github.com/Yuulis/LifeGame/releases/tag/ver1.0) | [Here](https://github.com/Yuulis/LifeGame/tree/release-1.0) |## How to Use
### Download
* You can download this app from [here](https://github.com/Yuulis/LifeGame/releases/tag/ver1.0). The size is about 37.0MB.
* Unzip the downloaded zip file wherever you like.
* Launch ``Life Game Ver1.0/App/LifeGame.exe``, you can play it!You may get a warning when downloading the zip file and when running the application, but you can safely ignore it.
### About UI
#### 1. Field
You can see the current state of the cells. Green is alive, and black is dead.#### 2. UI field
You can change the game settings by using them:* **Set Random** : Place cells in the field randomly.
* **Clear** : Clear all cells in the field.
* **Density** : Change the generation density at the time of **Set Random**. The larger this value, the denser the cells will place.
* **Run / Pause** : Start the simulation. Push this button again, simulation will pause.
* **Speed** : Change the speed at running the simulation.
* **Go to next step** : When pausing the simulation, you can take it to next step.
* **Game rule option** : Select one of the [seven game rules](#about-game-rule).#### 3. Mouse Cursor
Left click to place an alive cell. Right click to delete the cell.#### 4. Steps
Show how many generations have passed since the simulation start.### About Game Rule
Two variables ``B`` and ``S`` are defined like this:
* ``B`` = Number of surrounding cells required for birth
* ``S`` = Number of surrounding cells required for survivalSo, "B3/S23" means that ``B = 3`` and ``S = 2, 3``.
**Game rules list**
* 1 : B3/S23 (Default)
* 2 : B36/S23 (HighLife)
* 3 : B34/S34 (3-4Life)
* 4 : B3678/S34678 (Day and Night)
* 5 : B1357/S1357 (Replicator)
* 6 : B1357/S02468 (Replicator2 / Fredkin)
* 7 : B36/S125 (2x2)Let's see for yourself what kind of movement these will do!
### Let's Play
Show you the flow until the start of simulation:
* Launch the app.
* After set density value as you like, press **Set Random** button.
* Select the game rule.
* Press **Run** to start simulation!### Custom Settings from JSON
You can custom the settings of this app. **Changing this setting may cause the app to behave erratically. Please be careful.**
If you try, open ``Life Game Ver1.0/App/config/settings.json`` and edit the value.
* **WorldSize - width** : number of cells of width of the field (Default is 100)
* **WorldSize - height** : number of cells of height of the field (Default is 70)
* **DefalutDensity** : Density value set by default (Default is 0.35)
* **Defalut Speed** : Speed value set by default (Default is 0.5)## Feedback
For problems about the download and playing this, or suggestions to this README, please [submit a Github issue](https://github.com/Yuulis/LifeGame/issues).
## Licence
This app is available under the MIT license. Please look at [LICENSE.md](/LICENSE.md) for details.
You can see the licence of OpenSiv3D is in ``Licences.html`` in the downloaded file or by pressing F1 while opening this app.