2015-07-06 02:07:57 +00:00
|
|
|
#include "PAK.hpp"
|
2015-07-16 01:57:34 +00:00
|
|
|
#include "DNAMP3.hpp"
|
2015-07-06 02:07:57 +00:00
|
|
|
|
2015-07-10 05:28:08 +00:00
|
|
|
namespace Retro
|
2015-07-06 02:07:57 +00:00
|
|
|
{
|
2015-07-10 05:28:08 +00:00
|
|
|
namespace DNAMP3
|
2015-07-06 02:07:57 +00:00
|
|
|
{
|
|
|
|
|
2015-07-14 00:38:48 +00:00
|
|
|
const HECL::FourCC CMPD("CMPD");
|
|
|
|
|
2015-07-10 05:28:08 +00:00
|
|
|
void PAK::read(Athena::io::IStreamReader& reader)
|
2015-07-06 02:07:57 +00:00
|
|
|
{
|
2015-07-10 05:28:08 +00:00
|
|
|
m_header.read(reader);
|
|
|
|
if (m_header.version != 2)
|
2015-07-16 01:57:34 +00:00
|
|
|
Log.report(LogVisor::FatalError, "unexpected PAK magic");
|
2015-07-06 02:07:57 +00:00
|
|
|
|
2015-07-10 05:28:08 +00:00
|
|
|
reader.seek(8, Athena::Current);
|
2015-08-14 03:00:51 +00:00
|
|
|
atUint32 strgSz = reader.readUint32Big();
|
2015-07-10 05:28:08 +00:00
|
|
|
reader.seek(4, Athena::Current);
|
2015-08-14 03:00:51 +00:00
|
|
|
atUint32 rshdSz = reader.readUint32Big();
|
2015-07-10 05:28:08 +00:00
|
|
|
reader.seek(44, Athena::Current);
|
2015-07-14 00:38:48 +00:00
|
|
|
atUint32 dataOffset = 128 + strgSz + rshdSz;
|
2015-07-06 02:07:57 +00:00
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
atUint64 strgBase = reader.position();
|
2015-08-14 03:00:51 +00:00
|
|
|
atUint32 nameCount = reader.readUint32Big();
|
2015-07-10 05:28:08 +00:00
|
|
|
m_nameEntries.clear();
|
|
|
|
m_nameEntries.reserve(nameCount);
|
|
|
|
for (atUint32 n=0 ; n<nameCount ; ++n)
|
|
|
|
{
|
|
|
|
m_nameEntries.emplace_back();
|
|
|
|
m_nameEntries.back().read(reader);
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
reader.seek(strgBase + strgSz, Athena::Begin);
|
2015-07-06 02:07:57 +00:00
|
|
|
|
2015-08-14 03:00:51 +00:00
|
|
|
atUint32 count = reader.readUint32Big();
|
2015-07-10 05:28:08 +00:00
|
|
|
m_entries.clear();
|
|
|
|
m_entries.reserve(count);
|
|
|
|
m_idMap.clear();
|
|
|
|
m_idMap.reserve(count);
|
|
|
|
for (atUint32 e=0 ; e<count ; ++e)
|
|
|
|
{
|
|
|
|
m_entries.emplace_back();
|
|
|
|
m_entries.back().read(reader);
|
2015-07-14 00:38:48 +00:00
|
|
|
m_entries.back().offset += dataOffset;
|
2015-07-10 05:28:08 +00:00
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
for (Entry& entry : m_entries)
|
|
|
|
m_idMap[entry.id] = &entry;
|
2015-07-10 05:28:08 +00:00
|
|
|
|
|
|
|
m_nameMap.clear();
|
|
|
|
m_nameMap.reserve(nameCount);
|
|
|
|
for (NameEntry& entry : m_nameEntries)
|
|
|
|
{
|
2015-07-13 06:29:12 +00:00
|
|
|
auto search = m_idMap.find(entry.id);
|
|
|
|
if (search != m_idMap.end())
|
|
|
|
m_nameMap[entry.name] = search->second;
|
2015-07-10 05:28:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void PAK::write(Athena::io::IStreamWriter& writer) const
|
2015-07-06 02:07:57 +00:00
|
|
|
{
|
2015-07-10 05:28:08 +00:00
|
|
|
m_header.write(writer);
|
|
|
|
|
2015-08-23 06:42:29 +00:00
|
|
|
DNAFourCC("STRG").write(writer);
|
2015-07-10 05:28:08 +00:00
|
|
|
atUint32 strgSz = 4;
|
|
|
|
for (const NameEntry& entry : m_nameEntries)
|
2015-07-22 19:05:18 +00:00
|
|
|
strgSz += (atUint32)entry.name.size() + 13;
|
2015-07-10 05:28:08 +00:00
|
|
|
atUint32 strgPad = ((strgSz + 63) & ~63) - strgSz;
|
|
|
|
strgSz += strgPad;
|
2015-08-14 03:00:51 +00:00
|
|
|
writer.writeUint32Big(strgSz);
|
2015-07-10 05:28:08 +00:00
|
|
|
|
2015-08-23 06:42:29 +00:00
|
|
|
DNAFourCC("RSHD").write(writer);
|
2015-07-10 05:28:08 +00:00
|
|
|
atUint32 rshdSz = 4 + 24 * m_entries.size();
|
|
|
|
atUint32 rshdPad = ((rshdSz + 63) & ~63) - rshdSz;
|
|
|
|
rshdSz += rshdPad;
|
2015-08-14 03:00:51 +00:00
|
|
|
writer.writeUint32Big(rshdSz);
|
2015-07-14 00:38:48 +00:00
|
|
|
atUint32 dataOffset = 128 + strgSz + rshdSz;
|
2015-07-10 05:28:08 +00:00
|
|
|
|
2015-08-23 06:42:29 +00:00
|
|
|
DNAFourCC("DATA").write(writer);
|
2015-07-10 05:28:08 +00:00
|
|
|
atUint32 dataSz = 0;
|
|
|
|
for (const Entry& entry : m_entries)
|
|
|
|
dataSz += (entry.size + 63) & ~63;
|
|
|
|
atUint32 dataPad = ((dataSz + 63) & ~63) - dataSz;
|
|
|
|
dataSz += dataPad;
|
2015-08-14 03:00:51 +00:00
|
|
|
writer.writeUint32Big(dataSz);
|
2015-07-10 05:28:08 +00:00
|
|
|
writer.seek(36, Athena::Current);
|
|
|
|
|
2015-08-14 03:00:51 +00:00
|
|
|
writer.writeUint32Big((atUint32)m_nameEntries.size());
|
2015-07-10 05:28:08 +00:00
|
|
|
for (const NameEntry& entry : m_nameEntries)
|
|
|
|
entry.write(writer);
|
|
|
|
writer.seek(strgPad, Athena::Current);
|
|
|
|
|
2015-08-14 03:00:51 +00:00
|
|
|
writer.writeUint32Big((atUint32)m_entries.size());
|
2015-07-10 05:28:08 +00:00
|
|
|
for (const Entry& entry : m_entries)
|
2015-07-14 00:38:48 +00:00
|
|
|
{
|
|
|
|
Entry copy = entry;
|
|
|
|
copy.offset -= dataOffset;
|
|
|
|
copy.write(writer);
|
|
|
|
}
|
2015-07-10 05:28:08 +00:00
|
|
|
writer.seek(rshdPad, Athena::Current);
|
2015-07-06 02:07:57 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 00:38:48 +00:00
|
|
|
std::unique_ptr<atUint8[]> PAK::Entry::getBuffer(const NOD::DiscBase::IPartition::Node& pak, atUint64& szOut) const
|
|
|
|
{
|
|
|
|
if (compressed)
|
|
|
|
{
|
|
|
|
std::unique_ptr<NOD::IPartReadStream> strm = pak.beginReadStream(offset);
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
HECL::FourCC magic;
|
|
|
|
atUint32 blockCount;
|
|
|
|
} head;
|
|
|
|
strm->read(&head, 8);
|
|
|
|
if (head.magic != CMPD)
|
|
|
|
{
|
2015-07-16 01:57:34 +00:00
|
|
|
Log.report(LogVisor::Error, "invalid CMPD block");
|
2015-07-14 00:38:48 +00:00
|
|
|
return std::unique_ptr<atUint8[]>();
|
|
|
|
}
|
|
|
|
head.blockCount = HECL::SBig(head.blockCount);
|
|
|
|
|
|
|
|
struct Block
|
|
|
|
{
|
|
|
|
atUint32 compSz;
|
|
|
|
atUint32 decompSz;
|
2015-07-22 19:05:18 +00:00
|
|
|
};
|
|
|
|
std::unique_ptr<Block[]> blocks(new Block[head.blockCount]);
|
|
|
|
strm->read(blocks.get(), 8 * head.blockCount);
|
2015-07-14 00:38:48 +00:00
|
|
|
|
|
|
|
atUint64 maxBlockSz = 0;
|
|
|
|
atUint64 totalDecompSz = 0;
|
|
|
|
for (atUint32 b=0 ; b<head.blockCount ; ++b)
|
|
|
|
{
|
|
|
|
Block& block = blocks[b];
|
|
|
|
block.compSz = HECL::SBig(block.compSz) & 0xffffff;
|
|
|
|
block.decompSz = HECL::SBig(block.decompSz);
|
|
|
|
if (block.compSz > maxBlockSz)
|
|
|
|
maxBlockSz = block.compSz;
|
|
|
|
totalDecompSz += block.decompSz;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<atUint8[]> compBuf(new atUint8[maxBlockSz]);
|
|
|
|
atUint8* buf = new atUint8[totalDecompSz];
|
|
|
|
atUint8* bufCur = buf;
|
|
|
|
for (atUint32 b=0 ; b<head.blockCount ; ++b)
|
|
|
|
{
|
|
|
|
Block& block = blocks[b];
|
|
|
|
atUint8* compBufCur = compBuf.get();
|
|
|
|
strm->read(compBufCur, block.compSz);
|
|
|
|
if (block.compSz == block.decompSz)
|
|
|
|
{
|
|
|
|
memcpy(bufCur, compBufCur, block.decompSz);
|
|
|
|
bufCur += block.decompSz;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
atUint32 rem = block.decompSz;
|
|
|
|
while (rem)
|
|
|
|
{
|
|
|
|
atUint16 chunkSz = HECL::SBig(*(atUint16*)compBufCur);
|
|
|
|
compBufCur += 2;
|
|
|
|
lzo_uint dsz = rem;
|
|
|
|
lzo1x_decompress(compBufCur, chunkSz, bufCur, &dsz, nullptr);
|
|
|
|
compBufCur += chunkSz;
|
|
|
|
bufCur += dsz;
|
|
|
|
rem -= dsz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
szOut = totalDecompSz;
|
|
|
|
return std::unique_ptr<atUint8[]>(buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
atUint8* buf = new atUint8[size];
|
|
|
|
pak.beginReadStream(offset)->read(buf, size);
|
|
|
|
szOut = size;
|
|
|
|
return std::unique_ptr<atUint8[]>(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 05:28:08 +00:00
|
|
|
}
|
|
|
|
}
|