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>2019-03-13 01:55:33 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-03-15 22:09:32 +0300
commit713010bd7795c539c1c18afc3df9f25ab8ba6c12 (patch)
tree00a02d1383b0e01fb6f81e7242ed3285dfe215f4 /source/blender/editors/object/object_collection.c
parentfcffbe1d1b31ed518b7a710c09d5fda389d8182e (diff)
Fix T62313 - No way to remove object from master collection in 3d view
This introduces a new iterator, FOREACH_COLLECTION, that unlike the FOREACH_SCENE_COLLECTION it iterates over all the Blender file collections, including the scene master collection, as well the database ones (bmain). Reviewers: brecht
Diffstat (limited to 'source/blender/editors/object/object_collection.c')
-rw-r--r--source/blender/editors/object/object_collection.c41
1 files changed, 24 insertions, 17 deletions
diff --git a/source/blender/editors/object/object_collection.c b/source/blender/editors/object/object_collection.c
index 4aad3c14a62..c226ad7a47f 100644
--- a/source/blender/editors/object/object_collection.c
+++ b/source/blender/editors/object/object_collection.c
@@ -59,6 +59,7 @@
static const EnumPropertyItem *collection_object_active_itemf(bContext *C, PointerRNA *UNUSED(ptr), PropertyRNA *UNUSED(prop), bool *r_free)
{
Main *bmain = CTX_data_main(C);
+ Scene *scene = CTX_data_scene(C);
Object *ob;
EnumPropertyItem *item = NULL, item_tmp = {0};
int totitem = 0;
@@ -76,7 +77,7 @@ static const EnumPropertyItem *collection_object_active_itemf(bContext *C, Point
/* if 2 or more collections, add option to add to all collections */
collection = NULL;
- while ((collection = BKE_collection_object_find(bmain, collection, ob)))
+ while ((collection = BKE_collection_object_find(bmain, scene, collection, ob)))
count++;
if (count >= 2) {
@@ -88,7 +89,7 @@ static const EnumPropertyItem *collection_object_active_itemf(bContext *C, Point
/* add collections */
collection = NULL;
- while ((collection = BKE_collection_object_find(bmain, collection, ob))) {
+ while ((collection = BKE_collection_object_find(bmain, scene, collection, ob))) {
item_tmp.identifier = item_tmp.name = collection->id.name + 2;
/* item_tmp.icon = ICON_ARMATURE_DATA; */
item_tmp.value = i;
@@ -104,11 +105,11 @@ static const EnumPropertyItem *collection_object_active_itemf(bContext *C, Point
}
/* get the collection back from the enum index, quite awkward and UI specific */
-static Collection *collection_object_active_find_index(Main *bmain, Object *ob, const int collection_object_index)
+static Collection *collection_object_active_find_index(Main *bmain, Scene *scene, Object *ob, const int collection_object_index)
{
Collection *collection = NULL;
int i = 0;
- while ((collection = BKE_collection_object_find(bmain, collection, ob))) {
+ while ((collection = BKE_collection_object_find(bmain, scene, collection, ob))) {
if (i == collection_object_index) {
break;
}
@@ -122,9 +123,9 @@ static int objects_add_active_exec(bContext *C, wmOperator *op)
{
Object *ob = ED_object_context(C);
Main *bmain = CTX_data_main(C);
+ Scene *scene = CTX_data_scene(C);
int single_collection_index = RNA_enum_get(op->ptr, "collection");
- Collection *single_collection = collection_object_active_find_index(bmain, ob, single_collection_index);
- Collection *collection;
+ Collection *single_collection = collection_object_active_find_index(bmain, scene, ob, single_collection_index);
bool is_cycle = false;
bool updated = false;
@@ -132,7 +133,8 @@ static int objects_add_active_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
/* now add all selected objects to the collection(s) */
- for (collection = bmain->collections.first; collection; collection = collection->id.next) {
+ FOREACH_COLLECTION_BEGIN(bmain, scene, Collection *, collection)
+ {
if (single_collection && collection != single_collection)
continue;
if (!BKE_collection_has_object(collection, ob))
@@ -154,6 +156,7 @@ static int objects_add_active_exec(bContext *C, wmOperator *op)
}
CTX_DATA_END;
}
+ FOREACH_COLLECTION_END;
if (is_cycle)
BKE_report(op->reports, RPT_WARNING, "Skipped some collections because of cycle detected");
@@ -194,20 +197,20 @@ void COLLECTION_OT_objects_add_active(wmOperatorType *ot)
static int objects_remove_active_exec(bContext *C, wmOperator *op)
{
Main *bmain = CTX_data_main(C);
+ Scene *scene = CTX_data_scene(C);
ViewLayer *view_layer = CTX_data_view_layer(C);
Object *ob = OBACT(view_layer);
int single_collection_index = RNA_enum_get(op->ptr, "collection");
- Collection *single_collection = collection_object_active_find_index(bmain, ob, single_collection_index);
- Collection *collection;
+ Collection *single_collection = collection_object_active_find_index(bmain, scene, ob, single_collection_index);
bool ok = false;
if (ob == NULL)
return OPERATOR_CANCELLED;
- /* linking to same collection requires its own loop so we can avoid
- * looking up the active objects collections each time */
-
- for (collection = bmain->collections.first; collection; collection = collection->id.next) {
+ /* Linking to same collection requires its own loop so we can avoid
+ * looking up the active objects collections each time. */
+ FOREACH_COLLECTION_BEGIN(bmain, scene, Collection *, collection)
+ {
if (single_collection && collection != single_collection)
continue;
@@ -222,6 +225,7 @@ static int objects_remove_active_exec(bContext *C, wmOperator *op)
CTX_DATA_END;
}
}
+ FOREACH_COLLECTION_END;
if (!ok)
BKE_report(op->reports, RPT_ERROR, "Active object contains no collections");
@@ -259,10 +263,11 @@ void COLLECTION_OT_objects_remove_active(wmOperatorType *ot)
static int collection_objects_remove_all_exec(bContext *C, wmOperator *UNUSED(op))
{
Main *bmain = CTX_data_main(C);
+ Scene *scene = CTX_data_scene(C);
CTX_DATA_BEGIN (C, Base *, base, selected_editable_bases)
{
- BKE_object_groups_clear(bmain, base->object);
+ BKE_object_groups_clear(bmain, scene, base->object);
}
CTX_DATA_END;
@@ -291,15 +296,16 @@ static int collection_objects_remove_exec(bContext *C, wmOperator *op)
{
Object *ob = ED_object_context(C);
Main *bmain = CTX_data_main(C);
+ Scene *scene = CTX_data_scene(C);
int single_collection_index = RNA_enum_get(op->ptr, "collection");
- Collection *single_collection = collection_object_active_find_index(bmain, ob, single_collection_index);
- Collection *collection;
+ Collection *single_collection = collection_object_active_find_index(bmain, scene, ob, single_collection_index);
bool updated = false;
if (ob == NULL)
return OPERATOR_CANCELLED;
- for (collection = bmain->collections.first; collection; collection = collection->id.next) {
+ FOREACH_COLLECTION_BEGIN(bmain, scene, Collection *, collection)
+ {
if (single_collection && collection != single_collection)
continue;
if (!BKE_collection_has_object(collection, ob))
@@ -314,6 +320,7 @@ static int collection_objects_remove_exec(bContext *C, wmOperator *op)
}
CTX_DATA_END;
}
+ FOREACH_COLLECTION_END
if (!updated)
return OPERATOR_CANCELLED;