-
Notifications
You must be signed in to change notification settings - Fork 44
/
bvh.py
217 lines (184 loc) · 6.67 KB
/
bvh.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import re
class BvhNode:
def __init__(self, value=[], parent=None):
self.value = value
self.children = []
self.parent = parent
if self.parent:
self.parent.add_child(self)
def add_child(self, item):
item.parent = self
self.children.append(item)
def filter(self, key):
for child in self.children:
if child.value[0] == key:
yield child
def __iter__(self):
for child in self.children:
yield child
def __getitem__(self, key):
for child in self.children:
for index, item in enumerate(child.value):
if item == key:
if index + 1 >= len(child.value):
return None
else:
return child.value[index + 1:]
raise IndexError('key {} not found'.format(key))
def __repr__(self):
return str(' '.join(self.value))
@property
def name(self):
return self.value[1]
class Bvh:
def __init__(self, data):
self.data = data
self.root = BvhNode()
self.frames = []
self.tokenize()
def tokenize(self):
first_round = []
accumulator = ''
for char in self.data:
if char not in ('\n', '\r'):
accumulator += char
elif accumulator:
first_round.append(re.split('\\s+', accumulator.strip()))
accumulator = ''
node_stack = [self.root]
frame_time_found = False
node = None
for item in first_round:
if frame_time_found:
self.frames.append(item)
continue
key = item[0]
if key == '{':
node_stack.append(node)
elif key == '}':
node_stack.pop()
else:
node = BvhNode(item)
node_stack[-1].add_child(node)
if item[0] == 'Frame' and item[1] == 'Time:':
frame_time_found = True
def search(self, *items):
found_nodes = []
def check_children(node):
if len(node.value) >= len(items):
failed = False
for index, item in enumerate(items):
if node.value[index] != item:
failed = True
break
if not failed:
found_nodes.append(node)
for child in node:
check_children(child)
check_children(self.root)
return found_nodes
def get_joints(self):
joints = []
def iterate_joints(joint):
joints.append(joint)
for child in joint.filter('JOINT'):
iterate_joints(child)
iterate_joints(next(self.root.filter('ROOT')))
return joints
def get_joints_names(self):
joints = []
def iterate_joints(joint):
joints.append(joint.value[1])
for child in joint.filter('JOINT'):
iterate_joints(child)
iterate_joints(next(self.root.filter('ROOT')))
return joints
def joint_direct_children(self, name):
joint = self.get_joint(name)
return [child for child in joint.filter('JOINT')]
def get_joint_index(self, name):
return self.get_joints().index(self.get_joint(name))
def get_joint(self, name):
found = self.search('ROOT', name)
if not found:
found = self.search('JOINT', name)
if found:
return found[0]
raise LookupError('joint not found')
def joint_offset(self, name):
joint = self.get_joint(name)
offset = joint['OFFSET']
return (float(offset[0]), float(offset[1]), float(offset[2]))
def joint_channels(self, name):
joint = self.get_joint(name)
return joint['CHANNELS'][1:]
def get_joint_channels_index(self, joint_name):
index = 0
for joint in self.get_joints():
if joint.value[1] == joint_name:
return index
index += int(joint['CHANNELS'][0])
raise LookupError('joint not found')
def get_joint_channel_index(self, joint, channel):
channels = self.joint_channels(joint)
if channel in channels:
channel_index = channels.index(channel)
else:
channel_index = -1
return channel_index
def frame_joint_channel(self, frame_index, joint, channel, value=None):
joint_index = self.get_joint_channels_index(joint)
channel_index = self.get_joint_channel_index(joint, channel)
if channel_index == -1 and value is not None:
return value
return float(self.frames[frame_index][joint_index + channel_index])
def frame_joint_channels(self, frame_index, joint, channels, value=None):
values = []
joint_index = self.get_joint_channels_index(joint)
for channel in channels:
channel_index = self.get_joint_channel_index(joint, channel)
if channel_index == -1 and value is not None:
values.append(value)
else:
values.append(
float(
self.frames[frame_index][joint_index + channel_index]
)
)
return values
def frames_joint_channels(self, joint, channels, value=None):
all_frames = []
joint_index = self.get_joint_channels_index(joint)
for frame in self.frames:
values = []
for channel in channels:
channel_index = self.get_joint_channel_index(joint, channel)
if channel_index == -1 and value is not None:
values.append(value)
else:
values.append(
float(frame[joint_index + channel_index]))
all_frames.append(values)
return all_frames
def joint_parent(self, name):
joint = self.get_joint(name)
if joint.parent == self.root:
return None
return joint.parent
def joint_parent_index(self, name):
joint = self.get_joint(name)
if joint.parent == self.root:
return -1
return self.get_joints().index(joint.parent)
@property
def nframes(self):
try:
return int(next(self.root.filter('Frames:')).value[1])
except StopIteration:
raise LookupError('number of frames not found')
@property
def frame_time(self):
try:
return float(next(self.root.filter('Frame')).value[2])
except StopIteration:
raise LookupError('frame time not found')