forked from aalok-sathe/fire-evacuation-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viz.py
138 lines (100 loc) · 3.42 KB
/
viz.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
import matplotlib.pyplot as plt
from matplotlib.colors import ListedColormap, BoundaryNorm
from matplotlib import colors, colorbar
import numpy as np
from random import Random
class Plotter:
def __init__(self):
'''
'''
plt.ion()
def draw_grid(self, gdata):
'''
'''
r, c = len(gdata), len(gdata[0])
# create discrete colormap
cmap = colors.ListedColormap(['lightblue', 'black', 'red',
'lightgreen', 'darkblue', '#520000'])
bounds = [-.5, .5, 1.5, 2.5, 3.5, 4.5, 5.5]
norm = colors.BoundaryNorm(bounds, cmap.N)
plt.imshow(gdata, cmap=cmap, norm=norm)
# draw gridlines
plt.grid(which='major', axis='both', linestyle='-', color='k', linewidth=2)
plt.xticks(np.arange(-.5, r, 1))
plt.yticks(np.arange(-.5, c, 1))
plt.axis('off')
def draw_people(self, x=[], y=[], c=[]):
'''
'''
# alive ded safe unknown
cmap = colors.ListedColormap(['blue', '#2b0000', 'darkgreen', 'yellow'])
bounds = [-.5, .5, 1.5, 2.5, 3.5]
norm = colors.BoundaryNorm(bounds, cmap.N)
plt.scatter(x, y, c=c, cmap=cmap, norm=norm)
def visualize(self, graph={(3,4): {'F': 1}}, people=[], delay=.01):
'''
'''
# an arbitrary assignment of integers for each of the attributes for our
# colormap
attrmap = {'N': 0, 'W': 1, 'F': 2, 'S': 3, 'B': 4}
# detect rows and columns
r, c = 0, 0
for loc, attrs in graph.items():
r = max(r, loc[0]+1)
c = max(c, loc[1]+1)
# start with a blank grid and fill into attributes
gdata = np.zeros(shape=(r, c))
for loc, attrs in graph.items():
for att in 'SWBF':
if att not in attrs: continue
if attrs[att]:
gdata[loc] = attrmap[att]
if att == 'W' and attrs['F']:
gdata[loc] = 5
break
# use the accumulated data to draw the grid
self.draw_grid(gdata)
X, Y, C = [], [], []
for p in people:
row, col = p.loc
R = Random(p.id)
x, y = col-.5 + R.random(), row-.5 + R.random()
if p.safe: c = 2
elif not p.alive: c = 1
elif p.alive: c = 0
else: c = 3 # unknown state??
X += [x]
Y += [y]
C += [c]
self.draw_people(X, Y, C)
# matplotlib housekeeping
plt.draw()
plt.pause(delay)
plt.clf()
for i in range(10):
break
x = np.random.random([2, 10])
print(x)
plt.scatter(*x)
plt.draw()
plt.pause(0.0001)
plt.clf()
if __name__ == '__main__':
grid = Plotter()
grid.visualize()
raise
# create discrete colormap
cmap = colors.ListedColormap(['red', 'blue'])
bounds = range()
norm = colors.BoundaryNorm(bounds, cmap.N)
for i in range(50):
data = np.zeros(shape=(10, 10))# * 20
#fig, ax = plt.subplots()
plt.imshow(data, cmap=cmap, norm=norm)
# draw gridlines
plt.grid(which='major', axis='both', linestyle='-', color='k', linewidth=2)
plt.xticks(np.arange(-.5, 10, 1));
plt.yticks(np.arange(-.5, 10, 1));
plt.draw()
plt.pause(.0001)
plt.clf()