2010-01-19 11:31:49 +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,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-01-19 11:31:49 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# <pep8 compliant>
|
|
|
|
|
|
|
|
# Generic Panels (Independent of DataType)
|
|
|
|
|
2011-03-21 12:35:49 +00:00
|
|
|
# NOTE:
|
2011-10-17 06:58:07 +00:00
|
|
|
# The specialized panel types are derived in their respective UI modules
|
|
|
|
# don't register these classes since they are only helpers.
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2011-09-20 18:29:19 +00:00
|
|
|
|
2010-08-02 02:55:12 +00:00
|
|
|
class MotionPathButtonsPanel():
|
2010-01-19 11:31:49 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "Motion Paths"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-01-19 11:31:49 +00:00
|
|
|
|
2012-05-01 16:19:13 +00:00
|
|
|
def draw_settings(self, context, avs, mpath, bones=False):
|
2010-01-19 11:31:49 +00:00
|
|
|
layout = self.layout
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-08-18 08:26:18 +00:00
|
|
|
mps = avs.motion_path
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2012-05-01 16:19:13 +00:00
|
|
|
# Display Range
|
2010-08-06 15:17:44 +00:00
|
|
|
layout.prop(mps, "type", expand=True)
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2012-05-01 16:19:13 +00:00
|
|
|
col.label(text="Display Range:")
|
2010-01-19 11:31:49 +00:00
|
|
|
sub = col.column(align=True)
|
2012-08-17 18:36:20 +00:00
|
|
|
if mps.type == 'CURRENT_FRAME':
|
2011-09-21 15:18:38 +00:00
|
|
|
sub.prop(mps, "frame_before", text="Before")
|
|
|
|
sub.prop(mps, "frame_after", text="After")
|
2012-08-17 18:36:20 +00:00
|
|
|
elif mps.type == 'RANGE':
|
2011-09-21 15:18:38 +00:00
|
|
|
sub.prop(mps, "frame_start", text="Start")
|
|
|
|
sub.prop(mps, "frame_end", text="End")
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2011-09-21 15:18:38 +00:00
|
|
|
sub.prop(mps, "frame_step", text="Step")
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2012-05-01 16:19:13 +00:00
|
|
|
col = split.column()
|
2010-01-19 11:31:49 +00:00
|
|
|
if bones:
|
2012-05-01 16:19:13 +00:00
|
|
|
col.label(text="Cache for Bone:")
|
|
|
|
else:
|
|
|
|
col.label(text="Cache:")
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2012-05-01 16:19:13 +00:00
|
|
|
if mpath:
|
|
|
|
sub = col.column(align=True)
|
|
|
|
sub.enabled = False
|
|
|
|
sub.prop(mpath, "frame_start", text="From")
|
|
|
|
sub.prop(mpath, "frame_end", text="To")
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2012-10-04 11:05:48 +00:00
|
|
|
sub = col.row(align=True)
|
2012-05-01 16:19:13 +00:00
|
|
|
if bones:
|
2012-10-04 11:05:48 +00:00
|
|
|
sub.operator("pose.paths_update", text="Update Paths", icon='BONE_DATA')
|
|
|
|
sub.operator("pose.paths_clear", text="", icon='X')
|
2012-05-01 16:19:13 +00:00
|
|
|
else:
|
2012-10-04 11:05:48 +00:00
|
|
|
sub.operator("object.paths_update", text="Update Paths", icon='OBJECT_DATA')
|
|
|
|
sub.operator("object.paths_clear", text="", icon='X')
|
2012-05-01 16:19:13 +00:00
|
|
|
else:
|
2012-05-23 03:36:03 +00:00
|
|
|
sub = col.column(align=True)
|
|
|
|
sub.label(text="Nothing to show yet...", icon='ERROR')
|
|
|
|
if bones:
|
|
|
|
sub.operator("pose.paths_calculate", text="Calculate...", icon='BONE_DATA')
|
|
|
|
else:
|
|
|
|
sub.operator("object.paths_calculate", text="Calculate...", icon='OBJECT_DATA')
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2012-05-01 16:19:13 +00:00
|
|
|
# Display Settings
|
|
|
|
split = layout.split()
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2012-05-01 16:19:13 +00:00
|
|
|
col.label(text="Show:")
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(mps, "show_frame_numbers", text="Frame Numbers")
|
2012-05-15 18:50:51 +00:00
|
|
|
|
2012-05-01 16:19:13 +00:00
|
|
|
col = split.column()
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(mps, "show_keyframe_highlight", text="Keyframes")
|
2012-05-01 16:19:13 +00:00
|
|
|
sub = col.column()
|
|
|
|
sub.enabled = mps.show_keyframe_highlight
|
2010-05-20 12:31:55 +00:00
|
|
|
if bones:
|
2012-05-01 16:19:13 +00:00
|
|
|
sub.prop(mps, "show_keyframe_action_all", text="+ Non-Grouped Keyframes")
|
|
|
|
sub.prop(mps, "show_keyframe_numbers", text="Keyframe Numbers")
|
2010-01-19 11:31:49 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-01-19 11:31:49 +00:00
|
|
|
# FIXME: this panel still needs to be ported so that it will work correctly with animviz
|
2010-08-02 02:55:12 +00:00
|
|
|
class OnionSkinButtonsPanel():
|
2010-01-19 11:31:49 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "Onion Skinning"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
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)
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
|
|
|
|
sub = col.column(align=True)
|
|
|
|
if arm.ghost_type == 'RANGE':
|
2011-09-21 15:18:38 +00:00
|
|
|
sub.prop(arm, "ghost_frame_start", text="Start")
|
|
|
|
sub.prop(arm, "ghost_frame_end", text="End")
|
|
|
|
sub.prop(arm, "ghost_size", text="Step")
|
2010-01-19 11:31:49 +00:00
|
|
|
elif arm.ghost_type == 'CURRENT_FRAME':
|
2011-09-21 15:18:38 +00:00
|
|
|
sub.prop(arm, "ghost_step", text="Range")
|
|
|
|
sub.prop(arm, "ghost_size", text="Step")
|
2010-01-19 11:31:49 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Display:")
|
|
|
|
col.prop(arm, "show_only_ghost_selected", text="Selected Only")
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
2011-07-10 17:26:15 +00:00
|
|
|
import bpy
|
2011-04-04 10:13:04 +00:00
|
|
|
bpy.utils.register_module(__name__)
|