An open API service indexing awesome lists of open source software.

https://github.com/xi/death

a multiplayer variant of conways game of LIFE
https://github.com/xi/death

Last synced: over 1 year ago
JSON representation

a multiplayer variant of conways game of LIFE

Awesome Lists containing this project

README

          

Welcome to DEATH!

DEATH is a variant to Conways game of LIFE.

Every LIFE game can be described by two sets of numbers:

* numbers of neighbors for a item to survive
* numbers of neighbors for a item to be born

What I added is mulitiplayer support and a third number:

* numbers of friendly neighbors for a friendly item to survive
* numbers of friendly neighbors for a friendly item to be born
* numbers of friendly neighbors for a foe item to be killed

the players take turns.

# how to start the game?

python -m DEATH

# controls

- arrow-keys: move cursor
- space: toggle field value; after that it is the next player's turn
- return: perform a single step (only for the active player);
after that it is the next player's turn
- "q": quit

# legacy

For a later take on similar ideas, see my project [game of death](https://github.com/xi/game-of-death).