From 29d1bd81473e316c35bfe5de9b532e83b97d3495 Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Thu, 29 Sep 2011 11:31:56 +0000
Subject: [PATCH] remove all scenes option

---
 io_scene_obj/__init__.py   |  5 --
 io_scene_obj/export_obj.py | 97 +++++++++++++++-----------------------
 2 files changed, 39 insertions(+), 63 deletions(-)

diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 8cefbf39a..f1f5def21 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -215,11 +215,6 @@ class ExportOBJ(bpy.types.Operator, ExportHelper):
             description="Export selected objects only",
             default=False,
             )
-    use_all_scenes = BoolProperty(
-            name="All Scenes",
-            description="",
-            default=False,
-            )
     use_animation = BoolProperty(
             name="Animation",
             description="",
diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index a8534b676..213c64489 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -650,7 +650,6 @@ def _write(context, filepath,
               EXPORT_POLYGROUPS,
               EXPORT_CURVE_AS_NURBS,
               EXPORT_SEL_ONLY,  # ok
-              EXPORT_ALL_SCENES,  # XXX not working atm
               EXPORT_ANIMATION,
               EXPORT_GLOBAL_MATRIX,
               EXPORT_PATH_MODE,
@@ -659,70 +658,54 @@ def _write(context, filepath,
     base_name, ext = os.path.splitext(filepath)
     context_name = [base_name, '', '', ext]  # Base name, scene name, frame number, extension
 
-    orig_scene = context.scene
+    scene = context.scene
 
     # Exit edit mode before exporting, so current object states are exported properly.
     if bpy.ops.object.mode_set.poll():
         bpy.ops.object.mode_set(mode='OBJECT')
 
-#   if EXPORT_ALL_SCENES:
-#       export_scenes = bpy.data.scenes
-#   else:
-#       export_scenes = [orig_scene]
+    orig_frame = scene.frame_current
 
-    # XXX only exporting one scene atm since changing
-    # current scene is not possible.
-    # Brecht says that ideally in 2.5 we won't need such a function,
-    # allowing multiple scenes open at once.
-    export_scenes = [orig_scene]
-
-    # Export all scenes.
-    for scene in export_scenes:
-        orig_frame = scene.frame_current
+    # Export an animation?
+    if EXPORT_ANIMATION:
+        scene_frames = range(scene.frame_start, scene.frame_end + 1)  # Up to and including the end frame.
+    else:
+        scene_frames = [orig_frame]  # Dont export an animation.
 
-        if EXPORT_ALL_SCENES:  # Add scene name into the context_name
-            context_name[1] = '_%s' % bpy.path.clean_name(scene.name)  # WARNING, its possible that this could cause a collision. we could fix if were feeling parranoied.
+    # Loop through all frames in the scene and export.
+    for frame in scene_frames:
+        if EXPORT_ANIMATION:  # Add frame to the filepath.
+            context_name[2] = '_%.6d' % frame
 
-        # Export an animation?
-        if EXPORT_ANIMATION:
-            scene_frames = range(scene.frame_start, scene.frame_end + 1)  # Up to and including the end frame.
+        scene.frame_set(frame, 0.0)
+        if EXPORT_SEL_ONLY:
+            objects = context.selected_objects
         else:
-            scene_frames = [orig_frame]  # Dont export an animation.
-
-        # Loop through all frames in the scene and export.
-        for frame in scene_frames:
-            if EXPORT_ANIMATION:  # Add frame to the filepath.
-                context_name[2] = '_%.6d' % frame
-
-            scene.frame_set(frame, 0.0)
-            if EXPORT_SEL_ONLY:
-                objects = context.selected_objects
-            else:
-                objects = scene.objects
-
-            full_path = ''.join(context_name)
-
-            # erm... bit of a problem here, this can overwrite files when exporting frames. not too bad.
-            # EXPORT THE FILE.
-            write_file(full_path, objects, scene,
-                       EXPORT_TRI,
-                       EXPORT_EDGES,
-                       EXPORT_NORMALS,
-                       EXPORT_NORMALS_HQ,
-                       EXPORT_UV,
-                       EXPORT_MTL,
-                       EXPORT_APPLY_MODIFIERS,
-                       EXPORT_BLEN_OBS,
-                       EXPORT_GROUP_BY_OB,
-                       EXPORT_GROUP_BY_MAT,
-                       EXPORT_KEEP_VERT_ORDER,
-                       EXPORT_POLYGROUPS,
-                       EXPORT_CURVE_AS_NURBS,
-                       EXPORT_GLOBAL_MATRIX,
-                       EXPORT_PATH_MODE,
-                       )
-
-        scene.frame_set(orig_frame, 0.0)
+            objects = scene.objects
+
+        full_path = ''.join(context_name)
+
+        # erm... bit of a problem here, this can overwrite files when exporting frames. not too bad.
+        # EXPORT THE FILE.
+        write_file(full_path, objects, scene,
+                   EXPORT_TRI,
+                   EXPORT_EDGES,
+                   EXPORT_NORMALS,
+                   EXPORT_NORMALS_HQ,
+                   EXPORT_UV,
+                   EXPORT_MTL,
+                   EXPORT_APPLY_MODIFIERS,
+                   EXPORT_BLEN_OBS,
+                   EXPORT_GROUP_BY_OB,
+                   EXPORT_GROUP_BY_MAT,
+                   EXPORT_KEEP_VERT_ORDER,
+                   EXPORT_POLYGROUPS,
+                   EXPORT_CURVE_AS_NURBS,
+                   EXPORT_GLOBAL_MATRIX,
+                   EXPORT_PATH_MODE,
+                   )
+
+    scene.frame_set(orig_frame, 0.0)
 
     # Restore old active scene.
 #   orig_scene.makeCurrent()
@@ -751,7 +734,6 @@ def save(operator, context, filepath="",
          use_vertex_groups=False,
          use_nurbs=True,
          use_selection=True,
-         use_all_scenes=False,
          use_animation=False,
          global_matrix=None,
          path_mode='AUTO'
@@ -772,7 +754,6 @@ def save(operator, context, filepath="",
            EXPORT_POLYGROUPS=use_vertex_groups,
            EXPORT_CURVE_AS_NURBS=use_nurbs,
            EXPORT_SEL_ONLY=use_selection,
-           EXPORT_ALL_SCENES=use_all_scenes,
            EXPORT_ANIMATION=use_animation,
            EXPORT_GLOBAL_MATRIX=global_matrix,
            EXPORT_PATH_MODE=path_mode,
-- 
GitLab