wlof / gameoflife

A simple Python implementation of Conway's Game of Life using the curses library.
MIT License
3 stars 0 forks source link

Allow arbitrary grid sizes #6

Closed wlof closed 9 years ago

wlof commented 9 years ago

At the moment, the grid size is fixed by the terminal size.

Ideally, Conway's Game of Life should be played on a large (potentially infinite) grid.

This feature would require dissociating the grid size from the view size, which would be a good thing anyway.

wlof commented 9 years ago

Grid size and view size now exist independently as of 0.2.0.

Grid size is fixed at 100x100 for now, but we only need to add some command-line arguments to let the user specify its own grid size.

wlof commented 9 years ago

Done as of 0.3.1.