-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path2_with_caching.py
84 lines (62 loc) · 2.11 KB
/
2_with_caching.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
class Point:
def __init__(self, x, y):
self.y = y
self.x = x
def draw_point(p):
print('.', end='')
# ^^ you are given this
# vv you are working with this
class Line:
def __init__(self, start, end):
self.end = end
self.start = start
class Rectangle(list):
""" Represented as a list of lines. """
def __init__(self, x, y, width, height):
super().__init__()
self.append(Line(Point(x, y), Point(x + width, y)))
self.append(Line(Point(x + width, y), Point(x + width, y + height)))
self.append(Line(Point(x, y), Point(x, y + height)))
self.append(Line(Point(x, y + height), Point(x + width, y + height)))
class LineToPointAdapter:
count = 0
cache = {}
def __init__(self, line):
self.h = hash(line)
if self.h in self.cache:
return
super().__init__()
self.count += 1
print(f'{self.count}: Generating points for line ' +
f'[{line.start.x},{line.start.y}]→[{line.end.x},{line.end.y}]')
left = min(line.start.x, line.end.x)
right = max(line.start.x, line.end.x)
top = min(line.start.y, line.end.y)
bottom = min(line.start.y, line.end.y)
points = []
if right - left == 0:
for y in range(top, bottom):
points.append(Point(left, y))
elif line.end.y - line.start.y == 0:
for x in range(left, right):
points.append(Point(x, top))
self.cache[self.h] = points
def __iter__(self):
return iter(self.cache[self.h])
def draw(rcs):
print('Drawing some rectangles...')
for rc in rcs:
for line in rc:
adapter = LineToPointAdapter(line)
for p in adapter:
draw_point(p)
print('\n')
if __name__ == '__main__':
rs = [
Rectangle(1, 1, 10, 10),
Rectangle(3, 3, 6, 6)
]
draw(rs)
draw(rs)
# can define your own hashes or use the defaults
print(hash(Line(Point(1, 1), Point(10, 10))))