Conway's Game of Life

Game of Life


Repo

Conway's Game of Life is a zero player game comprised of a grid of cells that are meant to represent organisms.  Each cell can have one of two states, living or dead.  Every cell has eight neighbors that are horizontally, vertically, and diagonally adjacent.  For each generation, all cells are updated (toggled between living and dead) according to four basic rules:

I have implemented the Game of Life using C++ and SFML.  The game includes simple user interaction, enabling players to set cells to living or dead before beginning the game.  Additionally, users can pause at any point to toggle cells between living and dead.  Finally, users can reset the game to the initial empty state. 

Creation of initial state

Users can initialize living cells before starting the game using left click to set a cell to living and right click to set a cell to dead. 

User interaction

At any point during the game, users can use the spacebar to stop the game and make changes to the cells on the board using left and right click.  Additionally, the R key can be used to reset the game entirely.