https://github.com/ztomz/game_of_life
https://github.com/ztomz/game_of_life
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ztomz/game_of_life
- Owner: zTomz
- Created: 2024-05-04T17:02:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-05T11:45:00.000Z (about 2 years ago)
- Last Synced: 2025-06-13T00:03:23.786Z (about 1 year ago)
- Language: C++
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game of Life
This repository implements the [Conway’s Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). I will use this to learn about Flutter performance optimizations.
### Performance
##### Settings
- Not the best benchmark, I just create the list, then draw a bit and make some evolutions.
```dart
const int kCellCount = 10000;
const int kMaxCellsPerRow = 80;
```
##### Results
- Initial commit:
- Average: 11 FPS
- Coding time: Around 1 hour
- Multithreaded game setup:
- Average: 16 FPS
- Coding time: 35 minutes