metaforce/Runtime/Character/CAllFormatsAnimSource.hpp

48 lines
1.3 KiB
C++
Raw Normal View History

2016-04-11 23:35:37 +00:00
#ifndef __PSHAG_CALLFORMATANIMSOURCE_HPP__
#define __PSHAG_CALLFORMATANIMSOURCE_HPP__
#include "RetroTypes.hpp"
#include "zeus/CVector3f.hpp"
#include "CAnimSource.hpp"
2016-04-12 06:15:32 +00:00
#include "CFactoryMgr.hpp"
2016-04-11 23:35:37 +00:00
namespace urde
{
class IObjectStore;
2016-04-12 06:15:32 +00:00
class CAnimSourceReaderBase;
2016-04-11 23:35:37 +00:00
enum class EAnimFormat
{
Uncompressed,
Unknown,
BitstreamCompressed
};
class CAnimFormatUnion
{
EAnimFormat x0_format;
u8 x4_storage[sizeof(CAnimSource)];
static void SubConstruct(u8* storage, EAnimFormat fmt,
CInputStream& in, IObjectStore& store);
public:
CAnimFormatUnion(CInputStream& in, IObjectStore& store);
2016-04-12 06:15:32 +00:00
~CAnimFormatUnion();
2016-04-11 23:35:37 +00:00
operator CAnimSource&() {return *reinterpret_cast<CAnimSource*>(x4_storage);}
};
class CAllFormatsAnimSource : public CAnimFormatUnion
{
zeus::CVector3f x68_;
SObjectTag x74_tag;
public:
CAllFormatsAnimSource(CInputStream& in, IObjectStore& store, const SObjectTag& tag);
2016-04-12 06:15:32 +00:00
static std::shared_ptr<CAnimSourceReaderBase> GetNewReader(const TLockedToken<CAllFormatsAnimSource>& tok,
const CCharAnimTime& startTime);
2016-04-11 23:35:37 +00:00
};
2016-04-12 06:15:32 +00:00
CFactoryFnReturn AnimSourceFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& params);
2016-04-11 23:35:37 +00:00
}
#endif // __PSHAG_CALLFORMATANIMSOURCE_HPP__