Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 855 Bytes

File metadata and controls

26 lines (14 loc) · 855 Bytes

RustyLife

An simple implementation of Game of Life in Rust.

This is uses several ideas from the implementation of snake from Redox-OS (https://github.com/redox-os/games/tree/master/src/snake).

At the current state the game works, but could use several improvements.

Features.

We use a "toriodal" world in the sense that the left boundary is "glued" to the right boundary and the bottom boundary is "glued" to the top boundary. A glider leaving hitting the bottom boundary will reappear at the top boundary. See below screenshot for example.

Screenshot

Rusty Life Glider Gun

TO-DO

  • Switch between toriodal mode, and "dead-outside-of-screen" mode.
  • Allow pause and update during run.
  • Get accepted into Redox-OS game collection.