mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-02 14:04:14 +01:00
36 lines
760 B
C++
36 lines
760 B
C++
#pragma once
|
|
|
|
#include "templates.h"
|
|
|
|
#ifdef MoveMemory
|
|
#undef MoveMemory // windows shit
|
|
#endif
|
|
|
|
class CAnimBlendSequence;
|
|
|
|
// A collection of sequences
|
|
class CAnimBlendHierarchy
|
|
{
|
|
public:
|
|
char name[24];
|
|
CAnimBlendSequence *sequences;
|
|
int16 numSequences;
|
|
bool compressed;
|
|
bool keepCompressed;
|
|
float totalLength;
|
|
CLink<CAnimBlendHierarchy*> *linkPtr;
|
|
|
|
CAnimBlendHierarchy(void);
|
|
void Shutdown(void);
|
|
void SetName(char *name);
|
|
void CalcTotalTime(void);
|
|
void CalcTotalTimeCompressed(void);
|
|
void RemoveQuaternionFlips(void);
|
|
void RemoveAnimSequences(void);
|
|
void Uncompress(void);
|
|
void RemoveUncompressedData(void);
|
|
void MoveMemory(bool onlyone = false);
|
|
bool IsCompressed() { return !!compressed; };
|
|
};
|
|
|
|
VALIDATE_SIZE(CAnimBlendHierarchy, 0x28); |