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>2012-03-24 10:18:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-24 10:18:31 +0400
commit69e6894b15271884623ea6f56ead06db83acbe99 (patch)
treeb68200606afaca06cf7552f6b12fc20ebd30d487 /source/blender/blenkernel/intern/action.c
parent7b99ae0ad3017e373be2a344e30d190b70ca66b4 (diff)
style cleanup: follow style guide for formatting of if/for/while loops, and else if's
Diffstat (limited to 'source/blender/blenkernel/intern/action.c')
-rw-r--r--source/blender/blenkernel/intern/action.c161
1 files changed, 81 insertions, 80 deletions
diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c
index dcd4a712dbb..b78a11185cc 100644
--- a/source/blender/blenkernel/intern/action.c
+++ b/source/blender/blenkernel/intern/action.c
@@ -415,7 +415,7 @@ bPoseChannel *get_pose_channel(const bPose *pose, const char *name)
if (ELEM(NULL, pose, name) || (name[0] == 0))
return NULL;
- if(pose->chanhash)
+ if (pose->chanhash)
return BLI_ghash_lookup(pose->chanhash, (void *)name);
return BLI_findstring(&((bPose *)pose)->chanbase, name, offsetof(bPoseChannel, name));
@@ -432,7 +432,7 @@ bPoseChannel *verify_pose_channel(bPose *pose, const char *name)
/* See if this channel exists */
chan= BLI_findstring(&pose->chanbase, name, offsetof(bPoseChannel, name));
- if(chan) {
+ if (chan) {
return chan;
}
@@ -523,7 +523,7 @@ void copy_pose (bPose **dst, bPose *src, int copycon)
pchan->mpath= NULL; /* motion paths should not get copied yet... */
}
- if(pchan->prop) {
+ if (pchan->prop) {
pchan->prop= IDP_CopyProperty(pchan->prop);
}
}
@@ -570,18 +570,18 @@ void init_pose_ikparam(bPose *pose)
void make_pose_channels_hash(bPose *pose)
{
- if(!pose->chanhash) {
+ if (!pose->chanhash) {
bPoseChannel *pchan;
pose->chanhash= BLI_ghash_new(BLI_ghashutil_strhash, BLI_ghashutil_strcmp, "make_pose_chan gh");
- for(pchan=pose->chanbase.first; pchan; pchan=pchan->next)
+ for (pchan=pose->chanbase.first; pchan; pchan=pchan->next)
BLI_ghash_insert(pose->chanhash, pchan->name, pchan);
}
}
void free_pose_channels_hash(bPose *pose)
{
- if(pose->chanhash) {
+ if (pose->chanhash) {
BLI_ghash_free(pose->chanhash, NULL, NULL);
pose->chanhash= NULL;
}
@@ -656,7 +656,7 @@ static void copy_pose_channel_data(bPoseChannel *pchan, const bPoseChannel *chan
pchan->flag= chan->flag;
con= chan->constraints.first;
- for(pcon= pchan->constraints.first; pcon && con; pcon= pcon->next, con= con->next) {
+ for (pcon= pchan->constraints.first; pcon && con; pcon= pcon->next, con= con->next) {
pcon->enforce= con->enforce;
pcon->headtail= con->headtail;
}
@@ -689,13 +689,13 @@ void duplicate_pose_channel_data(bPoseChannel *pchan, const bPoseChannel *pchan_
copy_constraints(&pchan->constraints, &pchan_from->constraints, TRUE);
/* id-properties */
- if(pchan->prop) {
+ if (pchan->prop) {
/* unlikely but possible it exists */
IDP_FreeProperty(pchan->prop);
MEM_freeN(pchan->prop);
pchan->prop= NULL;
}
- if(pchan_from->prop) {
+ if (pchan_from->prop) {
pchan->prop= IDP_CopyProperty(pchan_from->prop);
}
@@ -727,19 +727,19 @@ void update_pose_constraint_flags(bPose *pose)
pchan->constflag |= PCHAN_HAS_IK;
- if(data->tar==NULL || (data->tar->type==OB_ARMATURE && data->subtarget[0]==0))
+ if (data->tar==NULL || (data->tar->type==OB_ARMATURE && data->subtarget[0]==0))
pchan->constflag |= PCHAN_HAS_TARGET;
/* negative rootbone = recalc rootbone index. used in do_versions */
- if(data->rootbone<0) {
+ if (data->rootbone<0) {
data->rootbone= 0;
- if(data->flag & CONSTRAINT_IK_TIP) parchan= pchan;
+ if (data->flag & CONSTRAINT_IK_TIP) parchan= pchan;
else parchan= pchan->parent;
- while(parchan) {
+ while (parchan) {
data->rootbone++;
- if((parchan->bone->flag & BONE_CONNECTED)==0)
+ if ((parchan->bone->flag & BONE_CONNECTED)==0)
break;
parchan= parchan->parent;
}
@@ -837,7 +837,7 @@ void pose_remove_group (Object *ob)
/* now, remove it from the pose */
BLI_freelinkN(&pose->agroups, grp);
pose->active_group--;
- if(pose->active_group < 0 || pose->agroups.first == NULL) {
+ if (pose->active_group < 0 || pose->agroups.first == NULL) {
pose->active_group= 0;
}
}
@@ -932,7 +932,7 @@ void calc_action_range(const bAction *act, float *start, float *end, short incl_
}
if (foundvert || foundmod) {
- if(min==max) max+= 1.0f;
+ if (min==max) max+= 1.0f;
*start= min;
*end= max;
}
@@ -1097,7 +1097,7 @@ void copy_pose_result(bPose *to, bPose *from)
{
bPoseChannel *pchanto, *pchanfrom;
- if(to==NULL || from==NULL) {
+ if (to==NULL || from==NULL) {
printf("pose result copy error to:%p from:%p\n", (void *)to, (void *)from); // debug temp
return;
}
@@ -1108,9 +1108,9 @@ void copy_pose_result(bPose *to, bPose *from)
}
- for(pchanfrom= from->chanbase.first; pchanfrom; pchanfrom= pchanfrom->next) {
+ for (pchanfrom= from->chanbase.first; pchanfrom; pchanfrom= pchanfrom->next) {
pchanto= get_pose_channel(to, pchanfrom->name);
- if(pchanto) {
+ if (pchanto) {
copy_m4_m4(pchanto->pose_mat, pchanfrom->pose_mat);
copy_m4_m4(pchanto->chan_mat, pchanfrom->chan_mat);
@@ -1237,15 +1237,15 @@ static void blend_pose_offset_bone(bActionStrip *strip, bPose *dst, bPose *src,
/* matching offset bones */
/* take dst offset, and put src on on that location */
- if(strip->offs_bone[0]==0)
+ if (strip->offs_bone[0]==0)
return;
/* are we also blending with matching bones? */
- if(strip->prev && strip->start>=strip->prev->start) {
+ if (strip->prev && strip->start>=strip->prev->start) {
bPoseChannel *dpchan= get_pose_channel(dst, strip->offs_bone);
- if(dpchan) {
+ if (dpchan) {
bPoseChannel *spchan= get_pose_channel(src, strip->offs_bone);
- if(spchan) {
+ if (spchan) {
float vec[3];
/* dst->ctime has the internal strip->prev action time */
@@ -1253,7 +1253,7 @@ static void blend_pose_offset_bone(bActionStrip *strip, bPose *dst, bPose *src,
float ctime= get_actionstrip_frame(strip, src->ctime, 1);
- if( ctime > strip->prev->end) {
+ if ( ctime > strip->prev->end) {
bActionChannel *achan;
/* add src to dest, minus the position of src on strip->prev->end */
@@ -1261,7 +1261,7 @@ static void blend_pose_offset_bone(bActionStrip *strip, bPose *dst, bPose *src,
ctime= get_actionstrip_frame(strip, strip->prev->end, 0);
achan= get_action_channel(strip->act, strip->offs_bone);
- if(achan && achan->ipo) {
+ if (achan && achan->ipo) {
bPoseChannel pchan;
/* Evaluates and sets the internal ipo value */
calc_ipo(achan->ipo, ctime);
@@ -1302,19 +1302,19 @@ static float stridechannel_frame(Object *ob, float sizecorr, bActionStrip *strip
bActionChannel *achan= get_action_channel(act, name);
int stride_axis= strip->stride_axis;
- if(achan && achan->ipo) {
+ if (achan && achan->ipo) {
IpoCurve *icu= NULL;
float minx=0.0f, maxx=0.0f, miny=0.0f, maxy=0.0f;
int foundvert= 0;
- if(stride_axis==0) stride_axis= AC_LOC_X;
- else if(stride_axis==1) stride_axis= AC_LOC_Y;
+ if (stride_axis==0) stride_axis= AC_LOC_X;
+ else if (stride_axis==1) stride_axis= AC_LOC_Y;
else stride_axis= AC_LOC_Z;
/* calculate the min/max */
for (icu=achan->ipo->curve.first; icu; icu=icu->next) {
- if(icu->adrcode==stride_axis) {
- if(icu->totvert>1) {
+ if (icu->adrcode==stride_axis) {
+ if (icu->totvert>1) {
foundvert= 1;
minx= icu->bezt[0].vec[1][0];
maxx= icu->bezt[icu->totvert-1].vec[1][0];
@@ -1326,7 +1326,7 @@ static float stridechannel_frame(Object *ob, float sizecorr, bActionStrip *strip
}
}
- if(foundvert && miny!=maxy) {
+ if (foundvert && miny!=maxy) {
float stridelen= sizecorr*fabs(maxy-miny), striptime;
float actiondist, pdist, pdistNewNormalized, offs;
float vec1[4], vec2[4], dir[3];
@@ -1366,10 +1366,10 @@ static float stridechannel_frame(Object *ob, float sizecorr, bActionStrip *strip
static void cyclic_offs_bone(Object *ob, bPose *pose, bActionStrip *strip, float time)
{
/* only called when strip has cyclic, so >= 1.0f works... */
- if(time >= 1.0f) {
+ if (time >= 1.0f) {
bActionChannel *achan= get_action_channel(strip->act, strip->offs_bone);
- if(achan && achan->ipo) {
+ if (achan && achan->ipo) {
IpoCurve *icu= NULL;
Bone *bone;
float min[3]={0.0f, 0.0f, 0.0f}, max[3]={0.0f, 0.0f, 0.0f};
@@ -1377,13 +1377,13 @@ static void cyclic_offs_bone(Object *ob, bPose *pose, bActionStrip *strip, float
/* calculate the min/max */
for (icu=achan->ipo->curve.first; icu; icu=icu->next) {
- if(icu->totvert>1) {
+ if (icu->totvert>1) {
- if(icu->adrcode==AC_LOC_X)
+ if (icu->adrcode==AC_LOC_X)
index= 0;
- else if(icu->adrcode==AC_LOC_Y)
+ else if (icu->adrcode==AC_LOC_Y)
index= 1;
- else if(icu->adrcode==AC_LOC_Z)
+ else if (icu->adrcode==AC_LOC_Z)
index= 2;
else
continue;
@@ -1393,11 +1393,11 @@ static void cyclic_offs_bone(Object *ob, bPose *pose, bActionStrip *strip, float
max[index]= icu->bezt[icu->totvert-1].vec[1][1];
}
}
- if(foundvert) {
+ if (foundvert) {
/* bring it into armature space */
sub_v3_v3v3(min, max, min);
bone= get_named_bone(ob->data, strip->offs_bone); /* weak */
- if(bone) {
+ if (bone) {
mul_mat3_m4_v3(bone->arm_mat, min);
/* dominant motion, cyclic_offset was cleared in rest_pose */
@@ -1405,10 +1405,11 @@ static void cyclic_offs_bone(Object *ob, bPose *pose, bActionStrip *strip, float
if (strip->flag & ACTSTRIP_CYCLIC_USEX) pose->cyclic_offset[0]= time*min[0];
if (strip->flag & ACTSTRIP_CYCLIC_USEY) pose->cyclic_offset[1]= time*min[1];
if (strip->flag & ACTSTRIP_CYCLIC_USEZ) pose->cyclic_offset[2]= time*min[2];
- } else {
- if( fabs(min[0]) >= fabs(min[1]) && fabs(min[0]) >= fabs(min[2]))
+ }
+ else {
+ if ( fabs(min[0]) >= fabs(min[1]) && fabs(min[0]) >= fabs(min[2]))
pose->cyclic_offset[0]= time*min[0];
- else if( fabs(min[1]) >= fabs(min[0]) && fabs(min[1]) >= fabs(min[2]))
+ else if ( fabs(min[1]) >= fabs(min[0]) && fabs(min[1]) >= fabs(min[2]))
pose->cyclic_offset[1]= time*min[1];
else
pose->cyclic_offset[2]= time*min[2];
@@ -1425,12 +1426,12 @@ static Object *get_parent_path(Object *ob)
{
bConstraint *con;
- if(ob->parent && ob->parent->type==OB_CURVE)
+ if (ob->parent && ob->parent->type==OB_CURVE)
return ob->parent;
for (con = ob->constraints.first; con; con=con->next) {
- if(con->type==CONSTRAINT_TYPE_FOLLOWPATH) {
- if(con->enforce>0.5f) {
+ if (con->type==CONSTRAINT_TYPE_FOLLOWPATH) {
+ if (con->enforce>0.5f) {
bFollowPathConstraint *data= con->data;
return data->tar;
}
@@ -1454,7 +1455,7 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
float scene_cfra= BKE_curframe(scene);
int doit, dostride;
- if(blocktype==ID_AR) {
+ if (blocktype==ID_AR) {
copy_pose(&tpose, ob->pose, 1);
rest_pose(ob->pose); // potentially destroying current not-keyed pose
}
@@ -1465,25 +1466,25 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
/* check on extend to left or right, when no strip is hit by 'cfra' */
for (strip=ob->nlastrips.first; strip; strip=strip->next) {
/* escape loop on a hit */
- if( scene_cfra >= strip->start && scene_cfra <= strip->end + 0.1f) /* note 0.1 comes back below */
+ if ( scene_cfra >= strip->start && scene_cfra <= strip->end + 0.1f) /* note 0.1 comes back below */
break;
- if(scene_cfra < strip->start) {
- if(stripfirst==NULL)
+ if (scene_cfra < strip->start) {
+ if (stripfirst==NULL)
stripfirst= strip;
- else if(stripfirst->start > strip->start)
+ else if (stripfirst->start > strip->start)
stripfirst= strip;
}
- else if(scene_cfra > strip->end) {
- if(striplast==NULL)
+ else if (scene_cfra > strip->end) {
+ if (striplast==NULL)
striplast= strip;
- else if(striplast->end < strip->end)
+ else if (striplast->end < strip->end)
striplast= strip;
}
}
- if(strip==NULL) { /* extend */
- if(striplast)
+ if (strip==NULL) { /* extend */
+ if (striplast)
scene_cfra= striplast->end;
- else if(stripfirst)
+ else if (stripfirst)
scene_cfra= stripfirst->start;
}
@@ -1501,7 +1502,7 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
if (striptime>=0.0) {
- if(blocktype==ID_AR)
+ if (blocktype==ID_AR)
rest_pose(tpose);
/* To handle repeat, we add 0.1 frame extra to make sure the last frame is included */
@@ -1517,20 +1518,20 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
if (cu->flag & CU_PATH) {
/* Ensure we have a valid path */
- if(cu->path==NULL || cu->path->data==NULL) makeDispListCurveTypes(scene, parent, 0);
- if(cu->path) {
+ if (cu->path==NULL || cu->path->data==NULL) makeDispListCurveTypes(scene, parent, 0);
+ if (cu->path) {
/* Find the position on the path */
ctime= bsystem_time(scene, ob, scene_cfra, 0.0);
- if(calc_ipo_spec(cu->ipo, CU_SPEED, &ctime)==0) {
+ if (calc_ipo_spec(cu->ipo, CU_SPEED, &ctime)==0) {
/* correct for actions not starting on zero */
ctime= (ctime - strip->actstart)/cu->pathlen;
CLAMP(ctime, 0.0, 1.0);
}
pdist = ctime*cu->path->totdist;
- if(tpose && strip->stridechannel[0]) {
+ if (tpose && strip->stridechannel[0]) {
striptime= stridechannel_frame(parent, ob->size[0], strip, cu->path, pdist, tpose->stride_offset);
}
else {
@@ -1545,12 +1546,12 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
frametime = (striptime * actlength) + strip->actstart;
frametime= bsystem_time(scene, ob, frametime, 0.0);
- if(blocktype==ID_AR) {
+ if (blocktype==ID_AR) {
extract_pose_from_action (tpose, strip->act, frametime);
}
- else if(blocktype==ID_OB) {
+ else if (blocktype==ID_OB) {
extract_ipochannels_from_action(&tchanbase, &ob->id, strip->act, "Object", frametime);
- if(key)
+ if (key)
extract_ipochannels_from_action(&tchanbase, &key->id, strip->act, "Shape", frametime);
}
doit=dostride= 1;
@@ -1562,25 +1563,25 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
else {
/* Mod to repeat */
- if(strip->repeat!=1.0f) {
+ if (strip->repeat!=1.0f) {
float cycle= striptime*strip->repeat;
striptime = (float)fmod (cycle, 1.0f + 0.1f/length);
cycle-= striptime;
- if(blocktype==ID_AR)
+ if (blocktype==ID_AR)
cyclic_offs_bone(ob, tpose, strip, cycle);
}
frametime = (striptime * actlength) + strip->actstart;
frametime= nla_time(scene, frametime, (float)strip->repeat);
- if(blocktype==ID_AR) {
+ if (blocktype==ID_AR) {
extract_pose_from_action (tpose, strip->act, frametime);
}
- else if(blocktype==ID_OB) {
+ else if (blocktype==ID_OB) {
extract_ipochannels_from_action(&tchanbase, &ob->id, strip->act, "Object", frametime);
- if(key)
+ if (key)
extract_ipochannels_from_action(&tchanbase, &key->id, strip->act, "Shape", frametime);
}
@@ -1593,20 +1594,20 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
/* we want the strip to hold on the exact fraction of the repeat value */
frametime = actlength * (strip->repeat-(int)strip->repeat);
- if(frametime<=0.000001f) frametime= actlength; /* rounding errors... */
+ if (frametime<=0.000001f) frametime= actlength; /* rounding errors... */
frametime= bsystem_time(scene, ob, frametime+strip->actstart, 0.0);
- if(blocktype==ID_AR)
+ if (blocktype==ID_AR)
extract_pose_from_action (tpose, strip->act, frametime);
- else if(blocktype==ID_OB) {
+ else if (blocktype==ID_OB) {
extract_ipochannels_from_action(&tchanbase, &ob->id, strip->act, "Object", frametime);
- if(key)
+ if (key)
extract_ipochannels_from_action(&tchanbase, &key->id, strip->act, "Shape", frametime);
}
/* handle cycle hold */
- if(strip->repeat!=1.0f) {
- if(blocktype==ID_AR)
+ if (strip->repeat!=1.0f) {
+ if (blocktype==ID_AR)
cyclic_offs_bone(ob, tpose, strip, strip->repeat-1.0f);
}
@@ -1627,12 +1628,12 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
else
blendfac = 1;
- if(blocktype==ID_AR) {/* Blend this pose with the accumulated pose */
+ if (blocktype==ID_AR) {/* Blend this pose with the accumulated pose */
/* offset bone, for matching cycles */
blend_pose_offset_bone (strip, ob->pose, tpose, blendfac, strip->mode);
blend_poses (ob->pose, tpose, blendfac, strip->mode);
- if(dostride)
+ if (dostride)
blend_pose_strides (ob->pose, tpose, blendfac, strip->mode);
}
else {
@@ -1644,10 +1645,10 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
}
}
- if(blocktype==ID_OB) {
+ if (blocktype==ID_OB) {
execute_ipochannels(&chanbase);
}
- else if(blocktype==ID_AR) {
+ else if (blocktype==ID_AR) {
/* apply stride offset to object */
add_v3_v3(ob->obmat[3], ob->pose->stride_offset);
}
@@ -1655,7 +1656,7 @@ static void do_nla(Scene *scene, Object *ob, int blocktype)
/* free */
if (tpose)
free_pose(tpose);
- if(chanbase.first)
+ if (chanbase.first)
BLI_freelistN(&chanbase);
}