2019-06-11 06:59:28 +00:00
|
|
|
#include "common.h"
|
2020-04-17 13:31:11 +00:00
|
|
|
|
2019-06-11 06:59:28 +00:00
|
|
|
#include "AnimBlendHierarchy.h"
|
|
|
|
#include "AnimBlendClumpData.h"
|
|
|
|
#include "RpAnimBlend.h"
|
|
|
|
#include "AnimManager.h"
|
|
|
|
#include "AnimBlendAssociation.h"
|
2020-11-28 15:16:15 +00:00
|
|
|
#include "MemoryMgr.h"
|
2019-06-11 06:59:28 +00:00
|
|
|
|
|
|
|
CAnimBlendAssociation::CAnimBlendAssociation(void)
|
|
|
|
{
|
|
|
|
nodes = nil;
|
|
|
|
blendAmount = 1.0f;
|
|
|
|
blendDelta = 0.0f;
|
|
|
|
currentTime = 0.0f;
|
|
|
|
speed = 1.0f;
|
|
|
|
timeStep = 0.0f;
|
|
|
|
animId = -1;
|
|
|
|
flags = 0;
|
|
|
|
callbackType = CB_NONE;
|
|
|
|
link.Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimBlendAssociation::CAnimBlendAssociation(CAnimBlendAssociation &other)
|
|
|
|
{
|
|
|
|
nodes = nil;
|
|
|
|
blendAmount = 1.0f;
|
|
|
|
blendDelta = 0.0f;
|
|
|
|
currentTime = 0.0f;
|
|
|
|
speed = 1.0f;
|
|
|
|
timeStep = 0.0f;
|
|
|
|
callbackType = CB_NONE;
|
|
|
|
link.Init();
|
|
|
|
Init(other);
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimBlendAssociation::~CAnimBlendAssociation(void)
|
|
|
|
{
|
|
|
|
FreeAnimBlendNodeArray();
|
|
|
|
link.Remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::AllocateAnimBlendNodeArray(int n)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nodes = (CAnimBlendNode*)RwMallocAlign(n*sizeof(CAnimBlendNode), 64);
|
|
|
|
for(i = 0; i < n; i++)
|
|
|
|
nodes[i].Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::FreeAnimBlendNodeArray(void)
|
|
|
|
{
|
2019-06-17 21:31:00 +00:00
|
|
|
assert(nodes != nil);
|
2019-06-11 06:59:28 +00:00
|
|
|
RwFreeAlign(nodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::Init(RpClump *clump, CAnimBlendHierarchy *hier)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
AnimBlendFrameData *frame;
|
|
|
|
|
|
|
|
CAnimBlendClumpData *clumpData = *RPANIMBLENDCLUMPDATA(clump);
|
|
|
|
numNodes = clumpData->numFrames;
|
|
|
|
AllocateAnimBlendNodeArray(numNodes);
|
|
|
|
for(i = 0; i < numNodes; i++)
|
|
|
|
nodes[i].association = this;
|
|
|
|
hierarchy = hier;
|
|
|
|
|
|
|
|
// Init every node from a sequence and a Clump frame
|
|
|
|
// NB: This is where the order of nodes is defined
|
|
|
|
for(i = 0; i < hier->numSequences; i++){
|
|
|
|
CAnimBlendSequence *seq = &hier->sequences[i];
|
|
|
|
frame = RpAnimBlendClumpFindFrame(clump, seq->name);
|
|
|
|
if(frame && seq->numFrames > 0)
|
|
|
|
nodes[frame - clumpData->frames].sequence = seq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::Init(CAnimBlendAssociation &assoc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
hierarchy = assoc.hierarchy;
|
|
|
|
numNodes = assoc.numNodes;
|
|
|
|
flags = assoc.flags;
|
|
|
|
animId = assoc.animId;
|
|
|
|
AllocateAnimBlendNodeArray(numNodes);
|
|
|
|
for(i = 0; i < numNodes; i++){
|
|
|
|
nodes[i] = assoc.nodes[i];
|
|
|
|
nodes[i].association = this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::SetBlend(float amount, float delta)
|
|
|
|
{
|
|
|
|
blendAmount = amount;
|
|
|
|
blendDelta = delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::SetFinishCallback(void (*cb)(CAnimBlendAssociation*, void*), void *arg)
|
|
|
|
{
|
|
|
|
callbackType = CB_FINISH;
|
|
|
|
callback = cb;
|
|
|
|
callbackArg = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::SetDeleteCallback(void (*cb)(CAnimBlendAssociation*, void*), void *arg)
|
|
|
|
{
|
|
|
|
callbackType = CB_DELETE;
|
|
|
|
callback = cb;
|
|
|
|
callbackArg = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::SetCurrentTime(float time)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(currentTime = time; currentTime >= hierarchy->totalLength; currentTime -= hierarchy->totalLength)
|
|
|
|
if(!IsRepeating())
|
|
|
|
return;
|
|
|
|
CAnimManager::UncompressAnimation(hierarchy);
|
|
|
|
for(i = 0; i < numNodes; i++)
|
|
|
|
if(nodes[i].sequence)
|
|
|
|
nodes[i].FindKeyFrame(currentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::SyncAnimation(CAnimBlendAssociation *other)
|
|
|
|
{
|
|
|
|
SetCurrentTime(other->currentTime/other->hierarchy->totalLength * hierarchy->totalLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssociation::Start(float time)
|
|
|
|
{
|
|
|
|
flags |= ASSOC_RUNNING;
|
|
|
|
SetCurrentTime(time);
|
|
|
|
}
|
|
|
|
|
2020-05-08 18:58:40 +00:00
|
|
|
bool
|
2019-06-11 06:59:28 +00:00
|
|
|
CAnimBlendAssociation::UpdateTime(float timeDelta, float relSpeed)
|
|
|
|
{
|
|
|
|
if(!IsRunning())
|
2020-05-08 18:58:40 +00:00
|
|
|
return true;
|
2019-06-11 06:59:28 +00:00
|
|
|
|
|
|
|
timeStep = (flags & ASSOC_MOVEMENT ? relSpeed*hierarchy->totalLength : speed) * timeDelta;
|
|
|
|
currentTime += timeStep;
|
|
|
|
|
|
|
|
if(currentTime >= hierarchy->totalLength){
|
|
|
|
// Ran past end
|
|
|
|
|
|
|
|
if(IsRepeating())
|
|
|
|
currentTime -= hierarchy->totalLength;
|
|
|
|
else{
|
|
|
|
currentTime = hierarchy->totalLength;
|
|
|
|
flags &= ~ASSOC_RUNNING;
|
|
|
|
if(flags & ASSOC_FADEOUTWHENDONE){
|
|
|
|
flags |= ASSOC_DELETEFADEDOUT;
|
|
|
|
blendDelta = -4.0f;
|
|
|
|
}
|
|
|
|
if(callbackType == CB_FINISH){
|
|
|
|
callbackType = CB_NONE;
|
|
|
|
callback(this, callbackArg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 18:58:40 +00:00
|
|
|
return true;
|
2019-06-11 06:59:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// return whether we still exist after this function
|
|
|
|
bool
|
|
|
|
CAnimBlendAssociation::UpdateBlend(float timeDelta)
|
|
|
|
{
|
|
|
|
blendAmount += blendDelta * timeDelta;
|
|
|
|
|
|
|
|
if(blendAmount <= 0.0f && blendDelta < 0.0f){
|
|
|
|
// We're faded out and are not fading in
|
|
|
|
blendAmount = 0.0f;
|
2020-04-19 16:34:08 +00:00
|
|
|
blendDelta = Max(0.0f, blendDelta);
|
2019-06-11 06:59:28 +00:00
|
|
|
if(flags & ASSOC_DELETEFADEDOUT){
|
|
|
|
if(callbackType == CB_FINISH || callbackType == CB_DELETE)
|
|
|
|
callback(this, callbackArg);
|
|
|
|
delete this;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(blendAmount > 1.0f){
|
|
|
|
// Maximally faded in, clamp values
|
|
|
|
blendAmount = 1.0f;
|
2020-04-19 16:34:08 +00:00
|
|
|
blendDelta = Min(0.0f, blendDelta);
|
2019-06-11 06:59:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|