DEATH

a multiplayer variant of conways game of LIFE
git clone https://git.ce9e.org/DEATH.git

commit
cfee902e8d3c259db31595f1b130f8af7509b026
parent
321d3607d0d6e1ee45150258394eab80977a5c77
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-09-14 12:17
convert README to markdown

Diffstat

R README -> README.md 27 +++++++++++++++++----------

1 files changed, 17 insertions, 10 deletions


diff --git a/README b/README.md

@@ -1,17 +1,22 @@
    1    -1 Welcome to DEATH !
   -1     1 Welcome to DEATH!
   -1     2 
    2     3 DEATH is a variant to Conways game of LIFE.
    3     4 
    4     5 Every LIFE game can be described by two sets of numbers:
    5    -1 * numbers of neighbors for a item to survive
    6    -1 * numbers of neighbors for a item to be born
   -1     6 
   -1     7 *   numbers of neighbors for a item to survive
   -1     8 *   numbers of neighbors for a item to be born
    7     9 
    8    10 What I added is mulitiplayer support and a third number:
    9    -1 * numbers of friendly neighbors for a friendly item to survive
   10    -1 * numbers of friendly neighbors for a friendly item to be born
   11    -1 * numbers of friendly neighbors for a foe item to be killed
   -1    11 
   -1    12 *   numbers of friendly neighbors for a friendly item to survive
   -1    13 *   numbers of friendly neighbors for a friendly item to be born
   -1    14 *   numbers of friendly neighbors for a foe item to be killed
   -1    15 
   12    16 the players take turns.
   13    17 
   14    -1 CONTROLS:
   -1    18 # controls
   -1    19 
   15    20 arrow-keys - move cursor
   16    21 space      - toggle field value
   17    22                after that it is the next players' turn
@@ -22,11 +27,13 @@ tab        - perform a single step (only for the active player)
   22    27 h          - display a help screen
   23    28 escape     - quit
   24    29 
   25    -1 HOW TO START THE GAME?
   -1    30 # how to start the game?
   -1    31 
   26    32 run DeathCliMenu.py from a terminal
   27    33 
   28    -1 DEPENDENCIES
   -1    34 # dependencies
   -1    35 
   29    36 python (tested with 2.6)
   30    37 optparse and curses should be installed with python
   31    38 
   32    -1 latest code can be found on github.com/xi/DEATH
   -1    39 Latest code can be found on <https://github.com/xi/DEATH>.