2011-09-22 22:51:54 +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 #####
|
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
# <pep8 compliant>
|
2011-09-22 22:51:54 +00:00
|
|
|
|
|
|
|
__all__ = (
|
|
|
|
"bake_action",
|
|
|
|
)
|
|
|
|
|
|
|
|
import bpy
|
|
|
|
|
|
|
|
|
|
|
|
def bake_action(frame_start,
|
|
|
|
frame_end,
|
|
|
|
frame_step=1,
|
|
|
|
only_selected=False,
|
|
|
|
do_pose=True,
|
|
|
|
do_object=True,
|
2013-07-04 23:52:02 +00:00
|
|
|
do_visual_keying=True,
|
2011-09-22 22:51:54 +00:00
|
|
|
do_constraint_clear=False,
|
2013-04-11 08:42:25 +00:00
|
|
|
do_parents_clear=False,
|
2011-09-22 22:51:54 +00:00
|
|
|
do_clean=False,
|
|
|
|
action=None,
|
|
|
|
):
|
|
|
|
|
|
|
|
"""
|
|
|
|
Return an image from the file path with options to search multiple paths
|
|
|
|
and return a placeholder if its not found.
|
|
|
|
|
|
|
|
:arg frame_start: First frame to bake.
|
|
|
|
:type frame_start: int
|
|
|
|
:arg frame_end: Last frame to bake.
|
|
|
|
:type frame_end: int
|
|
|
|
:arg frame_step: Frame step.
|
|
|
|
:type frame_step: int
|
|
|
|
:arg only_selected: Only bake selected data.
|
|
|
|
:type only_selected: bool
|
|
|
|
:arg do_pose: Bake pose channels.
|
|
|
|
:type do_pose: bool
|
|
|
|
:arg do_object: Bake objects.
|
|
|
|
:type do_object: bool
|
2013-07-04 23:52:02 +00:00
|
|
|
:arg do_visual_keying: Use the final transformations for baking ('visual keying')
|
|
|
|
:type do_visual_keying: bool
|
|
|
|
:arg do_constraint_clear: Remove constraints after baking.
|
2011-09-22 22:51:54 +00:00
|
|
|
:type do_constraint_clear: bool
|
2013-04-11 08:42:25 +00:00
|
|
|
:arg do_parents_clear: Unparent after baking objects.
|
|
|
|
:type do_parents_clear: bool
|
2011-09-22 22:51:54 +00:00
|
|
|
:arg do_clean: Remove redundant keyframes after baking.
|
|
|
|
:type do_clean: bool
|
|
|
|
:arg action: An action to bake the data into, or None for a new action
|
|
|
|
to be created.
|
|
|
|
:type action: :class:`bpy.types.Action` or None
|
2011-09-26 15:39:15 +00:00
|
|
|
|
2011-09-22 22:51:54 +00:00
|
|
|
:return: an action or None
|
|
|
|
:rtype: :class:`bpy.types.Action`
|
|
|
|
"""
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
2012-12-28 13:34:19 +00:00
|
|
|
# Helper Functions and vars
|
2011-09-22 22:51:54 +00:00
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
def pose_frame_info(obj, do_visual_keying):
|
|
|
|
matrix = {}
|
|
|
|
for name, pbone in obj.pose.bones.items():
|
|
|
|
if do_visual_keying:
|
|
|
|
# Get the final transform of the bone in its own local space...
|
|
|
|
matrix[name] = obj.convert_space(pbone, pbone.matrix, 'POSE', 'LOCAL')
|
|
|
|
else:
|
|
|
|
matrix[name] = pbone.matrix_basis.copy()
|
|
|
|
return matrix
|
2011-09-22 22:51:54 +00:00
|
|
|
|
2013-04-11 08:42:25 +00:00
|
|
|
if do_parents_clear:
|
|
|
|
def obj_frame_info(obj, do_visual_keying):
|
|
|
|
parent = obj.parent
|
2013-07-04 23:52:02 +00:00
|
|
|
matrix = obj.matrix_local if do_visual_keying else obj.matrix_local
|
2013-04-11 08:42:25 +00:00
|
|
|
if parent:
|
|
|
|
return parent.matrix_world * matrix
|
|
|
|
else:
|
|
|
|
return matrix.copy()
|
|
|
|
else:
|
|
|
|
def obj_frame_info(obj, do_visual_keying):
|
2013-07-04 23:52:02 +00:00
|
|
|
return obj.matrix_local.copy() if do_visual_keying else obj.matrix_local.copy()
|
2011-09-22 22:51:54 +00:00
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Setup the Context
|
|
|
|
|
|
|
|
# TODO, pass data rather then grabbing from the context!
|
|
|
|
scene = bpy.context.scene
|
|
|
|
obj = bpy.context.object
|
|
|
|
frame_back = scene.frame_current
|
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
if obj.pose is None:
|
2011-09-22 22:51:54 +00:00
|
|
|
do_pose = False
|
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
if not (do_pose or do_object):
|
2011-09-22 22:51:54 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
pose_info = []
|
|
|
|
obj_info = []
|
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
options = {'INSERTKEY_NEEDED'}
|
|
|
|
|
2011-09-22 22:51:54 +00:00
|
|
|
frame_range = range(frame_start, frame_end + 1, frame_step)
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Collect transformations
|
|
|
|
|
|
|
|
for f in frame_range:
|
|
|
|
scene.frame_set(f)
|
2013-07-04 23:52:02 +00:00
|
|
|
scene.update()
|
2011-09-22 22:51:54 +00:00
|
|
|
if do_pose:
|
2013-07-04 23:52:02 +00:00
|
|
|
pose_info.append(pose_frame_info(obj, do_visual_keying))
|
2011-09-22 22:51:54 +00:00
|
|
|
if do_object:
|
2013-07-04 23:52:02 +00:00
|
|
|
obj_info.append(obj_frame_info(obj, do_visual_keying))
|
2011-09-22 22:51:54 +00:00
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Create action
|
|
|
|
|
2012-02-08 04:37:37 +00:00
|
|
|
# in case animation data hasn't been created
|
2011-09-22 22:51:54 +00:00
|
|
|
atd = obj.animation_data_create()
|
|
|
|
if action is None:
|
|
|
|
action = bpy.data.actions.new("Action")
|
|
|
|
atd.action = action
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Apply transformations to action
|
|
|
|
|
|
|
|
# pose
|
2012-12-28 13:34:19 +00:00
|
|
|
if do_pose:
|
|
|
|
for name, pbone in obj.pose.bones.items():
|
|
|
|
if only_selected and not pbone.bone.select:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if do_constraint_clear:
|
|
|
|
while pbone.constraints:
|
|
|
|
pbone.constraints.remove(pbone.constraints[0])
|
|
|
|
|
|
|
|
# create compatible eulers
|
|
|
|
euler_prev = None
|
|
|
|
|
|
|
|
for (f, matrix) in zip(frame_range, pose_info):
|
|
|
|
pbone.matrix_basis = matrix[name].copy()
|
|
|
|
|
|
|
|
pbone.keyframe_insert("location", -1, f, name, options)
|
|
|
|
|
|
|
|
rotation_mode = pbone.rotation_mode
|
|
|
|
if rotation_mode == 'QUATERNION':
|
|
|
|
pbone.keyframe_insert("rotation_quaternion", -1, f, name, options)
|
|
|
|
elif rotation_mode == 'AXIS_ANGLE':
|
|
|
|
pbone.keyframe_insert("rotation_axis_angle", -1, f, name, options)
|
|
|
|
else: # euler, XYZ, ZXY etc
|
|
|
|
if euler_prev is not None:
|
|
|
|
euler = pbone.rotation_euler.copy()
|
|
|
|
euler.make_compatible(euler_prev)
|
|
|
|
pbone.rotation_euler = euler
|
|
|
|
euler_prev = euler
|
|
|
|
del euler
|
|
|
|
else:
|
|
|
|
euler_prev = pbone.rotation_euler.copy()
|
|
|
|
pbone.keyframe_insert("rotation_euler", -1, f, name, options)
|
|
|
|
|
|
|
|
pbone.keyframe_insert("scale", -1, f, name, options)
|
2011-09-22 22:51:54 +00:00
|
|
|
|
|
|
|
# object. TODO. multiple objects
|
|
|
|
if do_object:
|
|
|
|
if do_constraint_clear:
|
|
|
|
while obj.constraints:
|
|
|
|
obj.constraints.remove(obj.constraints[0])
|
|
|
|
|
2012-08-25 12:37:15 +00:00
|
|
|
# create compatible eulers
|
|
|
|
euler_prev = None
|
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
for (f, matrix) in zip(frame_range, obj_info):
|
2013-03-28 19:33:14 +00:00
|
|
|
name = "Action Bake" # XXX: placeholder
|
2013-01-21 02:40:51 +00:00
|
|
|
obj.matrix_basis = matrix
|
2011-09-22 22:51:54 +00:00
|
|
|
|
2013-01-21 02:40:51 +00:00
|
|
|
obj.keyframe_insert("location", -1, f, name, options)
|
2011-09-22 22:51:54 +00:00
|
|
|
|
|
|
|
rotation_mode = obj.rotation_mode
|
|
|
|
if rotation_mode == 'QUATERNION':
|
2013-01-21 02:40:51 +00:00
|
|
|
obj.keyframe_insert("rotation_quaternion", -1, f, name, options)
|
2011-09-22 22:51:54 +00:00
|
|
|
elif rotation_mode == 'AXIS_ANGLE':
|
2013-01-21 02:40:51 +00:00
|
|
|
obj.keyframe_insert("rotation_axis_angle", -1, f, name, options)
|
2011-09-22 22:51:54 +00:00
|
|
|
else: # euler, XYZ, ZXY etc
|
2012-08-25 12:37:15 +00:00
|
|
|
if euler_prev is not None:
|
|
|
|
euler = obj.rotation_euler.copy()
|
|
|
|
euler.make_compatible(euler_prev)
|
|
|
|
obj.rotation_euler = euler
|
|
|
|
euler_prev = euler
|
|
|
|
del euler
|
2012-12-28 13:34:19 +00:00
|
|
|
else:
|
2012-08-25 12:37:15 +00:00
|
|
|
euler_prev = obj.rotation_euler.copy()
|
2013-01-21 02:40:51 +00:00
|
|
|
obj.keyframe_insert("rotation_euler", -1, f, name, options)
|
2012-08-25 12:37:15 +00:00
|
|
|
|
2013-01-21 02:40:51 +00:00
|
|
|
obj.keyframe_insert("scale", -1, f, name, options)
|
2011-09-22 22:51:54 +00:00
|
|
|
|
2013-04-11 08:42:25 +00:00
|
|
|
if do_parents_clear:
|
|
|
|
obj.parent = None
|
|
|
|
|
2011-09-22 22:51:54 +00:00
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Clean
|
|
|
|
|
|
|
|
if do_clean:
|
|
|
|
for fcu in action.fcurves:
|
|
|
|
keyframe_points = fcu.keyframe_points
|
|
|
|
i = 1
|
|
|
|
while i < len(fcu.keyframe_points) - 1:
|
|
|
|
val_prev = keyframe_points[i - 1].co[1]
|
|
|
|
val_next = keyframe_points[i + 1].co[1]
|
|
|
|
val = keyframe_points[i].co[1]
|
|
|
|
|
|
|
|
if abs(val - val_prev) + abs(val - val_next) < 0.0001:
|
|
|
|
keyframe_points.remove(keyframe_points[i])
|
|
|
|
else:
|
|
|
|
i += 1
|
|
|
|
|
2012-12-28 13:34:19 +00:00
|
|
|
scene.frame_set(frame_back)
|
|
|
|
|
2011-09-22 22:51:54 +00:00
|
|
|
return action
|