Conway's Game of Life
Game of Life
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:
Any cell with fewer than two living neighbors dies, as if by underpopulation.
Any live cell with two or three living neighbors lives on to the next generation.
Any live cell with more than three live neighbors dies, as if by overpopulation.
Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
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.