-
Notifications
You must be signed in to change notification settings - Fork 12.5k
/
Copy pathfloodfill.py
132 lines (104 loc) · 3.92 KB
/
floodfill.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
import pygame
"""
Visualises how a floodfill algorithm runs and work using pygame
Pass two int arguments for the window width and the window height
`python floodfill.py <width> <height>`
"""
class FloodFill:
def __init__(self, window_width, window_height):
self.window_width = int(window_width)
self.window_height = int(window_height)
pygame.init()
pygame.display.set_caption("Floodfill")
self.display = pygame.display.set_mode((self.window_width, self.window_height))
self.surface = pygame.Surface(self.display.get_size())
self.surface.fill((0, 0, 0))
self.generateClosedPolygons() # for visualisation purposes
self.queue = []
def generateClosedPolygons(self):
if self.window_height < 128 or self.window_width < 128:
return # surface too small
from random import randint, uniform
from math import pi, sin, cos
for n in range(0, randint(0, 5)):
x = randint(50, self.window_width - 50)
y = randint(50, self.window_height - 50)
angle = 0
angle += uniform(0, 0.7)
vertices = []
for i in range(0, randint(3, 7)):
dist = randint(10, 50)
vertices.append(
(int(x + cos(angle) * dist), int(y + sin(angle) * dist))
)
angle += uniform(0, pi / 2)
for i in range(0, len(vertices) - 1):
pygame.draw.line(
self.surface, (255, 0, 0), vertices[i], vertices[i + 1]
)
pygame.draw.line(
self.surface, (255, 0, 0), vertices[len(vertices) - 1], vertices[0]
)
def run(self):
looping = True
while looping:
evsforturn = []
for ev in pygame.event.get():
if ev.type == pygame.QUIT:
looping = False
else:
evsforturn.append(ev) # TODO: Maybe extend with more events
self.update(evsforturn)
self.display.blit(self.surface, (0, 0))
pygame.display.flip()
pygame.quit()
def update(self, events):
for ev in events:
if ev.type == pygame.MOUSEBUTTONDOWN and ev.button == 1:
self.queue.append(ev.pos)
if not len(self.queue):
return
point = self.queue.pop(0)
pixArr = pygame.PixelArray(self.surface)
if pixArr[point[0], point[1]] == self.surface.map_rgb((255, 255, 255)):
return
pixArr[point[0], point[1]] = (255, 255, 255)
left = (point[0] - 1, point[1])
right = (point[0] + 1, point[1])
top = (point[0], point[1] + 1)
bottom = (point[0], point[1] - 1)
if (
self.inBounds(left)
and left not in self.queue
and pixArr[left[0], left[1]] == self.surface.map_rgb((0, 0, 0))
):
self.queue.append(left)
if (
self.inBounds(right)
and right not in self.queue
and pixArr[right[0], right[1]] == self.surface.map_rgb((0, 0, 0))
):
self.queue.append(right)
if (
self.inBounds(top)
and top not in self.queue
and pixArr[top[0], top[1]] == self.surface.map_rgb((0, 0, 0))
):
self.queue.append(top)
if (
self.inBounds(bottom)
and bottom not in self.queue
and pixArr[bottom[0], bottom[1]] == self.surface.map_rgb((0, 0, 0))
):
self.queue.append(bottom)
del pixArr
def inBounds(self, coord):
if coord[0] < 0 or coord[0] >= self.window_width:
return False
elif coord[1] < 0 or coord[1] >= self.window_height:
return False
return True
if __name__ == "__main__":
import sys
floodfill = FloodFill(sys.argv[1], sys.argv[2])
floodfill.run()