X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_mesh.py;h=012386185faa7755388f3aa108e5d02a093446ec;hp=39619f8bc02dd7fb0ff7cf3ac9a98d50a57820ba;hb=74a5bc6159d2c753786a5ef6bf785263cd0538f1;hpb=dc2e08621ad586663e4c11475f03886a91463907 diff --git a/blender/io_mspgl/export_mesh.py b/blender/io_mspgl/export_mesh.py index 39619f8b..01238618 100644 --- a/blender/io_mspgl/export_mesh.py +++ b/blender/io_mspgl/export_mesh.py @@ -1,293 +1,113 @@ -import itertools -import bpy -import mathutils - -class VertexCache: - def __init__(self, size): - self.size = size - self.slots = [-1]*self.size - - def fetch(self, v): - hit = v.index in self.slots - if hit: - self.slots.remove(v.index) - self.slots.append(v.index) - if not hit: - del self.slots[0] - return hit - - def fetch_strip(self, strip): - hits = 0 - for v in strip: - if self.fetch(v): - hits += 1 - return hits - - def test_strip(self, strip): - hits = 0 - for i in range(len(strip)): - if i>=self.size: - break - if strip[i].index in self.slots[i:]: - hits += 1 - return hits - - class MeshExporter: - def __init__(self): - self.show_progress = True - self.use_strips = True - self.use_degen_tris = False - self.max_strip_len = 1024 - self.optimize_cache = True - self.cache_size = 64 - self.material_tex = False - - def stripify(self, mesh, progress=None): - for f in mesh.faces: - f.flag = False - - faces_done = 0 - strips = [] - loose = [] - - cache = None - if self.optimize_cache: - cache = VertexCache(self.cache_size) - - island = [] - face_neighbors = [] - island_strips = [] - while 1: - if not island: - # No current island; find any unused face to start from - queue = [] - for f in mesh.faces: - if not f.flag: - f.flag = True - queue.append(f) - break - - if not queue: - break - - # Find all faces connected to the first one - while queue: - face = queue.pop(0) - island.append(face) - - for n in face.get_neighbors(): - if not n.flag: - n.flag = True - queue.append(n) - - face_neighbors = [f.get_neighbors() for f in island] - - # Unflag the island for the next phase - for f in island: - f.flag = False - - # Find an unused face with as few unused neighbors as possible, but - # at least one. This heuristic gives a preference to faces in corners - # or along borders of a non-closed island. - best = 5 - face = None - for i, f in enumerate(island): - if f.flag: - continue - - score = sum(not n.flag for n in face_neighbors[i]) - if score>0 and scorebest_hits: - best = i - best_hits = hits - - strip = island_strips.pop(best) - strips.append(strip) - - if cache: - cache.fetch_strip(strip) + def export_mesh(self, ctx, mesh_or_obj): + from .mesh import Mesh, create_mesh_from_object - faces_done += len(island) - progress.set_progress(faces_done/len(mesh.faces)) + if type(mesh_or_obj)==Mesh: + mesh = mesh_or_obj + else: + task = ctx.task("Preparing mesh", 0.9) + mesh = create_mesh_from_object(task, mesh_or_obj) - # Collect any faces that weren't used in strips - loose += [f for f in island if not f.flag] - for f in island: - f.flag = True + from .datafile import Resource, Statement, Token + resource = Resource(mesh.name+".mesh", "mesh") + statements = resource.statements - island = [] - island_strips = [] + task = ctx.task("Creating statements", 1.0) - if cache: - cache = VertexCache(self.cache_size) - total_hits = 0 + statements.append(Statement("winding", Token('COUNTERCLOCKWISE'))) - if self.use_degen_tris and strips: - big_strip = [] - - for s in strips: - if big_strip: - # Generate glue elements, ensuring that the next strip begins at - # an even position - glue = [big_strip[-1], s[0]] - if len(big_strip)%2: - glue += [s[0]] - - big_strip += glue - if cache: - total_hits += cache.fetch_strip(glue) - - big_strip += s - if cache: - total_hits += cache.fetch_strip(s) - - for f in loose: - # Add loose faces to the end. This wastes space, using five - # elements per triangle and six elements per quad. - if len(big_strip)%2: - order = (-1, -2, 0, 1) - else: - order = (0, 1, -1, -2) - vertices = [f.vertices[i] for i in order[:len(f.vertices)]] - - if big_strip: - glue = [big_strip[-1], vertices[0]] - big_strip += glue - if cache: - total_hits += cache.fetch_strip(glue) - - big_strip += vertices - if cache: - total_hits += cache.fetch_strip(vertices) - - strips = [big_strip] - loose = [] - - return strips, loose - - def export(self, context, out_file, obj=None, progress=None): - if obj is None: - obj = context.active_object - - from .mesh import create_mesh_from_object - from .util import Progress - - if not progress: - progress = Progress(self.show_progress and context) - progress.push_task("", 0.0, 0.65) - - mesh = create_mesh_from_object(context, obj, progress) - - strips = [] - loose = mesh.faces - if self.use_strips: - progress.set_task("Creating strips", 0.65, 0.95) - strips, loose = self.stripify(mesh, progress) - - progress.set_task("Writing file", 0.95, 1.0) - - from .outfile import open_output - out_file = open_output(out_file) - - fmt = ["NORMAL3"] + st = Statement("vertices", Token("VERTEX3_FLOAT")) + stride = 12 + if mesh.vertices[0].color: + st.append(Token("COLOR4_UBYTE")) + stride += 4 if mesh.uv_layers: for u in mesh.uv_layers: - size = str(len(u.uvs[0])) + size = len(u.uvs[0]) + min_val = min(*u.uvs[0]) + max_val = max(*u.uvs[1]) + for c in u.uvs: + min_val = min(min_val, *c) + max_val = max(max_val, *c) + uv_type = "USHORT" if min_val>=0.0 and max_val<=1.0 else "FLOAT" + if uv_type=="FLOAT" and stride%4: + pad = 4-stride%4 + st.append(Token("PADDING{}".format(pad))) + stride += pad if u.unit==0: - fmt.append("TEXCOORD"+size) + st.append(Token("TEXCOORD{}_{}".format(size, uv_type))) else: - fmt.append("TEXCOORD%s_%d"%(size, u.unit)) - if mesh.tbn_vecs: - fmt += ["TANGENT3", "BINORMAL3"] + st.append(Token("TEXCOORD{}_{}_{}".format(size, u.unit, uv_type))) + stride += (2 if uv_type=="USHORT" else 4)*size if mesh.vertex_groups: - fmt.append("ATTRIB%d_5"%(mesh.max_groups_per_vertex*2)) - fmt.append("VERTEX3") - out_file.begin("vertices", *fmt) + st.append(Token("WEIGHT{}_USHORT".format(mesh.max_groups_per_vertex))) + st.append(Token("GROUP{}_UBYTE".format(mesh.max_groups_per_vertex))) + stride += 3*mesh.max_groups_per_vertex + st.append(Token("NORMAL3_BYTE")) + stride += 3 + if mesh.uv_layers and mesh.tangent_vecs: + st.append(Token("TANGENT3_BYTE")) + stride += 3 + if stride%4: + pad = 4-stride%4 + st.append(Token("PADDING{}_UBYTE".format(pad))) + stride += pad + normal = None - uvs = {} + color = None + uvs = [None]*len(mesh.uv_layers) tan = None - bino = None group = None + weight = None for v in mesh.vertices: if v.normal!=normal: - out_file.write("normal3", *v.normal) + st.sub.append(Statement("normal", *v.normal)) normal = v.normal + if v.color!=color: + st.sub.append(Statement("color", *v.color)) + color = v.color for i, u in enumerate(mesh.uv_layers): - if v.uvs[i]!=uvs.get(i): - size = str(len(v.uvs[i])) + if v.uvs[i]!=uvs[i]: if u.unit==0: - out_file.write("texcoord"+size, *v.uvs[i]) + st.sub.append(Statement("texcoord", *v.uvs[i])) else: - out_file.write("multitexcoord"+size, u.unit, *v.uvs[i]) + st.sub.append(Statement("multitexcoord", u.unit, *v.uvs[i])) uvs[i] = v.uvs[i] - if mesh.tbn_vecs: + if mesh.tangent_vecs: if v.tan!=tan: - out_file.write("tangent3", *v.tan) + st.sub.append(Statement("tangent", *v.tan)) tan = v.tan - if v.bino!=bino: - out_file.write("binormal3", *v.bino) - bino = v.bino if mesh.vertex_groups: - group_attr = [(group_index_map[g.group], g.weight*v.group_weight_scale) for g in v.groups[:mesh.max_groups_per_vertex]] - while len(group_attr)=32: - out_file.write("indices", *indices) - indices = [] - if indices: - out_file.write("indices", *indices) - out_file.end() - - if loose: - out_file.begin("batch", "TRIANGLES") - for f in loose: - for i in range(2, len(f.vertices)): - out_file.write("indices", f.vertices[0].index, f.vertices[i-1].index, f.vertices[i].index) - out_file.end() + v_group = [g.group for g in v.groups] + v_weight = [g.weight for g in v.groups] + if v_group!=group: + st.sub.append(Statement("group", *v_group)) + group = v_group + if v_weight!=weight: + st.sub.append(Statement("weight", *v_weight)) + weight = v_weight + st.sub.append(Statement("vertex", *v.co)) + + statements.append(st) + + if mesh.use_strips: + for s in mesh.vertex_sequence: + st = Statement("batch", Token("TRIANGLE_STRIP")) + for i in range(0, len(s), 32): + st.sub.append(Statement("indices", *(v.index for v in s[i:i+32]))) + statements.append(st) + else: + st = Statement("batch", Token('TRIANGLES')) + for f in mesh.faces: + st.sub.append(Statement("indices", *(v.index for v in f.vertices))) + statements.append(st) if mesh.lines: - out_file.begin("batch", "LINES") + st = Statement("batch", Token('LINES')) for l in mesh.lines: - out_file.write("indices", l.vertices[0].index, l.vertices[1].index) - out_file.end() - - if mesh.winding_test: - out_file.write("winding", "COUNTERCLOCKWISE") + st.sub.append(Statement("indices", *(v.index for v in l.vertices))) + statements.append(st) - progress.pop_task() + task.set_progress(1.0) - return mesh + return resource