]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_object.py
Make resource handling in the Blender exporter more flexible
[libs/gl.git] / blender / io_mspgl / export_object.py
index 2d2c25ed8013369c74661ba7b1f3c6b087193bec..34724221184e600b8c40e9a53974275e0a34ffd8 100644 (file)
@@ -7,6 +7,12 @@ def linear_to_srgb(l):
        else:
                return 1.055*(l**(1/2.4))-0.055
 
+def get_colormap(srgb):
+       if srgb:
+               return linear_to_srgb
+       else:
+               return lambda x: x
+
 def image_name(i):
        fp = i.filepath
        if fp:
@@ -14,42 +20,19 @@ def image_name(i):
        else:
                return i.name
 
-def external_name(out_file, ext, index):
-       path, base = os.path.split(out_file.filename)
-       base = os.path.splitext(base)[0]
-       if index>0:
-               base += "_lod{}".format(index)
-       return path, base+ext
-
 
 class ObjectExporter:
        def __init__(self):
-               self.material_tex = False
-               self.srgb_colors = True
+               self.show_progress = True
+               self.use_strips = True
+               self.use_degen_tris = False
                self.textures = "REF"
                self.separate_mesh = False
-               self.shared_mesh = True
                self.separate_tech = False
-               self.external_tech = True
-               self.shared_tech = True
+               self.shared_resources = True
                self.export_lods = True
 
-       def export(self, context, out_file, objs=None, progress=None):
-               if objs is None:
-                       obj = context.active_object
-               else:
-                       obj = objs[0]
-
-               lods = [obj]
-               for c in obj.children:
-                       if c.lod_for_parent:
-                               if c.lod_index>=len(lods):
-                                       lods += [None]*(c.lod_index+1-len(lods))
-                               lods[c.lod_index] = c
-
-               from .outfile import open_output
-               out_file = open_output(out_file)
-
+       def compute_bounding_sphere(self, obj):
                p1 = max(((v.co, v.co.length) for v in obj.data.vertices), key=lambda x:x[1])[0]
                p2 = max(((v.co, (v.co-p1).length) for v in obj.data.vertices), key=lambda x:x[1])[0]
                center = (p1+p2)/2
@@ -60,178 +43,223 @@ class ObjectExporter:
                                center += d*(1-radius/d.length)/2
                                radius = (radius+d.length)/2
 
-               out_file.write("bounding_sphere_hint", center[0], center[1], center[2], radius)
+               return center, radius
+
+       def collect_object_lods(self, obj):
+               lods = [obj]
+               if self.export_lods:
+                       lods += sorted([c for c in obj.children if c.lod_for_parent], key=(lambda l: l.lod_index))
+                       for i, l in enumerate(lods):
+                               if i>0 and l.lod_index!=i:
+                                       raise Exception("Inconsistent LOD indices")
+
+               return lods
+
+       def create_mesh_exporter(self):
+               from .export_mesh import MeshExporter
+               mesh_export = MeshExporter()
+               mesh_export.use_strips = self.use_strips
+               mesh_export.use_degen_tris = self.use_degen_tris
+               return mesh_export
+
+       def export_to_file(self, context, out_fn):
+               obj = context.active_object
+
+               from .util import Progress
+               progress = Progress(self.show_progress and context)
+
+               path, base = os.path.split(out_fn)
+               base = os.path.splitext(base)[0]
+
+               resources = {}
+               self.export_object_resources(context, obj, resources, progress)
+
+               obj_res = self.export_object(context, obj, progress, resources=resources)
+               refs = obj_res.collect_references()
+               if not self.shared_resources:
+                       numbers = {}
+                       for r in refs:
+                               ext = os.path.splitext(r.name)[1]
+                               n = numbers.get(ext, 0)
+                               if n>0:
+                                       r.name = "{}_{}{}".format(base, n, ext)
+                               else:
+                                       r.name = base+ext
+                               numbers[ext] = n+1
+
+               for r in refs:
+                       with open(os.path.join(path, r.name), "w") as out_file:
+                               for s in r.statements:
+                                       s.write_to_file(out_file)
+
+               with open(out_fn, "w") as out_file:
+                       for s in obj_res.statements:
+                               s.write_to_file(out_file)
+
+       def export_object_resources(self, context, obj, resources, progress):
+               lods = self.collect_object_lods(obj)
+
+               from .mesh import create_mesh_from_object
+               mesh_export = self.create_mesh_exporter()
+
+               for i, l in enumerate(lods):
+                       lod_index = l.lod_index if l.lod_for_parent else 0
+                       progress.push_task_slice("LOD {}".format(lod_index), i, len(lods))
+
+                       mesh_name = l.data.name+".mesh"
+                       if mesh_name not in resources:
+                               mesh = create_mesh_from_object(context, l, progress)
+                               mesh_res = mesh_export.export_mesh(context, mesh, progress)
+                               resources[mesh_name] = mesh_res
+
+                       material = None
+                       if l.material_slots and l.material_slots[0].material:
+                               material = l.material_slots[0].material
+                               mat_name = material.name+".mat"
+                               if mat_name not in resources:
+                                       resources[mat_name] = self.export_material(material)
+
+                       tech_name = (material.name if material else l.name)+".tech"
+                       if tech_name not in resources:
+                               resources[tech_name] = self.export_object_technique(l, resources=resources)
+
+                       progress.pop_task()
+
+       def export_object(self, context, obj, progress, *, resources=None):
+               if resources is None:
+                       resources = {}
+                       self.export_object_resources(context, obj, resources, progress)
+
+               lods = self.collect_object_lods(obj)
+
+               from .datafile import Resource, Statement
+               obj_res = Resource(obj.name+".object")
+               statements = obj_res.statements
+
+               center, radius = self.compute_bounding_sphere(obj)
+               statements.append(Statement("bounding_sphere_hint", *center, radius))
 
                prev_mesh = None
                prev_tech = (None, None)
                for i, l in enumerate(lods):
