2019-06-11 02:59:28 -04:00
|
|
|
#include "common.h"
|
2020-04-17 09:31:11 -04:00
|
|
|
|
2019-06-11 02:59:28 -04:00
|
|
|
#include "AnimBlendSequence.h"
|
|
|
|
#include "AnimBlendHierarchy.h"
|
|
|
|
|
|
|
|
CAnimBlendHierarchy::CAnimBlendHierarchy(void)
|
|
|
|
{
|
|
|
|
sequences = nil;
|
|
|
|
numSequences = 0;
|
|
|
|
compressed = 0;
|
|
|
|
totalLength = 0.0f;
|
2019-06-30 06:53:39 -04:00
|
|
|
linkPtr = nil;
|
2019-06-11 02:59:28 -04: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 16:43:15 -05:00
|
|
|
totalLength = 0.0f;
|
2019-06-11 02:59:28 -04: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 16:43:15 -05:00
|
|
|
totalLength = Max(totalLength, seqTime);
|
2019-06-11 02:59:28 -04: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 16:43:15 -05:00
|
|
|
#ifdef ANIM_COMPRESSION
|
|
|
|
int i;
|
|
|
|
assert(compressed);
|
|
|
|
for(i = 0; i < numSequences; i++)
|
|
|
|
sequences[i].Uncompress();
|
|
|
|
#endif
|
2019-06-11 02:59:28 -04:00
|
|
|
if(totalLength == 0.0f)
|
|
|
|
CalcTotalTime();
|
|
|
|
compressed = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendHierarchy::RemoveUncompressedData(void)
|
|
|
|
{
|
2020-11-16 16:43:15 -05:00
|
|
|
#ifdef ANIM_COMPRESSION
|
|
|
|
int i;
|
|
|
|
assert(!compressed);
|
|
|
|
for(i = 0; i < numSequences; i++)
|
|
|
|
sequences[i].RemoveUncompressedData();
|
|
|
|
#endif
|
2019-06-11 02:59:28 -04:00
|
|
|
compressed = 1;
|
|
|
|
}
|