Skip to main content

TDD-style implementation of Conway's Game of Life in Python

Project description

Build Status codecov Pyton Version Support

py-conway

TDD-style implementation of Conway's Game of Life in Python. Built with zero dependencies in order to be portable to Web, CLI and embedded applications.

View Project on PyPi

Installation

pip install py-conway

Usage

To create a game, you'll need to provide dimensions and a starting two-dimensonal list to function as the game board. For example:

from py_conway import Game

seed = [[0, 1, 0],
        [1, 1, 1],
        [0, 1, 0]]

new_game = Game(3, 3, seed)

If no seed is provided, the game can either generate a seed of zeroes, or a random starter seed. use the random=True positional argument to generate a random seed.

new_game = Game(12, 12, random=True)

Once the game board is populated, call the start() method. The game values and state will be initialized so you can interact with the board one step at a time. You can also use this method to re-initialize the game:

new_game.start()

You can also instruct the game to self-run with the start_thread() method. The game will start on a background thread and update the full game board as well as a number of informational instance variables:

new_game.start_thread()

new_game.current_board # hold the complete game state after each step
new_game.live_cells # the count of live cells on the board
new_game.generations # the number of steps elapsed in the current game.

new_game.stop_thread()

It's also possible to call the run_generation() method and control the game state yourself from one iteration to the next:

new_game.run_generation()

According to the rules of Conway's Game of Life, the board is meant to be infinite. If you wish to emulate this behavior in your own games, you can wrap the board around on itself with the initialization flag enforce_boundary, which is true by default.

seed = [[1, 0, 0, 0],
        [1, 0, 0, 0],
        [1, 0, 0, 0],
        [0, 0, 0, 0]]

new_game = Game(4, 4, seed=seed, enforce_boundary=False)

If the above code is run for a single generation, the board will look like this

[[0, 0, 0, 0],
 [1, 1, 0, 1],
 [0, 0, 0, 0],
 [0, 0, 0, 0]]

Here's an example that runs the game and plots the game board after intialization and the first generation:

import matplotlib.pyplot as plt
from py-conway import Game

def create_zeros(x, y):
    dim_one = [0 for item in range(x)]
    return [dim_one[:] for item in range(y)]

seed = create_zeros(12, 12)

seed[0][1] = 1
seed[1][2] = 1
seed[2][3] = 1
game = Game(12, 12, seed)

plt.imshow(game.current_board, cmap='binary')
plt.show()

game.run_generation()

plt.imshow(game.current_board, cmap='binary')
plt.show()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-conway-0.3.0.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

py_conway-0.3.0-py3-none-any.whl (9.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page