Py-Driver: add 'self' option

Drivers can use this to refer to the data which the driver is applied to,
useful for objects, bones, to avoid having to create a variable pointing to its self.
This commit is contained in:
2016-07-30 16:34:01 +10:00
parent 362b3bbe58
commit 4e845e0670
16 changed files with 261 additions and 108 deletions

View File

@@ -37,6 +37,7 @@ struct Main;
struct AnimData; struct AnimData;
struct KeyingSet; struct KeyingSet;
struct KS_Path; struct KS_Path;
struct PathResolvedRNA;
struct bContext; struct bContext;
struct PointerRNA; struct PointerRNA;

View File

@@ -48,6 +48,7 @@ struct AnimData;
struct bAction; struct bAction;
struct BezTriple; struct BezTriple;
struct StructRNA; struct StructRNA;
struct PathResolvedRNA;
struct PointerRNA; struct PointerRNA;
struct PropertyRNA; struct PropertyRNA;
@@ -107,7 +108,7 @@ bool driver_get_variable_property(
struct ChannelDriver *driver, struct DriverTarget *dtar, struct ChannelDriver *driver, struct DriverTarget *dtar,
struct PointerRNA *r_ptr, struct PropertyRNA **r_prop, int *r_index); struct PointerRNA *r_ptr, struct PropertyRNA **r_prop, int *r_index);
float evaluate_driver(struct ChannelDriver *driver, const float evaltime); float evaluate_driver(struct PathResolvedRNA *anim_rna, struct ChannelDriver *driver, const float evaltime);
/* ************** F-Curve Modifiers *************** */ /* ************** F-Curve Modifiers *************** */
@@ -278,8 +279,9 @@ void correct_bezpart(float v1[2], float v2[2], float v3[2], float v4[2]);
/* evaluate fcurve */ /* evaluate fcurve */
float evaluate_fcurve(struct FCurve *fcu, float evaltime); float evaluate_fcurve(struct FCurve *fcu, float evaltime);
float evaluate_fcurve_driver(struct PathResolvedRNA *anim_rna, struct FCurve *fcu, float evaltime);
/* evaluate fcurve and store value */ /* evaluate fcurve and store value */
float calculate_fcurve(struct FCurve *fcu, float evaltime); float calculate_fcurve(struct PathResolvedRNA *anim_rna, struct FCurve *fcu, float evaltime);
/* ************* F-Curve Samples API ******************** */ /* ************* F-Curve Samples API ******************** */

View File

