-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
145 lines (107 loc) · 3.5 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#-----------------------------------------------imports-------------------------------------------------
from random import random
from time import sleep
import pygame
import sys
#-------------------------------------COLORS-AND-DIMENSIONS---------------------------------------------
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
DIMENSION_OF_CELL = 15
MARGIN = 2
#-------------------------------------Arguments-Related-Stuff--------------------------------------------
def print_help():
print("Usage: python3 main.py -h\n python3 main.py -r [SIZE OF GRID]\n python3 main.py -t [PATH TO TEXT FILE]\n")
exit(-1)
#---------------------------------------Game-of-Life-Code-----------------------------------------------
def init_state(size):
return [[0 for _ in range(size)]for _ in range(size)]
def random_state(state):
for i in range(size):
for j in range(size):
state[i][j]=int(random()*10)%2
return state
def no_of_neighbours(state,x,y):
sum=0
for i in range(-1,2):
_x = x+i
if _x<0 or _x>=size:
continue
for j in range(-1,2):
_y = y+j
if i==0 and j==0:
continue
if _y<0 or _y>=size:
continue
if state[_x][_y]:
sum+=1
return sum
def next_state(state):
new_state = init_state(size)
for i in range(size):
for j in range(size):
n = no_of_neighbours(state, i, j)
if state[i][j]==1:
if n>3 or n<2:
new_state[i][j]=0
else:
new_state[i][j]=1
else:
if n==3:
new_state[i][j]=1
return new_state
#--------------------------------------Start-Program---------------------------------------------------------
args = sys.argv[1:]
if '-h' in args:
print_help()
if ('-r' in args and '-t' in args) or len(args)!=2:
print("[*] Incorrect arguments provided")
print("[*] Displaying the help message...")
print_help()
size = 0
if '-r' in args:
size = int(args[-1:][0])
st = init_state(size)
st = random_state(st)
if '-t' in args:
name = args[-1:][0]
print(name)
with open(name,'r') as f:
contents = f.readlines()
l= len(contents)
b = len(contents[0])-1
size=max(l,b)
st = init_state(size)
for i in range(l):
for j in range(b):
st[i][j]=int(contents[i][j])
#Start Pygame
pygame.init()
WINDOW_SIZE = (size*(DIMENSION_OF_CELL+MARGIN)+MARGIN,size*(DIMENSION_OF_CELL+MARGIN)+MARGIN)
screen = pygame.display.set_mode(WINDOW_SIZE)
pygame.display.set_caption("Conway's Game Of Life")
clock = pygame.time.Clock()
done = False
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
#BACKGROUND COLOR
screen.fill(BLACK)
for row in range(size):
for col in range(size):
color = BLACK
if st[row][col]==1:
color=WHITE
pygame.draw.rect(screen, color, [(MARGIN + DIMENSION_OF_CELL) * col + MARGIN,
(MARGIN + DIMENSION_OF_CELL) * row + MARGIN,
DIMENSION_OF_CELL,
DIMENSION_OF_CELL])
#limiting fps
clock.tick(60)
#Update the screen
pygame.display.flip()
#get the new state
st = next_state(st)
#wait for t seconds
sleep(0.1)
pygame.quit()