2016-08-26 22:23:59 +00:00
|
|
|
#include "CFBStreamedCompression.hpp"
|
2016-09-04 02:27:35 +00:00
|
|
|
#include "CFBStreamedAnimReader.hpp"
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CFBStreamedCompression::CFBStreamedCompression(CInputStream& in, IObjectStore& objStore, bool pc) : m_pc(pc) {
|
|
|
|
x0_scratchSize = in.readUint32Big();
|
|
|
|
x4_evnt = in.readUint32Big();
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
xc_rotsAndOffs = GetRotationsAndOffsets(x0_scratchSize / 4 + 1, in);
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x4_evnt.IsValid())
|
|
|
|
x8_evntToken = objStore.GetObj(SObjectTag{FOURCC('EVNT'), x4_evnt});
|
2016-09-04 02:27:35 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
x10_averageVelocity = CalculateAverageVelocity(GetPerChannelHeaders());
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const u32* CFBStreamedCompression::GetTimes() const { return reinterpret_cast<const u32*>(xc_rotsAndOffs.get() + 9); }
|
2016-08-28 19:57:55 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const u8* CFBStreamedCompression::GetPerChannelHeaders() const {
|
|
|
|
const u32* bitmap = reinterpret_cast<const u32*>(xc_rotsAndOffs.get() + 9);
|
|
|
|
u32 bitmapWordCount = (bitmap[0] + 31) / 32;
|
|
|
|
return reinterpret_cast<const u8*>(bitmap + bitmapWordCount + 1);
|
2016-08-28 04:45:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const u8* CFBStreamedCompression::GetBitstreamPointer() const {
|
|
|
|
const u32* bitmap = reinterpret_cast<const u32*>(xc_rotsAndOffs.get() + 9);
|
|
|
|
u32 bitmapWordCount = (bitmap[0] + 31) / 32;
|
|
|
|
|
|
|
|
const u8* chans = reinterpret_cast<const u8*>(bitmap + bitmapWordCount + 1);
|
|
|
|
u32 boneChanCount = *reinterpret_cast<const u32*>(chans);
|
|
|
|
chans += 4;
|
|
|
|
|
|
|
|
if (m_pc) {
|
|
|
|
for (unsigned b = 0; b < boneChanCount; ++b) {
|
|
|
|
chans += 20;
|
|
|
|
|
|
|
|
u32 tCount = *reinterpret_cast<const u32*>(chans);
|
|
|
|
chans += 4;
|
|
|
|
if (tCount)
|
|
|
|
chans += 12;
|
2016-08-28 04:45:45 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
} else {
|
|
|
|
for (unsigned b = 0; b < boneChanCount; ++b) {
|
|
|
|
chans += 15;
|
|
|
|
|
|
|
|
u16 tCount = *reinterpret_cast<const u16*>(chans);
|
|
|
|
chans += 2;
|
|
|
|
if (tCount)
|
|
|
|
chans += 9;
|
2016-08-28 04:45:45 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-08-28 04:45:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return chans;
|
2016-08-28 04:45:45 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 10:04:11 +00:00
|
|
|
std::unique_ptr<u32[]> CFBStreamedCompression::GetRotationsAndOffsets(u32 words, CInputStream& in) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
std::unique_ptr<u32[]> ret(new u32[words]);
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
Header head;
|
|
|
|
head.read(in);
|
|
|
|
*reinterpret_cast<Header*>(ret.get()) = head;
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
u32* bitmapOut = &ret[9];
|
|
|
|
u32 bitmapBitCount = in.readUint32Big();
|
|
|
|
bitmapOut[0] = bitmapBitCount;
|
|
|
|
u32 bitmapWordCount = (bitmapBitCount + 31) / 32;
|
|
|
|
for (u32 i = 0; i < bitmapWordCount; ++i)
|
|
|
|
bitmapOut[i + 1] = in.readUint32Big();
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
in.readUint32Big();
|
|
|
|
u8* chans = reinterpret_cast<u8*>(bitmapOut + bitmapWordCount + 1);
|
|
|
|
u8* bs = ReadBoneChannelDescriptors(chans, in);
|
|
|
|
u32 bsWords = ComputeBitstreamWords(chans);
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
u32* bsPtr = reinterpret_cast<u32*>(bs);
|
|
|
|
for (u32 w = 0; w < bsWords; ++w)
|
|
|
|
bsPtr[w] = in.readUint32Big();
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return ret;
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 10:04:11 +00:00
|
|
|
u8* CFBStreamedCompression::ReadBoneChannelDescriptors(u8* out, CInputStream& in) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
u32 boneChanCount = in.readUint32Big();
|
|
|
|
*reinterpret_cast<u32*>(out) = boneChanCount;
|
|
|
|
out += 4;
|
|
|
|
|
|
|
|
if (m_pc) {
|
|
|
|
for (unsigned b = 0; b < boneChanCount; ++b) {
|
|
|
|
*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;
|
2016-08-27 01:02:12 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-08-27 01:02:12 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
} else {
|
|
|
|
for (unsigned 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();
|
|
|
|
out += 2;
|
|
|
|
*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;
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return out;
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 10:04:11 +00:00
|
|
|
u32 CFBStreamedCompression::ComputeBitstreamWords(const u8* chans) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
u32 boneChanCount = *reinterpret_cast<const u32*>(chans);
|
|
|
|
chans += 4;
|
|
|
|
|
|
|
|
u32 keyCount;
|
|
|
|
|
|
|
|
u32 totalBits = 0;
|
|
|
|
if (m_pc) {
|
|
|
|
keyCount = *reinterpret_cast<const u32*>(chans + 0x4);
|
|
|
|
for (u32 c = 0; c < boneChanCount; ++c) {
|
|
|
|
chans += 0x8;
|
|
|
|
totalBits += 1;
|
|
|
|
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;
|
|
|
|
}
|
2016-08-27 01:02:12 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
} else {
|
|
|
|
keyCount = *reinterpret_cast<const u16*>(chans + 0x4);
|
|
|
|
for (u32 c = 0; c < boneChanCount; ++c) {
|
|
|
|
chans += 0x6;
|
|
|
|
totalBits += 1;
|
|
|
|
totalBits += *reinterpret_cast<const u8*>(chans + 0x2);
|
|
|
|
totalBits += *reinterpret_cast<const u8*>(chans + 0x5);
|
|
|
|
totalBits += *reinterpret_cast<const u8*>(chans + 0x8);
|
|
|
|
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;
|
|
|
|
}
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-08-26 22:23:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return (totalBits * keyCount + 31) / 32;
|
2016-08-26 22:23:59 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 10:04:11 +00:00
|
|
|
float CFBStreamedCompression::CalculateAverageVelocity(const u8* chans) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
u32 boneChanCount = *reinterpret_cast<const u32*>(chans);
|
|
|
|
chans += 4;
|
|
|
|
|
|
|
|
u32 keyCount;
|
|
|
|
u32 rootIdx = 0;
|
|
|
|
if (m_pc) {
|
|
|
|
keyCount = *reinterpret_cast<const u32*>(chans + 0x4);
|
|
|
|
for (u32 c = 0; c < boneChanCount; ++c) {
|
|
|
|
u32 boneId = *reinterpret_cast<const u32*>(chans);
|
|
|
|
if (boneId == 3)
|
|
|
|
break;
|
|
|
|
++rootIdx;
|
|
|
|
|
|
|
|
chans += 0x8;
|
|
|
|
u32 tKeyCount = *reinterpret_cast<const u32*>(chans + 0xc);
|
|
|
|
chans += 0x10;
|
|
|
|
if (tKeyCount)
|
|
|
|
chans += 0xc;
|
2016-09-04 02:27:35 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
} else {
|
|
|
|
keyCount = *reinterpret_cast<const u16*>(chans + 0x4);
|
|
|
|
for (u32 c = 0; c < boneChanCount; ++c) {
|
|
|
|
u32 boneId = *reinterpret_cast<const u32*>(chans);
|
|
|
|
if (boneId == 3)
|
|
|
|
break;
|
|
|
|
++rootIdx;
|
|
|
|
|
|
|
|
chans += 0x6;
|
|
|
|
u16 tKeyCount = *reinterpret_cast<const u16*>(chans + 0x9);
|
|
|
|
chans += 0xb;
|
|
|
|
if (tKeyCount)
|
|
|
|
chans += 0x9;
|
2016-09-04 02:27:35 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CBitLevelLoader loader(GetBitstreamPointer());
|
|
|
|
CFBStreamedAnimReaderTotals tempTotals(*this);
|
|
|
|
tempTotals.CalculateDown();
|
|
|
|
const float* floats = tempTotals.GetFloats(rootIdx);
|
|
|
|
zeus::CVector3f transCompA(floats[4], floats[5], floats[6]);
|
2016-09-04 02:27:35 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
float accumMag = 0.f;
|
|
|
|
for (u32 i = 0; i < keyCount; ++i) {
|
|
|
|
tempTotals.IncrementInto(loader, *this, tempTotals);
|
2016-09-04 02:27:35 +00:00
|
|
|
tempTotals.CalculateDown();
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f transCompB(floats[4], floats[5], floats[6]);
|
|
|
|
accumMag += (transCompB - transCompA).magnitude();
|
|
|
|
transCompA = transCompB;
|
|
|
|
}
|
2016-09-04 02:27:35 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return accumMag / GetAnimationDuration().GetSeconds();
|
2016-09-04 02:27:35 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|