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 "AnimBlendSequence.h"
|
|
|
|
#include "AnimBlendHierarchy.h"
|
|
|
|
|
|
|
|
CAnimBlendHierarchy::CAnimBlendHierarchy(void)
|
|
|
|
{
|
|
|
|
sequences = nil;
|
|
|
|
numSequences = 0;
|
|
|
|
compressed = 0;
|
|
|
|
totalLength = 0.0f;
|
2019-06-30 10:53:39 +00:00
|
|
|
linkPtr = nil;
|
2019-06-11 06:59:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::Shutdown(void)
|
|
|
|
{
|
|
|
|
RemoveAnimSequences();
|
|
|
|
compressed = 0;
|
|
|
|
linkPtr = nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::SetName(char *name)
|
|
|
|
{
|
|
|
|
strncpy(this->name, name, 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::CalcTotalTime(void)
|
|
|
|
{
|
|
|
|
int i, j;
|
2020-11-16 21:43:15 +00:00
|
|
|
totalLength = 0.0f;
|
2019-06-11 06:59:28 +00:00
|
|
|
|
|
|
|
for(i = 0; i < numSequences; i++){
|
|
|
|
float seqTime = 0.0f;
|
|
|
|
for(j = 0; j < sequences[i].numFrames; j++)
|
|
|
|
seqTime += sequences[i].GetKeyFrame(j)->deltaTime;
|
2020-11-16 21:43:15 +00:00
|
|
|
totalLength = Max(totalLength, seqTime);
|
2019-06-11 06:59:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::RemoveQuaternionFlips(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0; i < numSequences; i++)
|
|
|
|
sequences[i].RemoveQuaternionFlips();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::RemoveAnimSequences(void)
|
|
|
|
{
|
|
|
|
if(sequences)
|
|
|
|
delete[] sequences;
|
|
|
|
numSequences = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::Uncompress(void)
|
|
|
|
{
|
2020-11-16 21:43:15 +00:00
|
|
|
#ifdef ANIM_COMPRESSION
|
|
|
|
int i;
|
|
|
|
assert(compressed);
|
|
|
|
for(i = 0; i < numSequences; i++)
|
|
|
|
sequences[i].Uncompress();
|
|
|
|
#endif
|
2019-06-11 06:59:28 +00:00
|
|
|
if(totalLength == 0.0f)
|
|
|
|
CalcTotalTime();
|
|
|
|
compressed = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::RemoveUncompressedData(void)
|
|
|
|
{
|
2020-11-16 21:43:15 +00:00
|
|
|
#ifdef ANIM_COMPRESSION
|
|
|
|
int i;
|
|
|
|
assert(!compressed);
|
|
|
|
for(i = 0; i < numSequences; i++)
|
|
|
|
sequences[i].RemoveUncompressedData();
|
|
|
|
#endif
|
2019-06-11 06:59:28 +00:00
|
|
|
compressed = 1;
|
|
|
|
}
|
2020-12-01 16:42:18 +00:00
|
|
|
|
|
|
|
#ifdef USE_CUSTOM_ALLOCATOR
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::MoveMemory(bool onlyone)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < numSequences; i++)
|
|
|
|
if(sequences[i].MoveMemory() && onlyone)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|