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

delta.py « rigify « modules « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dce03b5f412439ab2b889f35311d9fcecda10ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# ##### 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 rigify import RigifyError

# not used, defined for completeness
METARIG_NAMES = tuple()


def metarig_template():
    # generated by rigify.write_meta_rig
    bpy.ops.object.mode_set(mode='EDIT')
    obj = bpy.context.active_object
    arm = obj.data
    bone = arm.edit_bones.new('bonesker')
    bone.head[:] = 0.0000, 0.0000, 0.0000
    bone.tail[:] = -0.0000, 0.7382, 0.1895
    bone.roll = -0.0000
    bone.connected = False
    bone = arm.edit_bones.new('delta')
    bone.head[:] = -0.0497, 0.8414, 0.3530
    bone.tail[:] = -0.2511, 1.1588, 0.9653
    bone.roll = 2.6044
    bone.connected = False
    bone.parent = arm.edit_bones['bonesker']
    bone = arm.edit_bones.new('boney')
    bone.head[:] = 0.7940, 2.5592, 0.4134
    bone.tail[:] = 0.7940, 3.3975, 0.4890
    bone.roll = 3.1416
    bone.connected = False
    bone.parent = arm.edit_bones['delta']

    bpy.ops.object.mode_set(mode='OBJECT')
    pbone = obj.pose.bones['delta']
    pbone['type'] = 'delta'


def metarig_definition(obj, orig_bone_name):
    '''
    The bone given is the head, its parent is the body,
    # its only child the first of a chain with matching basenames.
    eg.
        body -> head -> neck_01 -> neck_02 -> neck_03.... etc
    '''
    arm = obj.data
    delta = arm.bones[orig_bone_name]
    children = delta.children

    if len(children) != 1:
        raise RigifyError("only 1 child supported for delta on bone '%s'" % delta.name)

    if delta.connected:
        raise RigifyError("bone cannot be connected to its parent '%s'" % delta.name)

    bone_definition = [delta.name, children[0].name]

    return bone_definition


def main(obj, bone_definition, base_names, options):
    '''
    Use this bone to define a delta thats applied to its child in pose mode.
    '''
    mode_orig = obj.mode
    bpy.ops.object.mode_set(mode='OBJECT')

    delta_name, child_name = bone_definition

    delta_pbone = obj.pose.bones[delta_name]

    arm = obj.data
    child_pbone = obj.pose.bones[child_name]

    delta_phead = delta_pbone.head.copy()
    delta_ptail = delta_pbone.tail.copy()
    delta_pmatrix = delta_pbone.matrix.copy()

    child_phead = child_pbone.head.copy()
    child_ptail = child_pbone.tail.copy()
    child_pmatrix = child_pbone.matrix.copy()


    children = delta_pbone.children

    bpy.ops.object.mode_set(mode='EDIT')

    delta_ebone = arm.edit_bones[delta_name]
    child_ebone = arm.edit_bones[child_name]

    delta_head = delta_ebone.head.copy()
    delta_tail = delta_ebone.tail.copy()

    child_head = child_ebone.head.copy()
    child_tail = child_ebone.tail.copy()

    #arm.edit_bones.remove(delta_ebone)
    #del delta_ebone # cant use this
    del child_pbone

    bpy.ops.object.mode_set(mode='OBJECT')


    # Move the child bone to the deltas location
    obj.animation_data_create()
    delta_pbone = obj.pose.bones[delta_name]
    # child_pbone = obj.pose.bones[child_name]

    # ------------------- drivers

    delta_pbone.rotation_mode = 'XYZ'

    rot = delta_pmatrix.invert().rotation_part() * child_pmatrix.rotation_part()
    rot = rot.invert().to_euler()

    fcurve_drivers = delta_pbone.driver_add("rotation_euler", -1)
    for i, fcurve_driver in enumerate(fcurve_drivers):
        driver = fcurve_driver.driver
        driver.type = 'AVERAGE'
        #mod = fcurve_driver.modifiers.new('GENERATOR')
        mod = fcurve_driver.modifiers[0]
        mod.poly_order = 1
        mod.coefficients[0] = rot[i]
        mod.coefficients[1] = 0.0

    # tricky, find the transform to drive the bone to this location.
    delta_head_offset = child_pmatrix.rotation_part() * (delta_phead - child_phead)

    fcurve_drivers = delta_pbone.driver_add("location", -1)
    for i, fcurve_driver in enumerate(fcurve_drivers):
        driver = fcurve_driver.driver
        driver.type = 'AVERAGE'
        #mod = fcurve_driver.modifiers.new('GENERATOR')
        mod = fcurve_driver.modifiers[0]
        mod.poly_order = 1
        mod.coefficients[0] = delta_head_offset[i]
        mod.coefficients[1] = 0.0


    bpy.ops.object.mode_set(mode='EDIT')

    bpy.ops.object.mode_set(mode=mode_orig)

    # no blendeing
    return None