5 def __init__(self, size):
7 self.slots = [-1]*self.size
10 hit = v.index in self.slots
12 self.slots.remove(v.index)
13 self.slots.append(v.index)
18 def fetch_strip(self, strip):
25 def test_strip(self, strip):
27 for i in range(len(strip)):
30 if strip[i].index in self.slots[i:]:
37 self.use_strips = True
38 self.use_degen_tris = False
39 self.max_strip_len = 1024
40 self.optimize_cache = True
42 self.export_lines = False
43 self.export_uv = "UNIT0"
47 self.material_tex = False
48 self.smoothing = "MSPGL"
49 self.export_groups = False
52 def stripify(self, mesh, progress = None):
61 if self.optimize_cache:
62 cache = VertexCache(self.cache_size)
68 # No current island; find any unused face to start from
79 # Find all faces connected to the first one
84 for n in f.get_neighbors():
89 # Unflag the island for the next phase
93 # Find an unused face with as few unused neighbors as possible, but
94 # at least one. This heuristic gives a preference to faces in corners
95 # or along borders of a non-closed island.
102 score = sum(not n.flag for n in f.get_neighbors())
103 if score>0 and score<best:
108 # Create a strip starting from the face. This will flag the faces.
109 strip = mesh.create_strip(face, self.max_strip_len)
111 island_strips.append(strip)
115 # Couldn't find a candidate face for starting a strip, so we're
116 # done with this island
120 # Find the strip that benefits the most from the current
121 # contents of the vertex cache
123 for i in range(len(island_strips)):
124 hits = cache.test_strip(island_strips[i])
129 strip = island_strips.pop(best)
133 cache.fetch_strip(strip)
135 faces_done += len(island)
137 progress.set_progress(float(faces_done)/len(mesh.faces))
139 # Collect any faces that weren't used in strips
140 loose += [f for f in island if not f.flag]
148 cache = VertexCache(self.cache_size)
151 if self.use_degen_tris and strips:
156 # Generate glue elements, ensuring that the next strip begins at
158 glue = [big_strip[-1], s[0]]
164 total_hits += cache.fetch_strip(glue)
168 total_hits += cache.fetch_strip(s)
171 # Add loose faces to the end. This wastes space, using five
172 # elements per triangle and six elements per quad.
174 order = (-1, -2, 0, 1)
176 order = (0, 1, -1, -2)
177 vertices = [f.vertices[i] for i in order[:len(f.vertices)]]
180 glue = [big_strip[-1], vertices[0]]
183 total_hits += cache.fetch_strip(glue)
185 big_strip += vertices
187 total_hits += cache.fetch_strip(vertices)
194 def export(self, context, out_file, objs=None, progress=None):
197 objs = context.selected_objects
208 objs = [context.active_object]
211 raise Exception("Nothing to export")
214 raise Exception("Can only export Mesh data")
216 from .mesh import Mesh
217 from .util import Progress
220 progress = Progress(context)
221 progress.set_task("Preparing", 0.0, 0.0)
226 bmesh = o.to_mesh(context.scene, True, "PREVIEW")
227 bmeshes.append(bmesh)
231 mesh.splice(Mesh(bmesh))
234 progress.set_task("Smoothing", 0.05, 0.35)
235 if self.smoothing=="NONE":
237 mesh.split_smooth(progress)
239 if self.smoothing!="BLENDER":
240 mesh.compute_normals()
242 if self.export_groups:
243 mesh.sort_vertex_groups(self.max_groups)
245 # Create a mapping from vertex group indices to bone indices
246 group_index_map = dict((i, i) for i in range(len(objs[0].vertex_groups)))
247 if objs[0].parent and objs[0].parent.type=="ARMATURE":
248 armature = objs[0].parent.data
249 bone_indices = dict((armature.bones[i].name, i) for i in range(len(armature.bones)))
250 for g in objs[0].vertex_groups:
251 if g.name in bone_indices:
252 group_index_map[g.index] = bone_indices[g.name]
254 if self.material_tex and mesh.materials:
255 mesh.generate_material_uv()
259 if mesh.uv_layers and (self.export_uv!="NONE" or self.material_tex):
260 # Figure out which UV layers to export
261 if self.export_uv=="ALL":
262 texunits = range(len(mesh.uv_layers))
263 elif self.material_tex:
264 # The material UV layer is always the last one
265 texunits = [len(mesh.uv_layers)-1]
268 for i, u in enumerate(mesh.uv_layers):
272 texunits = [(i, mesh.uv_layers[i]) for i in texunits]
273 texunits = [u for u in texunits if not u[1].hidden]
276 # TBN coordinates must be generated before vertices are split by any other layer
277 uv_names = [u.name for i, u in texunits]
278 if self.tbn_uvtex in uv_names:
279 tbn_index = uv_names.index(self.tbn_uvtex)
280 unit = texunits[tbn_index]
281 del texunits[tbn_index]
282 texunits.insert(0, unit)
284 for i, u in texunits:
286 progress.set_task("Splitting UVs", 0.35+0.3*i/len(texunits), 0.35+0.3*(i+1)/len(texunits))
287 mesh.split_uv(i, progress)
288 if self.tbn_vecs and u.name==self.tbn_uvtex:
298 progress.set_task("Creating strips", 0.65, 0.95)
299 strips, loose = self.stripify(mesh, progress)
302 progress.set_task("Writing file", 0.95, 1.0)
304 from .outfile import open_output
305 out_file = open_output(out_file)
309 for i, u in texunits:
310 if u.unit==0 or force_unit0:
311 fmt.append("TEXCOORD2")
313 fmt.append("TEXCOORD2_%d"%u.unit)
315 fmt += ["TANGENT3", "BINORMAL3"]
316 if self.export_groups:
317 fmt.append("ATTRIB%d_5"%(self.max_groups*2))
318 fmt.append("VERTEX3")
319 out_file.begin("vertices", *fmt)
325 for v in mesh.vertices:
327 out_file.write("normal3", *v.normal)
329 for i, u in texunits:
330 if v.uvs[i]!=uvs.get(i):
331 if u.unit==0 or force_unit0:
332 out_file.write("texcoord2", *v.uvs[i])
334 out_file.write("multitexcoord2", u.unit, *v.uvs[i])
338 out_file.write("tangent3", *v.tan)
341 out_file.write("binormal3", *v.bino)
343 if self.export_groups:
344 group_attr = [(group_index_map[g.group], g.weight*v.group_weight_scale) for g in v.groups[:self.max_groups]]
345 while len(group_attr)<self.max_groups:
346 group_attr.append((0, 0.0))
347 group_attr = list(itertools.chain(*group_attr))
348 if group_attr!=group:
349 out_file.write("attrib%d"%len(group_attr), 5, *group_attr)
351 out_file.write("vertex3", *v.co)
354 out_file.begin("batch", "TRIANGLE_STRIP")
358 indices.append(v.index)
360 out_file.write("indices", *indices)
363 out_file.write("indices", *indices)
367 out_file.begin("batch", "TRIANGLES")
369 for i in range(2, len(f.vertices)):
370 out_file.write("indices", f.vertices[0].index, f.vertices[i-1].index, f.vertices[i].index)
373 if self.export_lines and mesh.lines:
374 out_file.begin("batch", "LINES")
376 out_file.write("indices", l.vertices[0].index, l.vertices[1].index)
380 progress.set_task("Done", 1.0, 1.0)
383 bpy.data.meshes.remove(m)