X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_scene.py;h=9590fc178563609a5762cc26d81f3345a75ddb07;hb=814b21ea340f17321658c4ab41e1692bea7d5198;hp=0ba4ad76945c734c3d6be7a3ce25f911c98c054c;hpb=1c189b2a4a6c91fe4baaa2bd6760f5fc4d7558d2;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_scene.py b/blender/io_mspgl/export_scene.py index 0ba4ad76..9590fc17 100644 --- a/blender/io_mspgl/export_scene.py +++ b/blender/io_mspgl/export_scene.py @@ -4,7 +4,7 @@ import os class SceneExporter: def __init__(self): self.selected_only = False - self.visible_collections = True + self.visible_only = True self.resource_collection = True self.skip_existing = True self.show_progress = True @@ -14,19 +14,16 @@ class SceneExporter: objs = context.selected_objects else: objs = context.scene.objects - if self.visible_collections: + if self.visible_only: collections = [c.collection for c in context.view_layer.layer_collection.children if not (c.hide_viewport or c.collection.hide_viewport)] objs = [o for o in objs if any((o.name in c.all_objects) for c in collections)] - objs = [o for o in objs if o.type=="MESH" and not o.lod_for_parent] + objs = [o for o in objs if o.type=="MESH" and not o.lod_for_parent and o.data.vertices] objs = [o for o in objs if (not o.compound or o.parent not in objs)] objs.sort(key=lambda x:x.name) path, base = os.path.split(out_fn) base, ext = os.path.splitext(base) - from .export_object import ObjectExporter - object_export = ObjectExporter() - object_prototypes = {} unique_objects = [] export_names = {} @@ -75,13 +72,16 @@ class SceneExporter: from .util import Progress progress = Progress(self.show_progress and context) + from .export import DataExporter + data_exporter = DataExporter() + resources = {} - self.export_scene_resources(context, unique_objects, resources, progress) + data_exporter.export_resources(context, unique_objects, resources, None, progress) for n, r in resources.items(): if r.name in export_names: r.name = export_names[r.name] - scene_res = self.export_scene(context, objs, progress, prototypes=object_prototypes, resources=resources) + scene_res = self.export_scene(context, objs, resources, object_prototypes, progress) refs = scene_res.collect_references() if self.resource_collection: @@ -98,21 +98,7 @@ class SceneExporter: scene_res.write_to_file(out_fn) - def export_scene_resources(self, context, objs, resources, progress): - from .export_object import ObjectExporter - object_export = ObjectExporter() - object_export.single_file = False - - material_atlases = {} - - for i, o in enumerate(objs): - progress.push_task_slice(o.name, i, len(objs)) - object_export.export_object_resources(context, o, resources, progress, material_atlases=material_atlases) - obj_name = o.name+".object" - resources[obj_name] = object_export.export_object(context, o, progress, resources=resources) - progress.pop_task() - - def export_scene(self, context, objs, progress, *, prototypes, resources): + def export_scene(self, context, objs, resources, prototypes, progress): from .datafile import Resource, Statement, Token scene_res = Resource("scene.scene", "scene")