-                       if i>0:
-                               out_file.begin("level_of_detail", i)
-                               objs = [l]
+                       lod_st = []
+
+                       if l.data.name!=prev_mesh:
+                               mesh_res = resources[l.data.name+".mesh"]
+                               if self.separate_mesh:
+                                       lod_st.append(obj_res.create_reference_statement("mesh", mesh_res))
+                               else:
+                                       lod_st.append(obj_res.create_embed_statement("mesh", mesh_res))
 
-                       if i==0 or l.data.name!=prev_mesh:
-                               mesh = self.export_object_mesh(context, out_file, l, objs, progress)
                                prev_mesh = l.data.name
 
-                       same_tech = True
-                       mat = None
+                       mat_name = None
                        if l.material_slots and l.material_slots[0].material:
-                               mat = l.material_slots[0].material.name
-                               if mat!=prev_tech[1]:
-                                       same_tech = False
-                       if self.external_tech and l.technique!=prev_tech[0]:
-                               same_tech = False
-                       if i==0 or not same_tech:
-                               self.export_object_technique(l, mesh, out_file, i)
-                               prev_tech = (l.technique, mat)
+                               mat_name = l.material_slots[0].material.name
 
-                       if i>0:
-                               out_file.end()
+                       tech = (l.technique, mat_name)
+                       if tech!=prev_tech:
+                               tech_res = resources[(mat_name or l.name)+".tech"]
+                               if l.technique:
+                                       if l.inherit_tech:
+                                               lod_st.append(obj_res.create_embed_statement("technique", tech_res))
+                                       else:
+                                               lod_st.append(Statement("technique", l.technique))
+                               elif self.separate_tech:
+                                       lod_st.append(obj_res.create_reference_statement("technique", tech_res))
+                               else:
+                                       lod_st.append(obj_res.create_embed_statement("technique", tech_res))
 
-       def export_object_mesh(self, context, out_file, lod, objs, progress):
-               from .export_mesh import MeshExporter
-               mesh_export = MeshExporter()
-               for k, v in self.__dict__.items():
-                       setattr(mesh_export, k, v)
-
-               lod_index = 0
-               if lod.lod_for_parent:
-                       lod_index = lod.lod_index
-
-               if self.separate_mesh:
-                       from .outfile import open_output
-                       path, name = external_name(out_file, ".mesh", lod_index)
-                       if self.shared_mesh:
-                               name = lod.data.name+".mesh"
-                       mesh_out = open_output(os.path.join(path, name))
-                       mesh = mesh_export.export(context, mesh_out, objs, progress)
-                       out_file.write("mesh", '"{}"'.format(name))
-               else:
-                       out_file.begin("mesh")
-                       mesh = mesh_export.export(context, out_file, objs, progress)
-                       out_file.end()
+                               prev_tech = tech
 
