2000-12-12 23:50:20 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# life.py -- A curses-based version of Conway's Game of Life.
|
2001-11-05 17:25:42 -04:00
|
|
|
# Contributed by AMK
|
2000-12-12 23:50:20 -04:00
|
|
|
#
|
|
|
|
# An empty board will be displayed, and the following commands are available:
|
|
|
|
# E : Erase the board
|
|
|
|
# R : Fill the board randomly
|
|
|
|
# S : Step for a single generation
|
|
|
|
# C : Update continuously until a key is struck
|
|
|
|
# Q : Quit
|
|
|
|
# Cursor keys : Move the cursor around the board
|
|
|
|
# Space or Enter : Toggle the contents of the cursor's position
|
|
|
|
#
|
2004-07-18 02:56:09 -03:00
|
|
|
# TODO :
|
2000-12-12 23:50:20 -04:00
|
|
|
# Support the mouse
|
|
|
|
# Use colour if available
|
|
|
|
# Make board updates faster
|
|
|
|
#
|
|
|
|
|
2002-04-10 11:50:16 -03:00
|
|
|
import random, string, traceback
|
|
|
|
import curses
|
|
|
|
|
2000-12-12 23:50:20 -04:00
|
|
|
class LifeBoard:
|
|
|
|
"""Encapsulates a Life board
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
X,Y : horizontal and vertical size of the board
|
|
|
|
state : dictionary mapping (x,y) to 0 or 1
|
2004-07-18 02:56:09 -03:00
|
|
|
|
2000-12-12 23:50:20 -04:00
|
|
|
Methods:
|
2004-07-18 02:56:09 -03:00
|
|
|
display(update_board) -- If update_board is true, compute the
|
2000-12-12 23:50:20 -04:00
|
|
|
next generation. Then display the state
|
2004-07-18 02:56:09 -03:00
|
|
|
of the board and refresh the screen.
|
2000-12-12 23:50:20 -04:00
|
|
|
erase() -- clear the entire board
|
|
|
|
makeRandom() -- fill the board randomly
|
|
|
|
set(y,x) -- set the given cell to Live; doesn't refresh the screen
|
|
|
|
toggle(y,x) -- change the given cell from live to dead, or vice
|
|
|
|
versa, and refresh the screen display
|
|
|
|
|
|
|
|
"""
|
|
|
|
def __init__(self, scr, char=ord('*')):
|
2004-07-18 02:56:09 -03:00
|
|
|
"""Create a new LifeBoard instance.
|
|
|
|
|
|
|
|
scr -- curses screen object to use for display
|
|
|
|
char -- character used to render live cells (default: '*')
|
|
|
|
"""
|
2006-06-03 19:59:59 -03:00
|
|
|
self.state = {}
|
|
|
|
self.scr = scr
|
2004-07-18 02:56:09 -03:00
|
|
|
Y, X = self.scr.getmaxyx()
|
|
|
|
self.X, self.Y = X-2, Y-2-1
|
|
|
|
self.char = char
|
|
|
|
self.scr.clear()
|
|
|
|
|
|
|
|
# Draw a border around the board
|
2006-06-03 19:59:59 -03:00
|
|
|
border_line = '+'+(self.X*'-')+'+'
|
2004-07-18 02:56:09 -03:00
|
|
|
self.scr.addstr(0, 0, border_line)
|
|
|
|
self.scr.addstr(self.Y+1,0, border_line)
|
|
|
|
for y in range(0, self.Y):
|
|
|
|
self.scr.addstr(1+y, 0, '|')
|
|
|
|
self.scr.addstr(1+y, self.X+1, '|')
|
|
|
|
self.scr.refresh()
|
|
|
|
|
|
|
|
def set(self, y, x):
|
|
|
|
"""Set a cell to the live state"""
|
|
|
|
if x<0 or self.X<=x or y<0 or self.Y<=y:
|
|
|
|
raise ValueError, "Coordinates out of range %i,%i"% (y,x)
|
|
|
|
self.state[x,y] = 1
|
|
|
|
|
|
|
|
def toggle(self, y, x):
|
|
|
|
"""Toggle a cell's state between live and dead"""
|
|
|
|
if x<0 or self.X<=x or y<0 or self.Y<=y:
|
|
|
|
raise ValueError, "Coordinates out of range %i,%i"% (y,x)
|
|
|
|
if self.state.has_key( (x,y) ):
|
|
|
|
del self.state[x,y]
|
|
|
|
self.scr.addch(y+1, x+1, ' ')
|
|
|
|
else:
|
2006-06-03 19:59:59 -03:00
|
|
|
self.state[x,y] = 1
|
2004-07-18 02:56:09 -03:00
|
|
|
self.scr.addch(y+1, x+1, self.char)
|
|
|
|
self.scr.refresh()
|
2000-12-12 23:50:20 -04:00
|
|
|
|
|
|
|
def erase(self):
|
2004-07-18 02:56:09 -03:00
|
|
|
"""Clear the entire board and update the board display"""
|
2006-06-03 19:59:59 -03:00
|
|
|
self.state = {}
|
|
|
|
self.display(update_board=False)
|
2000-12-12 23:50:20 -04:00
|
|
|
|
2006-06-03 19:59:59 -03:00
|
|
|
def display(self, update_board=True):
|
2004-07-18 02:56:09 -03:00
|
|
|
"""Display the whole board, optionally computing one generation"""
|
|
|
|
M,N = self.X, self.Y
|
|
|
|
if not update_board:
|
|
|
|
for i in range(0, M):
|
|
|
|
for j in range(0, N):
|
|
|
|
if self.state.has_key( (i,j) ):
|
|
|
|
self.scr.addch(j+1, i+1, self.char)
|
|
|
|
else:
|
|
|
|
self.scr.addch(j+1, i+1, ' ')
|
|
|
|
self.scr.refresh()
|
|
|
|
return
|
|
|
|
|
2006-06-03 19:59:59 -03:00
|
|
|
d = {}
|
|
|
|
self.boring = 1
|
2004-07-18 02:56:09 -03:00
|
|
|
for i in range(0, M):
|
2006-06-03 19:59:59 -03:00
|
|
|
L = range( max(0, i-1), min(M, i+2) )
|
2004-07-18 02:56:09 -03:00
|
|
|
for j in range(0, N):
|
2006-06-03 19:59:59 -03:00
|
|
|
s = 0
|
|
|
|
live = self.state.has_key( (i,j) )
|
2004-07-18 02:56:09 -03:00
|
|
|
for k in range( max(0, j-1), min(N, j+2) ):
|
|
|
|
for l in L:
|
|
|
|
if self.state.has_key( (l,k) ):
|
2006-06-03 19:59:59 -03:00
|
|
|
s += 1
|
|
|
|
s -= live
|
|
|
|
if s == 3:
|
2004-07-18 02:56:09 -03:00
|
|
|
# Birth
|
2006-06-03 19:59:59 -03:00
|
|
|
d[i,j] = 1
|
2004-07-18 02:56:09 -03:00
|
|
|
self.scr.addch(j+1, i+1, self.char)
|
2006-06-03 19:59:59 -03:00
|
|
|
if not live: self.boring = 0
|
|
|
|
elif s == 2 and live: d[i,j] = 1 # Survival
|
2004-07-18 02:56:09 -03:00
|
|
|
elif live:
|
|
|
|
# Death
|
|
|
|
self.scr.addch(j+1, i+1, ' ')
|
2006-06-03 19:59:59 -03:00
|
|
|
self.boring = 0
|
|
|
|
self.state = d
|
2004-07-18 02:56:09 -03:00
|
|
|
self.scr.refresh()
|
2000-12-12 23:50:20 -04:00
|
|
|
|
|
|
|
def makeRandom(self):
|
2004-07-18 02:56:09 -03:00
|
|
|
"Fill the board with a random pattern"
|
2006-06-03 19:59:59 -03:00
|
|
|
self.state = {}
|
2004-07-18 02:56:09 -03:00
|
|
|
for i in range(0, self.X):
|
2000-12-12 23:50:20 -04:00
|
|
|
for j in range(0, self.Y):
|
2006-06-03 19:59:59 -03:00
|
|
|
if random.random() > 0.5:
|
|
|
|
self.set(j,i)
|
2000-12-12 23:50:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
def erase_menu(stdscr, menu_y):
|
|
|
|
"Clear the space where the menu resides"
|
2006-06-03 19:59:59 -03:00
|
|
|
stdscr.move(menu_y, 0)
|
|
|
|
stdscr.clrtoeol()
|
|
|
|
stdscr.move(menu_y+1, 0)
|
|
|
|
stdscr.clrtoeol()
|
2000-12-12 23:50:20 -04:00
|
|
|
|
|
|
|
def display_menu(stdscr, menu_y):
|
|
|
|
"Display the menu of possible keystroke commands"
|
|
|
|
erase_menu(stdscr, menu_y)
|
|
|
|
stdscr.addstr(menu_y, 4,
|
|
|
|
'Use the cursor keys to move, and space or Enter to toggle a cell.')
|
|
|
|
stdscr.addstr(menu_y+1, 4,
|
|
|
|
'E)rase the board, R)andom fill, S)tep once or C)ontinuously, Q)uit')
|
|
|
|
|
2006-06-03 19:59:59 -03:00
|
|
|
def keyloop(stdscr):
|
2000-12-12 23:50:20 -04:00
|
|
|
# Clear the screen and display the menu of keys
|
|
|
|
stdscr.clear()
|
|
|
|
stdscr_y, stdscr_x = stdscr.getmaxyx()
|
2006-06-03 19:59:59 -03:00
|
|
|
menu_y = (stdscr_y-3)-1
|
2000-12-12 23:50:20 -04:00
|
|
|
display_menu(stdscr, menu_y)
|
|
|
|
|
|
|
|
# Allocate a subwindow for the Life board and create the board object
|
2006-06-03 19:59:59 -03:00
|
|
|
subwin = stdscr.subwin(stdscr_y-3, stdscr_x, 0, 0)
|
|
|
|
board = LifeBoard(subwin, char=ord('*'))
|
|
|
|
board.display(update_board=False)
|
2000-12-12 23:50:20 -04:00
|
|
|
|
|
|
|
# xpos, ypos are the cursor's position
|
|
|
|
xpos, ypos = board.X/2, board.Y/2
|
|
|
|
|
|
|
|
# Main loop:
|
|
|
|
while (1):
|
2004-07-18 02:56:09 -03:00
|
|
|
stdscr.move(1+ypos, 1+xpos) # Move the cursor
|
2006-06-03 19:59:59 -03:00
|
|
|
c = stdscr.getch() # Get a keystroke
|
2004-07-18 02:56:09 -03:00
|
|
|
if 0<c<256:
|
2006-06-03 19:59:59 -03:00
|
|
|
c = chr(c)
|
2004-07-18 02:56:09 -03:00
|
|
|
if c in ' \n':
|
|
|
|
board.toggle(ypos, xpos)
|
|
|
|
elif c in 'Cc':
|
|
|
|
erase_menu(stdscr, menu_y)
|
|
|
|
stdscr.addstr(menu_y, 6, ' Hit any key to stop continuously '
|
|
|
|
'updating the screen.')
|
|
|
|
stdscr.refresh()
|
|
|
|
# Activate nodelay mode; getch() will return -1
|
|
|
|
# if no keystroke is available, instead of waiting.
|
|
|
|
stdscr.nodelay(1)
|
|
|
|
while (1):
|
2006-06-03 19:59:59 -03:00
|
|
|
c = stdscr.getch()
|
|
|
|
if c != -1:
|
|
|
|
break
|
|
|
|
stdscr.addstr(0,0, '/')
|
|
|
|
stdscr.refresh()
|
2004-07-18 02:56:09 -03:00
|
|
|
board.display()
|
2006-06-03 19:59:59 -03:00
|
|
|
stdscr.addstr(0,0, '+')
|
|
|
|
stdscr.refresh()
|
2004-07-18 02:56:09 -03:00
|
|
|
|
|
|
|
stdscr.nodelay(0) # Disable nodelay mode
|
|
|
|
display_menu(stdscr, menu_y)
|
|
|
|
|
2006-06-03 19:59:59 -03:00
|
|
|
elif c in 'Ee':
|
|
|
|
board.erase()
|
|
|
|
elif c in 'Qq':
|
|
|
|
break
|
2004-07-18 02:56:09 -03:00
|
|
|
elif c in 'Rr':
|
|
|
|
board.makeRandom()
|
2006-06-03 19:59:59 -03:00
|
|
|
board.display(update_board=False)
|
2004-07-18 02:56:09 -03:00
|
|
|
elif c in 'Ss':
|
|
|
|
board.display()
|
|
|
|
else: pass # Ignore incorrect keys
|
2006-06-03 19:59:59 -03:00
|
|
|
elif c == curses.KEY_UP and ypos>0: ypos -= 1
|
|
|
|
elif c == curses.KEY_DOWN and ypos<board.Y-1: ypos += 1
|
|
|
|
elif c == curses.KEY_LEFT and xpos>0: xpos -= 1
|
|
|
|
elif c == curses.KEY_RIGHT and xpos<board.X-1: xpos += 1
|
|
|
|
else:
|
|
|
|
# Ignore incorrect keys
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def main(stdscr):
|
|
|
|
keyloop(stdscr) # Enter the main loop
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
curses.wrapper(main)
|