kdomasze / Conway-s-Game-Of-Life

A implementation of Conway's Game of Life in C++ and SFML
MIT License
0 stars 0 forks source link

Add support for saving/loading configuration files #1

Open kdomasze opened 7 years ago

kdomasze commented 7 years ago

A nice quality of life feature would be to add a method for saving and loading layouts to easily share or save interesting simulations.

Simplest solution would be a flat text file that defines a grid size [x, x] and includes an array of 1s and 0s to define the grid state.

Example:

5x5
00100
11100
00110
11111
00100
kdomasze commented 6 years ago

Loading added. Saving still needs to be implemented.