X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_object.py;h=a86ee26b878dd67596c5fba58a01f8d545136a4b;hb=4cb7dfca6cf5b2b9fcffd0107181f0c5410adf87;hp=5b81ace45e6cce1a01416e3acb49f4e51d331a78;hpb=180b20bee11425a776c5ead05afcf6a63945d3b2;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_object.py b/blender/io_mspgl/export_object.py index 5b81ace4..a86ee26b 100644 --- a/blender/io_mspgl/export_object.py +++ b/blender/io_mspgl/export_object.py @@ -7,7 +7,7 @@ class ObjectExporter: self.use_strips = True self.use_degen_tris = False self.use_textures = True - self.single_file = True + self.collection = False self.shared_resources = True self.export_lods = True @@ -44,14 +44,12 @@ class ObjectExporter: def create_material_exporter(self): from .export_material import MaterialExporter material_export = MaterialExporter() - material_export.single_file = self.single_file material_export.use_textures = self.use_textures return material_export def create_material_map_exporter(self): from .export_material import MaterialMapExporter material_map_export = MaterialMapExporter() - material_map_export.single_file = self.single_file return material_map_export def export_to_file(self, context, out_fn): @@ -79,14 +77,12 @@ class ObjectExporter: 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) + if self.collection: + obj_res.write_collection(out_fn) + else: + for r in refs: + r.write_to_file(os.path.join(path, r.name)) + obj_res.write_to_file(out_fn) def export_object_resources(self, context, obj, resources, progress, material_maps=None): if material_maps is None: @@ -149,7 +145,7 @@ class ObjectExporter: lods = self.collect_object_lods(obj) from .datafile import Resource, Statement - obj_res = Resource(obj.name+".object") + obj_res = Resource(obj.name+".object", "object") statements = obj_res.statements center, radius = self.compute_bounding_sphere(obj) @@ -162,10 +158,7 @@ class ObjectExporter: if l.data.name!=prev_mesh: mesh_res = resources[l.data.name+".mesh"] - if not self.single_file: - lod_st.append(obj_res.create_reference_statement("mesh", mesh_res)) - else: - lod_st.append(obj_res.create_embed_statement("mesh", mesh_res)) + lod_st.append(obj_res.create_reference_statement("mesh", mesh_res)) prev_mesh = l.data.name @@ -183,10 +176,8 @@ class ObjectExporter: if tech_res.name!=prev_tech: if material and material.render_mode=='EXTERNAL': lod_st.append(Statement("technique", material.technique)) - elif not self.single_file: - lod_st.append(obj_res.create_reference_statement("technique", tech_res)) else: - lod_st.append(obj_res.create_embed_statement("technique", tech_res)) + lod_st.append(obj_res.create_reference_statement("technique", tech_res)) prev_tech = tech_res.name if i>0: @@ -202,7 +193,7 @@ class ObjectExporter: def export_stub_technique(self): from .datafile import Resource, Statement - tech_res = Resource("stub.tech") + tech_res = Resource("stub.tech", "technique") pass_st = Statement("pass", "") tech_res.statements.append(pass_st) mat_st = Statement("material")