/GoL-Ruby

Implementation of Conways Game of Life in Ruby

Primary LanguageRuby

Game of Life

Table of contents

Project description

The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970. The “game” is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves.

Rules in the Game of Life

The universe of the Game of Life is an infinite two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, alive or dead. Every cell interacts with its eight neighbors, which are the cells that are directly horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur:

  • Any living cell with fewer than two live neighbours dies, as if caused by underpopulation.
  • Any living cell with more than three live neighbours dies, as if by overcrowding.
  • Any living cell with two or three live neighbours lives on to the next generation.
  • Any dead cell with exactly three live neighbours becomes a live cell.

The initial pattern constitutes the seed of the system.
The first generation is created by applying the above rules simultaneously to every cell in the seed: births and deaths happen simultaneously, and the discrete moment at which this happens is sometimes called a tick (in other words, each generation is a pure function of the one before).
The rules continue to be applied repeatedly to create further generations.

Proposed solution

In my solution, I cover all the rules defined in Game of Life. Also, I cover the case where even the cells on the board's edges interact with its eight neighbors. This means that the board is 'wrapped' and every cell in it interacts with eight neighbors.
I am using the Matrix library which represents a mathematical matrix. This is used as a representation of the board in the Game of Life.

Usage

Run ruby game_of_life.rb
By default, it will run for 3 generations. This can easily be changed in the game_of_life.rb file.

For tests, I am using rspec.
To run the tests, simply run rspec spec_game_of_life.rb

Game of Life

Enjoy!

Done by Salomón Charabati