Conway's Game of Life

Like many before me I have been intrigued by Conway's Game of Life. I have been meaning to do a shader implementation of the algorithm for a while now, I finally sat down and did it. Each cell of the game is a single pixel on the window. In a normal game a cell is considered either alive or dead. For my implementation a cell can be alive or dead in each of the color channels, red, green, and blue. That is, a single cell or pixel may be alive in all three channels resulting in a white pixel. Alternatively, it could be alive in the red channel, but dead in green and blue, resulting in a red cell. If you want you can think of them as three game of life parallel universes.

You should be able to load any image as a seed for the game of life. Keep in mind that the image will be stretched to fit the current game window, so small pixel details will be distorted if the dimensions don't fit. I am using an external library for the file dialog, so there is a possibility that this functionality won't work. If so let me know and I can try to fix the issue. The basic commands of running the game are listed in the main screen of the game. To bring back that screen simply press the "h" key.

DOWNLOAD MAC .APP FILE

SOURCE CODE

I've included a handful of images I was able to create with this program.

Contact: devinscottlange@gmail.com