Пример #1
0
def main():
    q = queue.Queue()
    random.seed( None )
    clear_screen()
    args = get_args()

    speed = 0.1 if args.speed == FAST else 0.5
    width = args.width
    height = args.height
    selection = args.pattern

    grid = wraparound_grid.WraparoundGrid( width, height )
    grid = set_starting_cells( grid, conway_patterns.pattern_factory().get(
            selection, conway_patterns.make_acorn )( width, height ) )
    
    painter = make_painter( q )
    thread = threading.Thread( target = painter )
    thread.daemon = True
    thread.start()

    while True:
        grid = play_game( grid )
        q.put( grid )
        time.sleep( speed )
Пример #2
0
import sys
import time
import random
import conway_patterns
import conway_colors
import wraparound_grid

def set_starting_cells( grid, cells ):
    for cell in cells:
        grid[cell[0]][cell[1]] = 1
    return grid

if __name__ == "__main__":
    random.seed( None )
    selection = sys.argv[1]
    width = int( sys.argv[2] )
    height = int( sys.argv[3] )

    grid = wraparound_grid.WraparoundGrid( width, height )
    grid = set_starting_cells( grid, conway_patterns.pattern_factory().get(
            selection, conway_patterns.make_acorn )( width, height ) )

    for col in grid._grid:
        print( ' '.join( [ conway_colors.ConwayColors.DEFAULT + str( ' ' )
                if num == 0 else
                random.choice( conway_colors.ConwayColors.colors ) \
                + str( '#' ) for num in col._list ] ) )
    time.sleep( 3 )