-               return mesh
+                       if i>0:
+                               st = Statement("level_of_detail", i)
+                               st.sub = lod_st
+                               statements.append(st)
+                       else:
+                               statements += lod_st
 
-       def export_object_technique(self, obj, mesh, out_file, lod_index):
-               if self.srgb_colors:
-                       self.colormap = linear_to_srgb
-               else:
-                       self.colormap = lambda x: x
+               progress.set_progress(1.0)
 
+               return obj_res
+
+       def export_object_technique(self, obj, *, resources):
                material = None
                if obj.material_slots:
                        material = obj.material_slots[0].material
 
-               from .outfile import open_output
-               path, name = external_name(out_file, ".tech", lod_index)
+               from .datafile import Resource, Statement, Token
+               tech_res = Resource((material.name if material else obj.name)+".tech")
+
+               mat_res = None
+               if material:
+                       mat_res = resources[material.name+".mat"]
+
+               if obj.technique:
+                       if not obj.inherit_tech:
+                               return tech_res
 
-               if self.external_tech and obj.technique:
-                       if obj.inherit_tech and material and (obj.override_material or material.texture_slots):
-                               out_file.begin("technique")
-                               out_file.begin("inherit", '"{}"'.format(obj.technique))
+                       st = Statement("inherit", obj.technique)
+                       if material:
                                for slot in material.texture_slots:
                                        if slot and slot.texture.type=="IMAGE":
                                                name = image_name(slot.texture.image)
                                                if slot.use_map_color_diffuse:
-                                                       out_file.write("texture", '"diffuse_map"', '"{}"'.format(name))
+                                                       st.sub.append(Statement("texture", "diffuse_map", name))
                                                elif slot.use_map_normal:
-                                                       out_file.write("texture", '"normal_map"', '"{}"'.format(name))
+                                                       st.sub.append(Statement("texture", "normal_map", name))
                                if obj.override_material:
-                                       mat_name = material.name+".mat"
-                                       mat_out = open_output(os.path.join(path, mat_name))
-                                       self.export_material(material, mat_out)
-                                       out_file.write("material", '"surface"', '"{}"'.format(mat_name))
-                               out_file.end()
-                               out_file.end()
-                       else:
-                               out_file.write("technique", '"{}"'.format(obj.technique))
-               elif self.separate_tech:
-                       if self.shared_tech and material:
-                               name = material.name+".tech"
-                       tech_out = open_output(os.path.join(path, name))
-                       self.export_technique_definition(material, mesh, tech_out)
-                       out_file.write("technique", '"{}"'.format(name))
-               else:
-                       out_file.begin("technique")
-                       self.export_technique_definition(material, mesh, out_file)
-                       out_file.end()
+                                       st.sub.append(tech_res.create_reference_statement("material", "surface", mat_res))
+                       tech_res.statements.append(st)
+
+                       return tech_res
 
-       def export_technique_definition(self, material, mesh, out_file):
-               out_file.begin("pass", '""')
+               pass_st = Statement("pass", "")
                if material:
-                       cm = self.colormap
-
-                       if self.material_tex:
-                               out_file.begin("material")
-                               out_file.write("diffuse", 1.0, 1.0, 1.0, 1.0)
-                               out_file.end()
-                               index = 0
-                               for u in mesh.uv_layers:
-                                       if u.name=="material_tex":
-                                               index = u.unit
-                               out_file.begin("texunit", index)
-                               out_file.begin("texture2d")
-                               out_file.write("min_filter", "NEAREST")
-                               out_file.write("mag_filter", "NEAREST")
-                               out_file.write("storage", "RGB", len(mesh.materials), 1)
-                               texdata = '"'
-                               for m in mesh.materials:
-                                       color = [int(cm(c)*255) for c in m.diffuse_color*mat.diffuse_intensity]
-                                       texdata += "\\x%02X\\x%02X\\x%02X"%tuple(color)
-                               texdata += '"'
-                               out_file.write("raw_data", texdata)
-                               out_file.end()
-                               out_file.end()
-                       else:
-                               out_file.begin("material")
-                               self.export_material(material, out_file)
-                               out_file.end()
+                       pass_st.sub.append(tech_res.create_embed_statement("material", mat_res))
 
                        if self.textures!="NONE":