@@ -1482,41 +1482,87 @@ static bool animsys_remap_path(AnimMapper *UNUSED(remap), char *path, char **dst
return false; return false;
} }
static bool animsys_store_rna_setting(
PointerRNA *ptr, AnimMapper *remap,
/* typically 'fcu->rna_path', 'fcu->array_index' */
const char *rna_path, const int array_index,
PathResolvedRNA *r_result)
{
bool success = false;
char *path = NULL;
bool free_path;
/* get path, remapped as appropriate to work in its new environment */
free_path = animsys_remap_path(remap, (char *)rna_path, &path);
/* write value to setting */
if (path) {
/* get property to write to */
if (RNA_path_resolve_property(ptr, path, &r_result->ptr, &r_result->prop)) {
if ((ptr->id.data == NULL) || RNA_property_animateable(&r_result->ptr, r_result->prop)) {
int array_len = RNA_property_array_length(&r_result->ptr, r_result->prop);
if (array_len && array_index >= array_len) {
if (G.debug & G_DEBUG) {
printf("Animato: Invalid array index. ID = '%s', '%s[%d]', array length is %d\n",
(ptr && ptr->id.data) ? (((ID *)ptr->id.data)->name + 2) : "<No ID>",
path, array_index, array_len - 1);
}
}
else {
r_result->prop_index = array_len ? array_index : -1;
success = true;
}
}
}
else {
/* failed to get path */
/* XXX don't tag as failed yet though, as there are some legit situations (Action Constraint)
* where some channels will not exist, but shouldn't lock up Action */
if (G.debug & G_DEBUG) {
printf("Animato: Invalid path. ID = '%s', '%s[%d]'\n",
(ptr->id.data) ? (((ID *)ptr->id.data)->name + 2) : "<No ID>",
path, array_index);
}
}
}
/* free temp path-info */
if (free_path) {
MEM_freeN((void *)path);
}
return success;
}
/* less than 1.0 evaluates to false, use epsilon to avoid float error */ /* less than 1.0 evaluates to false, use epsilon to avoid float error */
#define ANIMSYS_FLOAT_AS_BOOL(value) ((value) > ((1.0f - FLT_EPSILON))) #define ANIMSYS_FLOAT_AS_BOOL(value) ((value) > ((1.0f - FLT_EPSILON)))
/* Write the given value to a setting using RNA, and return success */ /* Write the given value to a setting using RNA, and return success */
static bool animsys_write_rna_setting(PointerRNA *ptr, char *path, int array_index, float value) static bool animsys_write_rna_setting(PathResolvedRNA *anim_rna, float value)
{ {
PropertyRNA *prop; PropertyRNA *prop = anim_rna->prop;
PointerRNA new_ptr; PointerRNA new_ptr = anim_rna->ptr;
int array_index = anim_rna->prop_index;
//printf("%p %s %i %f\n", ptr, path, array_index, value); //printf("%p %s %i %f\n", ptr, path, array_index, value);
/* get property to write to */ /* get property to write to */
if (RNA_path_resolve_property(ptr, path, &new_ptr, &prop)) { // if (RNA_path_resolve_property(ptr, path, &new_ptr, &prop))
{
/* set value for animatable numerical values only /* set value for animatable numerical values only
* HACK: some local F-Curves (e.g. those on NLA Strips) are evaluated * HACK: some local F-Curves (e.g. those on NLA Strips) are evaluated
* without an ID provided, which causes the animateable test to fail! * without an ID provided, which causes the animateable test to fail!
*/ */
if (RNA_property_animateable(&new_ptr, prop) || (ptr->id.data == NULL)) { // if (RNA_property_animateable(&new_ptr, prop) || (ptr->id.data == NULL))
int array_len = RNA_property_array_length(&new_ptr, prop); {
bool written = false; bool written = false;
if (array_len && array_index >= array_len) {
if (G.debug & G_DEBUG) {
printf("Animato: Invalid array index. ID = '%s', '%s[%d]', array length is %d\n",
(ptr && ptr->id.data) ? (((ID *)ptr->id.data)->name + 2) : "<No ID>",
path, array_index, array_len - 1);
}
return false;
}
switch (RNA_property_type(prop)) { switch (RNA_property_type(prop)) {
case PROP_BOOLEAN: case PROP_BOOLEAN:
if (array_len) { if (array_index != -1) {
if (RNA_property_boolean_get_index(&new_ptr, prop, array_index) != ANIMSYS_FLOAT_AS_BOOL(value)) { if (RNA_property_boolean_get_index(&new_ptr, prop, array_index) != ANIMSYS_FLOAT_AS_BOOL(value)) {
RNA_property_boolean_set_index(&new_ptr, prop, array_index, ANIMSYS_FLOAT_AS_BOOL(value)); RNA_property_boolean_set_index(&new_ptr, prop, array_index, ANIMSYS_FLOAT_AS_BOOL(value));
written = true; written = true;
@@ -1530,7 +1576,7 @@ static bool animsys_write_rna_setting(PointerRNA *ptr, char *path, int array_ind
} }
break; break;
case PROP_INT: case PROP_INT:
if (array_len) { if (array_index != -1) {
if (RNA_property_int_get_index(&new_ptr, prop, array_index) != (int)value) { if (RNA_property_int_get_index(&new_ptr, prop, array_index) != (int)value) {
RNA_property_int_set_index(&new_ptr, prop, array_index, (int)value); RNA_property_int_set_index(&new_ptr, prop, array_index, (int)value);
written = true; written = true;
@@ -1544,7 +1590,7 @@ static bool animsys_write_rna_setting(PointerRNA *ptr, char *path, int array_ind
} }
break; break;
case PROP_FLOAT: case PROP_FLOAT:
if (array_len) { if (array_index != -1) {
if (RNA_property_float_get_index(&new_ptr, prop, array_index) != value) { if (RNA_property_float_get_index(&new_ptr, prop, array_index) != value) {
RNA_property_float_set_index(&new_ptr, prop, array_index, value); RNA_property_float_set_index(&new_ptr, prop, array_index, value);
written = true; written = true;
@@ -1606,37 +1652,18 @@ static bool animsys_write_rna_setting(PointerRNA *ptr, char *path, int array_ind
/* successful */ /* successful */
return true; return true;
} }
else {
/* failed to get path */
/* XXX don't tag as failed yet though, as there are some legit situations (Action Constraint)
* where some channels will not exist, but shouldn't lock up Action */
if (G.debug & G_DEBUG) {
printf("Animato: Invalid path. ID = '%s', '%s[%d]'\n",
(ptr->id.data) ? (((ID *)ptr->id.data)->name + 2) : "<No ID>",
path, array_index);
}
return false;
}
} }
/* Simple replacement based data-setting of the FCurve using RNA */ /* Simple replacement based data-setting of the FCurve using RNA */
bool BKE_animsys_execute_fcurve(PointerRNA *ptr, AnimMapper *remap, FCurve *fcu, float curval) bool BKE_animsys_execute_fcurve(PointerRNA *ptr, AnimMapper *remap, FCurve *fcu, float curval)
{ {
char *path = NULL; PathResolvedRNA anim_rna;
bool free_path = false;
bool ok = false; bool ok = false;
/* get path, remapped as appropriate to work in its new environment */ if (animsys_store_rna_setting(ptr, remap, fcu->rna_path, fcu->array_index, &anim_rna)) {
free_path = animsys_remap_path(remap, fcu->rna_path, &path); ok = animsys_write_rna_setting(&anim_rna, curval);
}
/* write value to setting */
if (path)
ok = animsys_write_rna_setting(ptr, path, fcu->array_index, curval);
/* free temp path-info */
if (free_path)
MEM_freeN(path);
/* return whether we were successful */ /* return whether we were successful */
return ok; return ok;
} }
@@ -1654,8 +1681,11 @@ static void animsys_evaluate_fcurves(PointerRNA *ptr, ListBase *list, AnimMapper
if ((fcu->grp == NULL) || (fcu->grp->flag & AGRP_MUTED) == 0) { if ((fcu->grp == NULL) || (fcu->grp->flag & AGRP_MUTED) == 0) {
/* check if this curve should be skipped */ /* check if this curve should be skipped */
if ((fcu->flag & (FCURVE_MUTED | FCURVE_DISABLED)) == 0) { if ((fcu->flag & (FCURVE_MUTED | FCURVE_DISABLED)) == 0) {
const float curval = calculate_fcurve(fcu, ctime); PathResolvedRNA anim_rna;
BKE_animsys_execute_fcurve(ptr, remap, fcu, curval); if (animsys_store_rna_setting(ptr, remap, fcu->rna_path, fcu->array_index, &anim_rna)) {
const float curval = calculate_fcurve(&anim_rna, fcu, ctime);
animsys_write_rna_setting(&anim_rna, curval);
}
} }
} }
} }
@@ -1684,8 +1714,12 @@ static void animsys_evaluate_drivers(PointerRNA *ptr, AnimData *adt, float ctime
/* evaluate this using values set already in other places /* evaluate this using values set already in other places
* NOTE: for 'layering' option later on, we should check if we should remove old value before adding * NOTE: for 'layering' option later on, we should check if we should remove old value before adding
* new to only be done when drivers only changed */ * new to only be done when drivers only changed */
const float curval = calculate_fcurve(fcu, ctime);
ok = BKE_animsys_execute_fcurve(ptr, NULL, fcu, curval); PathResolvedRNA anim_rna;
if (animsys_store_rna_setting(ptr, NULL, fcu->rna_path, fcu->array_index, &anim_rna)) {
const float curval = calculate_fcurve(&anim_rna, fcu, ctime);
ok = animsys_write_rna_setting(&anim_rna, curval);
}
/* clear recalc flag */ /* clear recalc flag */
driver->flag &= ~DRIVER_FLAG_RECALC; driver->flag &= ~DRIVER_FLAG_RECALC;
@@ -1753,8 +1787,11 @@ void animsys_evaluate_action_group(PointerRNA *ptr, bAction *act, bActionGroup *
for (fcu = agrp->channels.first; (fcu) && (fcu->grp == agrp); fcu = fcu->next) { for (fcu = agrp->channels.first; (fcu) && (fcu->grp == agrp); fcu = fcu->next) {
/* check if this curve should be skipped */ /* check if this curve should be skipped */
if ((fcu->flag & (FCURVE_MUTED | FCURVE_DISABLED)) == 0) { if ((fcu->flag & (FCURVE_MUTED | FCURVE_DISABLED)) == 0) {
const float curval = calculate_fcurve(fcu, ctime); PathResolvedRNA anim_rna;
BKE_animsys_execute_fcurve(ptr, remap, fcu, curval); if (animsys_store_rna_setting(ptr, remap, fcu->rna_path, fcu->array_index, &anim_rna)) {
const float curval = calculate_fcurve(&anim_rna, fcu, ctime);
animsys_write_rna_setting(&anim_rna, curval);
}
} }
} }
} }
@@ -2612,8 +2649,12 @@ static void animsys_evaluate_overrides(PointerRNA *ptr, AnimData *adt)
AnimOverride *aor; AnimOverride *aor;
/* for each override, simply execute... */ /* for each override, simply execute... */
for (aor = adt->overrides.first; aor; aor = aor->next) for (aor = adt->overrides.first; aor; aor = aor->next) {
animsys_write_rna_setting(ptr, aor->rna_path, aor->array_index, aor->value); PathResolvedRNA anim_rna;
if (animsys_store_rna_setting(ptr, NULL, aor->rna_path, aor->array_index, &anim_rna)) {
animsys_write_rna_setting(&anim_rna, aor->value);
}
}
} }
/* ***************************************** */ /* ***************************************** */
@@ -2888,8 +2929,13 @@ void BKE_animsys_eval_driver(EvaluationContext *eval_ctx,
* NOTE: for 'layering' option later on, we should check if we should remove old value before adding * NOTE: for 'layering' option later on, we should check if we should remove old value before adding
* new to only be done when drivers only changed */ * new to only be done when drivers only changed */
//printf("\told val = %f\n", fcu->curval); //printf("\told val = %f\n", fcu->curval);
const float curval = calculate_fcurve(fcu, eval_ctx->ctime);
ok = BKE_animsys_execute_fcurve(&id_ptr, NULL, fcu, curval); PathResolvedRNA anim_rna;
if (animsys_store_rna_setting(&id_ptr, NULL, fcu->rna_path, fcu->array_index, &anim_rna)) {
const float curval = calculate_fcurve(&anim_rna, fcu, eval_ctx->ctime);
ok = animsys_write_rna_setting(&anim_rna, curval);
}
//printf("\tnew val = %f\n", fcu->curval); //printf("\tnew val = %f\n", fcu->curval);
/* clear recalc flag */ /* clear recalc flag */

View File

@@ -1859,7 +1859,7 @@ float driver_get_variable_value(ChannelDriver *driver, DriverVar *dvar)
* - "evaltime" is the frame at which F-Curve is being evaluated * - "evaltime" is the frame at which F-Curve is being evaluated
* - has to return a float value * - has to return a float value
*/ */
float evaluate_driver(ChannelDriver *driver, const float evaltime) float evaluate_driver(PathResolvedRNA *anim_rna, ChannelDriver *driver, const float evaltime)
{ {
DriverVar *dvar; DriverVar *dvar;
@@ -1944,7 +1944,9 @@ float evaluate_driver(ChannelDriver *driver, const float evaltime)
* - on errors it reports, then returns 0.0f * - on errors it reports, then returns 0.0f
*/ */
BLI_mutex_lock(&python_driver_lock); BLI_mutex_lock(&python_driver_lock);
driver->curval = BPY_driver_exec(driver, evaltime);
driver->curval = BPY_driver_exec(anim_rna, driver, evaltime);
BLI_mutex_unlock(&python_driver_lock); BLI_mutex_unlock(&python_driver_lock);
} }
#else /* WITH_PYTHON*/ #else /* WITH_PYTHON*/
@@ -2599,48 +2601,10 @@ static float fcurve_eval_samples(FCurve *fcu, FPoint *fpts, float evaltime)
/* Evaluate and return the value of the given F-Curve at the specified frame ("evaltime") /* Evaluate and return the value of the given F-Curve at the specified frame ("evaltime")
* Note: this is also used for drivers * Note: this is also used for drivers
*/ */
float evaluate_fcurve(FCurve *fcu, float evaltime) static float evaluate_fcurve_ex(FCurve *fcu, float evaltime, float cvalue)
{ {
FModifierStackStorage *storage; FModifierStackStorage *storage;
float cvalue = 0.0f;
float devaltime; float devaltime;
/* if there is a driver (only if this F-Curve is acting as 'driver'), evaluate it to find value to use as "evaltime"
* since drivers essentially act as alternative input (i.e. in place of 'time') for F-Curves
*/
if (fcu->driver) {
/* evaltime now serves as input for the curve */
evaltime = evaluate_driver(fcu->driver, evaltime);
/* only do a default 1-1 mapping if it's unlikely that anything else will set a value... */
if (fcu->totvert == 0) {
FModifier *fcm;
bool do_linear = true;
/* out-of-range F-Modifiers will block, as will those which just plain overwrite the values
* XXX: additive is a bit more dicey; it really depends then if things are in range or not...
*/
for (fcm = fcu->modifiers.first; fcm; fcm = fcm->next) {
/* if there are range-restrictions, we must definitely block [#36950] */
if ((fcm->flag & FMODIFIER_FLAG_RANGERESTRICT) == 0 ||
((fcm->sfra <= evaltime) && (fcm->efra >= evaltime)) )
{
/* within range: here it probably doesn't matter, though we'd want to check on additive... */
}
else {
/* outside range: modifier shouldn't contribute to the curve here, though it does in other areas,
* so neither should the driver!
*/
do_linear = false;
}
}
/* only copy over results if none of the modifiers disagreed with this */
if (do_linear) {
cvalue = evaltime;
}
}
}
/* evaluate modifiers which modify time to evaluate the base curve at */ /* evaluate modifiers which modify time to evaluate the base curve at */
storage = evaluate_fmodifiers_storage_new(&fcu->modifiers); storage = evaluate_fmodifiers_storage_new(&fcu->modifiers);
@@ -2670,8 +2634,60 @@ float evaluate_fcurve(FCurve *fcu, float evaltime)
return cvalue; return cvalue;
} }
float evaluate_fcurve(FCurve *fcu, float evaltime)
{
BLI_assert(fcu->driver == NULL);
return evaluate_fcurve_ex(fcu, evaltime, 0.0);
}
float evaluate_fcurve_driver(PathResolvedRNA *anim_rna, FCurve *fcu, float evaltime)
{
BLI_assert(fcu->driver != NULL);
float cvalue = 0.0f;
/* if there is a driver (only if this F-Curve is acting as 'driver'), evaluate it to find value to use as "evaltime"
* since drivers essentially act as alternative input (i.e. in place of 'time') for F-Curves
*/
if (fcu->driver) {
/* evaltime now serves as input for the curve */
evaltime = evaluate_driver(anim_rna, fcu->driver, evaltime);
/* only do a default 1-1 mapping if it's unlikely that anything else will set a value... */
if (fcu->totvert == 0) {
FModifier *fcm;
bool do_linear = true;
/* out-of-range F-Modifiers will block, as will those which just plain overwrite the values
* XXX: additive is a bit more dicey; it really depends then if things are in range or not...
*/
for (fcm = fcu->modifiers.first; fcm; fcm = fcm->next) {
/* if there are range-restrictions, we must definitely block [#36950] */
if ((fcm->flag & FMODIFIER_FLAG_RANGERESTRICT) == 0 ||
((fcm->sfra <= evaltime) && (fcm->efra >= evaltime)) )
{
/* within range: here it probably doesn't matter, though we'd want to check on additive... */
}
else {
/* outside range: modifier shouldn't contribute to the curve here, though it does in other areas,
* so neither should the driver!
*/
do_linear = false;
}
}
/* only copy over results if none of the modifiers disagreed with this */
if (do_linear) {
cvalue = evaltime;
}
}
}
return evaluate_fcurve_ex(fcu, evaltime, cvalue);
}
/* Calculate the value of the given F-Curve at the given frame, and set its curval */ /* Calculate the value of the given F-Curve at the given frame, and set its curval */
float calculate_fcurve(FCurve *fcu, float evaltime) float calculate_fcurve(PathResolvedRNA *anim_rna, FCurve *fcu, float evaltime)
{ {
/* only calculate + set curval (overriding the existing value) if curve has /* only calculate + set curval (overriding the existing value) if curve has
* any data which warrants this... * any data which warrants this...
@@ -2680,7 +2696,13 @@ float calculate_fcurve(FCurve *fcu, float evaltime)
list_has_suitable_fmodifier(&fcu->modifiers, 0, FMI_TYPE_GENERATE_CURVE)) list_has_suitable_fmodifier(&fcu->modifiers, 0, FMI_TYPE_GENERATE_CURVE))
{ {
/* calculate and set curval (evaluates driver too if necessary) */ /* calculate and set curval (evaluates driver too if necessary) */
float curval = evaluate_fcurve(fcu, evaltime); float curval;
if (fcu->driver) {
curval = evaluate_fcurve_driver(anim_rna, fcu, evaltime);
}
else {
curval = evaluate_fcurve(fcu, evaltime);
}
fcu->curval = curval; /* debug display only, not thread safe! */ fcu->curval = curval; /* debug display only, not thread safe! */
return curval; return curval;
} }

View File

@@ -930,11 +930,18 @@ bool insert_keyframe_direct(ReportList *reports, PointerRNA ptr, PropertyRNA *pr
/* update F-Curve flags to ensure proper behaviour for property type */ /* update F-Curve flags to ensure proper behaviour for property type */
update_autoflags_fcurve_direct(fcu, prop); update_autoflags_fcurve_direct(fcu, prop);
/* adjust frame on which to add keyframe */ /* adjust frame on which to add keyframe */
if ((flag & INSERTKEY_DRIVER) && (fcu->driver)) { if ((flag & INSERTKEY_DRIVER) && (fcu->driver)) {
/* for making it easier to add corrective drivers... */ PathResolvedRNA anim_rna;
cfra = evaluate_driver(fcu->driver, cfra);
if (RNA_path_resolved_create(&ptr, prop, fcu->array_index, &anim_rna)) {
/* for making it easier to add corrective drivers... */
cfra = evaluate_driver(&anim_rna, fcu->driver, cfra);
}
else {
cfra = 0.0f;
}
} }
/* obtain value to give keyframe */ /* obtain value to give keyframe */

View File

@@ -812,6 +812,11 @@ static void graph_panel_drivers(const bContext *C, Panel *pa)
} }
col = uiLayoutColumn(pa->layout, true); col = uiLayoutColumn(pa->layout, true);
if (driver->type == DRIVER_TYPE_PYTHON) {
uiItemR(col, &driver_ptr, "use_self", 0, NULL, ICON_NONE);
}
/* debug setting */ /* debug setting */
uiItemR(col, &driver_ptr, "show_debug_info", 0, NULL, ICON_NONE); uiItemR(col, &driver_ptr, "show_debug_info", 0, NULL, ICON_NONE);

View File

@@ -450,7 +450,9 @@ typedef enum eDriver_Flags {
/* the names are cached so they don't need have python unicode versions created each time */ /* the names are cached so they don't need have python unicode versions created each time */
DRIVER_FLAG_RENAMEVAR = (1<<4), DRIVER_FLAG_RENAMEVAR = (1<<4),
/* intermediate values of driver should be shown in the UI for debugging purposes */ /* intermediate values of driver should be shown in the UI for debugging purposes */
DRIVER_FLAG_SHOWDEBUG = (1<<5) DRIVER_FLAG_SHOWDEBUG = (1<<5),
/* include 'self' in the drivers namespace. */
DRIVER_FLAG_USE_SELF = (1<<6),
} eDriver_Flags; } eDriver_Flags;
/* F-Curves -------------------------------------- */ /* F-Curves -------------------------------------- */

View File

@@ -715,6 +715,11 @@ void RNA_main_pointer_create(struct Main *main, PointerRNA *r_ptr);
void RNA_id_pointer_create(struct ID *id, PointerRNA *r_ptr); void RNA_id_pointer_create(struct ID *id, PointerRNA *r_ptr);
void RNA_pointer_create(struct ID *id, StructRNA *type, void *data, PointerRNA *r_ptr); void RNA_pointer_create(struct ID *id, StructRNA *type, void *data, PointerRNA *r_ptr);
bool RNA_path_resolved_create(
PointerRNA *ptr, struct PropertyRNA *prop,
const int prop_index,
PathResolvedRNA *r_anim_rna);
void RNA_blender_rna_pointer_create(PointerRNA *r_ptr); void RNA_blender_rna_pointer_create(PointerRNA *r_ptr);
void RNA_pointer_recast(PointerRNA *ptr, PointerRNA *r_ptr); void RNA_pointer_recast(PointerRNA *ptr, PointerRNA *r_ptr);

View File

@@ -64,6 +64,16 @@ typedef struct PropertyPointerRNA {
struct PropertyRNA *prop; struct PropertyRNA *prop;
} PropertyPointerRNA; } PropertyPointerRNA;
/**
* Stored result of a RNA path lookup (as used by anim-system)
*/
typedef struct PathResolvedRNA {
struct PointerRNA ptr;
struct PropertyRNA *prop;
/* -1 for non-array access */
int prop_index;
} PathResolvedRNA;
/* Property */ /* Property */
typedef enum PropertyType { typedef enum PropertyType {

View File

@@ -6966,3 +6966,22 @@ bool RNA_struct_equals(PointerRNA *a, PointerRNA *b, eRNAEqualsMode mode)
return equals; return equals;
} }
bool RNA_path_resolved_create(
PointerRNA *ptr, struct PropertyRNA *prop,
const int prop_index,
PathResolvedRNA *r_anim_rna)
{
int array_len = RNA_property_array_length(ptr, prop);
if ((array_len == 0) || (prop_index < array_len)) {
r_anim_rna->ptr = *ptr;
r_anim_rna->prop = prop;
r_anim_rna->prop_index = array_len ? prop_index : -1;
return true;
}
else {
return false;
}
}

View File

@@ -1600,7 +1600,13 @@ static void rna_def_channeldriver(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag", DRIVER_FLAG_SHOWDEBUG); RNA_def_property_boolean_sdna(prop, NULL, "flag", DRIVER_FLAG_SHOWDEBUG);
RNA_def_property_ui_text(prop, "Show Debug Info", RNA_def_property_ui_text(prop, "Show Debug Info",
"Show intermediate values for the driver calculations to allow debugging of drivers"); "Show intermediate values for the driver calculations to allow debugging of drivers");
prop = RNA_def_property(srna, "use_self", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", DRIVER_FLAG_USE_SELF);
RNA_def_property_ui_text(prop, "Use Self",
"Pass 'self' argument to Py-Driver, "
"so it can access the data referenced by the driver (object, bone, etc...)");
/* State Info (for Debugging) */ /* State Info (for Debugging) */
prop = RNA_def_property(srna, "is_valid", PROP_BOOLEAN, PROP_NONE); prop = RNA_def_property(srna, "is_valid", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", DRIVER_FLAG_INVALID); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", DRIVER_FLAG_INVALID);

View File

@@ -32,6 +32,7 @@
#ifndef __BPY_EXTERN_H__ #ifndef __BPY_EXTERN_H__
#define __BPY_EXTERN_H__ #define __BPY_EXTERN_H__
struct PathResolvedRNA;
struct Text; /* defined in DNA_text_types.h */ struct Text; /* defined in DNA_text_types.h */
struct ID; /* DNA_ID.h */ struct ID; /* DNA_ID.h */
struct Object; /* DNA_object_types.h */ struct Object; /* DNA_object_types.h */
@@ -85,7 +86,7 @@ void BPY_modules_load_user(struct bContext *C);
void BPY_app_handlers_reset(const short do_all); void BPY_app_handlers_reset(const short do_all);
void BPY_driver_reset(void); void BPY_driver_reset(void);
float BPY_driver_exec(struct ChannelDriver *driver, const float evaltime); float BPY_driver_exec(struct PathResolvedRNA *anim_rna, struct ChannelDriver *driver, const float evaltime);
void BPY_DECREF(void *pyob_ptr); /* Py_DECREF() */ void BPY_DECREF(void *pyob_ptr); /* Py_DECREF() */
void BPY_DECREF_RNA_INVALIDATE(void *pyob_ptr); void BPY_DECREF_RNA_INVALIDATE(void *pyob_ptr);

View File

@@ -120,6 +120,22 @@ static void bpy_pydriver_update_dict(const float evaltime)
} }
} }
static PyObject *bpy_pydriver_InternStr__self = NULL;
static void bpy_pydriver_update_dict_self(struct PathResolvedRNA *anim_rna)
{
if (bpy_pydriver_InternStr__self == NULL) {
bpy_pydriver_InternStr__self = PyUnicode_FromString("self");
}
PyObject *item = pyrna_driver_self_from_anim_rna(anim_rna);
PyDict_SetItem(bpy_pydriver_Dict,
bpy_pydriver_InternStr__self,
item);
Py_DECREF(item);
}
/* Update function, it gets rid of pydrivers global dictionary, forcing /* Update function, it gets rid of pydrivers global dictionary, forcing
* BPY_driver_exec to recreate it. This function is used to force * BPY_driver_exec to recreate it. This function is used to force
* reloading the Blender text module "pydrivers.py", if available, so * reloading the Blender text module "pydrivers.py", if available, so
@@ -174,7 +190,7 @@ static void pydriver_error(ChannelDriver *driver)
* now release the GIL on python operator execution instead, using * now release the GIL on python operator execution instead, using
* PyEval_SaveThread() / PyEval_RestoreThread() so we don't lock up blender. * PyEval_SaveThread() / PyEval_RestoreThread() so we don't lock up blender.
*/ */
float BPY_driver_exec(ChannelDriver *driver, const float evaltime) float BPY_driver_exec(struct PathResolvedRNA *anim_rna, ChannelDriver *driver, const float evaltime)
{ {
PyObject *driver_vars = NULL; PyObject *driver_vars = NULL;
PyObject *retval = NULL; PyObject *retval = NULL;
@@ -226,6 +242,9 @@ float BPY_driver_exec(ChannelDriver *driver, const float evaltime)
/* update global namespace */ /* update global namespace */
bpy_pydriver_update_dict(evaltime); bpy_pydriver_update_dict(evaltime);
if (driver->flag & DRIVER_FLAG_USE_SELF) {
bpy_pydriver_update_dict_self(anim_rna);
}
if (driver->expr_comp == NULL) if (driver->expr_comp == NULL)
driver->flag |= DRIVER_FLAG_RECOMPILE; driver->flag |= DRIVER_FLAG_RECOMPILE;

View File

@@ -28,12 +28,13 @@
#define __BPY_DRIVER_H__ #define __BPY_DRIVER_H__
struct ChannelDriver; struct ChannelDriver;
struct PathResolvedRNA;
int bpy_pydriver_create_dict(void); int bpy_pydriver_create_dict(void);
extern PyObject *bpy_pydriver_Dict; extern PyObject *bpy_pydriver_Dict;
/* externals */ /* externals */
float BPY_driver_exec(struct ChannelDriver *driver, const float evaltime); float BPY_driver_exec(struct PathResolvedRNA *anim_rna, struct ChannelDriver *driver, const float evaltime);
void BPY_driver_reset(void); void BPY_driver_reset(void);
#endif /* __BPY_DRIVER_H__ */ #endif /* __BPY_DRIVER_H__ */

View File

@@ -77,3 +77,8 @@ PyObject *pyrna_driver_get_variable_value(
return driver_arg; return driver_arg;
} }
PyObject *pyrna_driver_self_from_anim_rna(struct PathResolvedRNA *anim_rna)
{
return pyrna_struct_CreatePyObject(&anim_rna->ptr);
}

View File

@@ -27,7 +27,9 @@
struct ChannelDriver; struct ChannelDriver;
struct DriverTarget; struct DriverTarget;
struct PathResolvedRNA;
PyObject *pyrna_driver_get_variable_value(struct ChannelDriver *driver, struct DriverTarget *dtar); PyObject *pyrna_driver_get_variable_value(struct ChannelDriver *driver, struct DriverTarget *dtar);
PyObject *pyrna_driver_self_from_anim_rna(struct PathResolvedRNA *anim_rna);
#endif /* __BPY_RNA_DRIVER_H__ */ #endif /* __BPY_RNA_DRIVER_H__ */