Skip to content
Snippets Groups Projects
Commit 94b660e0 authored by Sebastian Nell's avatar Sebastian Nell
Browse files

3ds export addon: fixed comments to not interfere with string-literals,...

3ds export addon: fixed comments to not interfere with string-literals, reported by IRIE Shinsuke via mailing list
parent 308fce87
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
# <pep8 compliant> # <pep8 compliant>
# Script copyright (C) Bob Holcomb # Script copyright (C) Bob Holcomb
# Contributors: Campbell Barton, Bob Holcomb, Richard Lärkäng, Damien McGinnes, Mark Stijnman # Contributors: Campbell Barton, Bob Holcomb, Richard Lrkng, Damien McGinnes, Mark Stijnman
""" """
Exporting is based on 3ds loader from www.gametutorials.com(Thanks DigiBen) and using information Exporting is based on 3ds loader from www.gametutorials.com(Thanks DigiBen) and using information
...@@ -40,8 +40,8 @@ VERSION = 0x0002 # This gives the version of the .3ds file ...@@ -40,8 +40,8 @@ VERSION = 0x0002 # This gives the version of the .3ds file
KFDATA = 0xB000 # This is the header for all of the key frame info KFDATA = 0xB000 # This is the header for all of the key frame info
#------ sub defines of OBJECTINFO #------ sub defines of OBJECTINFO
MATERIAL = 45055 # 0xAFFF // This stored the texture info MATERIAL = 45055 # 0xAFFF // This stored the texture info
OBJECT = 16384 # 0x4000 // This stores the faces, vertices, etc... OBJECT = 16384 # 0x4000 // This stores the faces, vertices, etc...
#>------ sub defines of MATERIAL #>------ sub defines of MATERIAL
MATNAME = 0xA000 # This holds the material name MATNAME = 0xA000 # This holds the material name
...@@ -222,7 +222,7 @@ class _3ds_point_3d(object): ...@@ -222,7 +222,7 @@ class _3ds_point_3d(object):
return '(%f, %f, %f)' % (self.x, self.y, self.z) return '(%f, %f, %f)' % (self.x, self.y, self.z)
# Used for writing a track # Used for writing a track
""" '''
class _3ds_point_4d(object): class _3ds_point_4d(object):
"""Class representing a four-dimensional point for a 3ds file, for instance a quaternion.""" """Class representing a four-dimensional point for a 3ds file, for instance a quaternion."""
__slots__ = "x","y","z","w" __slots__ = "x","y","z","w"
...@@ -238,7 +238,7 @@ class _3ds_point_4d(object): ...@@ -238,7 +238,7 @@ class _3ds_point_4d(object):
def __str__(self): def __str__(self):
return '(%f, %f, %f, %f)' % (self.x, self.y, self.z, self.w) return '(%f, %f, %f, %f)' % (self.x, self.y, self.z, self.w)
""" '''
class _3ds_point_uv(object): class _3ds_point_uv(object):
...@@ -442,14 +442,17 @@ def get_material_image_texslots(material): ...@@ -442,14 +442,17 @@ def get_material_image_texslots(material):
return [s for s in material.texture_slots if s and s.texture.type == 'IMAGE' and s.texture.image] return [s for s in material.texture_slots if s and s.texture.type == 'IMAGE' and s.texture.image]
return [] return []
# images = []
# if material: """
# for mtex in material.getTextures(): images = []
# if mtex and mtex.tex.type == Blender.Texture.Types.IMAGE: if material:
# image = mtex.tex.image for mtex in material.getTextures():
# if image: if mtex and mtex.tex.type == Blender.Texture.Types.IMAGE:
# images.append(image) # maye want to include info like diffuse, spec here. image = mtex.tex.image
# return images if image:
images.append(image) # maye want to include info like diffuse, spec here.
return images
"""
def make_material_subchunk(chunk_id, color): def make_material_subchunk(chunk_id, color):
...@@ -460,10 +463,12 @@ def make_material_subchunk(chunk_id, color): ...@@ -460,10 +463,12 @@ def make_material_subchunk(chunk_id, color):
col1 = _3ds_chunk(RGB1) col1 = _3ds_chunk(RGB1)
col1.add_variable("color1", _3ds_rgb_color(color)) col1.add_variable("color1", _3ds_rgb_color(color))
mat_sub.add_subchunk(col1) mat_sub.add_subchunk(col1)
# optional:
# col2 = _3ds_chunk(RGB1) """optional:
# col2.add_variable("color2", _3ds_rgb_color(color)) col2 = _3ds_chunk(RGB1)
# mat_sub.add_subchunk(col2) col2.add_variable("color2", _3ds_rgb_color(color))
mat_sub.add_subchunk(col2)
"""
return mat_sub return mat_sub
...@@ -855,7 +860,7 @@ def make_mesh_chunk(mesh, matrix, materialDict): ...@@ -855,7 +860,7 @@ def make_mesh_chunk(mesh, matrix, materialDict):
return mesh_chunk return mesh_chunk
""" # COMMENTED OUT FOR 2.42 RELEASE!! CRASHES 3DS MAX ''' # COMMENTED OUT FOR 2.42 RELEASE!! CRASHES 3DS MAX
def make_kfdata(start=0, stop=0, curtime=0): def make_kfdata(start=0, stop=0, curtime=0):
"""Make the basic keyframe data chunk""" """Make the basic keyframe data chunk"""
kfdata = _3ds_chunk(KFDATA) kfdata = _3ds_chunk(KFDATA)
...@@ -878,9 +883,7 @@ def make_kfdata(start=0, stop=0, curtime=0): ...@@ -878,9 +883,7 @@ def make_kfdata(start=0, stop=0, curtime=0):
kfdata.add_subchunk(kfseg) kfdata.add_subchunk(kfseg)
kfdata.add_subchunk(kfcurtime) kfdata.add_subchunk(kfcurtime)
return kfdata return kfdata
"""
"""
def make_track_chunk(ID, obj): def make_track_chunk(ID, obj):
"""Make a chunk for track data. """Make a chunk for track data.
...@@ -918,9 +921,7 @@ def make_track_chunk(ID, obj): ...@@ -918,9 +921,7 @@ def make_track_chunk(ID, obj):
track_chunk.add_variable("scale", _3ds_point_3d((1.0, 1.0, 1.0))) track_chunk.add_variable("scale", _3ds_point_3d((1.0, 1.0, 1.0)))
return track_chunk return track_chunk
"""
"""
def make_kf_obj_node(obj, name_to_id): def make_kf_obj_node(obj, name_to_id):
"""Make a node chunk for a Blender object. """Make a node chunk for a Blender object.
...@@ -980,7 +981,7 @@ def make_kf_obj_node(obj, name_to_id): ...@@ -980,7 +981,7 @@ def make_kf_obj_node(obj, name_to_id):
kf_obj_node.add_subchunk(make_track_chunk(SCL_TRACK_TAG, obj)) kf_obj_node.add_subchunk(make_track_chunk(SCL_TRACK_TAG, obj))
return kf_obj_node return kf_obj_node
""" '''
def save(operator, def save(operator,
...@@ -999,7 +1000,7 @@ def save(operator, ...@@ -999,7 +1000,7 @@ def save(operator,
# Time the export # Time the export
time1 = time.clock() time1 = time.clock()
# Blender.Window.WaitCursor(1) #Blender.Window.WaitCursor(1)
if global_matrix is None: if global_matrix is None:
global_matrix = mathutils.Matrix() global_matrix = mathutils.Matrix()
...@@ -1099,7 +1100,7 @@ def save(operator, ...@@ -1099,7 +1100,7 @@ def save(operator,
for ob, data in mesh_objects: for ob, data in mesh_objects:
name_to_id[ob.name]= len(name_to_id) name_to_id[ob.name]= len(name_to_id)
#for ob in empty_objects: #for ob in empty_objects:
# name_to_id[ob.name]= len(name_to_id) # name_to_id[ob.name]= len(name_to_id)
""" """
# Create object chunks for all meshes: # Create object chunks for all meshes:
...@@ -1126,9 +1127,10 @@ def save(operator, ...@@ -1126,9 +1127,10 @@ def save(operator,
# make a kf object node for the object: # make a kf object node for the object:
kfdata.add_subchunk(make_kf_obj_node(ob, name_to_id)) kfdata.add_subchunk(make_kf_obj_node(ob, name_to_id))
''' '''
if not blender_mesh.users: if not blender_mesh.users:
bpy.data.meshes.remove(blender_mesh) bpy.data.meshes.remove(blender_mesh)
# blender_mesh.vertices = None #blender_mesh.vertices = None
i += i i += i
...@@ -1166,7 +1168,7 @@ def save(operator, ...@@ -1166,7 +1168,7 @@ def save(operator,
name_mapping.clear() name_mapping.clear()
# Debugging only: report the exporting time: # Debugging only: report the exporting time:
# Blender.Window.WaitCursor(0) #Blender.Window.WaitCursor(0)
print("3ds export time: %.2f" % (time.clock() - time1)) print("3ds export time: %.2f" % (time.clock() - time1))
# Debugging only: dump the chunk hierarchy: # Debugging only: dump the chunk hierarchy:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment