2009-01-07 04:06:52 +00:00
/**
* $ Id $
*
* * * * * * 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 . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*
2009-07-21 12:38:01 +00:00
* Contributor ( s ) : Blender Foundation ( 2008 ) , Roland Hess , Joshua Leung
2009-01-07 04:06:52 +00:00
*
* * * * * * END GPL LICENSE BLOCK * * * * *
*/
# include <stdlib.h>
2009-09-24 21:22:24 +00:00
# include <string.h>
2009-01-07 04:06:52 +00:00
# include "RNA_define.h"
# include "RNA_types.h"
2009-11-13 16:08:03 +00:00
# include "RNA_enum_types.h"
2009-01-07 04:06:52 +00:00
# include "rna_internal.h"
# include "DNA_action_types.h"
# include "DNA_armature_types.h"
# include "DNA_constraint_types.h"
2009-01-16 18:04:01 +00:00
# include "DNA_object_types.h"
2009-01-07 04:06:52 +00:00
# include "DNA_scene_types.h"
2009-03-02 01:22:02 +00:00
# include "WM_types.h"
2009-01-07 04:06:52 +00:00
# ifdef RNA_RUNTIME
2009-09-24 21:22:24 +00:00
# include "BIK_api.h"
# include "BKE_action.h"
2009-09-28 12:20:56 +00:00
# include "BKE_armature.h"
2009-11-10 20:43:45 +00:00
# include "BLI_math.h"
2009-07-14 17:59:26 +00:00
2009-07-21 12:38:01 +00:00
# include "DNA_userdef_types.h"
2009-03-02 01:22:02 +00:00
# include "BKE_context.h"
2009-11-13 16:08:03 +00:00
# include "BKE_constraint.h"
2009-03-02 01:22:02 +00:00
# include "BKE_depsgraph.h"
2009-05-20 09:52:02 +00:00
# include "BKE_idprop.h"
2009-03-02 01:22:02 +00:00
2009-09-24 21:22:24 +00:00
# include "ED_object.h"
2009-07-14 17:59:26 +00:00
# include "ED_armature.h"
2009-09-24 21:22:24 +00:00
# include "MEM_guardedalloc.h"
2009-03-02 01:22:02 +00:00
static void rna_Pose_update ( bContext * C , PointerRNA * ptr )
{
2009-07-14 17:59:26 +00:00
// XXX when to use this? ob->pose->flag |= (POSE_LOCKED|POSE_DO_UNLOCK);
2.5
Notifiers
---------
Various fixes for wrong use of notifiers, and some new notifiers
to make things a bit more clear and consistent, with two notable
changes:
* Geometry changes are now done with NC_GEOM, rather than
NC_OBJECT|ND_GEOM_, so an object does need to be available.
* Space data now use NC_SPACE|ND_SPACE_*, instead of data
notifiers or even NC_WINDOW in some cases. Note that NC_SPACE
should only be used for notifying about changes in space data,
we don't want to go back to allqueue(REDRAW..).
Depsgraph
---------
The dependency graph now has a different flush call:
DAG_object_flush_update(scene, ob, flag)
is replaced by:
DAG_id_flush_update(id, flag)
It still works basically the same, one difference is that it now
also accepts object data (e.g. Mesh), again to avoid requiring an
Object to be available. Other ID types will simply do nothing at
the moment.
Docs
----
I made some guidelines for how/when to do which kinds of updates
and notifiers. I can't specify totally exact how to make these
decisions, but these are basically the guidelines I use. So, new
and updated docs are here:
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/NotifiersUpdates
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/DataNotifiers
2009-09-04 20:51:09 +00:00
DAG_id_flush_update ( ptr - > id . data , OB_RECALC_DATA ) ;
2009-03-02 01:22:02 +00:00
}
2009-09-24 21:22:24 +00:00
static void rna_Pose_IK_update ( bContext * C , PointerRNA * ptr )
{
// XXX when to use this? ob->pose->flag |= (POSE_LOCKED|POSE_DO_UNLOCK);
Object * ob = ptr - > id . data ;
DAG_id_flush_update ( & ob - > id , OB_RECALC_DATA ) ;
BIK_clear_data ( ob - > pose ) ;
2009-03-02 01:22:02 +00:00
}
2009-11-18 11:40:55 +00:00
static char * rna_PoseBone_path ( PointerRNA * ptr )
2009-08-02 12:52:02 +00:00
{
2009-11-18 11:40:55 +00:00
return BLI_sprintfN ( " pose.bones[ \" %s \" ] " , ( ( bPoseChannel * ) ptr - > data ) - > name ) ;
2009-08-02 12:52:02 +00:00
}
2009-07-21 12:38:01 +00:00
static void rna_BoneGroup_color_set_set ( PointerRNA * ptr , int value )
{
bActionGroup * grp = ptr - > data ;
/* if valid value, set the new enum value, then copy the relevant colours? */
if ( ( value > = - 1 ) & & ( value < 21 ) )
grp - > customCol = value ;
else
return ;
/* only do color copying if using a custom color (i.e. not default colour) */
if ( grp - > customCol ) {
if ( grp - > customCol > 0 ) {
/* copy theme colors on-to group's custom color in case user tries to edit color */
bTheme * btheme = U . themes . first ;
ThemeWireColor * col_set = & btheme - > tarm [ ( grp - > customCol - 1 ) ] ;
memcpy ( & grp - > cs , col_set , sizeof ( ThemeWireColor ) ) ;
}
else {
/* init custom colors with a generic multi-color rgb set, if not initialised already (for custom color set) */
if ( grp - > cs . solid [ 0 ] = = 0 ) {
/* define for setting colors in theme below */
# define SETCOL(col, r, g, b, a) col[0]=r; col[1]=g; col[2]= b; col[3]= a;
SETCOL ( grp - > cs . solid , 0xff , 0x00 , 0x00 , 255 ) ;
SETCOL ( grp - > cs . select , 0x81 , 0xe6 , 0x14 , 255 ) ;
SETCOL ( grp - > cs . active , 0x18 , 0xb6 , 0xe0 , 255 ) ;
# undef SETCOL
}
}
}
}
2009-11-18 11:40:55 +00:00
static IDProperty * rna_PoseBone_idproperties ( PointerRNA * ptr , int create )
2009-05-20 09:52:02 +00:00
{
bPoseChannel * pchan = ptr - > data ;
if ( create & & ! pchan - > prop ) {
IDPropertyTemplate val = { 0 } ;
pchan - > prop = IDP_New ( IDP_GROUP , val , " RNA_PoseChannel group " ) ;
}
return pchan - > prop ;
}
2009-09-24 21:22:24 +00:00
static void rna_Pose_ik_solver_set ( struct PointerRNA * ptr , int value )
{
bPose * pose = ( bPose * ) ptr - > data ;
if ( pose - > iksolver ! = value ) {
// the solver has changed, must clean any temporary structures
BIK_clear_data ( pose ) ;
if ( pose - > ikparam ) {
MEM_freeN ( pose - > ikparam ) ;
pose - > ikparam = NULL ;
}
pose - > iksolver = value ;
init_pose_ikparam ( pose ) ;
}
}
static void rna_Pose_ik_solver_update ( bContext * C , PointerRNA * ptr )
{
Object * ob = ptr - > id . data ;
bPose * pose = ptr - > data ;
Scene * scene = CTX_data_scene ( C ) ;
pose - > flag | = POSE_RECALC ; // checks & sorts pose channels
DAG_scene_sort ( scene ) ;
update_pose_constraint_flags ( pose ) ;
object_test_constraints ( ob ) ;
DAG_id_flush_update ( & ob - > id , OB_RECALC_DATA | OB_RECALC_OB ) ;
}
2009-10-08 00:57:00 +00:00
/* rotation - axis-angle */
static void rna_PoseChannel_rotation_axis_angle_get ( PointerRNA * ptr , float * value )
{
bPoseChannel * pchan = ptr - > data ;
/* for now, assume that rotation mode is axis-angle */
value [ 0 ] = pchan - > rotAngle ;
2009-11-10 20:43:45 +00:00
copy_v3_v3 ( & value [ 1 ] , pchan - > rotAxis ) ;
2009-10-08 00:57:00 +00:00
}
/* rotation - axis-angle */
static void rna_PoseChannel_rotation_axis_angle_set ( PointerRNA * ptr , const float * value )
{
bPoseChannel * pchan = ptr - > data ;
/* for now, assume that rotation mode is axis-angle */
pchan - > rotAngle = value [ 0 ] ;
2009-11-10 20:43:45 +00:00
copy_v3_v3 ( pchan - > rotAxis , ( float * ) & value [ 1 ] ) ;
2009-10-08 00:57:00 +00:00
// TODO: validate axis?
}
2009-09-06 23:15:43 +00:00
static void rna_PoseChannel_rotation_mode_set ( PointerRNA * ptr , int value )
{
bPoseChannel * pchan = ptr - > data ;
2009-09-28 10:19:20 +00:00
/* use API Method for conversions... */
2009-10-08 00:57:00 +00:00
BKE_rotMode_change_values ( pchan - > quat , pchan - > eul , pchan - > rotAxis , & pchan - > rotAngle , pchan - > rotmode , ( short ) value ) ;
2009-09-06 23:15:43 +00:00
/* finally, set the new rotation type */
pchan - > rotmode = value ;
}
2009-07-14 17:59:26 +00:00
static void rna_PoseChannel_name_set ( PointerRNA * ptr , const char * value )
{
Object * ob = ( Object * ) ptr - > id . data ;
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
char oldname [ 32 ] , newname [ 32 ] ;
/* need to be on the stack */
BLI_strncpy ( newname , value , 32 ) ;
BLI_strncpy ( oldname , pchan - > name , 32 ) ;
ED_armature_bone_rename ( ob - > data , oldname , newname ) ;
}
2009-07-14 22:11:25 +00:00
static int rna_PoseChannel_has_ik_get ( PointerRNA * ptr )
{
Object * ob = ( Object * ) ptr - > id . data ;
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
return ED_pose_channel_in_IK_chain ( ob , pchan ) ;
}
2009-09-24 21:22:24 +00:00
StructRNA * rna_IKParam_refine ( PointerRNA * ptr )
{
bIKParam * param = ( bIKParam * ) ptr - > data ;
switch ( param - > iksolver ) {
case IKSOLVER_ITASC :
return & RNA_Itasc ;
default :
return & RNA_IKParam ;
}
}
PointerRNA rna_Pose_ikparam_get ( struct PointerRNA * ptr )
{
bPose * pose = ( bPose * ) ptr - > data ;
return rna_pointer_inherit_refine ( ptr , & RNA_IKParam , pose - > ikparam ) ;
}
static StructRNA * rna_Pose_ikparam_typef ( PointerRNA * ptr )
{
bPose * pose = ( bPose * ) ptr - > data ;
switch ( pose - > iksolver ) {
case IKSOLVER_ITASC :
return & RNA_Itasc ;
default :
return & RNA_IKParam ;
}
}
static void rna_Itasc_update ( bContext * C , PointerRNA * ptr )
{
Object * ob = ptr - > id . data ;
bItasc * itasc = ptr - > data ;
/* verify values */
if ( itasc - > precision < 0.0001f )
itasc - > precision = 0.0001f ;
if ( itasc - > minstep < 0.001f )
itasc - > minstep = 0.001f ;
if ( itasc - > maxstep < itasc - > minstep )
itasc - > maxstep = itasc - > minstep ;
if ( itasc - > feedback < 0.01f )
itasc - > feedback = 0.01f ;
if ( itasc - > feedback > 100.f )
itasc - > feedback = 100.f ;
if ( itasc - > maxvel < 0.01f )
itasc - > maxvel = 0.01f ;
if ( itasc - > maxvel > 100.f )
itasc - > maxvel = 100.f ;
BIK_update_param ( ob - > pose ) ;
DAG_id_flush_update ( & ob - > id , OB_RECALC_DATA ) ;
}
static void rna_Itasc_update_rebuild ( bContext * C , PointerRNA * ptr )
{
Object * ob = ptr - > id . data ;
bPose * pose = ob - > pose ;
pose - > flag | = POSE_RECALC ; // checks & sorts pose channels
rna_Itasc_update ( C , ptr ) ;
}
2009-08-23 12:53:55 +00:00
static PointerRNA rna_PoseChannel_bone_group_get ( PointerRNA * ptr )
{
Object * ob = ( Object * ) ptr - > id . data ;
bPose * pose = ( ob ) ? ob - > pose : NULL ;
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
bActionGroup * grp ;
if ( pose )
grp = BLI_findlink ( & pose - > agroups , pchan - > agrp_index - 1 ) ;
else
grp = NULL ;
return rna_pointer_inherit_refine ( ptr , & RNA_BoneGroup , grp ) ;
}
static void rna_PoseChannel_bone_group_set ( PointerRNA * ptr , PointerRNA value )
{
Object * ob = ( Object * ) ptr - > id . data ;
bPose * pose = ( ob ) ? ob - > pose : NULL ;
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
if ( pose )
pchan - > agrp_index = BLI_findindex ( & pose - > agroups , value . data ) + 1 ;
else
pchan - > agrp_index = 0 ;
}
static int rna_PoseChannel_bone_group_index_get ( PointerRNA * ptr )
{
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
return MAX2 ( pchan - > agrp_index - 1 , 0 ) ;
}
static void rna_PoseChannel_bone_group_index_set ( PointerRNA * ptr , int value )
{
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
pchan - > agrp_index = value + 1 ;
}
static void rna_PoseChannel_bone_group_index_range ( PointerRNA * ptr , int * min , int * max )
{
Object * ob = ( Object * ) ptr - > id . data ;
bPose * pose = ( ob ) ? ob - > pose : NULL ;
* min = 0 ;
if ( pose ) {
* max = BLI_countlist ( & pose - > agroups ) - 1 ;
* max = MAX2 ( 0 , * max ) ;
}
else
* max = 0 ;
}
2009-07-21 10:18:08 +00:00
static PointerRNA rna_Pose_active_bone_group_get ( PointerRNA * ptr )
{
bPose * pose = ( bPose * ) ptr - > data ;
return rna_pointer_inherit_refine ( ptr , & RNA_BoneGroup , BLI_findlink ( & pose - > agroups , pose - > active_group - 1 ) ) ;
}
2009-08-23 12:53:55 +00:00
static void rna_Pose_active_bone_group_set ( PointerRNA * ptr , PointerRNA value )
{
bPose * pose = ( bPose * ) ptr - > data ;
pose - > active_group = BLI_findindex ( & pose - > agroups , value . data ) + 1 ;
}
2009-07-21 10:18:08 +00:00
static int rna_Pose_active_bone_group_index_get ( PointerRNA * ptr )
{
bPose * pose = ( bPose * ) ptr - > data ;
return MAX2 ( pose - > active_group - 1 , 0 ) ;
}
static void rna_Pose_active_bone_group_index_set ( PointerRNA * ptr , int value )
{
bPose * pose = ( bPose * ) ptr - > data ;
pose - > active_group = value + 1 ;
}
static void rna_Pose_active_bone_group_index_range ( PointerRNA * ptr , int * min , int * max )
{
bPose * pose = ( bPose * ) ptr - > data ;
* min = 0 ;
* max = BLI_countlist ( & pose - > agroups ) - 1 ;
* max = MAX2 ( 0 , * max ) ;
}
2009-09-17 14:46:22 +00:00
#if 0
2009-09-14 16:52:06 +00:00
static void rna_pose_bgroup_name_index_get ( PointerRNA * ptr , char * value , int index )
2009-07-21 10:18:08 +00:00
{
bPose * pose = ( bPose * ) ptr - > data ;
bActionGroup * grp ;
grp = BLI_findlink ( & pose - > agroups , index - 1 ) ;
if ( grp ) BLI_strncpy ( value , grp - > name , sizeof ( grp - > name ) ) ;
else BLI_strncpy ( value , " " , sizeof ( grp - > name ) ) ; // XXX if invalid pointer, won't this crash?
}
2009-09-14 16:52:06 +00:00
static int rna_pose_bgroup_name_index_length ( PointerRNA * ptr , int index )
2009-07-21 10:18:08 +00:00
{
bPose * pose = ( bPose * ) ptr - > data ;
bActionGroup * grp ;
grp = BLI_findlink ( & pose - > agroups , index - 1 ) ;
return ( grp ) ? strlen ( grp - > name ) : 0 ;
}
2009-09-14 16:52:06 +00:00
static void rna_pose_bgroup_name_index_set ( PointerRNA * ptr , const char * value , short * index )
2009-07-21 10:18:08 +00:00
{
bPose * pose = ( bPose * ) ptr - > data ;
bActionGroup * grp ;
int a ;
for ( a = 1 , grp = pose - > agroups . first ; grp ; grp = grp - > next , a + + ) {
if ( strcmp ( grp - > name , value ) = = 0 ) {
* index = a ;
return ;
}
}
* index = 0 ;
}
2009-09-14 16:52:06 +00:00
static void rna_pose_pgroup_name_set ( PointerRNA * ptr , const char * value , char * result , int maxlen )
2009-07-21 10:18:08 +00:00
{
bPose * pose = ( bPose * ) ptr - > data ;
bActionGroup * grp ;
for ( grp = pose - > agroups . first ; grp ; grp = grp - > next ) {
if ( strcmp ( grp - > name , value ) = = 0 ) {
BLI_strncpy ( result , value , maxlen ) ;
return ;
}
}
BLI_strncpy ( result , " " , maxlen ) ;
}
2009-09-17 14:46:22 +00:00
# endif
2009-07-21 10:18:08 +00:00
2009-11-11 19:58:30 +00:00
static PointerRNA rna_PoseChannel_active_constraint_get ( PointerRNA * ptr )
{
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
2009-11-16 12:33:42 +00:00
bConstraint * con = constraints_get_active ( & pchan - > constraints ) ;
2009-11-11 19:58:30 +00:00
return rna_pointer_inherit_refine ( ptr , & RNA_Constraint , con ) ;
}
static void rna_PoseChannel_active_constraint_set ( PointerRNA * ptr , PointerRNA value )
{
bPoseChannel * pchan = ( bPoseChannel * ) ptr - > data ;
2009-11-16 12:33:42 +00:00
constraints_set_active ( & pchan - > constraints , ( bConstraint * ) value . data ) ;
2009-11-11 19:58:30 +00:00
}
2009-11-16 11:11:16 +00:00
static bConstraint * rna_PoseChannel_constraints_new ( bPoseChannel * pchan , bContext * C , int type )
2009-11-13 16:08:03 +00:00
{
//WM_event_add_notifier(C, NC_OBJECT|ND_CONSTRAINT|NA_ADDED, object);
// TODO, pass object also
// TODO, new pose bones don't have updated draw flags
return add_pose_constraint ( NULL , pchan , NULL , type ) ;
}
static int rna_PoseChannel_constraints_remove ( bPoseChannel * pchan , bContext * C , int index )
{
2009-11-16 11:11:16 +00:00
// TODO
//ED_object_constraint_set_active(object, NULL);
//WM_event_add_notifier(C, NC_OBJECT|ND_CONSTRAINT, object);
return remove_constraint_index ( & pchan - > constraints , index ) ;
2009-11-13 16:08:03 +00:00
}
2009-01-07 04:06:52 +00:00
# else
2009-07-21 10:18:08 +00:00
static void rna_def_bone_group ( BlenderRNA * brna )
{
2009-07-21 12:38:01 +00:00
static EnumPropertyItem prop_colorSets_items [ ] = {
{ 0 , " DEFAULT " , 0 , " Default Colors " , " " } ,
{ 1 , " THEME01 " , 0 , " 01 - Theme Color Set " , " " } ,
{ 2 , " THEME02 " , 0 , " 02 - Theme Color Set " , " " } ,
{ 3 , " THEME03 " , 0 , " 03 - Theme Color Set " , " " } ,
{ 4 , " THEME04 " , 0 , " 04 - Theme Color Set " , " " } ,
{ 5 , " THEME05 " , 0 , " 05 - Theme Color Set " , " " } ,
{ 6 , " THEME06 " , 0 , " 06 - Theme Color Set " , " " } ,
{ 7 , " THEME07 " , 0 , " 07 - Theme Color Set " , " " } ,
{ 8 , " THEME08 " , 0 , " 08 - Theme Color Set " , " " } ,
{ 9 , " THEME09 " , 0 , " 09 - Theme Color Set " , " " } ,
{ 10 , " THEME10 " , 0 , " 10 - Theme Color Set " , " " } ,
{ 11 , " THEME11 " , 0 , " 11 - Theme Color Set " , " " } ,
{ 12 , " THEME12 " , 0 , " 12 - Theme Color Set " , " " } ,
{ 13 , " THEME13 " , 0 , " 13 - Theme Color Set " , " " } ,
{ 14 , " THEME14 " , 0 , " 14 - Theme Color Set " , " " } ,
{ 15 , " THEME15 " , 0 , " 15 - Theme Color Set " , " " } ,
{ 16 , " THEME16 " , 0 , " 16 - Theme Color Set " , " " } ,
{ 17 , " THEME17 " , 0 , " 17 - Theme Color Set " , " " } ,
{ 18 , " THEME18 " , 0 , " 18 - Theme Color Set " , " " } ,
{ 19 , " THEME19 " , 0 , " 19 - Theme Color Set " , " " } ,
{ 20 , " THEME20 " , 0 , " 20 - Theme Color Set " , " " } ,
{ - 1 , " CUSTOM " , 0 , " Custom Color Set " , " " } ,
{ 0 , NULL , 0 , NULL , NULL } } ;
2009-07-21 10:18:08 +00:00
StructRNA * srna ;
PropertyRNA * prop ;
2009-07-21 12:38:01 +00:00
/* struct */
2009-07-21 10:18:08 +00:00
srna = RNA_def_struct ( brna , " BoneGroup " , NULL ) ;
RNA_def_struct_sdna ( srna , " bActionGroup " ) ;
RNA_def_struct_ui_text ( srna , " Bone Group " , " Groups of Pose Channels (Bones). " ) ;
2009-09-09 11:05:10 +00:00
RNA_def_struct_ui_icon ( srna , ICON_GROUP_BONE ) ;
2009-07-21 12:38:01 +00:00
/* name */
2009-07-21 10:18:08 +00:00
prop = RNA_def_property ( srna , " name " , PROP_STRING , PROP_NONE ) ;
RNA_def_property_ui_text ( prop , " Name " , " " ) ;
RNA_def_struct_name_property ( srna , prop ) ;
// TODO: add some runtime-collections stuff to access grouped bones
2009-07-21 12:38:01 +00:00
/* color set + colors */
prop = RNA_def_property ( srna , " color_set " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_sdna ( prop , NULL , " customCol " ) ;
RNA_def_property_enum_items ( prop , prop_colorSets_items ) ;
RNA_def_property_enum_funcs ( prop , NULL , " rna_BoneGroup_color_set_set " , NULL ) ;
RNA_def_property_ui_text ( prop , " Color Set " , " Custom color set to use. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
// TODO: editing the colors for this should result in changes to the color type...
2009-09-16 18:04:01 +00:00
prop = RNA_def_property ( srna , " colors " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_flag ( prop , PROP_NEVER_NULL ) ;
2009-07-21 12:38:01 +00:00
RNA_def_property_struct_type ( prop , " ThemeBoneColorSet " ) ;
RNA_def_property_pointer_sdna ( prop , NULL , " cs " ) ; /* NOTE: the DNA data is not really a pointer, but this code works :) */
RNA_def_property_ui_text ( prop , " Colors " , " Copy of the colors associated with the group's color set. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-07-21 10:18:08 +00:00
}
2009-01-07 04:06:52 +00:00
2009-09-24 21:22:24 +00:00
static EnumPropertyItem prop_iksolver_items [ ] = {
{ IKSOLVER_LEGACY , " LEGACY " , 0 , " Legacy " , " Original IK solver. " } ,
{ IKSOLVER_ITASC , " ITASC " , 0 , " iTaSC " , " Multi constraint, stateful IK solver. " } ,
{ 0 , NULL , 0 , NULL , NULL } } ;
static EnumPropertyItem prop_solver_items [ ] = {
{ ITASC_SOLVER_SDLS , " SDLS " , 0 , " SDLS " , " Selective Damped Least Square " } ,
{ ITASC_SOLVER_DLS , " DLS " , 0 , " DLS " , " Damped Least Square with Numerical Filtering " } ,
{ 0 , NULL , 0 , NULL , NULL } } ;
2009-01-07 04:06:52 +00:00
2009-11-13 16:08:03 +00:00
static void rna_def_pose_channel_constraints ( BlenderRNA * brna , PropertyRNA * cprop )
{
StructRNA * srna ;
PropertyRNA * prop ;
FunctionRNA * func ;
PropertyRNA * parm ;
2009-11-23 14:08:04 +00:00
RNA_def_property_srna ( cprop , " PoseBoneConstraints " ) ;
srna = RNA_def_struct ( brna , " PoseBoneConstraints " , NULL ) ;
2009-11-13 16:08:03 +00:00
RNA_def_struct_sdna ( srna , " bPoseChannel " ) ;
2009-11-23 14:08:04 +00:00
RNA_def_struct_ui_text ( srna , " PoseBone Constraints " , " Collection of pose bone constraints. " ) ;
2009-11-13 16:08:03 +00:00
/* Collection active property */
prop = RNA_def_property ( srna , " active " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_struct_type ( prop , " Constraint " ) ;
RNA_def_property_pointer_funcs ( prop , " rna_PoseChannel_active_constraint_get " , " rna_PoseChannel_active_constraint_set " , NULL ) ;
RNA_def_property_flag ( prop , PROP_EDITABLE ) ;
RNA_def_property_ui_text ( prop , " Active Constraint " , " Active PoseChannel constraint. " ) ;
/* Constraint collection */
2009-11-16 11:11:16 +00:00
func = RNA_def_function ( srna , " new " , " rna_PoseChannel_constraints_new " ) ;
2009-11-13 16:08:03 +00:00
RNA_def_function_flag ( func , FUNC_USE_CONTEXT ) ;
RNA_def_function_ui_description ( func , " Add a constraint to this object " ) ;
/* return type */
parm = RNA_def_pointer ( func , " constraint " , " Constraint " , " " , " New constraint. " ) ;
RNA_def_function_return ( func , parm ) ;
/* object to add */
parm = RNA_def_enum ( func , " type " , constraint_type_items , 1 , " " , " Constraint type to add. " ) ;
RNA_def_property_flag ( parm , PROP_REQUIRED ) ;
func = RNA_def_function ( srna , " remove " , " rna_PoseChannel_constraints_remove " ) ;
RNA_def_function_flag ( func , FUNC_USE_CONTEXT ) ;
RNA_def_function_ui_description ( func , " Remove a constraint from this object. " ) ;
/* return type */
parm = RNA_def_boolean ( func , " success " , 0 , " Success " , " Removed the constraint successfully. " ) ;
RNA_def_function_return ( func , parm ) ;
/* object to add */
parm = RNA_def_int ( func , " index " , 0 , 0 , INT_MAX , " Index " , " " , 0 , INT_MAX ) ;
RNA_def_property_flag ( parm , PROP_REQUIRED ) ;
}
2009-01-07 04:06:52 +00:00
static void rna_def_pose_channel ( BlenderRNA * brna )
{
2009-09-28 10:19:20 +00:00
// XXX: this RNA enum define is currently duplicated for objects, since there is some text here which is not applicable
2009-02-02 11:51:10 +00:00
static EnumPropertyItem prop_rotmode_items [ ] = {
2009-09-28 10:19:20 +00:00
{ ROT_MODE_QUAT , " QUATERNION " , 0 , " Quaternion (WXYZ) " , " No Gimbal Lock (default) " } ,
{ ROT_MODE_XYZ , " XYZ " , 0 , " XYZ Euler " , " XYZ Rotation Order. Prone to Gimbal Lock " } ,
{ ROT_MODE_XZY , " XZY " , 0 , " XZY Euler " , " XZY Rotation Order. Prone to Gimbal Lock " } ,
{ ROT_MODE_YXZ , " YXZ " , 0 , " YXZ Euler " , " YXZ Rotation Order. Prone to Gimbal Lock " } ,
{ ROT_MODE_YZX , " YZX " , 0 , " YZX Euler " , " YZX Rotation Order. Prone to Gimbal Lock " } ,
{ ROT_MODE_ZXY , " ZXY " , 0 , " ZXY Euler " , " ZXY Rotation Order. Prone to Gimbal Lock " } ,
{ ROT_MODE_ZYX , " ZYX " , 0 , " ZYX Euler " , " ZYX Rotation Order. Prone to Gimbal Lock " } ,
{ ROT_MODE_AXISANGLE , " AXIS_ANGLE " , 0 , " Axis Angle " , " Axis Angle (W+XYZ). Defines a rotation around some axis defined by 3D-Vector. " } ,
2009-06-16 00:52:21 +00:00
{ 0 , NULL , 0 , NULL , NULL } } ;
2009-02-02 11:51:10 +00:00
2009-01-07 04:06:52 +00:00
StructRNA * srna ;
PropertyRNA * prop ;
2009-11-18 11:40:55 +00:00
srna = RNA_def_struct ( brna , " PoseBone " , NULL ) ;
2009-01-07 04:06:52 +00:00
RNA_def_struct_sdna ( srna , " bPoseChannel " ) ;
2009-11-18 11:40:55 +00:00
RNA_def_struct_ui_text ( srna , " Pose Bone " , " Channel defining pose data for a bone in a Pose. " ) ;
RNA_def_struct_path_func ( srna , " rna_PoseBone_path " ) ;
RNA_def_struct_idproperties_func ( srna , " rna_PoseBone_idproperties " ) ;
2009-08-23 12:53:55 +00:00
/* Bone Constraints */
2009-01-07 04:06:52 +00:00
prop = RNA_def_property ( srna , " constraints " , PROP_COLLECTION , PROP_NONE ) ;
RNA_def_property_struct_type ( prop , " Constraint " ) ;
2009-11-11 19:58:30 +00:00
RNA_def_property_ui_text ( prop , " Constraints " , " Constraints that act on this PoseChannel. " ) ;
2009-11-13 16:08:03 +00:00
rna_def_pose_channel_constraints ( brna , prop ) ;
2009-01-07 04:06:52 +00:00
2009-08-23 12:53:55 +00:00
/* Name + Selection Status */
2009-01-07 04:06:52 +00:00
prop = RNA_def_property ( srna , " name " , PROP_STRING , PROP_NONE ) ;
2009-07-14 17:59:26 +00:00
RNA_def_property_string_funcs ( prop , NULL , NULL , " rna_PoseChannel_name_set " ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Name " , " " ) ;
RNA_def_struct_name_property ( srna , prop ) ;
prop = RNA_def_property ( srna , " selected " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " selectflag " , BONE_SELECTED ) ;
RNA_def_property_ui_text ( prop , " Selected " , " " ) ;
2009-08-23 12:53:55 +00:00
/* Baked Bone Path cache data s*/
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " path_start_frame " , PROP_INT , PROP_TIME ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_int_sdna ( prop , NULL , " pathsf " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Bone Paths Calculation Start Frame " , " Starting frame of range of frames to use for Bone Path calculations. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-01-07 04:06:52 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " path_end_frame " , PROP_INT , PROP_TIME ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_int_sdna ( prop , NULL , " pathef " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Bone Paths Calculation End Frame " , " End frame of range of frames to use for Bone Path calculations. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-08-23 12:53:55 +00:00
/* Relationships to other bones */
2009-09-16 18:04:01 +00:00
prop = RNA_def_property ( srna , " bone " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_flag ( prop , PROP_NEVER_NULL ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_struct_type ( prop , " Bone " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-11-18 11:40:55 +00:00
RNA_def_property_ui_text ( prop , " Bone " , " Bone associated with this PoseBone. " ) ;
2009-01-07 04:06:52 +00:00
prop = RNA_def_property ( srna , " parent " , PROP_POINTER , PROP_NONE ) ;
2009-11-18 11:40:55 +00:00
RNA_def_property_struct_type ( prop , " PoseBone " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-11-18 11:40:55 +00:00
RNA_def_property_ui_text ( prop , " Parent " , " Parent of this pose bone. " ) ;
2009-01-07 04:06:52 +00:00
prop = RNA_def_property ( srna , " child " , PROP_POINTER , PROP_NONE ) ;
2009-11-18 11:40:55 +00:00
RNA_def_property_struct_type ( prop , " PoseBone " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-11-18 11:40:55 +00:00
RNA_def_property_ui_text ( prop , " Child " , " Child of this pose bone. " ) ;
2009-08-23 12:53:55 +00:00
/* Transformation settings */
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " location " , PROP_FLOAT , PROP_TRANSLATION ) ;
2009-01-16 18:04:01 +00:00
RNA_def_property_float_sdna ( prop , NULL , " loc " ) ;
RNA_def_property_ui_text ( prop , " Location " , " " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_TRANSFORM , " rna_Pose_update " ) ;
2009-01-16 18:04:01 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " scale " , PROP_FLOAT , PROP_XYZ ) ;
2009-01-16 18:04:01 +00:00
RNA_def_property_float_sdna ( prop , NULL , " size " ) ;
RNA_def_property_ui_text ( prop , " Scale " , " " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_TRANSFORM , " rna_Pose_update " ) ;
2009-01-16 18:04:01 +00:00
2009-09-28 10:19:20 +00:00
prop = RNA_def_property ( srna , " rotation_quaternion " , PROP_FLOAT , PROP_QUATERNION ) ;
2009-01-16 18:04:01 +00:00
RNA_def_property_float_sdna ( prop , NULL , " quat " ) ;
2009-09-28 10:19:20 +00:00
RNA_def_property_ui_text ( prop , " Quaternion Rotation " , " Rotation in Quaternions. " ) ;
2009-09-11 12:05:09 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_TRANSFORM , " rna_Pose_update " ) ;
2009-09-28 10:19:20 +00:00
/* XXX: for axis-angle, it would have been nice to have 2 separate fields for UI purposes, but
* having a single one is better for Keyframing and other property - management situations . . .
*/
prop = RNA_def_property ( srna , " rotation_axis_angle " , PROP_FLOAT , PROP_AXISANGLE ) ;
2009-10-08 00:57:00 +00:00
RNA_def_property_array ( prop , 4 ) ; // TODO: maybe we'll need to define the 'default value' getter too...
RNA_def_property_float_funcs ( prop , " rna_PoseChannel_rotation_axis_angle_get " , " rna_PoseChannel_rotation_axis_angle_set " , NULL ) ;
2009-09-28 10:19:20 +00:00
RNA_def_property_ui_text ( prop , " Axis-Angle Rotation " , " Angle of Rotation for Axis-Angle rotation representation. " ) ;
2009-09-11 12:05:09 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_TRANSFORM , " rna_Pose_update " ) ;
2009-09-28 10:19:20 +00:00
prop = RNA_def_property ( srna , " rotation_euler " , PROP_FLOAT , PROP_EULER ) ;
2009-02-02 11:51:10 +00:00
RNA_def_property_float_sdna ( prop , NULL , " eul " ) ;
2009-09-28 10:19:20 +00:00
RNA_def_property_ui_text ( prop , " Euler Rotation " , " Rotation in Eulers. " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_TRANSFORM , " rna_Pose_update " ) ;
2009-02-02 11:51:10 +00:00
prop = RNA_def_property ( srna , " rotation_mode " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_sdna ( prop , NULL , " rotmode " ) ;
2009-09-28 10:19:20 +00:00
RNA_def_property_enum_items ( prop , prop_rotmode_items ) ; // XXX move to using a single define of this someday
2009-09-06 23:15:43 +00:00
RNA_def_property_enum_funcs ( prop , NULL , " rna_PoseChannel_rotation_mode_set " , NULL ) ;
2009-02-02 11:51:10 +00:00
RNA_def_property_ui_text ( prop , " Rotation Mode " , " " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-10-08 05:02:04 +00:00
/* transform matrices - should be read-only since these are set directly by AnimSys evaluation */
2009-07-24 14:26:47 +00:00
prop = RNA_def_property ( srna , " channel_matrix " , PROP_FLOAT , PROP_MATRIX ) ;
RNA_def_property_float_sdna ( prop , NULL , " chan_mat " ) ;
RNA_def_property_array ( prop , 16 ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-07-24 14:26:47 +00:00
RNA_def_property_ui_text ( prop , " Channel Matrix " , " 4x4 matrix, before constraints. " ) ;
2009-10-08 05:02:04 +00:00
2009-11-24 11:58:49 +00:00
prop = RNA_def_property ( srna , " matrix " , PROP_FLOAT , PROP_MATRIX ) ;
2009-07-16 08:20:15 +00:00
RNA_def_property_float_sdna ( prop , NULL , " pose_mat " ) ;
2009-07-13 11:04:18 +00:00
RNA_def_property_array ( prop , 16 ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Pose Matrix " , " Final 4x4 matrix for this channel. " ) ;
2009-07-13 11:04:18 +00:00
/*
2009-01-07 04:06:52 +00:00
prop = RNA_def_property ( srna , " constraint_inverse_matrix " , PROP_FLOAT , PROP_MATRIX ) ;
RNA_def_property_struct_type ( prop , " constinv " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-07-13 11:04:18 +00:00
RNA_def_property_ui_text ( prop , " Constraint Inverse Matrix " , " 4x4 matrix, defines transform from final position to unconstrained position. " ) ;
*/
2009-01-07 04:06:52 +00:00
2009-08-23 12:53:55 +00:00
/* Head/Tail Coordinates (in Pose Space) - Automatically calculated... */
2009-11-24 11:58:49 +00:00
prop = RNA_def_property ( srna , " head " , PROP_FLOAT , PROP_TRANSLATION ) ;
RNA_def_property_float_sdna ( prop , NULL , " pose_head " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Pose Head Position " , " Location of head of the channel's bone. " ) ;
2009-11-24 11:58:49 +00:00
prop = RNA_def_property ( srna , " tail " , PROP_FLOAT , PROP_TRANSLATION ) ;
RNA_def_property_float_sdna ( prop , NULL , " pose_tail " ) ;
2009-03-23 13:24:48 +00:00
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Pose Tail Position " , " Location of tail of the channel's bone. " ) ;
2009-08-23 12:53:55 +00:00
/* IK Settings */
prop = RNA_def_property ( srna , " has_ik " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_funcs ( prop , " rna_PoseChannel_has_ik_get " , NULL ) ;
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
RNA_def_property_ui_text ( prop , " Has IK " , " Is part of an IK chain. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-01-07 04:06:52 +00:00
2009-08-23 12:53:55 +00:00
prop = RNA_def_property ( srna , " ik_dof_x " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_negative_sdna ( prop , NULL , " ikflag " , BONE_IK_NO_XDOF ) ;
RNA_def_property_ui_text ( prop , " IK X DoF " , " Allow movement around the X axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-08-23 12:53:55 +00:00
prop = RNA_def_property ( srna , " ik_dof_y " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_negative_sdna ( prop , NULL , " ikflag " , BONE_IK_NO_YDOF ) ;
RNA_def_property_ui_text ( prop , " IK Y DoF " , " Allow movement around the Y axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE | ND_TRANSFORM , " rna_Pose_IK_update " ) ;
2009-08-23 12:53:55 +00:00
prop = RNA_def_property ( srna , " ik_dof_z " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_negative_sdna ( prop , NULL , " ikflag " , BONE_IK_NO_ZDOF ) ;
RNA_def_property_ui_text ( prop , " IK Z DoF " , " Allow movement around the Z axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-08-23 12:53:55 +00:00
prop = RNA_def_property ( srna , " ik_limit_x " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " ikflag " , BONE_IK_XLIMIT ) ;
RNA_def_property_ui_text ( prop , " IK X Limit " , " Limit movement around the X axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-08-23 12:53:55 +00:00
prop = RNA_def_property ( srna , " ik_limit_y " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " ikflag " , BONE_IK_YLIMIT ) ;
RNA_def_property_ui_text ( prop , " IK Y Limit " , " Limit movement around the Y axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-08-23 12:53:55 +00:00
prop = RNA_def_property ( srna , " ik_limit_z " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " ikflag " , BONE_IK_ZLIMIT ) ;
RNA_def_property_ui_text ( prop , " IK Z Limit " , " Limit movement around the Z axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
prop = RNA_def_property ( srna , " ik_rot_control " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " ikflag " , BONE_IK_ROTCTL ) ;
RNA_def_property_ui_text ( prop , " IK rot control " , " Apply channel rotation as IK constraint " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
prop = RNA_def_property ( srna , " ik_lin_control " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " ikflag " , BONE_IK_LINCTL ) ;
RNA_def_property_ui_text ( prop , " IK rot control " , " Apply channel size as IK constraint if stretching is enabled " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-08-23 12:53:55 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " ik_min_x " , PROP_FLOAT , PROP_ANGLE ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_float_sdna ( prop , NULL , " limitmin[0] " ) ;
RNA_def_property_range ( prop , - 180.0f , 0.0f ) ;
RNA_def_property_ui_text ( prop , " IK X Minimum " , " Minimum angles for IK Limit " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-07-14 22:11:25 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " ik_max_x " , PROP_FLOAT , PROP_ANGLE ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_float_sdna ( prop , NULL , " limitmax[0] " ) ;
RNA_def_property_range ( prop , 0.0f , 180.0f ) ;
RNA_def_property_ui_text ( prop , " IK X Maximum " , " Maximum angles for IK Limit " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-07-14 22:11:25 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " ik_min_y " , PROP_FLOAT , PROP_ANGLE ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_float_sdna ( prop , NULL , " limitmin[1] " ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_range ( prop , - 180.0f , 0.0f ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_ui_text ( prop , " IK Y Minimum " , " Minimum angles for IK Limit " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-01-07 04:06:52 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " ik_max_y " , PROP_FLOAT , PROP_ANGLE ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_float_sdna ( prop , NULL , " limitmax[1] " ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_range ( prop , 0.0f , 180.0f ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_ui_text ( prop , " IK Y Maximum " , " Maximum angles for IK Limit " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-01-07 04:06:52 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " ik_min_z " , PROP_FLOAT , PROP_ANGLE ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_float_sdna ( prop , NULL , " limitmin[2] " ) ;
RNA_def_property_range ( prop , - 180.0f , 0.0f ) ;
RNA_def_property_ui_text ( prop , " IK Z Minimum " , " Minimum angles for IK Limit " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-07-14 22:11:25 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " ik_max_z " , PROP_FLOAT , PROP_ANGLE ) ;
2009-07-14 22:11:25 +00:00
RNA_def_property_float_sdna ( prop , NULL , " limitmax[2] " ) ;
RNA_def_property_range ( prop , 0.0f , 180.0f ) ;
RNA_def_property_ui_text ( prop , " IK Z Maximum " , " Maximum angles for IK Limit " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-07-14 22:11:25 +00:00
prop = RNA_def_property ( srna , " ik_stiffness_x " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " stiffness[0] " ) ;
RNA_def_property_range ( prop , 0.0f , 0.99f ) ;
RNA_def_property_ui_text ( prop , " IK X Stiffness " , " IK stiffness around the X axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-07-14 22:11:25 +00:00
prop = RNA_def_property ( srna , " ik_stiffness_y " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " stiffness[1] " ) ;
RNA_def_property_range ( prop , 0.0f , 0.99f ) ;
RNA_def_property_ui_text ( prop , " IK Y Stiffness " , " IK stiffness around the Y axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-07-14 22:11:25 +00:00
prop = RNA_def_property ( srna , " ik_stiffness_z " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " stiffness[2] " ) ;
RNA_def_property_range ( prop , 0.0f , 0.99f ) ;
RNA_def_property_ui_text ( prop , " IK Z Stiffness " , " IK stiffness around the Z axis. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
2009-01-07 04:06:52 +00:00
prop = RNA_def_property ( srna , " ik_stretch " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " ikstretch " ) ;
RNA_def_property_range ( prop , 0.0f , 1.0f ) ;
RNA_def_property_ui_text ( prop , " IK Stretch " , " Allow scaling of the bone for IK. " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_IK_update " ) ;
prop = RNA_def_property ( srna , " ik_rot_weight " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " ikrotweight " ) ;
RNA_def_property_range ( prop , 0.0f , 1.0f ) ;
RNA_def_property_ui_text ( prop , " IK Rot Weight " , " Weight of rotation constraint for IK. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
prop = RNA_def_property ( srna , " ik_lin_weight " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " iklinweight " ) ;
RNA_def_property_range ( prop , 0.0f , 1.0f ) ;
RNA_def_property_ui_text ( prop , " IK Lin Weight " , " Weight of scale constraint for IK. " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-08-23 12:53:55 +00:00
/* custom bone shapes */
prop = RNA_def_property ( srna , " custom_shape " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_pointer_sdna ( prop , NULL , " custom " ) ;
RNA_def_property_struct_type ( prop , " Object " ) ;
RNA_def_property_flag ( prop , PROP_EDITABLE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_ui_text ( prop , " Custom Object " , " Object that defines custom draw type for this bone. " ) ;
2009-08-23 12:53:55 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
/* bone groups */
prop = RNA_def_property ( srna , " bone_group_index " , PROP_INT , PROP_NONE ) ;
RNA_def_property_int_sdna ( prop , NULL , " agrp_index " ) ;
RNA_def_property_flag ( prop , PROP_EDITABLE ) ;
RNA_def_property_int_funcs ( prop , " rna_PoseChannel_bone_group_index_get " , " rna_PoseChannel_bone_group_index_set " , " rna_PoseChannel_bone_group_index_range " ) ;
RNA_def_property_ui_text ( prop , " Bone Group Index " , " Bone Group this pose channel belongs to (0=no group). " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
prop = RNA_def_property ( srna , " bone_group " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_struct_type ( prop , " BoneGroup " ) ;
RNA_def_property_flag ( prop , PROP_EDITABLE ) ;
RNA_def_property_pointer_funcs ( prop , " rna_PoseChannel_bone_group_get " , " rna_PoseChannel_bone_group_set " , NULL ) ;
RNA_def_property_ui_text ( prop , " Bone Group " , " Bone Group this pose channel belongs to " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
/* transform locks */
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " lock_location " , PROP_BOOLEAN , PROP_XYZ ) ;
2009-01-16 18:04:01 +00:00
RNA_def_property_boolean_sdna ( prop , NULL , " protectflag " , OB_LOCK_LOCX ) ;
RNA_def_property_array ( prop , 3 ) ;
RNA_def_property_ui_text ( prop , " Lock Location " , " Lock editing of location in the interface. " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-01-16 18:04:01 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " lock_rotation " , PROP_BOOLEAN , PROP_XYZ ) ;
2009-01-16 18:04:01 +00:00
RNA_def_property_boolean_sdna ( prop , NULL , " protectflag " , OB_LOCK_ROTX ) ;
RNA_def_property_array ( prop , 3 ) ;
2009-09-12 12:30:23 +00:00
RNA_def_property_ui_text ( prop , " Lock Rotation " , " Lock editing of rotation in the interface. " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-09-11 12:05:09 +00:00
2009-09-12 12:30:23 +00:00
// XXX this is sub-optimal - it really should be included above, but due to technical reasons we can't do this!
prop = RNA_def_property ( srna , " lock_rotation_w " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " protectflag " , OB_LOCK_ROTW ) ;
RNA_def_property_ui_text ( prop , " Lock Rotation (4D Angle) " , " Lock editing of 'angle' component of four-component rotations in the interface. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
// XXX this needs a better name
prop = RNA_def_property ( srna , " lock_rotations_4d " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " protectflag " , OB_LOCK_ROT4D ) ;
RNA_def_property_ui_text ( prop , " Lock Rotations (4D) " , " Lock editing of four component rotations by components (instead of as Eulers). " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-01-16 18:04:01 +00:00
RNA: subtypes and units
* Reviewed subtypes, making them more specific and adding new ones.
* Subtypes now have an associated type of units (length, area, volume,
mass, rotation, time, velocity, acceleration). These are not used
yet anywhere.
* Centralized code that decides the name of array items based on
subtype (XYZ, RGB), was copied in 3 places.
* RNA_def_float etc functions still need to be update, will do this
later together with another change.
2009-08-10 21:31:05 +00:00
prop = RNA_def_property ( srna , " lock_scale " , PROP_BOOLEAN , PROP_XYZ ) ;
2009-01-16 18:04:01 +00:00
RNA_def_property_boolean_sdna ( prop , NULL , " protectflag " , OB_LOCK_SCALEX ) ;
RNA_def_property_array ( prop , 3 ) ;
RNA_def_property_ui_text ( prop , " Lock Scale " , " Lock editing of scale in the interface. " ) ;
2009-09-07 11:05:16 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-11-11 19:58:30 +00:00
RNA_api_pose_channel ( srna ) ;
2009-01-07 04:06:52 +00:00
}
2009-09-24 21:22:24 +00:00
static void rna_def_pose_itasc ( BlenderRNA * brna )
2009-01-07 04:06:52 +00:00
{
2009-10-02 07:20:07 +00:00
static const EnumPropertyItem prop_itasc_mode_items [ ] = {
{ 0 , " ANIMATION " , 0 , " Animation " , " Stateless solver computing pose starting from current action and non-IK constraints. " } ,
{ ITASC_SIMULATION , " SIMULATION " , 0 , " Simulation " , " Statefull solver running in real-time context and ignoring actions and non-IK constraints. " } ,
{ 0 , NULL , 0 , NULL , NULL } } ;
static const EnumPropertyItem prop_itasc_reiteration_items [ ] = {
{ 0 , " NEVER " , 0 , " Never " , " The solver does not reiterate, not even on first frame (starts from rest pose). " } ,
{ ITASC_INITIAL_REITERATION , " INITIAL " , 0 , " Initial " , " The solver reiterates (converges) on the first frame but not on subsequent frame. " } ,
{ ITASC_INITIAL_REITERATION | ITASC_REITERATION , " ALWAYS " , 0 , " Always " , " The solver reiterates (converges) on all frames. " } ,
{ 0 , NULL , 0 , NULL , NULL } } ;
2009-01-07 04:06:52 +00:00
StructRNA * srna ;
PropertyRNA * prop ;
2009-09-24 21:22:24 +00:00
srna = RNA_def_struct ( brna , " Itasc " , " IKParam " ) ;
RNA_def_struct_sdna ( srna , " bItasc " ) ;
RNA_def_struct_ui_text ( srna , " bItasc " , " Parameters for the iTaSC IK solver. " ) ;
prop = RNA_def_property ( srna , " precision " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " precision " ) ;
RNA_def_property_range ( prop , 0.0f , 0.1f ) ;
RNA_def_property_ui_text ( prop , " Precision " , " Precision of convergence in case of reiteration. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " num_iter " , PROP_INT , PROP_NONE ) ;
RNA_def_property_int_sdna ( prop , NULL , " numiter " ) ;
RNA_def_property_range ( prop , 1.f , 1000.f ) ;
RNA_def_property_ui_text ( prop , " Iterations " , " Maximum number of iterations for convergence in case of reiteration. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " num_step " , PROP_INT , PROP_NONE ) ;
RNA_def_property_int_sdna ( prop , NULL , " numstep " ) ;
RNA_def_property_range ( prop , 1.f , 50.f ) ;
RNA_def_property_ui_text ( prop , " Num steps " , " Divides the frame interval into this many steps. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
2009-10-02 07:20:07 +00:00
prop = RNA_def_property ( srna , " mode " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_bitflag_sdna ( prop , NULL , " flag " ) ;
RNA_def_property_enum_items ( prop , prop_itasc_mode_items ) ;
RNA_def_property_ui_text ( prop , " Mode " , NULL ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update_rebuild " ) ;
2009-10-02 07:20:07 +00:00
prop = RNA_def_property ( srna , " reiteration " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_bitflag_sdna ( prop , NULL , " flag " ) ;
RNA_def_property_enum_items ( prop , prop_itasc_reiteration_items ) ;
RNA_def_property_ui_text ( prop , " Reiteration " , " Defines if the solver is allowed to reiterate (converges until precision is met) on none, first or all frames " ) ;
2009-09-24 21:22:24 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " auto_step " , PROP_BOOLEAN , PROP_NONE ) ;
RNA_def_property_boolean_sdna ( prop , NULL , " flag " , ITASC_AUTO_STEP ) ;
RNA_def_property_ui_text ( prop , " Auto step " , " Automatically determine the optimal number of steps for best performance/accurary trade off. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " min_step " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " minstep " ) ;
RNA_def_property_range ( prop , 0.0f , 0.1f ) ;
RNA_def_property_ui_text ( prop , " Min step " , " Lower bound for timestep in second in case of automatic substeps. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " max_step " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " maxstep " ) ;
RNA_def_property_range ( prop , 0.0f , 1.0f ) ;
RNA_def_property_ui_text ( prop , " Max step " , " Higher bound for timestep in second in case of automatic substeps. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " feedback " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " feedback " ) ;
RNA_def_property_range ( prop , 0.0f , 100.0f ) ;
RNA_def_property_ui_text ( prop , " Feedback " , " Feedback coefficient for error correction. Average response time=1/feedback. Default=20. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " max_velocity " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " maxvel " ) ;
RNA_def_property_range ( prop , 0.0f , 100.0f ) ;
RNA_def_property_ui_text ( prop , " Max Velocity " , " Maximum joint velocity in rad/s. Default=50. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " solver " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_sdna ( prop , NULL , " solver " ) ;
RNA_def_property_enum_items ( prop , prop_solver_items ) ;
RNA_def_property_ui_text ( prop , " Solver " , " Solving method selection: Automatic damping or manual damping " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update_rebuild " ) ;
prop = RNA_def_property ( srna , " dampmax " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " dampmax " ) ;
RNA_def_property_range ( prop , 0.0f , 1.0f ) ;
RNA_def_property_ui_text ( prop , " Damp " , " Maximum damping coefficient when singular value is nearly 0. Higher values=more stability, less reactivity. Default=0.5 " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
prop = RNA_def_property ( srna , " dampeps " , PROP_FLOAT , PROP_NONE ) ;
RNA_def_property_float_sdna ( prop , NULL , " dampeps " ) ;
RNA_def_property_range ( prop , 0.0f , 1.0f ) ;
RNA_def_property_ui_text ( prop , " Epsilon " , " Singular value under which damping is progressively applied. Higher values=more stability, less reactivity. Default=0.1 " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Itasc_update " ) ;
}
static void rna_def_pose_ikparam ( BlenderRNA * brna )
{
StructRNA * srna ;
PropertyRNA * prop ;
srna = RNA_def_struct ( brna , " IKParam " , NULL ) ;
RNA_def_struct_sdna ( srna , " bIKParam " ) ;
RNA_def_struct_ui_text ( srna , " IKParam " , " Base type for IK solver parameters. " ) ;
RNA_def_struct_refine_func ( srna , " rna_IKParam_refine " ) ;
prop = RNA_def_property ( srna , " ik_solver " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_sdna ( prop , NULL , " iksolver " ) ;
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
RNA_def_property_enum_items ( prop , prop_iksolver_items ) ;
RNA_def_property_ui_text ( prop , " IK Solver " , " IK solver for which these parameters are defined, 0 for Legacy, 1 for iTaSC. " ) ;
}
2009-07-21 10:18:08 +00:00
static void rna_def_pose ( BlenderRNA * brna )
2009-01-07 04:06:52 +00:00
{
StructRNA * srna ;
PropertyRNA * prop ;
2009-07-21 10:18:08 +00:00
/* struct definition */
2009-01-07 04:06:52 +00:00
srna = RNA_def_struct ( brna , " Pose " , NULL ) ;
RNA_def_struct_sdna ( srna , " bPose " ) ;
RNA_def_struct_ui_text ( srna , " Pose " , " A collection of pose channels, including settings for animating bones. " ) ;
2009-07-21 10:18:08 +00:00
/* pose channels */
2009-11-18 11:40:55 +00:00
prop = RNA_def_property ( srna , " bones " , PROP_COLLECTION , PROP_NONE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_collection_sdna ( prop , NULL , " chanbase " , NULL ) ;
2009-11-18 11:40:55 +00:00
RNA_def_property_struct_type ( prop , " PoseBone " ) ;
RNA_def_property_ui_text ( prop , " Pose Bones " , " Individual pose bones for the armature. " ) ;
2009-01-07 04:06:52 +00:00
2009-07-21 10:18:08 +00:00
/* bone groups */
prop = RNA_def_property ( srna , " bone_groups " , PROP_COLLECTION , PROP_NONE ) ;
2009-01-07 04:06:52 +00:00
RNA_def_property_collection_sdna ( prop , NULL , " agroups " , NULL ) ;
2009-07-21 10:18:08 +00:00
RNA_def_property_struct_type ( prop , " BoneGroup " ) ;
RNA_def_property_ui_text ( prop , " Bone Groups " , " Groups of the bones. " ) ;
prop = RNA_def_property ( srna , " active_bone_group " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_struct_type ( prop , " BoneGroup " ) ;
2009-08-23 12:53:55 +00:00
RNA_def_property_flag ( prop , PROP_EDITABLE ) ;
2009-07-21 10:18:08 +00:00
RNA_def_property_pointer_funcs ( prop , " rna_Pose_active_bone_group_get " , " rna_Pose_active_bone_group_set " , NULL ) ;
2009-08-23 12:53:55 +00:00
RNA_def_property_ui_text ( prop , " Active Bone Group " , " Active bone group for this pose. " ) ;
2009-07-21 10:18:08 +00:00
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
prop = RNA_def_property ( srna , " active_bone_group_index " , PROP_INT , PROP_NONE ) ;
RNA_def_property_int_sdna ( prop , NULL , " active_group " ) ;
RNA_def_property_int_funcs ( prop , " rna_Pose_active_bone_group_index_get " , " rna_Pose_active_bone_group_index_set " , " rna_Pose_active_bone_group_index_range " ) ;
RNA_def_property_ui_text ( prop , " Active Bone Group Index " , " Active index in bone groups array. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_update " ) ;
2009-09-22 16:35:07 +00:00
2009-09-24 21:22:24 +00:00
prop = RNA_def_property ( srna , " ik_solver " , PROP_ENUM , PROP_NONE ) ;
RNA_def_property_enum_sdna ( prop , NULL , " iksolver " ) ;
RNA_def_property_enum_funcs ( prop , NULL , " rna_Pose_ik_solver_set " , NULL ) ;
RNA_def_property_enum_items ( prop , prop_iksolver_items ) ;
RNA_def_property_ui_text ( prop , " IK Solver " , " Selection of IK solver for IK chain, current choice is 0 for Legacy, 1 for iTaSC. " ) ;
RNA_def_property_update ( prop , NC_OBJECT | ND_POSE , " rna_Pose_ik_solver_update " ) ;
prop = RNA_def_property ( srna , " ik_param " , PROP_POINTER , PROP_NONE ) ;
RNA_def_property_struct_type ( prop , " IKParam " ) ;
RNA_def_property_pointer_funcs ( prop , " rna_Pose_ikparam_get " , NULL , " rna_Pose_ikparam_typef " ) ;
RNA_def_property_clear_flag ( prop , PROP_EDITABLE ) ;
RNA_def_property_ui_text ( prop , " IK Param " , " Parameters for IK solver. " ) ;
2009-09-22 16:35:07 +00:00
/* RNA_api_pose(srna); */
2009-07-21 10:18:08 +00:00
}
void RNA_def_pose ( BlenderRNA * brna )
{
rna_def_pose ( brna ) ;
rna_def_pose_channel ( brna ) ;
2009-09-24 21:22:24 +00:00
rna_def_pose_ikparam ( brna ) ;
rna_def_pose_itasc ( brna ) ;
2009-07-21 10:18:08 +00:00
rna_def_bone_group ( brna ) ;
2009-01-07 04:06:52 +00:00
}
# endif