mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 18:24:55 +00:00
Define ChannelDescPC for 24-bit ANIM3
This commit is contained in:
@@ -3,6 +3,19 @@
|
||||
namespace urde
|
||||
{
|
||||
|
||||
void CFBStreamedAnimReaderTotals::Allocate(u32 chanCount)
|
||||
{
|
||||
u32 chan16 = chanCount * 16;
|
||||
u32 chan2 = chanCount * 2;
|
||||
u32 chan32 = chanCount * 32;
|
||||
|
||||
x0_buffer.reset(new u8[chan16 + chanCount + chan2 + chan32]);
|
||||
x4_first16 = x0_buffer.get();
|
||||
x8_second1 = x4_first16 + chan16;
|
||||
xc_third2 = x8_second1 + chanCount;
|
||||
x10_fourth32 = xc_third2 + chan2;
|
||||
}
|
||||
|
||||
CFBStreamedAnimReaderTotals::CFBStreamedAnimReaderTotals(const CFBStreamedCompression& source)
|
||||
{
|
||||
const CFBStreamedCompression::Header* header =
|
||||
@@ -16,13 +29,12 @@ CFBStreamedAnimReaderTotals::CFBStreamedAnimReaderTotals(const CFBStreamedCompre
|
||||
const u8* chans = reinterpret_cast<const u8*>(bitmap + bitmapWordCount + 1);
|
||||
u32 boneChanCount = *reinterpret_cast<const u32*>(chans);
|
||||
x24_boneChanCount = boneChanCount;
|
||||
Allocate(x24_boneChanCount);
|
||||
}
|
||||
|
||||
CFBStreamedPairOfTotals::CFBStreamedPairOfTotals(const TSubAnimTypeToken<CFBStreamedCompression>& source)
|
||||
: x0_source(source), xc_rotsAndOffs(source->xc_rotsAndOffs.get()), x14_(*source), x3c_(*source)
|
||||
{
|
||||
x0_source.Lock();
|
||||
|
||||
const u32* bitmap = reinterpret_cast<const u32*>(source->xc_rotsAndOffs.get() + 9);
|
||||
u32 bitmapWordCount = (bitmap[0] + 31) / 32;
|
||||
|
||||
@@ -30,15 +42,29 @@ CFBStreamedPairOfTotals::CFBStreamedPairOfTotals(const TSubAnimTypeToken<CFBStre
|
||||
u32 boneChanCount = *reinterpret_cast<const u32*>(chans);
|
||||
chans += 4;
|
||||
|
||||
for (int b=0 ; b<boneChanCount ; ++b)
|
||||
if (source->m_pc)
|
||||
{
|
||||
chans += 15;
|
||||
for (int b=0 ; b<boneChanCount ; ++b)
|
||||
{
|
||||
chans += 20;
|
||||
|
||||
u16 tCount = *reinterpret_cast<const u16*>(chans);
|
||||
chans += 2;
|
||||
u32 tCount = *reinterpret_cast<const u32*>(chans);
|
||||
chans += 4;
|
||||
if (tCount)
|
||||
chans += 12;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int b=0 ; b<boneChanCount ; ++b)
|
||||
{
|
||||
chans += 15;
|
||||
|
||||
if (tCount)
|
||||
chans += 9;
|
||||
u16 tCount = *reinterpret_cast<const u16*>(chans);
|
||||
chans += 2;
|
||||
if (tCount)
|
||||
chans += 9;
|
||||
}
|
||||
}
|
||||
|
||||
x88_ = chans;
|
||||
@@ -54,7 +80,6 @@ CFBStreamedAnimReader::CFBStreamedAnimReader(const TSubAnimTypeToken<CFBStreamed
|
||||
: CAnimSourceReaderBase(std::make_unique<TAnimSourceInfo<CFBStreamedCompression>>(source), time),
|
||||
x54_source(source), x7c_(source), x114_(x7c_.x10_ ? x7c_.x14_ : x7c_.x3c_)
|
||||
{
|
||||
x54_source.Lock();
|
||||
x64_steadyStateInfo.x64_duration = x54_source->GetAnimationDuration();
|
||||
x64_steadyStateInfo.x6c_curRootOffset = x54_source->x14_rootOffset;
|
||||
|
||||
|
||||
@@ -24,15 +24,16 @@ public:
|
||||
class CFBStreamedAnimReaderTotals
|
||||
{
|
||||
std::unique_ptr<u8[]> x0_buffer;
|
||||
u32 x4_ = 0;
|
||||
u32 x8_ = 0;
|
||||
u32 xc_ = 0;
|
||||
u32 x10_ = 0;
|
||||
u8* x4_first16;
|
||||
u8* x8_second1;
|
||||
u8* xc_third2;
|
||||
u8* x10_fourth32;
|
||||
u32 x14_rotDiv;
|
||||
float x18_transMult;
|
||||
u32 x1c_ = 0;
|
||||
bool x20_ = false;
|
||||
u32 x24_boneChanCount;
|
||||
void Allocate(u32 chanCount);
|
||||
public:
|
||||
CFBStreamedAnimReaderTotals(const CFBStreamedCompression& source);
|
||||
};
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CFBStreamedCompression::CFBStreamedCompression(CInputStream& in, IObjectStore& objStore)
|
||||
CFBStreamedCompression::CFBStreamedCompression(CInputStream& in, IObjectStore& objStore, bool pc)
|
||||
: m_pc(pc)
|
||||
{
|
||||
x0_scratchSize = in.readUint32Big();
|
||||
x4_evnt = in.readUint32Big();
|
||||
@@ -47,28 +48,46 @@ u8* CFBStreamedCompression::ReadBoneChannelDescriptors(u8* out, CInputStream& in
|
||||
*reinterpret_cast<u32*>(out) = boneChanCount;
|
||||
out += 4;
|
||||
|
||||
for (int b=0 ; b<boneChanCount ; ++b)
|
||||
if (m_pc)
|
||||
{
|
||||
*reinterpret_cast<u32*>(out) = in.readUint32Big();
|
||||
out += 4;
|
||||
|
||||
*reinterpret_cast<u16*>(out) = in.readUint16Big();
|
||||
out += 2;
|
||||
|
||||
for (int i=0 ; i<3 ; ++i)
|
||||
for (int b=0 ; b<boneChanCount ; ++b)
|
||||
{
|
||||
*reinterpret_cast<s16*>(out) = in.readInt16Big();
|
||||
out += 2;
|
||||
*reinterpret_cast<u8*>(out) = in.readUByte();
|
||||
out += 1;
|
||||
*reinterpret_cast<u32*>(out) = in.readUint32Big();
|
||||
out += 4;
|
||||
|
||||
*reinterpret_cast<u32*>(out) = in.readUint32Big();
|
||||
out += 4;
|
||||
|
||||
for (int i=0 ; i<3 ; ++i)
|
||||
{
|
||||
*reinterpret_cast<u32*>(out) = in.readUint32Big();
|
||||
out += 4;
|
||||
}
|
||||
|
||||
u32 tCount = in.readUint32Big();
|
||||
*reinterpret_cast<u32*>(out) = tCount;
|
||||
out += 4;
|
||||
|
||||
if (tCount)
|
||||
{
|
||||
for (int i=0 ; i<3 ; ++i)
|
||||
{
|
||||
*reinterpret_cast<u32*>(out) = in.readUint32Big();
|
||||
out += 4;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
u16 tCount = in.readUint16Big();
|
||||
*reinterpret_cast<u16*>(out) = tCount;
|
||||
out += 2;
|
||||
|
||||
if (tCount)
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int b=0 ; b<boneChanCount ; ++b)
|
||||
{
|
||||
*reinterpret_cast<u32*>(out) = in.readUint32Big();
|
||||
out += 4;
|
||||
|
||||
*reinterpret_cast<u16*>(out) = in.readUint16Big();
|
||||
out += 2;
|
||||
|
||||
for (int i=0 ; i<3 ; ++i)
|
||||
{
|
||||
*reinterpret_cast<s16*>(out) = in.readInt16Big();
|
||||
@@ -76,6 +95,21 @@ u8* CFBStreamedCompression::ReadBoneChannelDescriptors(u8* out, CInputStream& in
|
||||
*reinterpret_cast<u8*>(out) = in.readUByte();
|
||||
out += 1;
|
||||
}
|
||||
|
||||
u16 tCount = in.readUint16Big();
|
||||
*reinterpret_cast<u16*>(out) = tCount;
|
||||
out += 2;
|
||||
|
||||
if (tCount)
|
||||
{
|
||||
for (int i=0 ; i<3 ; ++i)
|
||||
{
|
||||
*reinterpret_cast<s16*>(out) = in.readInt16Big();
|
||||
out += 2;
|
||||
*reinterpret_cast<u8*>(out) = in.readUByte();
|
||||
out += 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -87,22 +121,47 @@ u32 CFBStreamedCompression::ComputeBitstreamWords(const u8* chans)
|
||||
u32 boneChanCount = *reinterpret_cast<const u32*>(chans);
|
||||
chans += 4;
|
||||
|
||||
u16 keyCount = *reinterpret_cast<const u16*>(chans);
|
||||
u32 keyCount;
|
||||
|
||||
u32 totalBits = 0;
|
||||
for (u32 c=0 ; c<boneChanCount ; ++c)
|
||||
if (m_pc)
|
||||
{
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x8);
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0xb);
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0xe);
|
||||
u16 tKeyCount = *reinterpret_cast<const u16*>(chans + 0xf);
|
||||
chans += 0x11;
|
||||
if (tKeyCount)
|
||||
keyCount = *reinterpret_cast<const u32*>(chans + 0x4);
|
||||
for (u32 c=0 ; c<boneChanCount ; ++c)
|
||||
{
|
||||
chans += 0x8;
|
||||
totalBits += *reinterpret_cast<const u32*>(chans) & 0xff;
|
||||
totalBits += *reinterpret_cast<const u32*>(chans + 0x4) & 0xff;
|
||||
totalBits += *reinterpret_cast<const u32*>(chans + 0x8) & 0xff;
|
||||
u32 tKeyCount = *reinterpret_cast<const u32*>(chans + 0xc);
|
||||
chans += 0x10;
|
||||
if (tKeyCount)
|
||||
{
|
||||
totalBits += *reinterpret_cast<const u32*>(chans) & 0xff;
|
||||
totalBits += *reinterpret_cast<const u32*>(chans + 0x4) & 0xff;
|
||||
totalBits += *reinterpret_cast<const u32*>(chans + 0x8) & 0xff;
|
||||
chans += 0xc;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
keyCount = *reinterpret_cast<const u16*>(chans + 0x4);
|
||||
for (u32 c=0 ; c<boneChanCount ; ++c)
|
||||
{
|
||||
chans += 0x6;
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x2);
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x5);
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x8);
|
||||
chans += 0x9;
|
||||
u16 tKeyCount = *reinterpret_cast<const u16*>(chans + 0x9);
|
||||
chans += 0xb;
|
||||
if (tKeyCount)
|
||||
{
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x2);
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x5);
|
||||
totalBits += *reinterpret_cast<const u8*>(chans + 0x8);
|
||||
chans += 0x9;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -51,17 +51,18 @@ class CFBStreamedCompression
|
||||
}
|
||||
};
|
||||
|
||||
bool m_pc;
|
||||
u32 x0_scratchSize;
|
||||
ResId x4_evnt;
|
||||
TLockedToken<CAnimPOIData> x8_evntToken;
|
||||
std::unique_ptr<u32[]> xc_rotsAndOffs;
|
||||
zeus::CVector3f x14_rootOffset;
|
||||
|
||||
static u8* ReadBoneChannelDescriptors(u8* out, CInputStream& in);
|
||||
static std::unique_ptr<u32[]> GetRotationsAndOffsets(u32 words, CInputStream& in);
|
||||
static u32 ComputeBitstreamWords(const u8* chans);
|
||||
u8* ReadBoneChannelDescriptors(u8* out, CInputStream& in);
|
||||
u32 ComputeBitstreamWords(const u8* chans);
|
||||
std::unique_ptr<u32[]> GetRotationsAndOffsets(u32 words, CInputStream& in);
|
||||
public:
|
||||
CFBStreamedCompression(CInputStream& in, IObjectStore& objStore);
|
||||
CFBStreamedCompression(CInputStream& in, IObjectStore& objStore, bool pc);
|
||||
CCharAnimTime GetAnimationDuration() const { return reinterpret_cast<const Header*>(xc_rotsAndOffs.get())->duration; }
|
||||
const TLockedToken<CAnimPOIData>& GetPOIToken() const { return x8_evntToken; }
|
||||
};
|
||||
|
||||
@@ -38,7 +38,7 @@ struct CSteadyStateAnimInfo
|
||||
};
|
||||
|
||||
template <class T>
|
||||
using TSubAnimTypeToken = TCachedToken<T>;
|
||||
using TSubAnimTypeToken = TLockedToken<T>;
|
||||
|
||||
class IAnimReader
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user