[Bf-blender-cvs] [7cf8eed5e02] blender2.8: Multi-Objects: ARMATURE_OT_layers_show_all

Dalai Felinto noreply at git.blender.org
Wed Oct 10 01:30:41 CEST 2018


Commit: 7cf8eed5e02a1f6525c3df2f404cb78db24adc98
Author: Dalai Felinto
Date:   Tue Oct 9 20:28:17 2018 -0300
Branches: blender2.8
https://developer.blender.org/rB7cf8eed5e02a1f6525c3df2f404cb78db24adc98

Multi-Objects: ARMATURE_OT_layers_show_all

===================================================================

M	source/blender/editors/armature/pose_edit.c

===================================================================

diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c
index 58b7a8ab969..89961b50609 100644
--- a/source/blender/editors/armature/pose_edit.c
+++ b/source/blender/editors/armature/pose_edit.c
@@ -900,31 +900,39 @@ static bArmature *armature_layers_get_data(Object **ob)
 
 static int pose_armature_layers_showall_exec(bContext *C, wmOperator *op)
 {
-	Object *ob = CTX_data_active_object(C);
-	bArmature *arm = armature_layers_get_data(&ob);
-	PointerRNA ptr;
-	int maxLayers = (RNA_boolean_get(op->ptr, "all")) ? 32 : 16;
+	ViewLayer *view_layer = CTX_data_view_layer(C);
+
+	const int maxLayers = (RNA_boolean_get(op->ptr, "all")) ? 32 : 16;
 	bool layers[32] = {false}; /* hardcoded for now - we can only have 32 armature layers, so this should be fine... */
-	int i;
 
-	/* sanity checking */
-	if (arm == NULL)
-		return OPERATOR_CANCELLED;
+	for (int i = 0; i < maxLayers; i++) {
+		layers[i] = 1;
+	}
 
-	/* use RNA to set the layers
-	 * although it would be faster to just set directly using bitflags, we still
-	 * need to setup a RNA pointer so that we get the "update" callbacks for free...
-	 */
-	RNA_id_pointer_create(&arm->id, &ptr);
+	uint objects_len = 0;
+	Object **objects = BKE_view_layer_array_from_objects_in_edit_mode_unique_data(view_layer, &objects_len);
+	for (uint ob_index = 0; ob_index < objects_len; ob_index++) {
+		Object *ob = objects[ob_index];
+		bArmature *arm = armature_layers_get_data(&ob);
+		PointerRNA ptr;
 
-	for (i = 0; i < maxLayers; i++)
-		layers[i] = 1;
+		if (arm == NULL) {
+			continue;
+		}
 
-	RNA_boolean_set_array(&ptr, "layers", layers);
+		/* use RNA to set the layers
+		 * although it would be faster to just set directly using bitflags, we still
+		 * need to setup a RNA pointer so that we get the "update" callbacks for free...
+		 */
+		RNA_id_pointer_create(&arm->id, &ptr);
 
-	/* note, notifier might evolve */
-	WM_event_add_notifier(C, NC_OBJECT | ND_POSE, ob);
-	DEG_id_tag_update(&arm->id, DEG_TAG_COPY_ON_WRITE);
+		RNA_boolean_set_array(&ptr, "layers", layers);
+
+		/* note, notifier might evolve */
+		WM_event_add_notifier(C, NC_OBJECT | ND_POSE, ob);
+		DEG_id_tag_update(&arm->id, DEG_TAG_COPY_ON_WRITE);
+	}
+	MEM_freeN(objects);
 
 	/* done */
 	return OPERATOR_FINISHED;



More information about the Bf-blender-cvs mailing list