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:
authorDalai Felinto <dfelinto@gmail.com>2018-10-02 23:11:19 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-10-02 23:11:59 +0300
commit00c0e55227698f811617a0f415436b3f0b9c61c8 (patch)
treeeac357a3c529de11f38f409bc269c579be5d5daf /source/blender/editors/object/object_random.c
parent1fd8e183d01b3ca28d97e97afc3b175e14b8f71d (diff)
Multi-Objects: TRANSFORM_OT_vertex_random
This was listed under the armature task yet it is used for meshes too. Also make sure all the UI names are capitalized (normal > Normal).
Diffstat (limited to 'source/blender/editors/object/object_random.c')
-rw-r--r--source/blender/editors/object/object_random.c57
1 files changed, 40 insertions, 17 deletions
diff --git a/source/blender/editors/object/object_random.c b/source/blender/editors/object/object_random.c
index 41eba6dd07f..918c1c8d8e7 100644
--- a/source/blender/editors/object/object_random.c
+++ b/source/blender/editors/object/object_random.c
@@ -25,6 +25,9 @@
* \ingroup edobj
*/
+#include "MEM_guardedalloc.h"
+
+#include "DNA_layer_types.h"
#include "DNA_object_types.h"
#include "BLI_math.h"
@@ -32,6 +35,7 @@
#include "BKE_context.h"
+#include "BKE_layer.h"
#include "RNA_access.h"
#include "RNA_define.h"
@@ -94,34 +98,53 @@ static bool object_rand_transverts(
static int object_rand_verts_exec(bContext *C, wmOperator *op)
{
+ ViewLayer *view_layer = CTX_data_view_layer(C);
+ Object *ob_active = CTX_data_edit_object(C);
+ const int ob_mode = ob_active->mode;
+
const float offset = RNA_float_get(op->ptr, "offset");
const float uniform = RNA_float_get(op->ptr, "uniform");
const float normal_factor = RNA_float_get(op->ptr, "normal");
const unsigned int seed = RNA_int_get(op->ptr, "seed");
- TransVertStore tvs = {NULL};
- Object *obedit = CTX_data_edit_object(C);
+ bool changed_multi = false;
+ uint objects_len = 0;
+ Object **objects = BKE_view_layer_array_from_objects_in_mode_unique_data(view_layer, &objects_len, ob_mode);
+ for (uint ob_index = 0; ob_index < objects_len; ob_index++) {
+ Object *ob_iter = objects[ob_index];
- if (obedit) {
- int mode = TM_ALL_JOINTS;
+ TransVertStore tvs = { NULL };
- if (normal_factor != 0.0f) {
- mode |= TX_VERT_USE_NORMAL;
- }
+ if (ob_iter) {
+ int mode = TM_ALL_JOINTS;
- ED_transverts_create_from_obedit(&tvs, obedit, mode);
- if (tvs.transverts_tot == 0)
- return OPERATOR_CANCELLED;
+ if (normal_factor != 0.0f) {
+ mode |= TX_VERT_USE_NORMAL;
+ }
- object_rand_transverts(&tvs, offset, uniform, normal_factor, seed);
+ ED_transverts_create_from_obedit(&tvs, ob_iter, mode);
+ if (tvs.transverts_tot == 0) {
+ continue;
+ }
- ED_transverts_update_obedit(&tvs, obedit);
- ED_transverts_free(&tvs);
- }
+ int seed_iter = seed;
+ /* This gives a consistent result regardless of object order. */
+ if (ob_index) {
+ seed_iter += BLI_ghashutil_strhash_p(ob_iter->id.name);
+ }
+
+ object_rand_transverts(&tvs, offset, uniform, normal_factor, seed_iter);
+
+ ED_transverts_update_obedit(&tvs, ob_iter);
+ ED_transverts_free(&tvs);
- WM_event_add_notifier(C, NC_OBJECT | ND_DRAW, obedit);
+ WM_event_add_notifier(C, NC_OBJECT | ND_DRAW, ob_iter);
+ changed_multi = true;
+ }
+ }
+ MEM_freeN(objects);
- return OPERATOR_FINISHED;
+ return changed_multi ? OPERATOR_FINISHED : OPERATOR_CANCELLED;
}
void TRANSFORM_OT_vertex_random(struct wmOperatorType *ot)
@@ -144,7 +167,7 @@ void TRANSFORM_OT_vertex_random(struct wmOperatorType *ot)
"Amount", "Distance to offset", -10.0f, 10.0f);
RNA_def_float(ot->srna, "uniform", 0.0f, 0.0f, 1.0f, "Uniform",
"Increase for uniform offset distance", 0.0f, 1.0f);
- RNA_def_float(ot->srna, "normal", 0.0f, 0.0f, 1.0f, "normal",
+ RNA_def_float(ot->srna, "normal", 0.0f, 0.0f, 1.0f, "Normal",
"Align offset direction to normals", 0.0f, 1.0f);
RNA_def_int(ot->srna, "seed", 0, 0, 10000, "Random Seed", "Seed for the random number generator", 0, 50);
}