/conways_game_of_life

Implementation of Game of Life, a zero-player game

Primary LanguageCMIT LicenseMIT

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. License
  5. Contact

About The Project

This app implements Game of Life. Each step is output into the BMP image.

Getting Started

Clone the repo with git clone https://github.com/MariaMozgunova/conways_game_of_life.git. Compile the program

Usage

Valid parameters for the program:

  • --input input_file.bmp - specify BMP image containing initial state of the game. Required
  • --output dir_name - specify directory name where to store states of the game. Required
  • --max_iter N - maximum number of iterations program will do. Defaults to infinity
  • --dump_freq N - specify the frequency of storing the state of the game. Defaults to 1

Eample of usage: conways_game_of_life.exe --input test.bmp --output res

License

Distributed under the MIT License. See LICENSE.txt for more information.

Contact

Maria Mozgunova - @mariamozgunova - mariiamozgunova@gmail.com

Project Link: https://github.com/MariaMozgunova/conways_game_of_life

(back to top)