2020-05-22 06:10:11 +00:00
|
|
|
"""Conway's Game Of Life, Author Anurag Kumar(mailto:anuragkumarak95@gmail.com)
|
2017-10-26 06:41:32 +00:00
|
|
|
|
|
|
|
Requirements:
|
|
|
|
- numpy
|
|
|
|
- random
|
|
|
|
- time
|
|
|
|
- matplotlib
|
|
|
|
|
|
|
|
Python:
|
|
|
|
- 3.5
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
- $python3 game_o_life <canvas_size:int>
|
|
|
|
|
|
|
|
Game-Of-Life Rules:
|
2020-05-22 06:10:11 +00:00
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
1.
|
|
|
|
Any live cell with fewer than two live neighbours
|
|
|
|
dies, as if caused by under-population.
|
|
|
|
2.
|
|
|
|
Any live cell with two or three live neighbours lives
|
|
|
|
on to the next generation.
|
|
|
|
3.
|
|
|
|
Any live cell with more than three live neighbours
|
|
|
|
dies, as if by over-population.
|
|
|
|
4.
|
|
|
|
Any dead cell with exactly three live neighbours be-
|
|
|
|
comes a live cell, as if by reproduction.
|
2019-10-05 05:14:13 +00:00
|
|
|
"""
|
2020-05-22 06:10:11 +00:00
|
|
|
import random
|
|
|
|
import sys
|
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
import numpy as np
|
|
|
|
from matplotlib import pyplot as plt
|
|
|
|
from matplotlib.colors import ListedColormap
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
usage_doc = "Usage of script: script_nama <size_of_canvas:int>"
|
2017-10-26 06:41:32 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
choice = [0] * 100 + [1] * 10
|
2017-10-26 06:41:32 +00:00
|
|
|
random.shuffle(choice)
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
def create_canvas(size):
|
2019-10-05 05:14:13 +00:00
|
|
|
canvas = [[False for i in range(size)] for j in range(size)]
|
2017-10-26 06:41:32 +00:00
|
|
|
return canvas
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
def seed(canvas):
|
2019-10-05 05:14:13 +00:00
|
|
|
for i, row in enumerate(canvas):
|
|
|
|
for j, _ in enumerate(row):
|
|
|
|
canvas[i][j] = bool(random.getrandbits(1))
|
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
|
|
|
|
def run(canvas):
|
2020-09-10 08:31:26 +00:00
|
|
|
"""This function runs the rules of game through all points, and changes their
|
2020-06-16 08:09:19 +00:00
|
|
|
status accordingly.(in the same canvas)
|
2017-10-26 06:41:32 +00:00
|
|
|
@Args:
|
|
|
|
--
|
|
|
|
canvas : canvas of population to run the rules on.
|
|
|
|
|
|
|
|
@returns:
|
|
|
|
--
|
|
|
|
None
|
2019-10-05 05:14:13 +00:00
|
|
|
"""
|
2017-10-26 06:41:32 +00:00
|
|
|
canvas = np.array(canvas)
|
|
|
|
next_gen_canvas = np.array(create_canvas(canvas.shape[0]))
|
|
|
|
for r, row in enumerate(canvas):
|
|
|
|
for c, pt in enumerate(row):
|
|
|
|
# print(r-1,r+2,c-1,c+2)
|
2019-10-05 05:14:13 +00:00
|
|
|
next_gen_canvas[r][c] = __judge_point(
|
|
|
|
pt, canvas[r - 1 : r + 2, c - 1 : c + 2]
|
|
|
|
)
|
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
canvas = next_gen_canvas
|
2019-10-05 05:14:13 +00:00
|
|
|
del next_gen_canvas # cleaning memory as we move on.
|
|
|
|
return canvas.tolist()
|
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
def __judge_point(pt, neighbours):
|
|
|
|
dead = 0
|
2017-10-26 06:41:32 +00:00
|
|
|
alive = 0
|
|
|
|
# finding dead or alive neighbours count.
|
|
|
|
for i in neighbours:
|
|
|
|
for status in i:
|
2019-10-05 05:14:13 +00:00
|
|
|
if status:
|
|
|
|
alive += 1
|
|
|
|
else:
|
|
|
|
dead += 1
|
2017-10-26 06:41:32 +00:00
|
|
|
|
|
|
|
# handling duplicate entry for focus pt.
|
2019-10-05 05:14:13 +00:00
|
|
|
if pt:
|
|
|
|
alive -= 1
|
|
|
|
else:
|
|
|
|
dead -= 1
|
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
# running the rules of game here.
|
|
|
|
state = pt
|
|
|
|
if pt:
|
2019-10-05 05:14:13 +00:00
|
|
|
if alive < 2:
|
|
|
|
state = False
|
|
|
|
elif alive == 2 or alive == 3:
|
|
|
|
state = True
|
|
|
|
elif alive > 3:
|
|
|
|
state = False
|
2017-10-26 06:41:32 +00:00
|
|
|
else:
|
2019-10-05 05:14:13 +00:00
|
|
|
if alive == 3:
|
|
|
|
state = True
|
2017-10-26 06:41:32 +00:00
|
|
|
|
|
|
|
return state
|
|
|
|
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
if len(sys.argv) != 2:
|
|
|
|
raise Exception(usage_doc)
|
|
|
|
|
2017-10-26 06:41:32 +00:00
|
|
|
canvas_size = int(sys.argv[1])
|
|
|
|
# main working structure of this module.
|
2019-10-05 05:14:13 +00:00
|
|
|
c = create_canvas(canvas_size)
|
2017-10-26 06:41:32 +00:00
|
|
|
seed(c)
|
|
|
|
fig, ax = plt.subplots()
|
2019-10-05 05:14:13 +00:00
|
|
|
fig.show()
|
|
|
|
cmap = ListedColormap(["w", "k"])
|
2017-10-26 06:41:32 +00:00
|
|
|
try:
|
|
|
|
while True:
|
2019-10-05 05:14:13 +00:00
|
|
|
c = run(c)
|
|
|
|
ax.matshow(c, cmap=cmap)
|
2017-10-26 06:41:32 +00:00
|
|
|
fig.canvas.draw()
|
2019-10-05 05:14:13 +00:00
|
|
|
ax.cla()
|
2017-10-26 06:41:32 +00:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
# do nothing.
|
|
|
|
pass
|