]> git.tdb.fi Git - libs/gl.git/blob - blender/io_mspgl/export_mesh.py
Major rework of mesh handling in Blender exporter
[libs/gl.git] / blender / io_mspgl / export_mesh.py
1 import itertools
2 import bpy
3 import mathutils
4
5 class VertexCache:
6         def __init__(self, size):
7                 self.size = size
8                 self.slots = [-1]*self.size
9
10         def fetch(self, v):
11                 hit = v.index in self.slots
12                 if hit:
13                         self.slots.remove(v.index)
14                 self.slots.append(v.index)
15                 if not hit:
16                         del self.slots[0]
17                 return hit
18
19         def fetch_strip(self, strip):
20                 hits = 0
21                 for v in strip:
22                         if self.fetch(v):
23                                 hits += 1
24                 return hits
25
26         def test_strip(self, strip):
27                 hits = 0
28                 for i in range(len(strip)):
29                         if i>=self.size:
30                                 break
31                         if strip[i].index in self.slots[i:]:
32                                 hits += 1
33                 return hits
34
35
36 class MeshExporter:
37         def __init__(self):
38                 self.show_progress = True
39                 self.use_strips = True
40                 self.use_degen_tris = False
41                 self.max_strip_len = 1024
42                 self.optimize_cache = True
43                 self.cache_size = 64
44                 self.material_tex = False
45
46         def stripify(self, mesh, progress=None):
47                 for f in mesh.faces:
48                         f.flag = False
49
50                 faces_done = 0
51                 strips = []
52                 loose = []
53
54                 cache = None
55                 if self.optimize_cache:
56                         cache = VertexCache(self.cache_size)
57
58                 island = []
59                 face_neighbors = []
60                 island_strips = []
61                 while 1:
62                         if not island:
63                                 # No current island; find any unused face to start from
64                                 queue = []
65                                 for f in mesh.faces:
66                                         if not f.flag:
67                                                 f.flag = True
68                                                 queue.append(f)
69                                                 break
70
71                                 if not queue:
72                                         break
73
74                                 # Find all faces connected to the first one
75                                 while queue:
76                                         face = queue.pop(0)
77                                         island.append(face)
78
79                                         for n in face.get_neighbors():
80                                                 if not n.flag:
81                                                         n.flag = True
82                                                         queue.append(n)
83
84                                 face_neighbors = [f.get_neighbors() for f in island]
85
86                                 # Unflag the island for the next phase
87                                 for f in island:
88                                         f.flag = False
89
90                         # Find an unused face with as few unused neighbors as possible, but
91                         # at least one.  This heuristic gives a preference to faces in corners
92                         # or along borders of a non-closed island.
93                         best = 5
94                         face = None
95                         for i, f in enumerate(island):
96                                 if f.flag:
97                                         continue
98
99                                 score = sum(not n.flag for n in face_neighbors[i])
100                                 if score>0 and score<best:
101                                         face = f
102                                         best = score
103
104                         if face:
105                                 # Create a strip starting from the face.  This will flag the faces.
106                                 strip = mesh.create_strip(face, self.max_strip_len)
107                                 if strip:
108                                         island_strips.append(strip)
109                                 else:
110                                         face.flag = True
111                         else:
112                                 # Couldn't find a candidate face for starting a strip, so we're
113                                 # done with this island
114                                 while island_strips:
115                                         best = 0
116                                         if cache:
117                                                 # Find the strip that benefits the most from the current
118                                                 # contents of the vertex cache
119                                                 best_hits = 0
120                                                 for i in range(len(island_strips)):
121                                                         hits = cache.test_strip(island_strips[i])
122                                                         if hits>best_hits:
123                                                                 best = i
124                                                                 best_hits = hits
125
126                                         strip = island_strips.pop(best)
127                                         strips.append(strip)
128
129                                         if cache:
130                                                 cache.fetch_strip(strip)
131
132                                 faces_done += len(island)
133                                 if progress:
134                                         progress.set_progress(float(faces_done)/len(mesh.faces))
135
136                                 # Collect any faces that weren't used in strips
137                                 loose += [f for f in island if not f.flag]
138                                 for f in island:
139                                         f.flag = True
140
141                                 island = []
142                                 island_strips = []
143
144                 if cache:
145                         cache = VertexCache(self.cache_size)
146                         total_hits = 0
147
148                 if self.use_degen_tris and strips:
149                         big_strip = []
150
151                         for s in strips:
152                                 if big_strip:
153                                         # Generate glue elements, ensuring that the next strip begins at
154                                         # an even position
155                                         glue = [big_strip[-1], s[0]]
156                                         if len(big_strip)%2:
157                                                 glue += [s[0]]
158
159                                         big_strip += glue
160                                         if cache:
161                                                 total_hits += cache.fetch_strip(glue)
162
163                                 big_strip += s
164                                 if cache:
165                                         total_hits += cache.fetch_strip(s)
166
167                         for f in loose:
168                                 # Add loose faces to the end.  This wastes space, using five
169                                 # elements per triangle and six elements per quad.
170                                 if len(big_strip)%2:
171                                         order = (-1, -2, 0, 1)
172                                 else:
173                                         order = (0, 1, -1, -2)
174                                 vertices = [f.vertices[i] for i in order[:len(f.vertices)]]
175
176                                 if big_strip:
177                                         glue = [big_strip[-1], vertices[0]]
178                                         big_strip += glue
179                                         if cache:
180                                                 total_hits += cache.fetch_strip(glue)
181
182                                 big_strip += vertices
183                                 if cache:
184                                         total_hits += cache.fetch_strip(vertices)
185
186                         strips = [big_strip]
187                         loose = []
188
189                 return strips, loose
190
191         def export(self, context, out_file, obj=None, progress=None):
192                 if obj is None:
193                         obj = context.active_object
194
195                 from .mesh import create_mesh_from_object
196                 from .util import Progress
197
198                 if self.show_progress:
199                         if not progress:
200                                 progress = Progress(context)
201                         progress.set_task("Preparing", 0.0, 0.0)
202                 else:
203                         progress = None
204
205                 mesh = create_mesh_from_object(context, obj, progress)
206
207                 strips = []
208                 loose = mesh.faces
209                 if self.use_strips:
210                         if progress:
211                                 progress.set_task("Creating strips", 0.65, 0.95)
212                         strips, loose = self.stripify(mesh, progress)
213
214                 if progress:
215                         progress.set_task("Writing file", 0.95, 1.0)
216
217                 from .outfile import open_output
218                 out_file = open_output(out_file)
219
220                 fmt = ["NORMAL3"]
221                 if mesh.uv_layers:
222                         for u in mesh.uv_layers:
223                                 size = str(len(u.uvs[0]))
224                                 if u.unit==0:
225                                         fmt.append("TEXCOORD"+size)
226                                 else:
227                                         fmt.append("TEXCOORD%s_%d"%(size, u.unit))
228                         if mesh.tbn_vecs:
229                                 fmt += ["TANGENT3", "BINORMAL3"]
230                 if mesh.vertex_groups:
231                         fmt.append("ATTRIB%d_5"%(mesh.max_groups_per_vertex*2))
232                 fmt.append("VERTEX3")
233                 out_file.begin("vertices", *fmt)
234                 normal = None
235                 uvs = {}
236                 tan = None
237                 bino = None
238                 group = None
239                 for v in mesh.vertices:
240                         if v.normal!=normal:
241                                 out_file.write("normal3", *v.normal)
242                                 normal = v.normal
243                         for i, u in enumerate(mesh.uv_layers):
244                                 if v.uvs[i]!=uvs.get(i):
245                                         size = str(len(v.uvs[i]))
246                                         if u.unit==0:
247                                                 out_file.write("texcoord"+size, *v.uvs[i])
248                                         else:
249                                                 out_file.write("multitexcoord"+size, u.unit, *v.uvs[i])
250                                         uvs[i] = v.uvs[i]
251                         if mesh.tbn_vecs:
252                                 if v.tan!=tan:
253                                         out_file.write("tangent3", *v.tan)
254                                         tan = v.tan
255                                 if v.bino!=bino:
256                                         out_file.write("binormal3", *v.bino)
257                                         bino = v.bino
258                         if mesh.vertex_groups:
259                                 group_attr = [(group_index_map[g.group], g.weight*v.group_weight_scale) for g in v.groups[:mesh.max_groups_per_vertex]]
260                                 while len(group_attr)<mesh.max_groups_per_vertex:
261                                         group_attr.append((0, 0.0))
262                                 group_attr = list(itertools.chain(*group_attr))
263                                 if group_attr!=group:
264                                         out_file.write("attrib%d"%len(group_attr), 5, *group_attr)
265                                         group = group_attr
266                         out_file.write("vertex3", *v.co)
267                 out_file.end()
268                 for s in strips:
269                         out_file.begin("batch", "TRIANGLE_STRIP")
270                         indices = []
271                         n = 0
272                         for v in s:
273                                 indices.append(v.index)
274                                 if len(indices)>=32:
275                                         out_file.write("indices", *indices)
276                                         indices = []
277                         if indices:
278                                 out_file.write("indices", *indices)
279                         out_file.end()
280
281                 if loose:
282                         out_file.begin("batch", "TRIANGLES")
283                         for f in loose:
284                                 for i in range(2, len(f.vertices)):
285                                         out_file.write("indices", f.vertices[0].index, f.vertices[i-1].index, f.vertices[i].index)
286                         out_file.end()
287
288                 if mesh.lines:
289                         out_file.begin("batch", "LINES")
290                         for l in mesh.lines:
291                                 out_file.write("indices", l.vertices[0].index, l.vertices[1].index)
292                         out_file.end()
293
294                 if mesh.winding_test:
295                         out_file.write("winding", "COUNTERCLOCKWISE")
296
297                 if progress:
298                         progress.set_task("Done", 1.0, 1.0)
299
300                 return mesh