2011-09-14 10:33:51 +00:00
|
|
|
# vim:ts=4:et
|
|
|
|
# ##### 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>
|
|
|
|
|
|
|
|
import bpy
|
|
|
|
from bpy_extras.object_utils import object_data_add
|
|
|
|
from mathutils import Vector,Matrix
|
|
|
|
|
2011-09-21 10:13:01 +00:00
|
|
|
from .quakepal import palette
|
|
|
|
from .mdl import MDL
|
2011-09-14 10:33:51 +00:00
|
|
|
|
2011-09-15 04:21:08 +00:00
|
|
|
def make_verts(mdl, framenum, subframenum=0):
|
2011-09-14 10:33:51 +00:00
|
|
|
frame = mdl.frames[framenum]
|
|
|
|
if frame.type:
|
|
|
|
frame = frame.frames[subframenum]
|
|
|
|
verts = []
|
2011-09-21 16:03:50 +00:00
|
|
|
s = Vector(mdl.scale)
|
|
|
|
o = Vector(mdl.scale_origin)
|
2011-09-14 10:33:51 +00:00
|
|
|
m = Matrix(((s.x, 0, 0, 0),
|
|
|
|
( 0,s.y, 0, 0),
|
|
|
|
( 0, 0,s.z, 0),
|
|
|
|
(o.x,o.y,o.z, 1)))
|
|
|
|
for v in frame.verts:
|
2011-09-20 09:58:45 +00:00
|
|
|
try: #FIXME
|
|
|
|
verts.append(Vector(v.r) * m)
|
|
|
|
except ValueError:
|
|
|
|
verts.append(m * Vector(v.r))
|
2011-09-15 04:21:08 +00:00
|
|
|
return verts
|
|
|
|
|
|
|
|
def make_faces(mdl):
|
|
|
|
faces = []
|
|
|
|
uvs = []
|
|
|
|
for tri in mdl.tris:
|
2011-09-15 08:23:40 +00:00
|
|
|
tv = tri.verts
|
|
|
|
tv = tv[2], tv[1], tv[0] # flip the normal by reversing the winding
|
|
|
|
faces.append (tv)
|
2011-09-15 04:21:08 +00:00
|
|
|
sts = []
|
|
|
|
for v in tri.verts:
|
|
|
|
stv = mdl.stverts[v]
|
|
|
|
s = stv.s
|
|
|
|
t = stv.t
|
|
|
|
if stv.onseam and not tri.facesfront:
|
|
|
|
s += mdl.skinwidth / 2
|
|
|
|
# quake textures are top to bottom, but blender images
|
|
|
|
# are bottom to top
|
|
|
|
sts.append((s * 1.0 / mdl.skinwidth, 1 - t * 1.0 / mdl.skinheight))
|
2011-09-15 08:23:40 +00:00
|
|
|
sts = sts[2], sts[1], sts[0] # to match face vert reversal
|
2011-09-15 04:21:08 +00:00
|
|
|
uvs.append(sts)
|
|
|
|
return faces, uvs
|
2011-09-14 10:33:51 +00:00
|
|
|
|
2011-09-15 02:29:54 +00:00
|
|
|
def load_skins(mdl):
|
2011-09-15 10:19:21 +00:00
|
|
|
def load_skin(skin, name):
|
|
|
|
img = bpy.data.images.new(name, mdl.skinwidth, mdl.skinheight)
|
|
|
|
mdl.images.append(img)
|
2011-09-15 02:29:54 +00:00
|
|
|
p = [0.0] * mdl.skinwidth * mdl.skinheight * 4
|
2011-09-15 10:19:21 +00:00
|
|
|
d = skin.pixels
|
2011-09-15 02:29:54 +00:00
|
|
|
for j in range(mdl.skinheight):
|
|
|
|
for k in range(mdl.skinwidth):
|
2011-09-21 10:13:01 +00:00
|
|
|
c = palette[d[j * mdl.skinwidth + k]]
|
2011-09-15 02:29:54 +00:00
|
|
|
# quake textures are top to bottom, but blender images
|
|
|
|
# are bottom to top
|
|
|
|
l = ((mdl.skinheight - 1 - j) * mdl.skinwidth + k) * 4
|
|
|
|
p[l + 0] = c[0] / 255.0
|
|
|
|
p[l + 1] = c[1] / 255.0
|
|
|
|
p[l + 2] = c[2] / 255.0
|
|
|
|
p[l + 3] = 1.0
|
|
|
|
img.pixels[:] = p[:]
|
2011-09-20 09:58:45 +00:00
|
|
|
if hasattr(img, "pack"):
|
|
|
|
img.pack(True)
|
2011-09-15 02:29:54 +00:00
|
|
|
|
2011-09-15 10:19:21 +00:00
|
|
|
mdl.images=[]
|
2011-09-20 03:44:37 +00:00
|
|
|
for i, skin in enumerate(mdl.skins):
|
|
|
|
if skin.type:
|
|
|
|
for j, subskin in enumerate(skin.skins):
|
|
|
|
load_skin (subskin, "%s_%d_%d" % (mdl.name, i, j))
|
2011-09-15 10:19:21 +00:00
|
|
|
else:
|
2011-09-20 03:44:37 +00:00
|
|
|
load_skin (skin, "%s_%d" % (mdl.name, i))
|
2011-09-15 10:19:21 +00:00
|
|
|
|
2011-09-16 11:59:39 +00:00
|
|
|
def setup_skins (mdl, uvs):
|
2011-09-15 02:29:54 +00:00
|
|
|
load_skins (mdl)
|
2011-09-15 13:45:23 +00:00
|
|
|
img = mdl.images[0] # use the first skin for now
|
2011-09-16 11:59:39 +00:00
|
|
|
uvlay = mdl.mesh.uv_textures.new(mdl.name)
|
2011-09-15 04:21:08 +00:00
|
|
|
for i, f in enumerate(uvlay.data):
|
|
|
|
mdl_uv = uvs[i]
|
|
|
|
for j, uv in enumerate(f.uv):
|
|
|
|
uv[0], uv[1] = mdl_uv[j]
|
2011-09-15 13:45:23 +00:00
|
|
|
f.image = img
|
|
|
|
f.use_image = True
|
2011-09-15 10:52:18 +00:00
|
|
|
mat = bpy.data.materials.new(mdl.name)
|
|
|
|
mat.diffuse_color = (1,1,1)
|
|
|
|
mat.use_raytrace = False
|
|
|
|
tex = bpy.data.textures.new(mdl.name, 'IMAGE')
|
|
|
|
tex.extension = 'CLIP'
|
|
|
|
tex.use_preview_alpha = True
|
2011-09-15 13:45:23 +00:00
|
|
|
tex.image = img
|
2011-09-15 10:52:18 +00:00
|
|
|
mat.texture_slots.add()
|
|
|
|
ts = mat.texture_slots[0]
|
|
|
|
ts.texture = tex
|
|
|
|
ts.use_map_alpha = True
|
|
|
|
ts.texture_coords = 'UV'
|
2011-09-16 11:59:39 +00:00
|
|
|
mdl.mesh.materials.append(mat)
|
|
|
|
|
|
|
|
def make_shape_key(mdl, framenum, subframenum=0):
|
|
|
|
frame = mdl.frames[framenum]
|
|
|
|
name = "%s_%d" % (mdl.name, framenum)
|
|
|
|
if frame.type:
|
|
|
|
frame = frame.frames[subframenum]
|
|
|
|
name = "%s_%d_%d" % (mdl.name, framenum, subframenum)
|
|
|
|
if frame.name:
|
2011-09-17 14:13:21 +00:00
|
|
|
name = frame.name
|
2011-09-18 00:18:49 +00:00
|
|
|
else:
|
|
|
|
frame.name = name
|
2011-09-16 11:59:39 +00:00
|
|
|
frame.key = mdl.obj.shape_key_add(name)
|
2011-09-17 14:13:21 +00:00
|
|
|
frame.key.value = 0.0
|
|
|
|
mdl.keys.append (frame.key)
|
2011-09-21 16:03:50 +00:00
|
|
|
s = Vector(mdl.scale)
|
|
|
|
o = Vector(mdl.scale_origin)
|
2011-09-16 11:59:39 +00:00
|
|
|
m = Matrix(((s.x, 0, 0, 0),
|
|
|
|
( 0,s.y, 0, 0),
|
|
|
|
( 0, 0,s.z, 0),
|
|
|
|
(o.x,o.y,o.z, 1)))
|
|
|
|
for i, v in enumerate(frame.verts):
|
2011-09-20 09:58:45 +00:00
|
|
|
try: #FIXME
|
|
|
|
frame.key.data[i].co = Vector(v.r) * m
|
|
|
|
except ValueError:
|
|
|
|
frame.key.data[i].co = m * Vector(v.r)
|
2011-09-15 04:21:08 +00:00
|
|
|
|
2011-09-17 14:13:21 +00:00
|
|
|
def build_shape_keys(mdl):
|
|
|
|
mdl.keys = []
|
2011-09-20 10:32:49 +00:00
|
|
|
mdl.obj.shape_key_add("Basis")
|
2011-09-20 03:44:37 +00:00
|
|
|
for i, frame in enumerate(mdl.frames):
|
2011-09-17 14:13:21 +00:00
|
|
|
frame = mdl.frames[i]
|
|
|
|
if frame.type:
|
2011-09-20 03:44:37 +00:00
|
|
|
for j in range(len(frame.frames)):
|
2011-09-17 14:13:21 +00:00
|
|
|
make_shape_key(mdl, i, j)
|
|
|
|
else:
|
|
|
|
make_shape_key(mdl, i)
|
|
|
|
|
2011-09-18 00:58:59 +00:00
|
|
|
def set_keys(act, data):
|
|
|
|
for d in data:
|
|
|
|
key, co = d
|
|
|
|
dp = """key_blocks["%s"].value""" % key.name
|
|
|
|
fc = act.fcurves.new(data_path = dp)
|
|
|
|
fc.keyframe_points.add(len(co))
|
|
|
|
for i in range(len(co)):
|
|
|
|
fc.keyframe_points[i].co = co[i]
|
2011-09-17 14:13:21 +00:00
|
|
|
|
|
|
|
def build_actions(mdl):
|
|
|
|
sk = mdl.mesh.shape_keys
|
2011-09-20 03:44:37 +00:00
|
|
|
for frame in mdl.frames:
|
2011-09-17 14:13:21 +00:00
|
|
|
sk.animation_data_create()
|
|
|
|
sk.animation_data.action = bpy.data.actions.new(frame.name)
|
|
|
|
act=sk.animation_data.action
|
2011-09-18 00:58:59 +00:00
|
|
|
data = []
|
2011-09-18 06:37:17 +00:00
|
|
|
other_keys = mdl.keys[:]
|
2011-09-17 14:13:21 +00:00
|
|
|
if frame.type:
|
2011-09-20 03:44:37 +00:00
|
|
|
for j, subframe in enumerate(frame.frames):
|
2011-09-18 00:58:59 +00:00
|
|
|
co = []
|
|
|
|
if j > 1:
|
|
|
|
co.append ((1.0, 0.0))
|
|
|
|
if j > 0:
|
|
|
|
co.append ((j * 1.0, 0.0))
|
|
|
|
co.append (((j + 1) * 1.0, 1.0))
|
2011-09-20 03:44:37 +00:00
|
|
|
if j < len(frame.frames) - 2:
|
2011-09-18 00:58:59 +00:00
|
|
|
co.append (((j + 2) * 1.0, 0.0))
|
2011-09-20 03:44:37 +00:00
|
|
|
if j < len(frame.frames) - 1:
|
|
|
|
co.append ((len(frame.frames) * 1.0, 0.0))
|
|
|
|
data.append((subframe.key, co))
|
|
|
|
if subframe.key in other_keys:
|
|
|
|
del(other_keys[other_keys.index(subframe.key)])
|
|
|
|
co = [(1.0, 0.0), (len(frame.frames) * 1.0, 0.0)]
|
2011-09-18 06:37:17 +00:00
|
|
|
for k in other_keys:
|
|
|
|
data.append((k, co))
|
2011-09-17 14:13:21 +00:00
|
|
|
else:
|
2011-09-18 00:58:59 +00:00
|
|
|
data.append((frame.key, [(1.0, 1.0)]))
|
2011-09-18 06:37:17 +00:00
|
|
|
if frame.key in other_keys:
|
|
|
|
del(other_keys[other_keys.index(frame.key)])
|
|
|
|
co = [(1.0, 0.0)]
|
|
|
|
for k in other_keys:
|
|
|
|
data.append((k, co))
|
2011-09-18 00:58:59 +00:00
|
|
|
set_keys (act, data)
|
2011-09-17 14:13:21 +00:00
|
|
|
|
2011-09-17 14:41:35 +00:00
|
|
|
def merge_frames(mdl):
|
2011-09-20 10:32:49 +00:00
|
|
|
def get_base(name):
|
|
|
|
i = 0
|
|
|
|
while i < len(name) and name[i] not in "0123456789":
|
|
|
|
i += 1
|
|
|
|
return name[:i]
|
|
|
|
|
2011-09-17 14:41:35 +00:00
|
|
|
i = 0
|
2011-09-20 03:44:37 +00:00
|
|
|
while i < len(mdl.frames):
|
2011-09-17 14:41:35 +00:00
|
|
|
if mdl.frames[i].type:
|
|
|
|
i += 1
|
|
|
|
continue
|
|
|
|
base = get_base(mdl.frames[i].name)
|
|
|
|
j = i + 1
|
2011-09-20 03:44:37 +00:00
|
|
|
while j < len(mdl.frames):
|
2011-09-17 14:41:35 +00:00
|
|
|
if mdl.frames[j].type:
|
|
|
|
break
|
|
|
|
if get_base(mdl.frames[j].name) != base:
|
|
|
|
break
|
|
|
|
j += 1
|
2011-09-20 03:44:37 +00:00
|
|
|
f = MDL.Frame()
|
2011-09-17 14:41:35 +00:00
|
|
|
f.name = base
|
|
|
|
f.type = 1
|
|
|
|
f.frames = mdl.frames[i:j]
|
|
|
|
mdl.frames[i:j] = [f]
|
|
|
|
i += 1
|
|
|
|
|
2011-09-16 08:57:07 +00:00
|
|
|
def import_mdl(operator, context, filepath):
|
|
|
|
bpy.context.user_preferences.edit.use_global_undo = False
|
|
|
|
|
2011-09-16 10:14:31 +00:00
|
|
|
for obj in bpy.context.scene.objects:
|
|
|
|
obj.select = False
|
|
|
|
|
2011-09-20 03:44:37 +00:00
|
|
|
mdl = MDL()
|
|
|
|
if not mdl.read(filepath):
|
2011-09-20 04:34:12 +00:00
|
|
|
operator.report({'ERROR'},
|
|
|
|
"Unrecognized format: %s %d" % (mdl.ident, mdl.version))
|
|
|
|
return {'CANCELLED'}
|
2011-09-16 08:57:07 +00:00
|
|
|
faces, uvs = make_faces (mdl)
|
|
|
|
verts = make_verts (mdl, 0)
|
2011-09-16 11:59:39 +00:00
|
|
|
mdl.mesh = bpy.data.meshes.new(mdl.name)
|
|
|
|
mdl.mesh.from_pydata(verts, [], faces)
|
|
|
|
mdl.obj = bpy.data.objects.new(mdl.name, mdl.mesh)
|
|
|
|
bpy.context.scene.objects.link(mdl.obj)
|
|
|
|
bpy.context.scene.objects.active = mdl.obj
|
|
|
|
mdl.obj.select = True
|
|
|
|
setup_skins (mdl, uvs)
|
2011-09-20 09:58:45 +00:00
|
|
|
if mdl.images and not hasattr(mdl.images[0], "pack"):
|
|
|
|
operator.report({'WARNING'},
|
|
|
|
"Unable to pack skins. They must be packed by hand."
|
|
|
|
+" Some may have been lost")
|
2011-09-20 03:44:37 +00:00
|
|
|
if len(mdl.frames) > 1 or mdl.frames[0].type:
|
2011-09-17 14:13:21 +00:00
|
|
|
build_shape_keys(mdl)
|
2011-09-18 00:18:49 +00:00
|
|
|
merge_frames(mdl)
|
2011-09-17 14:13:21 +00:00
|
|
|
build_actions(mdl)
|
2011-09-16 11:59:39 +00:00
|
|
|
|
|
|
|
mdl.mesh.update()
|
2011-09-16 08:57:07 +00:00
|
|
|
|
2011-09-14 10:33:51 +00:00
|
|
|
bpy.context.user_preferences.edit.use_global_undo = True
|
2011-09-18 09:49:16 +00:00
|
|
|
return {'FINISHED'}
|