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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-22 02:39:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-22 12:48:17 +0300
commit735515a3f9e4c41738bf714d682b13db64adb638 (patch)
tree04b551336131bc84ecc664a77ae0cefdded78d0b /source/blender/blenkernel/intern/object.c
parent14a49950ff11f43b7a5a73da545339b969de97f0 (diff)
Cleanup: style, use braces for blenkernel
Diffstat (limited to 'source/blender/blenkernel/intern/object.c')
-rw-r--r--source/blender/blenkernel/intern/object.c234
1 files changed, 156 insertions, 78 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index 77086d9c6ac..a623baf7b71 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -300,8 +300,9 @@ void BKE_object_link_modifiers(Scene *scene, struct Object *ob_dst, const struct
continue;
}
- if (!BKE_object_support_modifier_type_check(ob_dst, md->type))
+ if (!BKE_object_support_modifier_type_check(ob_dst, md->type)) {
continue;
+ }
switch (md->type) {
case eModifierType_Softbody:
@@ -579,8 +580,9 @@ void BKE_object_free(Object *ob)
/* Free runtime curves data. */
if (ob->runtime.curve_cache) {
BKE_curve_bevelList_free(&ob->runtime.curve_cache->bev);
- if (ob->runtime.curve_cache->path)
+ if (ob->runtime.curve_cache->path) {
free_path(ob->runtime.curve_cache->path);
+ }
MEM_freeN(ob->runtime.curve_cache);
ob->runtime.curve_cache = NULL;
}
@@ -727,13 +729,15 @@ bool BKE_object_exists_check(Main *bmain, const Object *obtest)
{
Object *ob;
- if (obtest == NULL)
+ if (obtest == NULL) {
return false;
+ }
ob = bmain->objects.first;
while (ob) {
- if (ob == obtest)
+ if (ob == obtest) {
return true;
+ }
ob = ob->id.next;
}
return false;
@@ -877,8 +881,9 @@ Object *BKE_object_add_only_object(Main *bmain, int type, const char *name)
{
Object *ob;
- if (!name)
+ if (!name) {
name = get_obdata_defname(type);
+ }
ob = BKE_libblock_alloc(bmain, ID_OB, name, 0);
@@ -970,8 +975,9 @@ Object *BKE_object_add_for_data(
/* same as object_add_common, except we don't create new ob->data */
ob = BKE_object_add_only_object(bmain, type, name);
ob->data = data;
- if (do_id_user)
+ if (do_id_user) {
id_us_plus(data);
+ }
BKE_view_layer_base_deselect_all(view_layer);
DEG_id_tag_update_ex(
@@ -1015,13 +1021,15 @@ void BKE_object_copy_softbody(struct Object *ob_dst, const struct Object *ob_src
sbn->bpoint = MEM_dupallocN(sbn->bpoint);
for (i = 0; i < sbn->totpoint; i++) {
- if (sbn->bpoint[i].springs)
+ if (sbn->bpoint[i].springs) {
sbn->bpoint[i].springs = MEM_dupallocN(sbn->bpoint[i].springs);
+ }
}
}
- if (sb->bspring)
+ if (sb->bspring) {
sbn->bspring = MEM_dupallocN(sb->bspring);
+ }
}
sbn->keys = NULL;
@@ -1035,8 +1043,9 @@ void BKE_object_copy_softbody(struct Object *ob_dst, const struct Object *ob_src
&sbn->shared->ptcaches, &sb->shared->ptcaches, flag);
}
- if (sb->effector_weights)
+ if (sb->effector_weights) {
sbn->effector_weights = MEM_dupallocN(sb->effector_weights);
+ }
ob_dst->soft = sbn;
}
@@ -1109,8 +1118,9 @@ void BKE_object_copy_particlesystems(Object *ob_dst, const Object *ob_src, const
for (md = ob_dst->modifiers.first; md; md = md->next) {
if (md->type == eModifierType_ParticleSystem) {
ParticleSystemModifierData *psmd = (ParticleSystemModifierData *)md;
- if (psmd->psys == psys)
+ if (psmd->psys == psys) {
psmd->psys = npsys;
+ }
}
else if (md->type == eModifierType_DynamicPaint) {
DynamicPaintModifierData *pmd = (DynamicPaintModifierData *)md;
@@ -1125,8 +1135,9 @@ void BKE_object_copy_particlesystems(Object *ob_dst, const Object *ob_src, const
if (smd->type == MOD_SMOKE_TYPE_FLOW) {
if (smd->flow) {
- if (smd->flow->psys == psys)
+ if (smd->flow->psys == psys) {
smd->flow->psys = npsys;
+ }
}
}
}
@@ -1159,12 +1170,14 @@ static void copy_object_pose(Object *obn, const Object *ob, const int flag)
cti->get_constraint_targets(con, &targets);
for (ct = targets.first; ct; ct = ct->next) {
- if (ct->tar == ob)
+ if (ct->tar == ob) {
ct->tar = obn;
+ }
}
- if (cti->flush_constraint_targets)
+ if (cti->flush_constraint_targets) {
cti->flush_constraint_targets(con, &targets, 0);
+ }
}
}
}
@@ -1189,17 +1202,20 @@ bool BKE_object_pose_context_check(const Object *ob)
Object *BKE_object_pose_armature_get(Object *ob)
{
- if (ob == NULL)
+ if (ob == NULL) {
return NULL;
+ }
- if (BKE_object_pose_context_check(ob))
+ if (BKE_object_pose_context_check(ob)) {
return ob;
+ }
ob = modifiers_isDeformedByArmature(ob);
/* Only use selected check when non-active. */
- if (BKE_object_pose_context_check(ob))
+ if (BKE_object_pose_context_check(ob)) {
return ob;
+ }
return NULL;
}
@@ -1349,11 +1365,13 @@ void BKE_object_copy_data(Main *bmain, Object *ob_dst, const Object *ob_src, con
ob_dst->matbits = NULL;
}
- if (ob_src->iuser)
+ if (ob_src->iuser) {
ob_dst->iuser = MEM_dupallocN(ob_src->iuser);
+ }
- if (ob_src->runtime.bb)
+ if (ob_src->runtime.bb) {
ob_dst->runtime.bb = MEM_dupallocN(ob_src->runtime.bb);
+ }
BLI_listbase_clear(&ob_dst->modifiers);
@@ -1587,8 +1605,9 @@ Object *BKE_object_duplicate(Main *bmain, const Object *ob, const int dupflag)
case OB_ARMATURE:
if (dupflag != 0) {
DEG_id_tag_update(&obn->id, ID_RECALC_GEOMETRY);
- if (obn->pose)
+ if (obn->pose) {
BKE_pose_tag_recalc(bmain, obn->pose);
+ }
if (dupflag & USER_DUP_ARM) {
ID_NEW_REMAP_US2(obn->data)
else
@@ -1778,8 +1797,9 @@ static void armature_set_id_extern(Object *ob)
unsigned int lay = arm->layer_protected;
for (pchan = ob->pose->chanbase.first; pchan; pchan = pchan->next) {
- if (!(pchan->bone->layer & lay))
+ if (!(pchan->bone->layer & lay)) {
id_lib_extern((ID *)pchan->custom);
+ }
}
}
@@ -1789,8 +1809,9 @@ void BKE_object_copy_proxy_drivers(Object *ob, Object *target)
FCurve *fcu;
/* add new animdata block */
- if (!ob->adt)
+ if (!ob->adt) {
ob->adt = BKE_animdata_add_id(&ob->id);
+ }
/* make a copy of all the drivers (for now), then correct any links that need fixing */
free_fcurves(&ob->adt->drivers);
@@ -1804,14 +1825,16 @@ void BKE_object_copy_proxy_drivers(Object *ob, Object *target)
/* all drivers */
DRIVER_TARGETS_LOOPER_BEGIN (dvar) {
if (dtar->id) {
- if ((Object *)dtar->id == target)
+ if ((Object *)dtar->id == target) {
dtar->id = (ID *)ob;
+ }
else {
/* only on local objects because this causes indirect links
* 'a -> b -> c', blend to point directly to a.blend
* when a.blend has a proxy thats linked into c.blend */
- if (!ID_IS_LINKED(ob))
+ if (!ID_IS_LINKED(ob)) {
id_lib_extern((ID *)dtar->id);
+ }
}
}
}
@@ -1878,10 +1901,12 @@ void BKE_object_make_proxy(Main *bmain, Object *ob, Object *target, Object *cob)
/* copy material and index information */
ob->actcol = ob->totcol = 0;
- if (ob->mat)
+ if (ob->mat) {
MEM_freeN(ob->mat);
- if (ob->matbits)
+ }
+ if (ob->matbits) {
MEM_freeN(ob->matbits);
+ }
ob->mat = NULL;
ob->matbits = NULL;
if ((target->totcol) && (target->mat) && OB_TYPE_SUPPORT_MATERIAL(ob->type)) {
@@ -2011,10 +2036,12 @@ void BKE_object_rot_to_mat3(Object *ob, float mat[3][3], bool use_drot)
}
/* combine these rotations */
- if (use_drot)
+ if (use_drot) {
mul_m3_m3m3(mat, dmat, rmat);
- else
+ }
+ else {
copy_m3_m3(mat, rmat);
+ }
}
void BKE_object_mat3_to_rot(Object *ob, float mat[3][3], bool use_compat)
@@ -2054,10 +2081,12 @@ void BKE_object_mat3_to_rot(Object *ob, float mat[3][3], bool use_compat)
mul_qt_qtqt(quat, dquat, quat);
/* end drot correction */
- if (use_compat)
+ if (use_compat) {
quat_to_compatible_eulO(ob->rot, ob->rot, ob->rotmode, quat);
- else
+ }
+ else {
quat_to_eulO(ob->rot, ob->rotmode, quat);
+ }
break;
}
}
@@ -2374,8 +2403,9 @@ static void give_parvert(Object *par, int nr, float vec[3])
float(*co)[3] = dl ? (float(*)[3])dl->verts : NULL;
int tot;
- if (latt->editlatt)
+ if (latt->editlatt) {
latt = latt->editlatt->latt;
+ }
tot = latt->pntsu * latt->pntsv * latt->pntsw;
@@ -2430,10 +2460,12 @@ void BKE_object_get_parent_matrix(Object *ob, Object *par, float parentmat[4][4]
}
}
- if (ok)
+ if (ok) {
mul_m4_m4m4(parentmat, par->obmat, tmat);
- else
+ }
+ else {
copy_m4_m4(parentmat, par->obmat);
+ }
break;
case PARBONE:
@@ -2524,10 +2556,12 @@ static void object_where_is_calc_ex(Depsgraph *depsgraph,
}
/* set negative scale flag in object */
- if (is_negative_m4(ob->obmat))
+ if (is_negative_m4(ob->obmat)) {
ob->transflag |= OB_NEG_SCALE;
- else
+ }
+ else {
ob->transflag &= ~OB_NEG_SCALE;
+ }
}
void BKE_object_where_is_calc_time(Depsgraph *depsgraph, Scene *scene, Object *ob, float ctime)
@@ -2632,12 +2666,15 @@ void BKE_object_apply_mat4_ex(
sub_v3_v3(ob->loc, ob->dloc);
- if (ob->dscale[0] != 0.0f)
+ if (ob->dscale[0] != 0.0f) {
ob->scale[0] /= ob->dscale[0];
- if (ob->dscale[1] != 0.0f)
+ }
+ if (ob->dscale[1] != 0.0f) {
ob->scale[1] /= ob->dscale[1];
- if (ob->dscale[2] != 0.0f)
+ }
+ if (ob->dscale[2] != 0.0f) {
ob->scale[2] /= ob->dscale[2];
+ }
/* BKE_object_mat3_to_rot handles delta rotations */
}
@@ -2734,10 +2771,12 @@ void BKE_object_boundbox_flag(Object *ob, int flag, const bool set)
{
BoundBox *bb = BKE_object_boundbox_get(ob);
if (bb) {
- if (set)
+ if (set) {
bb->flag |= flag;
- else
+ }
+ else {
bb->flag &= ~flag;
+ }
}
}
@@ -3107,10 +3146,12 @@ void BKE_object_tfm_restore(Object *ob, void *obtfm_pt)
bool BKE_object_parent_loop_check(const Object *par, const Object *ob)
{
/* test if 'ob' is a parent somewhere in par's parents */
- if (par == NULL)
+ if (par == NULL) {
return false;
- if (ob == par)
+ }
+ if (ob == par) {
return true;
+ }
return BKE_object_parent_loop_check(par->parent, ob);
}
@@ -3243,8 +3284,9 @@ void BKE_object_sculpt_modifiers_changed(Object *ob)
BKE_pbvh_search_gather(ss->pbvh, NULL, NULL, &nodes, &totnode);
- for (n = 0; n < totnode; n++)
+ for (n = 0; n < totnode; n++) {
BKE_pbvh_node_mark_update(nodes[n]);
+ }
MEM_freeN(nodes);
}
@@ -3255,8 +3297,9 @@ int BKE_object_obdata_texspace_get(
Object *ob, short **r_texflag, float **r_loc, float **r_size, float **r_rot)
{
- if (ob->data == NULL)
+ if (ob->data == NULL) {
return 0;
+ }
switch (GS(((ID *)ob->data)->name)) {
case ID_ME: {
@@ -3268,26 +3311,34 @@ int BKE_object_obdata_texspace_get(
if (cu->bb == NULL || (cu->bb->flag & BOUNDBOX_DIRTY)) {
BKE_curve_texspace_calc(cu);
}
- if (r_texflag)
+ if (r_texflag) {
*r_texflag = &cu->texflag;
- if (r_loc)
+ }
+ if (r_loc) {
*r_loc = cu->loc;
- if (r_size)
+ }
+ if (r_size) {
*r_size = cu->size;
- if (r_rot)
+ }
+ if (r_rot) {
*r_rot = cu->rot;
+ }
break;
}
case ID_MB: {
MetaBall *mb = ob->data;
- if (r_texflag)
+ if (r_texflag) {
*r_texflag = &mb->texflag;
- if (r_loc)
+ }
+ if (r_loc) {
*r_loc = mb->loc;
- if (r_size)
+ }
+ if (r_size) {
*r_size = mb->size;
- if (r_rot)
+ }
+ if (r_rot) {
*r_rot = mb->rot;
+ }
break;
}
default:
@@ -3362,10 +3413,12 @@ Mesh *BKE_object_get_original_mesh(Object *object)
static int pc_cmp(const void *a, const void *b)
{
const LinkData *ad = a, *bd = b;
- if (POINTER_AS_INT(ad->data) > POINTER_AS_INT(bd->data))
+ if (POINTER_AS_INT(ad->data) > POINTER_AS_INT(bd->data)) {
return 1;
- else
+ }
+ else {
return 0;
+ }
}
int BKE_object_insert_ptcache(Object *ob)
@@ -3378,8 +3431,9 @@ int BKE_object_insert_ptcache(Object *ob)
for (link = ob->pc_ids.first, i = 0; link; link = link->next, i++) {
int index = POINTER_AS_INT(link->data);
- if (i < index)
+ if (i < index) {
break;
+ }
}
link = MEM_callocN(sizeof(LinkData), "PCLink");
@@ -3394,13 +3448,15 @@ static int pc_findindex(ListBase *listbase, int index)
LinkData *link = NULL;
int number = 0;
- if (listbase == NULL)
+ if (listbase == NULL) {
return -1;
+ }
link = listbase->first;
while (link) {
- if (POINTER_AS_INT(link->data) == index)
+ if (POINTER_AS_INT(link->data) == index) {
return number;
+ }
number++;
link = link->next;
@@ -3666,12 +3722,14 @@ int BKE_object_is_modified(Scene *scene, Object *ob)
md && (flag != (eModifierMode_Render | eModifierMode_Realtime));
md = md->next) {
if ((flag & eModifierMode_Render) == 0 &&
- modifier_isEnabled(scene, md, eModifierMode_Render))
+ modifier_isEnabled(scene, md, eModifierMode_Render)) {
flag |= eModifierMode_Render;
+ }
if ((flag & eModifierMode_Realtime) == 0 &&
- modifier_isEnabled(scene, md, eModifierMode_Realtime))
+ modifier_isEnabled(scene, md, eModifierMode_Realtime)) {
flag |= eModifierMode_Realtime;
+ }
}
}
@@ -3809,12 +3867,14 @@ int BKE_object_is_deform_modified(Scene *scene, Object *ob)
}
if (can_deform) {
- if (!(flag & eModifierMode_Render) && modifier_isEnabled(scene, md, eModifierMode_Render))
+ if (!(flag & eModifierMode_Render) && modifier_isEnabled(scene, md, eModifierMode_Render)) {
flag |= eModifierMode_Render;
+ }
if (!(flag & eModifierMode_Realtime) &&
- modifier_isEnabled(scene, md, eModifierMode_Realtime))
+ modifier_isEnabled(scene, md, eModifierMode_Realtime)) {
flag |= eModifierMode_Realtime;
+ }
}
}
@@ -3827,11 +3887,12 @@ bool BKE_object_is_animated(Scene *scene, Object *ob)
ModifierData *md;
VirtualModifierData virtualModifierData;
- for (md = modifiers_getVirtualModifierList(ob, &virtualModifierData); md; md = md->next)
+ for (md = modifiers_getVirtualModifierList(ob, &virtualModifierData); md; md = md->next) {
if (modifier_dependsOnTime(md) && (modifier_isEnabled(scene, md, eModifierMode_Realtime) ||
modifier_isEnabled(scene, md, eModifierMode_Render))) {
return true;
}
+ }
return false;
}
@@ -3854,8 +3915,9 @@ MovieClip *BKE_object_movieclip_get(Scene *scene, Object *ob, bool use_default)
while (con) {
if (con->type == CONSTRAINT_TYPE_CAMERASOLVER) {
- if (scon == NULL || (scon->flag & CONSTRAINT_OFF))
+ if (scon == NULL || (scon->flag & CONSTRAINT_OFF)) {
scon = con;
+ }
}
con = con->next;
@@ -3863,10 +3925,12 @@ MovieClip *BKE_object_movieclip_get(Scene *scene, Object *ob, bool use_default)
if (scon) {
bCameraSolverConstraint *solver = scon->data;
- if ((solver->flag & CAMERASOLVER_ACTIVECLIP) == 0)
+ if ((solver->flag & CAMERASOLVER_ACTIVECLIP) == 0) {
clip = solver->clip;
- else
+ }
+ else {
clip = scene->clip;
+ }
}
return clip;
@@ -3952,8 +4016,9 @@ LinkNode *BKE_object_relational_superset(struct ViewLayer *view_layer,
(objectSet == OB_SET_VISIBLE && BASE_EDITABLE(((View3D *)NULL), base))) {
Object *ob = base->object;
- if (obrel_list_test(ob))
+ if (obrel_list_test(ob)) {
obrel_list_add(&links, ob);
+ }
/* parent relationship */
if (includeFilter & (OB_REL_PARENT | OB_REL_PARENT_RECURSIVE)) {
@@ -4174,8 +4239,9 @@ bool BKE_object_modifier_use_time(Object *ob, ModifierData *md)
/* action - check for F-Curves with paths containing 'modifiers[' */
if (adt->action) {
for (fcu = (FCurve *)adt->action->curves.first; fcu != NULL; fcu = (FCurve *)fcu->next) {
- if (fcu->rna_path && strstr(fcu->rna_path, pattern))
+ if (fcu->rna_path && strstr(fcu->rna_path, pattern)) {
return true;
+ }
}
}
@@ -4186,8 +4252,9 @@ bool BKE_object_modifier_use_time(Object *ob, ModifierData *md)
* by the RNA updates cache introduced in r.38649
*/
for (fcu = (FCurve *)adt->drivers.first; fcu != NULL; fcu = (FCurve *)fcu->next) {
- if (fcu->rna_path && strstr(fcu->rna_path, pattern))
+ if (fcu->rna_path && strstr(fcu->rna_path, pattern)) {
return true;
+ }
}
/* XXX: also, should check NLA strips, though for now assume that nobody uses
@@ -4250,15 +4317,17 @@ bool BKE_object_shaderfx_use_time(Object *ob, ShaderFxData *fx)
/* action - check for F-Curves with paths containing string[' */
if (adt->action) {
for (fcu = adt->action->curves.first; fcu != NULL; fcu = fcu->next) {
- if (fcu->rna_path && strstr(fcu->rna_path, pattern))
+ if (fcu->rna_path && strstr(fcu->rna_path, pattern)) {
return true;
+ }
}
}
/* This here allows properties to get driven and still update properly */
for (fcu = adt->drivers.first; fcu != NULL; fcu = fcu->next) {
- if (fcu->rna_path && strstr(fcu->rna_path, pattern))
+ if (fcu->rna_path && strstr(fcu->rna_path, pattern)) {
return true;
+ }
}
}
@@ -4274,10 +4343,12 @@ static void object_cacheIgnoreClear(Object *ob, int state)
for (pid = pidlist.first; pid; pid = pid->next) {
if (pid->cache) {
- if (state)
+ if (state) {
pid->cache->flag |= PTCACHE_IGNORE_CLEAR;
- else
+ }
+ else {
pid->cache->flag &= ~PTCACHE_IGNORE_CLEAR;
+ }
}
}
@@ -4302,31 +4373,36 @@ bool BKE_object_modifier_update_subframe(Depsgraph *depsgraph,
DynamicPaintModifierData *pmd = (DynamicPaintModifierData *)md;
/* if other is dynamic paint canvas, don't update */
- if (pmd && pmd->canvas)
+ if (pmd && pmd->canvas) {
return true;
+ }
}
else if (type == eModifierType_Smoke) {
SmokeModifierData *smd = (SmokeModifierData *)md;
- if (smd && (smd->type & MOD_SMOKE_TYPE_DOMAIN) != 0)
+ if (smd && (smd->type & MOD_SMOKE_TYPE_DOMAIN) != 0) {
return true;
+ }
}
/* if object has parents, update them too */
if (parent_recursion) {
int recursion = parent_recursion - 1;
bool no_update = false;
- if (ob->parent)
+ if (ob->parent) {
no_update |= BKE_object_modifier_update_subframe(
depsgraph, scene, ob->parent, 0, recursion, frame, type);
- if (ob->track)
+ }
+ if (ob->track) {
no_update |= BKE_object_modifier_update_subframe(
depsgraph, scene, ob->track, 0, recursion, frame, type);
+ }
/* skip subframe if object is parented
* to vertex of a dynamic paint canvas */
- if (no_update && (ob->partype == PARVERT1 || ob->partype == PARVERT3))
+ if (no_update && (ob->partype == PARVERT1 || ob->partype == PARVERT3)) {
return false;
+ }
/* also update constraint targets */
for (con = ob->constraints.first; con; con = con->next) {
@@ -4337,13 +4413,15 @@ bool BKE_object_modifier_update_subframe(Depsgraph *depsgraph,
bConstraintTarget *ct;
cti->get_constraint_targets(con, &targets);
for (ct = targets.first; ct; ct = ct->next) {
- if (ct->tar)
+ if (ct->tar) {
BKE_object_modifier_update_subframe(
depsgraph, scene, ct->tar, 0, recursion, frame, type);
+ }
}
/* free temp targets */
- if (cti->flush_constraint_targets)
+ if (cti->flush_constraint_targets) {
cti->flush_constraint_targets(con, &targets, 0);
+ }
}
}
}