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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-08-08 18:16:54 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-08-08 18:20:39 +0300
commit1342d1879e121b1cf4118a232139d906a7da1ee6 (patch)
treea59dc6874e1922b595bce62f5c21ccc98e1a7f6f /source/blender/editors/physics/rigidbody_constraint.c
parent45ec08dc991c29f60d1ec4a39df7c7364cde631c (diff)
Fix T52551: undo causes crash after enabling a new rigid body when scene uses a referenced rigid body world.
Poll functions were not correct here, we cannot make objects part of rigidbody sim if the RB collection is a linked one...
Diffstat (limited to 'source/blender/editors/physics/rigidbody_constraint.c')
-rw-r--r--source/blender/editors/physics/rigidbody_constraint.c32
1 files changed, 29 insertions, 3 deletions
diff --git a/source/blender/editors/physics/rigidbody_constraint.c b/source/blender/editors/physics/rigidbody_constraint.c
index 2c454448b9b..a1d76174cc8 100644
--- a/source/blender/editors/physics/rigidbody_constraint.c
+++ b/source/blender/editors/physics/rigidbody_constraint.c
@@ -46,6 +46,7 @@
#include "WM_api.h"
#include "WM_types.h"
+#include "ED_object.h"
#include "ED_physics.h"
#include "ED_screen.h"
@@ -56,12 +57,37 @@
static bool ED_operator_rigidbody_con_active_poll(bContext *C)
{
+ Scene *scene = CTX_data_scene(C);
+ if (scene == NULL || ID_IS_LINKED(&scene->id) ||
+ (scene->rigidbody_world != NULL && scene->rigidbody_world->constraints != NULL &&
+ ID_IS_LINKED(&scene->rigidbody_world->constraints->id))) {
+ return false;
+ }
+
if (ED_operator_object_active_editable(C)) {
- Object *ob = CTX_data_active_object(C);
+ Object *ob = ED_object_active_context(C);
return (ob && ob->rigidbody_constraint);
}
else {
- return 0;
+ return false;
+ }
+}
+
+static bool ED_operator_rigidbody_con_add_poll(bContext *C)
+{
+ Scene *scene = CTX_data_scene(C);
+ if (scene == NULL || ID_IS_LINKED(&scene->id) ||
+ (scene->rigidbody_world != NULL && scene->rigidbody_world->constraints != NULL &&
+ ID_IS_LINKED(&scene->rigidbody_world->constraints->id))) {
+ return false;
+ }
+
+ if (ED_operator_object_active_editable(C)) {
+ Object *ob = ED_object_active_context(C);
+ return (ob && ob->type == OB_MESH);
+ }
+ else {
+ return false;
}
}
@@ -152,7 +178,7 @@ void RIGIDBODY_OT_constraint_add(wmOperatorType *ot)
/* callbacks */
ot->exec = rigidbody_con_add_exec;
- ot->poll = ED_operator_object_active_editable;
+ ot->poll = ED_operator_rigidbody_con_add_poll;
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;