2009-11-01 15:21:20 +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.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# 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.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-01 15:21:20 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
2009-10-31 20:16:59 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
# <pep8 compliant>
|
2009-05-19 15:38:36 +00:00
|
|
|
import bpy
|
2011-08-16 14:43:04 +00:00
|
|
|
from bpy.types import Panel, Menu
|
2010-01-08 08:54:41 +00:00
|
|
|
from rna_prop_ui import PropertyPanel
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-03-27 05:23:14 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
class ArmatureButtonsPanel():
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "data"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-10-31 19:31:45 +00:00
|
|
|
return context.armature
|
2009-05-20 02:17:53 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_context_arm(ArmatureButtonsPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = ""
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'HIDE_HEADER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
arm = context.armature
|
|
|
|
space = context.space_data
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
if ob:
|
2010-12-30 12:22:28 +00:00
|
|
|
layout.template_ID(ob, "data")
|
2010-08-06 15:17:44 +00:00
|
|
|
elif arm:
|
2010-12-30 12:22:28 +00:00
|
|
|
layout.template_ID(space, "pin_id")
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_skeleton(ArmatureButtonsPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Skeleton"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
arm = context.armature
|
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
layout.prop(arm, "pose_position", expand=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
col = layout.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Layers:")
|
2010-08-18 07:45:32 +00:00
|
|
|
col.prop(arm, "layers", text="")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Protected Layers:")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(arm, "layers_protected", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
layout.label(text="Deform:")
|
|
|
|
flow = layout.column_flow()
|
|
|
|
flow.prop(arm, "use_deform_vertex_groups", text="Vertex Groups")
|
|
|
|
flow.prop(arm, "use_deform_envelopes", text="Envelopes")
|
|
|
|
flow.prop(arm, "use_deform_preserve_volume", text="Quaternion")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-07-26 06:10:05 +00:00
|
|
|
if context.scene.render.engine == "BLENDER_GAME":
|
2011-08-30 11:31:48 +00:00
|
|
|
layout.row().prop(arm, "vert_deformer", expand=True)
|
2011-08-30 10:49:58 +00:00
|
|
|
|
2011-09-08 05:42:44 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_display(ArmatureButtonsPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Display"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2010-01-02 04:14:17 +00:00
|
|
|
ob = context.object
|
2009-10-31 19:31:45 +00:00
|
|
|
arm = context.armature
|
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
layout.prop(arm, "draw_type", expand=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-12 21:44:35 +00:00
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(arm, "show_names", text="Names")
|
|
|
|
col.prop(arm, "show_axes", text="Axes")
|
|
|
|
col.prop(arm, "show_bone_custom_shapes", text="Shapes")
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(arm, "show_group_colors", text="Colors")
|
2010-12-17 10:33:28 +00:00
|
|
|
if ob:
|
|
|
|
col.prop(ob, "show_x_ray", text="X-Ray")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(arm, "use_deform_delay", text="Delay Refresh")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-16 14:11:58 +00:00
|
|
|
class DATA_PT_bone_group_specials(Menu):
|
2011-07-07 04:31:53 +00:00
|
|
|
bl_label = "Bone Group Specials"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
layout.operator("pose.group_sort", icon='SORTALPHA')
|
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_bone_groups(ArmatureButtonsPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Bone Groups"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-10-31 23:35:56 +00:00
|
|
|
return (context.object and context.object.type == 'ARMATURE' and context.object.pose)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
pose = ob.pose
|
2011-07-07 04:31:53 +00:00
|
|
|
group = pose.bone_groups.active
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = layout.row()
|
2011-07-07 04:31:53 +00:00
|
|
|
|
|
|
|
rows = 2
|
|
|
|
if group:
|
|
|
|
rows = 5
|
|
|
|
row.template_list(pose, "bone_groups", pose.bone_groups, "active_index", rows=rows)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = row.column(align=True)
|
2009-11-22 17:41:35 +00:00
|
|
|
col.active = (ob.proxy is None)
|
2009-12-10 10:23:53 +00:00
|
|
|
col.operator("pose.group_add", icon='ZOOMIN', text="")
|
|
|
|
col.operator("pose.group_remove", icon='ZOOMOUT', text="")
|
2011-07-07 04:31:53 +00:00
|
|
|
col.menu("DATA_PT_bone_group_specials", icon='DOWNARROW_HLT', text="")
|
|
|
|
if group:
|
|
|
|
col.separator()
|
|
|
|
col.operator("pose.group_move", icon='TRIA_UP', text="").direction = 'UP'
|
|
|
|
col.operator("pose.group_move", icon='TRIA_DOWN', text="").direction = 'DOWN'
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
if group:
|
|
|
|
col = layout.column()
|
2009-11-22 17:41:35 +00:00
|
|
|
col.active = (ob.proxy is None)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(group, "name")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-12 21:44:35 +00:00
|
|
|
split = layout.split()
|
2009-11-22 17:41:35 +00:00
|
|
|
split.active = (ob.proxy is None)
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-12 21:44:35 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(group, "color_set")
|
2009-10-31 19:31:45 +00:00
|
|
|
if group.color_set:
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2011-03-04 19:57:05 +00:00
|
|
|
sub = col.row(align=True)
|
|
|
|
sub.prop(group.colors, "normal", text="")
|
|
|
|
sub.prop(group.colors, "select", text="")
|
|
|
|
sub.prop(group.colors, "active", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-07-14 03:19:19 +00:00
|
|
|
row = layout.row()
|
2009-11-22 17:41:35 +00:00
|
|
|
row.active = (ob.proxy is None)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-07-14 03:19:19 +00:00
|
|
|
sub = row.row(align=True)
|
|
|
|
sub.operator("pose.group_assign", text="Assign")
|
2010-09-07 15:17:42 +00:00
|
|
|
sub.operator("pose.group_unassign", text="Remove") # row.operator("pose.bone_group_remove_from", text="Remove")
|
2010-07-14 03:19:19 +00:00
|
|
|
|
|
|
|
sub = row.row(align=True)
|
|
|
|
sub.operator("pose.group_select", text="Select")
|
|
|
|
sub.operator("pose.group_deselect", text="Deselect")
|
2009-07-21 10:18:08 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_pose_library(ArmatureButtonsPanel, Panel):
|
2011-02-16 00:17:22 +00:00
|
|
|
bl_label = "Pose Library"
|
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2011-02-17 04:35:41 +00:00
|
|
|
|
2011-02-16 00:17:22 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
return (context.object and context.object.type == 'ARMATURE' and context.object.pose)
|
2011-02-17 04:35:41 +00:00
|
|
|
|
2011-02-16 00:17:22 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2011-02-17 04:35:41 +00:00
|
|
|
|
2011-02-16 00:17:22 +00:00
|
|
|
ob = context.object
|
|
|
|
poselib = ob.pose_library
|
2011-02-17 04:35:41 +00:00
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
layout.template_ID(ob, "pose_library", new="poselib.new", unlink="poselib.unlink")
|
2011-02-17 04:35:41 +00:00
|
|
|
|
2011-02-16 00:17:22 +00:00
|
|
|
if poselib:
|
2011-09-08 05:42:44 +00:00
|
|
|
# list of poses in pose library
|
2011-02-16 00:17:22 +00:00
|
|
|
row = layout.row()
|
|
|
|
row.template_list(poselib, "pose_markers", poselib.pose_markers, "active_index", rows=5)
|
2011-09-08 05:42:44 +00:00
|
|
|
|
2011-09-01 10:56:16 +00:00
|
|
|
# column of operators for active pose
|
|
|
|
# - goes beside list
|
2011-02-16 00:17:22 +00:00
|
|
|
col = row.column(align=True)
|
|
|
|
col.active = (poselib.library is None)
|
2011-02-17 04:35:41 +00:00
|
|
|
|
|
|
|
# invoke should still be used for 'add', as it is needed to allow
|
2011-02-16 00:17:22 +00:00
|
|
|
# add/replace options to be used properly
|
|
|
|
col.operator("poselib.pose_add", icon='ZOOMIN', text="")
|
2011-02-17 04:35:41 +00:00
|
|
|
|
|
|
|
col.operator_context = 'EXEC_DEFAULT' # exec not invoke, so that menu doesn't need showing
|
2011-02-16 02:25:03 +00:00
|
|
|
|
2011-02-23 03:08:14 +00:00
|
|
|
pose_marker_active = poselib.pose_markers.active
|
|
|
|
|
|
|
|
if pose_marker_active is not None:
|
|
|
|
col.operator("poselib.pose_remove", icon='ZOOMOUT', text="").pose = pose_marker_active.name
|
|
|
|
col.operator("poselib.apply_pose", icon='ZOOM_SELECTED', text="").pose_index = poselib.pose_markers.active_index
|
2011-09-08 05:42:44 +00:00
|
|
|
|
|
|
|
col.operator("poselib.action_sanitise", icon='HELP', text="") # XXX: put in menu?
|
|
|
|
|
2011-09-01 10:56:16 +00:00
|
|
|
# properties for active marker
|
|
|
|
if pose_marker_active is not None:
|
|
|
|
layout.prop(pose_marker_active, "name")
|
2011-02-16 00:17:22 +00:00
|
|
|
|
2011-02-16 02:05:41 +00:00
|
|
|
|
2010-01-19 11:31:49 +00:00
|
|
|
# TODO: this panel will soon be depreceated too
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_ghost(ArmatureButtonsPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Ghost"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
arm = context.armature
|
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
layout.prop(arm, "ghost_type", expand=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
col = split.column(align=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
if arm.ghost_type == 'RANGE':
|
2011-03-04 19:57:05 +00:00
|
|
|
col.prop(arm, "ghost_frame_start", text="Start")
|
|
|
|
col.prop(arm, "ghost_frame_end", text="End")
|
|
|
|
col.prop(arm, "ghost_size", text="Step")
|
2009-10-31 19:31:45 +00:00
|
|
|
elif arm.ghost_type == 'CURRENT_FRAME':
|
2011-03-04 19:57:05 +00:00
|
|
|
col.prop(arm, "ghost_step", text="Range")
|
|
|
|
col.prop(arm, "ghost_size", text="Step")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Display:")
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(arm, "show_only_ghost_selected", text="Selected Only")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-12-16 13:27:30 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_iksolver_itasc(ArmatureButtonsPanel, Panel):
|
2009-12-14 03:01:42 +00:00
|
|
|
bl_label = "iTaSC parameters"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2009-12-14 03:01:42 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-12-14 03:01:42 +00:00
|
|
|
ob = context.object
|
|
|
|
return (ob and ob.pose)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
itasc = ob.pose.ik_param
|
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
layout.prop(ob.pose, "ik_solver")
|
2009-12-26 09:36:50 +00:00
|
|
|
|
2009-12-17 13:14:29 +00:00
|
|
|
if itasc:
|
|
|
|
layout.prop(itasc, "mode", expand=True)
|
|
|
|
simulation = (itasc.mode == 'SIMULATION')
|
|
|
|
if simulation:
|
|
|
|
layout.label(text="Reiteration:")
|
2010-08-18 08:58:37 +00:00
|
|
|
layout.prop(itasc, "reiteration_method", expand=True)
|
2009-12-14 03:01:42 +00:00
|
|
|
|
2011-03-04 19:57:05 +00:00
|
|
|
row = layout.row()
|
|
|
|
row.active = not simulation or itasc.reiteration_method != 'NEVER'
|
|
|
|
row.prop(itasc, "precision")
|
|
|
|
row.prop(itasc, "iterations")
|
2009-12-17 13:14:29 +00:00
|
|
|
|
|
|
|
if simulation:
|
2010-08-18 08:58:37 +00:00
|
|
|
layout.prop(itasc, "use_auto_step")
|
2009-12-17 13:14:29 +00:00
|
|
|
row = layout.row()
|
2010-08-18 08:58:37 +00:00
|
|
|
if itasc.use_auto_step:
|
|
|
|
row.prop(itasc, "step_min", text="Min")
|
|
|
|
row.prop(itasc, "step_max", text="Max")
|
2009-12-17 13:14:29 +00:00
|
|
|
else:
|
2010-08-18 08:58:37 +00:00
|
|
|
row.prop(itasc, "step_count")
|
2009-12-17 13:14:29 +00:00
|
|
|
|
|
|
|
layout.prop(itasc, "solver")
|
|
|
|
if simulation:
|
|
|
|
layout.prop(itasc, "feedback")
|
2010-08-18 08:58:37 +00:00
|
|
|
layout.prop(itasc, "velocity_max")
|
2009-12-17 13:14:29 +00:00
|
|
|
if itasc.solver == 'DLS':
|
|
|
|
row = layout.row()
|
2010-08-18 08:58:37 +00:00
|
|
|
row.prop(itasc, "damping_max", text="Damp", slider=True)
|
|
|
|
row.prop(itasc, "damping_epsilon", text="Eps", slider=True)
|
2009-12-14 03:01:42 +00:00
|
|
|
|
2011-03-21 12:35:49 +00:00
|
|
|
from bl_ui.properties_animviz import (
|
|
|
|
MotionPathButtonsPanel,
|
|
|
|
OnionSkinButtonsPanel,
|
|
|
|
)
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2011-03-27 05:23:14 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_motion_paths(MotionPathButtonsPanel, Panel):
|
2010-08-02 02:55:12 +00:00
|
|
|
#bl_label = "Bones Motion Paths"
|
|
|
|
bl_context = "data"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-08-02 02:55:12 +00:00
|
|
|
# XXX: include posemode check?
|
|
|
|
return (context.object) and (context.armature)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
self.draw_settings(context, ob.pose.animation_visualisation, bones=True)
|
2010-08-02 02:55:12 +00:00
|
|
|
|
|
|
|
layout.separator()
|
2010-02-14 11:21:21 +00:00
|
|
|
|
2010-08-02 02:55:12 +00:00
|
|
|
split = layout.split()
|
2011-02-26 16:04:14 +00:00
|
|
|
split.operator("pose.paths_calculate", text="Calculate Paths")
|
|
|
|
split.operator("pose.paths_clear", text="Clear Paths")
|
2010-08-02 02:55:12 +00:00
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_onion_skinning(OnionSkinButtonsPanel): # , Panel): # inherit from panel when ready
|
2010-08-02 02:55:12 +00:00
|
|
|
#bl_label = "Bones Onion Skinning"
|
|
|
|
bl_context = "data"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-08-02 02:55:12 +00:00
|
|
|
# XXX: include posemode check?
|
|
|
|
return (context.object) and (context.armature)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
ob = context.object
|
2010-08-06 15:17:44 +00:00
|
|
|
self.draw_settings(context, ob.pose.animation_visualisation, bones=True)
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-08-12 19:36:10 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_custom_props_arm(ArmatureButtonsPanel, PropertyPanel, Panel):
|
2010-08-12 19:36:10 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
|
|
|
|
_context_path = "object.data"
|
2010-12-17 10:33:28 +00:00
|
|
|
_property_type = bpy.types.Armature
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|