+                               diffuse_tex = None
                                for slot in material.texture_slots:
-                                       if not slot:
-                                               continue
-
-                                       tex = slot.texture
-                                       if tex.type!="IMAGE":
-                                               continue
-
-                                       if slot.uv_layer:
-                                               for u in mesh.uv_layers:
-                                                       if u.name==slot.uv_layer:
-                                                               index = u.unit
-                                       else:
-                                               index = mesh.uv_layers[0].unit
+                                       if slot and slot.texture.type=="IMAGE" and slot.use_map_color_diffuse:
+                                               diffuse_tex = slot.texture
+                                               break
 
-                                       out_file.begin("texunit", index)
+                               if diffuse_tex:
+                                       st = Statement("texunit", 0)
                                        if self.textures=="INLINE":
-                                               out_file.begin("texture2d")
-                                               out_file.write("min_filter", "LINEAR")
-                                               out_file.write("storage", "RGBA", tex.image.size[0], tex.image.size[1])
-                                               texdata = '"'
+                                               ss = Statement("texture2d")
+                                               ss.sub.append(Statement("min_filter", Token("LINEAR")))
+                                               ss.sub.append(Statement("storage", Token("RGBA"), tex.image.size[0], tex.image.size[1]))
+                                               texdata = ""
                                                for p in tex.image.pixels:
                                                        texdata += "\\x%02X"%int(p*255)
-                                               texdata += '"'
-                                               out_file.write("raw_data", texdata)
-                                               out_file.end()
-                                       else:
-                                               out_file.write("texture", '"%s"'%image_name(tex.image))
-                                       out_file.end()
+                                               ss.sub.append(Statement("raw_data", texdata))
+                                               st.sub.append(ss)
+                                       elif tex.image:
+                                               st.sub.append(Statement("texture", image_name(tex.image)))
+                                       pass_st.sub.append(st)
+               tech_res.statements.append(pass_st)
+
+               return tech_res
 
-               out_file.end()
+       def export_material(self, material):
+               from .datafile import Resource, Statement
+               mat_res = Resource(material.name+".mat")
+               statements = mat_res.statements
 
-       def export_material(self, mat, out_file):
-               cm = self.colormap
-               if any((s and s.use_map_color_diffuse) for s in mat.texture_slots):
-                       out_file.write("diffuse", 1.0, 1.0, 1.0, 1.0)
-                       amb = cm(mat.ambient)
-                       out_file.write("ambient", amb, amb, amb, 1.0)
+               cm = get_colormap(material.srgb_colors)
+               if any(s.use_map_color_diffuse for s in material.texture_slots if s):
+                       statements.append(Statement("diffuse", 1.0, 1.0, 1.0, 1.0))
+                       amb = cm(material.ambient)
+                       statements.append(Statement("ambient", amb, amb, amb, 1.0))
                else:
-                       diff = mat.diffuse_color*mat.diffuse_intensity
-                       out_file.write("diffuse", cm(diff.r), cm(diff.g), cm(diff.b), 1.0)
-                       amb = diff*mat.ambient
-                       out_file.write("ambient", cm(amb.r), cm(amb.g), cm(amb.b), 1.0)
-               spec = mat.specular_color*mat.specular_intensity
-               out_file.write("specular", spec.r, spec.g, spec.b, 1.0)
-               out_file.write("shininess", mat.specular_hardness);
+                       diff = material.diffuse_color*material.diffuse_intensity
+                       statements.append(Statement("diffuse", cm(diff.r), cm(diff.g), cm(diff.b), 1.0))
+                       amb = diff*material.ambient
+                       statements.append(Statement("ambient", cm(amb.r), cm(amb.g), cm(amb.b), 1.0))
+               spec = material.specular_color*material.specular_intensity
+               statements.append(Statement("specular", cm(spec.r), cm(spec.g), cm(spec.g), 1.0))
+               statements.append(Statement("shininess", material.specular_hardness))
+
+               return mat_res