2010-09-01 02:25:49 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# <pep8 compliant>
|
|
|
|
|
2010-09-01 13:55:41 +00:00
|
|
|
import bpy
|
2010-09-01 02:25:49 +00:00
|
|
|
from bpy.props import *
|
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2010-09-01 02:25:49 +00:00
|
|
|
class ExportHelper:
|
2010-09-07 15:17:42 +00:00
|
|
|
filepath = StringProperty(name="File Path", description="Filepath used for exporting the file", maxlen=1024, default="", subtype='FILE_PATH')
|
2010-09-01 13:55:41 +00:00
|
|
|
check_existing = BoolProperty(name="Check Existing", description="Check and warn on overwriting existing files", default=True, options={'HIDDEN'})
|
2010-09-01 02:25:49 +00:00
|
|
|
|
2010-09-01 13:55:41 +00:00
|
|
|
def invoke(self, context, event):
|
|
|
|
import os
|
2010-09-09 18:03:57 +00:00
|
|
|
if not self.filepath:
|
2010-09-22 13:24:21 +00:00
|
|
|
blend_filepath = context.blend_data.filepath
|
|
|
|
if not blend_filepath:
|
|
|
|
blend_filepath = "untitled"
|
|
|
|
else:
|
|
|
|
blend_filepath = os.path.splitext(blend_filepath)[0]
|
|
|
|
|
|
|
|
self.filepath = blend_filepath + self.filename_ext
|
2010-09-01 02:25:49 +00:00
|
|
|
|
2010-09-02 04:53:05 +00:00
|
|
|
context.window_manager.add_fileselect(self)
|
2010-09-01 13:55:41 +00:00
|
|
|
return {'RUNNING_MODAL'}
|
2010-09-01 02:25:49 +00:00
|
|
|
|
2010-09-17 09:27:31 +00:00
|
|
|
def check(self, context):
|
|
|
|
filepath = bpy.path.ensure_ext(self.filepath, self.filename_ext)
|
|
|
|
if filepath != self.filepath:
|
|
|
|
self.filepath = filepath
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2010-09-01 02:25:49 +00:00
|
|
|
|
|
|
|
class ImportHelper:
|
2010-09-07 15:17:42 +00:00
|
|
|
filepath = StringProperty(name="File Path", description="Filepath used for importing the file", maxlen=1024, default="", subtype='FILE_PATH')
|
2010-09-01 02:25:49 +00:00
|
|
|
|
2010-09-01 13:55:41 +00:00
|
|
|
def invoke(self, context, event):
|
2010-09-02 04:53:05 +00:00
|
|
|
context.window_manager.add_fileselect(self)
|
2010-09-01 13:55:41 +00:00
|
|
|
return {'RUNNING_MODAL'}
|
2010-09-01 02:25:49 +00:00
|
|
|
|
|
|
|
|
2010-09-01 12:11:34 +00:00
|
|
|
# limited replacement for BPyImage.comprehensiveImageLoad
|
|
|
|
def load_image(imagepath, dirname):
|
2010-09-01 13:55:41 +00:00
|
|
|
import os
|
2010-09-01 12:11:34 +00:00
|
|
|
|
|
|
|
if os.path.exists(imagepath):
|
|
|
|
return bpy.data.images.load(imagepath)
|
|
|
|
|
|
|
|
variants = [imagepath, os.path.join(dirname, imagepath), os.path.join(dirname, os.path.basename(imagepath))]
|
|
|
|
|
|
|
|
for filepath in variants:
|
|
|
|
for nfilepath in (filepath, bpy.path.resolve_ncase(filepath)):
|
|
|
|
if os.path.exists(nfilepath):
|
|
|
|
return bpy.data.images.load(nfilepath)
|
|
|
|
|
|
|
|
# TODO comprehensiveImageLoad also searched in bpy.config.textureDir
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2010-09-01 02:48:23 +00:00
|
|
|
# return a tuple (free, object list), free is True if memory should be freed later with free_derived_objects()
|
|
|
|
def create_derived_objects(scene, ob):
|
|
|
|
if ob.parent and ob.parent.dupli_type != 'NONE':
|
|
|
|
return False, None
|
|
|
|
|
|
|
|
if ob.dupli_type != 'NONE':
|
|
|
|
ob.create_dupli_list(scene)
|
|
|
|
return True, [(dob.object, dob.matrix) for dob in ob.dupli_list]
|
|
|
|
else:
|
|
|
|
return False, [(ob, ob.matrix_world)]
|
|
|
|
|
|
|
|
|
|
|
|
def free_derived_objects(ob):
|
|
|
|
ob.free_dupli_list()
|
|
|
|
|
|
|
|
|
2010-09-01 02:25:49 +00:00
|
|
|
def unpack_list(list_of_tuples):
|
|
|
|
flat_list = []
|
2010-09-07 15:17:42 +00:00
|
|
|
flat_list_extend = flat_list.extend # a tich faster
|
2010-09-01 02:25:49 +00:00
|
|
|
for t in list_of_tuples:
|
|
|
|
flat_list_extend(t)
|
2010-09-01 12:11:34 +00:00
|
|
|
return flat_list
|
2010-09-01 02:25:49 +00:00
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2010-09-01 02:25:49 +00:00
|
|
|
# same as above except that it adds 0 for triangle faces
|
|
|
|
def unpack_face_list(list_of_tuples):
|
2010-09-07 15:17:42 +00:00
|
|
|
#allocate the entire list
|
2010-09-01 02:25:49 +00:00
|
|
|
flat_ls = [0] * (len(list_of_tuples) * 4)
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
for t in list_of_tuples:
|
|
|
|
if len(t) == 3:
|
|
|
|
if t[2] == 0:
|
|
|
|
t = t[1], t[2], t[0]
|
2010-09-07 15:17:42 +00:00
|
|
|
else: # assuem quad
|
2010-09-01 02:25:49 +00:00
|
|
|
if t[3] == 0 or t[2] == 0:
|
|
|
|
t = t[2], t[3], t[0], t[1]
|
|
|
|
|
|
|
|
flat_ls[i:i + len(t)] = t
|
|
|
|
i += 4
|
2010-09-01 13:55:41 +00:00
|
|
|
return flat_ls
|