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
|
2010-01-08 08:54:41 +00:00
|
|
|
from rna_prop_ui import PropertyPanel
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-05-16 10:21:00 +00:00
|
|
|
narrowui = bpy.context.user_preferences.view.properties_width_check
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
class DataButtonsPanel(bpy.types.Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "data"
|
|
|
|
|
|
|
|
def poll(self, context):
|
|
|
|
return context.armature
|
2009-05-20 02:17:53 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
class DATA_PT_context_arm(DataButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = ""
|
|
|
|
bl_show_header = False
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
arm = context.armature
|
|
|
|
space = context.space_data
|
2009-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 21:44:35 +00:00
|
|
|
split = layout.split(percentage=0.65)
|
|
|
|
if ob:
|
|
|
|
split.template_ID(ob, "data")
|
2009-11-23 00:27:30 +00:00
|
|
|
split.separator()
|
2009-11-12 21:44:35 +00:00
|
|
|
elif arm:
|
|
|
|
split.template_ID(space, "pin_id")
|
2009-11-23 00:27:30 +00:00
|
|
|
split.separator()
|
2009-11-12 21:44:35 +00:00
|
|
|
else:
|
|
|
|
layout.template_ID(ob, "data")
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2010-01-08 08:54:41 +00:00
|
|
|
class DATA_PT_custom_props_arm(DataButtonsPanel, PropertyPanel):
|
|
|
|
_context_path = "object.data"
|
|
|
|
|
|
|
|
|
2009-07-09 09:07:25 +00:00
|
|
|
class DATA_PT_skeleton(DataButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Skeleton"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
arm = context.armature
|
2009-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-04-26 08:55:14 +00:00
|
|
|
if wide_ui:
|
|
|
|
layout.prop(arm, "pose_position", expand=True)
|
|
|
|
else:
|
|
|
|
layout.prop(arm, "pose_position", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Layers:")
|
|
|
|
col.prop(arm, "layer", text="")
|
|
|
|
col.label(text="Protected Layers:")
|
|
|
|
col.prop(arm, "layer_protection", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Deform:")
|
2010-04-26 08:55:14 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(arm, "deform_vertexgroups", text="Vertex Groups")
|
|
|
|
col.prop(arm, "deform_envelope", text="Envelopes")
|
2010-04-26 08:55:14 +00:00
|
|
|
|
|
|
|
if wide_ui:
|
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(arm, "deform_quaternion", text="Quaternion")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
class DATA_PT_display(DataButtonsPanel):
|
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
|
2009-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.row().prop(arm, "drawtype", expand=True)
|
2009-11-12 21:44:35 +00:00
|
|
|
else:
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.row().prop(arm, "drawtype", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-12 21:44:35 +00:00
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(arm, "draw_names", text="Names")
|
|
|
|
col.prop(arm, "draw_axes", text="Axes")
|
|
|
|
col.prop(arm, "draw_custom_bone_shapes", text="Shapes")
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 21:44:35 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(arm, "draw_group_colors", text="Colors")
|
|
|
|
col.prop(arm, "delay_deform", text="Delay Refresh")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-07-21 10:18:08 +00:00
|
|
|
class DATA_PT_bone_groups(DataButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Bone Groups"
|
|
|
|
|
|
|
|
def poll(self, 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
|
2009-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = layout.row()
|
|
|
|
row.template_list(pose, "bone_groups", pose, "active_bone_group_index", rows=2)
|
|
|
|
|
|
|
|
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="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
group = pose.active_bone_group
|
|
|
|
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:
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 21:44:35 +00:00
|
|
|
col = split.column()
|
|
|
|
col.template_triColorSet(group, "colors")
|
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")
|
|
|
|
sub.operator("pose.group_unassign", text="Remove") #row.operator("pose.bone_group_remove_from", text="Remove")
|
|
|
|
|
|
|
|
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
|
|
|
|
2010-01-19 11:31:49 +00:00
|
|
|
# TODO: this panel will soon be depreceated too
|
2010-01-31 14:46:28 +00:00
|
|
|
|
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
class DATA_PT_ghost(DataButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Ghost"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
arm = context.armature
|
2009-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.prop(arm, "ghost_type", expand=True)
|
2009-11-12 21:44:35 +00:00
|
|
|
else:
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.prop(arm, "ghost_type", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
|
|
|
|
sub = col.column(align=True)
|
|
|
|
if arm.ghost_type == 'RANGE':
|
2010-04-01 21:44:56 +00:00
|
|
|
sub.prop(arm, "ghost_frame_start", text="Start")
|
|
|
|
sub.prop(arm, "ghost_frame_end", text="End")
|
2009-11-23 00:27:30 +00:00
|
|
|
sub.prop(arm, "ghost_size", text="Step")
|
2009-10-31 19:31:45 +00:00
|
|
|
elif arm.ghost_type == 'CURRENT_FRAME':
|
2009-11-23 00:27:30 +00:00
|
|
|
sub.prop(arm, "ghost_step", text="Range")
|
|
|
|
sub.prop(arm, "ghost_size", text="Step")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 21:44:35 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Display:")
|
|
|
|
col.prop(arm, "ghost_only_selected", text="Selected Only")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-12-16 13:27:30 +00:00
|
|
|
|
2009-12-14 03:01:42 +00:00
|
|
|
class DATA_PT_iksolver_itasc(DataButtonsPanel):
|
|
|
|
bl_label = "iTaSC parameters"
|
|
|
|
bl_default_closed = True
|
|
|
|
|
|
|
|
def poll(self, context):
|
|
|
|
ob = context.object
|
|
|
|
return (ob and ob.pose)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
|
|
|
|
itasc = ob.pose.ik_param
|
2009-12-17 13:14:29 +00:00
|
|
|
wide_ui = (context.region.width > narrowui)
|
2009-12-14 03:01:42 +00:00
|
|
|
|
|
|
|
row = layout.row()
|
|
|
|
row.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:")
|
|
|
|
layout.prop(itasc, "reiteration", expand=True)
|
2009-12-14 03:01:42 +00:00
|
|
|
|
2009-12-17 13:14:29 +00:00
|
|
|
split = layout.split()
|
|
|
|
split.active = not simulation or itasc.reiteration != 'NEVER'
|
2009-12-14 03:01:42 +00:00
|
|
|
col = split.column()
|
2009-12-17 13:14:29 +00:00
|
|
|
col.prop(itasc, "precision")
|
|
|
|
|
|
|
|
if wide_ui:
|
|
|
|
col = split.column()
|
|
|
|
col.prop(itasc, "num_iter")
|
|
|
|
|
|
|
|
|
|
|
|
if simulation:
|
|
|
|
layout.prop(itasc, "auto_step")
|
|
|
|
row = layout.row()
|
|
|
|
if itasc.auto_step:
|
|
|
|
row.prop(itasc, "min_step", text="Min")
|
|
|
|
row.prop(itasc, "max_step", text="Max")
|
|
|
|
else:
|
|
|
|
row.prop(itasc, "num_step")
|
|
|
|
|
|
|
|
layout.prop(itasc, "solver")
|
|
|
|
if simulation:
|
|
|
|
layout.prop(itasc, "feedback")
|
|
|
|
layout.prop(itasc, "max_velocity")
|
|
|
|
if itasc.solver == 'DLS':
|
|
|
|
row = layout.row()
|
|
|
|
row.prop(itasc, "dampmax", text="Damp", slider=True)
|
|
|
|
row.prop(itasc, "dampeps", text="Eps", slider=True)
|
2009-12-14 03:01:42 +00:00
|
|
|
|
2010-03-06 01:40:29 +00:00
|
|
|
# import generic panels from other files
|
2010-02-25 12:01:43 +00:00
|
|
|
from properties_animviz import DATA_PT_motion_paths, DATA_PT_onion_skinning
|
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
classes = [
|
|
|
|
DATA_PT_context_arm,
|
|
|
|
DATA_PT_skeleton,
|
|
|
|
DATA_PT_display,
|
|
|
|
DATA_PT_bone_groups,
|
|
|
|
DATA_PT_ghost,
|
|
|
|
DATA_PT_iksolver_itasc,
|
|
|
|
|
2010-02-25 12:01:43 +00:00
|
|
|
DATA_PT_motion_paths,
|
|
|
|
#DATA_PT_onion_skinning,
|
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
DATA_PT_custom_props_arm]
|
|
|
|
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
def register():
|
|
|
|
register = bpy.types.register
|
|
|
|
for cls in classes:
|
|
|
|
register(cls)
|
|
|
|
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
def unregister():
|
|
|
|
unregister = bpy.types.unregister
|
|
|
|
for cls in classes:
|
|
|
|
unregister(cls)
|
2010-02-16 09:55:07 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
register()
|