-
Notifications
You must be signed in to change notification settings - Fork 0
/
old_preview.py
162 lines (129 loc) · 4.1 KB
/
old_preview.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/usr/bin/python3
import sys
import math
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.patches as mpatches
from matplotlib.widgets import Slider
from matplotlib import animation
obs_lines = []
i=0
pathLength=0
def draw_obstacles(obstacles, ax):
for pol in obstacles:
line1, = ax.plot([], [], 'brown', lw=2)
obs_lines.append(line1)
def parse_file(filename):
with open(filename, 'r') as myfile:
d = myfile.read().replace('\n', ' ')
d = d.replace('\r', ' ')
d = d.replace('\t', ' ')
d = d.replace(' ', ' ')
for ___ in range(10):
d = d.replace(' ', ' ')
return d.split()
def parse_polygon():
global i, data
ver_num = int(data[i])
if ver_num == 0:
return None
i += 1
poly = []
for __ in range(ver_num):
poly.append((float(data[i]), float(data[i + 1])))
i += 2
poly.append(poly[0])
return poly
def parse_obstacles():
global i, data
obs = []
poly = parse_polygon()
if poly:
obs.append(poly)
obs_num = int(data[i])
i+=1
for _ in range(obs_num):
poly = parse_polygon()
if poly:
obs.append(poly)
return obs
def parse_path():
global i, data, pathLength
path = []
pathLength = int(data[i])
i += 1
for _ in range(pathLength):
path.append(((float(data[i]), float(data[i + 1])), (float(data[i + 2]), float(data[i + 3]))))
i += 4
return path
if len(sys.argv) < 3:
print("[USAGE1] obstacles.txt output.txt")
exit()
cmds = sys.argv[1:]
data = parse_file(cmds[0])
i=0
obs = parse_obstacles()
data = parse_file(cmds[1])
i=0
path = parse_path()
fig = plt.figure()
ax = fig.add_subplot(111, aspect='equal', autoscale_on=False,
xlim=(-100, 100), ylim=(-100, 100))
draw_obstacles(obs, ax)
path_num_text = ax.text(0.02, 0.95, '', transform=ax.transAxes)
robot1, = ax.plot([], [], 'o-', lw=2, color='green')
robot2, = ax.plot([], [], 'o-', lw=2, color='red')
frames_per_path_part = 3000
def init():
"""initialize animation"""
global obs, obs_lines
ret = [robot1,robot2, path_num_text]
robot1.set_data([], [])
robot2.set_data([], [])
i = 0
for pol in obs:
xs, ys = zip(*pol) # create lists of x and y values
obs_lines[i].set_data(xs, ys)
ret.append(obs_lines[i])
i += 1
path_num_text.set_text('')
return tuple(ret)
currentFrame = 0
currentSpeed = 20
def animate(i):
"""perform animation step"""
global path, frames_per_path_part, obs_lines, currentFrame, currentSpeed, pathLength
currentFrame = (currentFrame + currentSpeed) % (frames_per_path_part * (pathLength - 1))
index = int(currentFrame / frames_per_path_part)
part_of = currentFrame % frames_per_path_part
part_of = part_of / frames_per_path_part
p11, p21 = path[index]
p12, p22 = path[index + 1]
x1 = [p11[0] + (p12[0] - p11[0]) * part_of]
y1 = [p11[1] + (p12[1] - p11[1]) * part_of]
x2 = [p21[0] + (p22[0] - p21[0]) * part_of]
y2 = [p21[1] + (p22[1] - p21[1]) * part_of]
robot1.set_data(x1, y1)
robot2.set_data(x2, y2)
ret = [robot1, robot2, path_num_text]
for pol in obs_lines:
ret.append(pol)
path_num_text.set_text('path part = %d -> %d (0-%d)' % (index, index + 1, len(path) - 1))
return tuple(ret)
ani = animation.FuncAnimation(fig, animate, frames=frames_per_path_part * (pathLength - 1), interval=33, blit=True,
init_func=init)
axcolor = 'lightgoldenrodyellow'
plt.subplots_adjust(bottom=0.2)
axPlayer = plt.axes([0.1, 0.1, 0.8, 0.025], facecolor=axcolor)
axSpeed = plt.axes([0.1, 0.05, 0.8, 0.025], facecolor=axcolor)
def sliderChange(val):
global currentFrame
currentFrame = val
def sliderChangeSpeed(val):
global currentSpeed
currentSpeed = val
splayer = Slider(axPlayer, 'Player', 0, frames_per_path_part * (pathLength - 1), valinit=currentFrame)
splayerSpeed = Slider(axSpeed, 'Speed', 0, 1000, valinit=currentSpeed)
splayer.on_changed(sliderChange)
splayerSpeed.on_changed(sliderChangeSpeed)
plt.show()