Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Vegdahl <cessen@cessen.com>2010-10-26 09:07:09 +0400
committerNathan Vegdahl <cessen@cessen.com>2010-10-26 09:07:09 +0400
commit30b4fa2aa839e7dba72d6d913fd0bff5cc816e43 (patch)
treeb362998c9ae88e170d2221ee52782d6d83c97256 /release/scripts/ui
parent05abc0d3eb6b2bfe3e29434bbffcd03c36349471 (diff)
Removed old rigify code, as it is starting to interfere with the newer Rigify addon.
The newer addon currently resides here: bzr://bzr.cessen.com/rigify But will eventually be included in svn.
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_data_armature_rigify.py334
1 files changed, 0 insertions, 334 deletions
diff --git a/release/scripts/ui/properties_data_armature_rigify.py b/release/scripts/ui/properties_data_armature_rigify.py
deleted file mode 100644
index 6453ea9e038..00000000000
--- a/release/scripts/ui/properties_data_armature_rigify.py
+++ /dev/null
@@ -1,334 +0,0 @@
-# ##### 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.props import *
-
-
-class PoseTemplate(bpy.types.IDPropertyGroup):
- name = StringProperty(name="Name of the slave", description="", maxlen=64, default="")
-
-
-class PoseTemplateSettings(bpy.types.IDPropertyGroup):
- templates = CollectionProperty(type=PoseTemplate, name="Templates", description="")
- active_template_index = IntProperty(name="Index of the active slave", description="", default=-1, min=-1, max=65535)
- use_generate_deform_rig = BoolProperty(name="Create Deform Rig", description="Create a copy of the metarig, constrainted by the generated rig", default=False)
-
-
-def metarig_templates():
- import rigify
- return rigify.get_submodule_types()
-
-
-class DATA_PT_template(bpy.types.Panel):
- bl_label = "Meta-Rig Templates"
- bl_space_type = 'PROPERTIES'
- bl_region_type = 'WINDOW'
- bl_context = "data"
- bl_options = {'DEFAULT_CLOSED'}
-
- templates = []
-
- @classmethod
- def poll(cls, context):
- if not context.armature:
- return False
- obj = context.object
- if obj:
- return (obj.mode in ('POSE', 'OBJECT'))
- return False
-
- def draw(self, context):
- layout = self.layout
- try:
- active_type = context.active_pose_bone["type"]
- except:
- active_type = None
-
- scene = context.scene
- pose_templates = scene.pose_templates
-
- if pose_templates.active_template_index == -1:
- pose_templates.active_template_index = 0
-
- if not self.templates:
- self.templates[:] = metarig_templates()
-
- while(len(pose_templates.templates) < len(self.templates)):
- pose_templates.templates.add()
- while(len(pose_templates.templates) > len(self.templates)):
- pose_templates.templates.remove(0)
-
- for i, template_name in enumerate(self.templates):
- template = pose_templates.templates[i]
- if active_type == template_name:
- template.name = "<%s>" % template_name.replace("_", " ")
- else:
- template.name = " %s " % template_name.replace("_", " ")
-
- row = layout.row()
- row.operator("pose.metarig_generate", text="Generate")
- row.operator("pose.metarig_validate", text="Check")
- row.operator("pose.metarig_graph", text="Graph")
- row = layout.row()
- row.prop(pose_templates, "use_generate_deform_rig")
-
- row = layout.row()
- col = row.column()
- col.template_list(pose_templates, "templates", pose_templates, "active_template_index", rows=1)
-
- subrow = col.split(percentage=0.5, align=True)
- subsubrow = subrow.row(align=True)
- subsubrow.operator("pose.metarig_assign", text="Assign")
- subsubrow.operator("pose.metarig_clear", text="Clear")
-
- if self.templates:
- subsubrow = subrow.split(percentage=0.8)
- subsubrow.operator("pose.metarig_sample_add", text="Sample").metarig_type = self.templates[pose_templates.active_template_index]
- subsubrow.operator("pose.metarig_sample_add", text="All").metarig_type = "" # self.templates[pose_templates.active_template_index]
-
- sub = row.column(align=True)
- sub.operator("pose.metarig_reload", icon="FILE_REFRESH", text="")
-
-
-class Reload(bpy.types.Operator):
- '''Re-Scan the metarig package directory for scripts'''
-
- bl_idname = "pose.metarig_reload"
- bl_label = "Re-Scan the list of metarig types"
-
- def execute(self, context):
- DATA_PT_template.templates[:] = metarig_templates()
- return {'FINISHED'}
-
-
-def rigify_report_exception(operator, exception):
- import traceback
- import sys
- import os
- # find the module name where the error happened
- # hint, this is the metarig type!
- exceptionType, exceptionValue, exceptionTraceback = sys.exc_info()
- fn = traceback.extract_tb(exceptionTraceback)[-1][0]
- fn = os.path.basename(fn)
- fn = os.path.splitext(fn)[0]
- message = []
- if fn.startswith("__"):
- message.append("Incorrect armature...")
- else:
- message.append("Incorrect armature for type '%s'" % fn)
- message.append(exception.message)
-
- message.reverse() # XXX - stupid! menu's are upside down!
-
- operator.report(set(['INFO']), '\n'.join(message))
-
-
-class Generate(bpy.types.Operator):
- '''Generates a metarig from the active armature'''
-
- bl_idname = "pose.metarig_generate"
- bl_label = "Generate Metarig"
-
- def execute(self, context):
- import rigify
- reload(rigify)
-
- meta_def = context.scene.pose_templates.use_generate_deform_rig
-
- try:
- rigify.generate_rig(context, context.object, META_DEF=meta_def)
- except rigify.RigifyError as rig_exception:
- rigify_report_exception(self, rig_exception)
-
- return {'FINISHED'}
-
-
-class Validate(bpy.types.Operator):
- '''Validate a metarig from the active armature'''
-
- bl_idname = "pose.metarig_validate"
- bl_label = "Validate Metarig"
-
- def execute(self, context):
- import rigify
- reload(rigify)
- try:
- rigify.validate_rig(context, context.object)
- except rigify.RigifyError as rig_exception:
- rigify_report_exception(self, rig_exception)
- return {'FINISHED'}
-
-
-class Sample(bpy.types.Operator):
- '''Create a sample metarig to be modified before generating the final rig.'''
-
- bl_idname = "pose.metarig_sample_add"
- bl_label = "Re-Scan Metarig Scripts"
-
- metarig_type = StringProperty(name="Type", description="Name of the rig type to generate a sample of, a blank string for all", maxlen=128, default="")
-
- def execute(self, context):
- import rigify
- reload(rigify)
- final = (self.metarig_type == "")
- objects = rigify.generate_test(context, metarig_type=self.metarig_type, GENERATE_FINAL=final)
-
- if len(objects) > 1:
- for i, (obj_meta, obj_gen) in enumerate(objects):
- obj_meta.location.x = i * 1.0
- if obj_gen:
- obj_gen.location.x = i * 1.0
-
- return {'FINISHED'}
-
-
-class Graph(bpy.types.Operator):
- '''Create a graph from the active armature through graphviz'''
-
- bl_idname = "pose.metarig_graph"
- bl_label = "Pose Graph"
-
- def execute(self, context):
- import os
- import graphviz_export
- import bpy
- reload(graphviz_export)
- obj = bpy.context.object
- if(bpy.data.filepath):
- path = os.path.splitext(bpy.data.filepath)[0] + "-" + bpy.path.clean_name(obj.name)
- else:
- import tempfile
- path = tempfile.mktemp(prefix=bpy.app.tempdir) + "-" + bpy.path.clean_name(obj.name)
- path_dot = path + ".dot"
- path_png = path + ".png"
- saved = graphviz_export.graph_armature(bpy.context.object, path_dot, CONSTRAINTS=False, DRIVERS=False)
-
- if saved:
- # if we seriously want this working everywhere we'll need some new approach
- os.system("dot -Tpng %r > %r" % (path_dot, path_png))
- if not os.path.exists(path_png) or os.stat(path_png)[6] == 0:
- self.report('ERROR', "Graphvis could not create %r check graphviz is installed" % path_png)
- return {'CANCELLED'}
-
- bpy.ops.image.external_edit(filepath=path_png)
- #os.system("python /b/xdot.py '%s' &" % path_dot)
-
- return {'FINISHED'}
-
-
-class AsScript(bpy.types.Operator):
- '''Write the edit armature out as a python script'''
-
- bl_idname = "pose.metarig_to_script"
- bl_label = "Write Metarig to Script"
- bl_options = {'REGISTER', 'UNDO'}
-
- filepath = StringProperty(name="File Path", description="File path used for exporting the Armature file", maxlen=1024, default="")
-
- def execute(self, context):
- import rigify_utils
- reload(rigify_utils)
- obj = context.object
- code = rigify_utils.write_meta_rig(obj)
- path = self.filepath
- file = open(path, "w")
- file.write(code)
- file.close()
-
- return {'FINISHED'}
-
- def invoke(self, context, event):
- import os
- obj = context.object
- self.filepath = os.path.splitext(bpy.data.filepath)[0] + "-" + bpy.path.clean_name(obj.name) + ".py"
- wm = context.window_manager
- wm.add_fileselect(self)
- return {'RUNNING_MODAL'}
-
-
-# operators that use the GUI
-class ActiveAssign(bpy.types.Operator):
- '''Assign to the active posebone'''
-
- bl_idname = "pose.metarig_assign"
- bl_label = "Assign to the active posebone"
-
- @classmethod
- def poll(cls, context):
- bone = context.active_pose_bone
- return bool(bone and bone.id_data.mode == 'POSE')
-
- def execute(self, context):
- scene = context.scene
- pose_templates = scene.pose_templates
- template_name = DATA_PT_template.templates[pose_templates.active_template_index]
- context.active_pose_bone["type"] = template_name
- return {'FINISHED'}
-
-
-class ActiveClear(bpy.types.Operator):
- '''Clear type from the active posebone'''
-
- bl_idname = "pose.metarig_clear"
- bl_label = "Metarig Clear Type"
-
- @classmethod
- def poll(cls, context):
- bone = context.active_pose_bone
- return bool(bone and bone.id_data.mode == 'POSE')
-
- def execute(self, context):
- scene = context.scene
- try:
- del context.active_pose_bone["type"]
- except:
- return {'CANCELLED'}
- return {'FINISHED'}
-
-
-class INFO_MT_armature_metarig_add(bpy.types.Menu):
- bl_idname = "INFO_MT_armature_metarig_add"
- bl_label = "Meta-Rig"
-
- def draw(self, context):
- import rigify
-
- layout = self.layout
- layout.operator_context = 'INVOKE_REGION_WIN'
-
- for submodule_type in rigify.get_submodule_types():
- text = bpy.path.display_name(submodule_type)
- layout.operator("pose.metarig_sample_add", text=text, icon='OUTLINER_OB_ARMATURE').metarig_type = submodule_type
-
-menu_func = (lambda self, context: self.layout.menu("INFO_MT_armature_metarig_add", icon='OUTLINER_OB_ARMATURE'))
-import space_info # ensure the menu is loaded first
-
-
-def register():
- bpy.types.Scene.pose_templates = PointerProperty(type=PoseTemplateSettings, name="Pose Templates", description="Pose Template Settings")
- space_info.INFO_MT_armature_add.append(menu_func)
-
-
-def unregister():
- del bpy.types.Scene.pose_templates
- space_info.INFO_MT_armature_add.remove(menu_func)
-
-if __name__ == "__main__":
- register()