mirror of https://github.com/zeldaret/tp.git
380 lines
13 KiB
C++
380 lines
13 KiB
C++
#include "JSystem/JKernel/JKRDvdArchive.h"
|
|
#include "JSystem/JKernel/JKRDecomp.h"
|
|
#include "JSystem/JKernel/JKRDvdFile.h"
|
|
#include "JSystem/JKernel/JKRDvdRipper.h"
|
|
#include "JSystem/JUtility/JUTAssert.h"
|
|
#include "JSystem/JUtility/JUTException.h"
|
|
#include "math.h"
|
|
#include "string.h"
|
|
#include "dolphin/os.h"
|
|
#include "global.h"
|
|
|
|
/* 802D7BF0-802D7C98 2D2530 00A8+00 0/0 1/1 0/0 .text
|
|
* __ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection */
|
|
JKRDvdArchive::JKRDvdArchive(s32 entryNum, JKRArchive::EMountDirection mountDirection)
|
|
: JKRArchive(entryNum, MOUNT_DVD) {
|
|
mMountDirection = mountDirection;
|
|
if (!open(entryNum))
|
|
return;
|
|
|
|
mVolumeType = 'RARC';
|
|
mVolumeName = mStringTable + mNodes->name_offset;
|
|
getVolumeList().prepend(&mFileLoaderLink);
|
|
mIsMounted = true;
|
|
}
|
|
|
|
/* 802D7C98-802D7DB4 2D25D8 011C+00 1/0 0/0 0/0 .text __dt__13JKRDvdArchiveFv */
|
|
JKRDvdArchive::~JKRDvdArchive() {
|
|
if (mIsMounted == true) {
|
|
if (mArcInfoBlock) {
|
|
SDIFileEntry* fileEntry = mFiles;
|
|
int i = 0;
|
|
for (; i < mArcInfoBlock->num_file_entries; fileEntry++, i++) {
|
|
if (fileEntry->data) {
|
|
JKRFreeToHeap(mHeap, fileEntry->data);
|
|
}
|
|
}
|
|
|
|
JKRFreeToHeap(mHeap, mArcInfoBlock);
|
|
mArcInfoBlock = NULL;
|
|
}
|
|
|
|
if (mExpandedSize) {
|
|
i_JKRFree(mExpandedSize);
|
|
mExpandedSize = NULL;
|
|
}
|
|
|
|
if (mDvdFile) {
|
|
delete mDvdFile;
|
|
}
|
|
|
|
getVolumeList().remove(&mFileLoaderLink);
|
|
mIsMounted = false;
|
|
}
|
|
}
|
|
|
|
/* 802D7DB4-802D8050 2D26F4 029C+00 1/1 0/0 0/0 .text open__13JKRDvdArchiveFl */
|
|
bool JKRDvdArchive::open(s32 entryNum) {
|
|
mArcInfoBlock = NULL;
|
|
mDataOffset = 0;
|
|
mNodes = NULL;
|
|
mFiles = NULL;
|
|
mStringTable = NULL;
|
|
|
|
mDvdFile = new (JKRGetSystemHeap(), 0) JKRDvdFile(entryNum);
|
|
if (!mDvdFile) {
|
|
mMountMode = UNKNOWN_MOUNT_MODE;
|
|
return false;
|
|
}
|
|
|
|
SArcHeader* arcHeader = (SArcHeader*)JKRAllocFromSysHeap(sizeof(SArcHeader), 0x20);
|
|
if (!arcHeader) {
|
|
mMountMode = UNKNOWN_MOUNT_MODE;
|
|
goto cleanup;
|
|
}
|
|
|
|
JKRDvdToMainRam(entryNum, (u8*)arcHeader, EXPAND_SWITCH_UNKNOWN1, sizeof(SArcHeader), NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, 0, &mCompression, NULL);
|
|
DCInvalidateRange(arcHeader, sizeof(SArcHeader));
|
|
|
|
int alignment = mMountDirection == MOUNT_DIRECTION_HEAD ? 0x20 : -0x20;
|
|
|
|
mArcInfoBlock = (SArcDataInfo*)JKRAllocFromHeap(mHeap, arcHeader->file_data_offset, alignment);
|
|
if (!mArcInfoBlock) {
|
|
mMountMode = UNKNOWN_MOUNT_MODE;
|
|
goto cleanup;
|
|
}
|
|
|
|
JKRDvdToMainRam(entryNum, (u8*)mArcInfoBlock, EXPAND_SWITCH_UNKNOWN1,
|
|
arcHeader->file_data_offset, NULL, JKRDvdRipper::ALLOC_DIRECTION_FORWARD,
|
|
sizeof(SArcHeader), NULL, NULL);
|
|
DCInvalidateRange(mArcInfoBlock, arcHeader->file_data_offset);
|
|
|
|
mNodes = (SDIDirEntry*)((int)&mArcInfoBlock->num_nodes + mArcInfoBlock->node_offset);
|
|
mFiles = (SDIFileEntry*)((int)&mArcInfoBlock->num_nodes + mArcInfoBlock->file_entry_offset);
|
|
mStringTable = (char*)((int)&mArcInfoBlock->num_nodes + mArcInfoBlock->string_table_offset);
|
|
mExpandedSize = NULL;
|
|
|
|
u8 useCompression = 0;
|
|
SDIFileEntry* fileEntry = mFiles;
|
|
for (u32 i = 0; i < mArcInfoBlock->num_file_entries; fileEntry++, i++) {
|
|
if (fileEntry->isUnknownFlag1()) {
|
|
useCompression |= fileEntry->getCompressFlag();
|
|
}
|
|
}
|
|
|
|
if (useCompression) {
|
|
mExpandedSize = (s32*)JKRAllocFromHeap(mHeap, sizeof(s32) * mArcInfoBlock->num_file_entries,
|
|
abs(alignment));
|
|
if (!mExpandedSize) {
|
|
// !@bug: mArcInfoBlock is allocated from mHeap but free'd to sSystemHeap. I don't know
|
|
// what will happen if mHeap != sSystemHeap, but it's still a bug to free to the wrong
|
|
// allocator.
|
|
JKRFreeToSysHeap(mArcInfoBlock);
|
|
mMountMode = UNKNOWN_MOUNT_MODE;
|
|
goto cleanup;
|
|
}
|
|
|
|
memset(mExpandedSize, 0, sizeof(s32) * mArcInfoBlock->num_file_entries);
|
|
}
|
|
|
|
mDataOffset = arcHeader->header_length + arcHeader->file_data_offset;
|
|
|
|
cleanup:
|
|
if (arcHeader) {
|
|
JKRFreeToSysHeap(arcHeader);
|
|
}
|
|
|
|
if (mMountMode == UNKNOWN_MOUNT_MODE) {
|
|
#ifdef DEBUG
|
|
OSReport(":::Cannot alloc memory [%s][%d]\n", __FILE__, 397);
|
|
#endif
|
|
if (mDvdFile) {
|
|
delete mDvdFile;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/* 802D8050-802D8168 2D2990 0118+00 1/0 0/0 0/0 .text
|
|
* fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl */
|
|
void* JKRDvdArchive::fetchResource(SDIFileEntry* fileEntry, u32* returnSize) {
|
|
JUT_ASSERT(428, isMounted());
|
|
u32 tempReturnSize;
|
|
if (returnSize == NULL) {
|
|
returnSize = &tempReturnSize;
|
|
}
|
|
|
|
JKRCompression fileCompression = JKRConvertAttrToCompressionType(fileEntry->getAttr());
|
|
if (!fileEntry->data) {
|
|
u8* resourcePtr;
|
|
u32 resourceSize = fetchResource_subroutine(
|
|
mEntryNum, mDataOffset + fileEntry->data_offset, fileEntry->data_size, mHeap,
|
|
fileCompression, mCompression, &resourcePtr);
|
|
*returnSize = resourceSize;
|
|
if (resourceSize == 0) {
|
|
return NULL;
|
|
}
|
|
|
|
fileEntry->data = resourcePtr;
|
|
if (fileCompression == COMPRESSION_YAZ0) {
|
|
setExpandSize(fileEntry, *returnSize);
|
|
}
|
|
} else {
|
|
if (fileCompression == COMPRESSION_YAZ0) {
|
|
u32 resourceSize = getExpandSize(fileEntry);
|
|
*returnSize = resourceSize;
|
|
} else {
|
|
*returnSize = fileEntry->data_size;
|
|
}
|
|
}
|
|
|
|
return fileEntry->data;
|
|
}
|
|
|
|
/* 802D8168-802D826C 2D2AA8 0104+00 1/0 0/0 0/0 .text
|
|
* fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl */
|
|
void* JKRDvdArchive::fetchResource(void* buffer, u32 bufferSize, SDIFileEntry* fileEntry,
|
|
u32* returnSize) {
|
|
JUT_ASSERT(504, isMounted());
|
|
u32 expandSize;
|
|
u32 size = fileEntry->data_size;
|
|
JKRCompression fileCompression = JKRConvertAttrToCompressionType(fileEntry->getAttr());
|
|
|
|
if (!fileEntry->data) {
|
|
bufferSize = (s32)ALIGN_PREV(bufferSize, 0x20);
|
|
size = fetchResource_subroutine(mEntryNum, mDataOffset + fileEntry->data_offset,
|
|
fileEntry->data_size, (u8*)buffer, bufferSize, fileCompression,
|
|
mCompression);
|
|
} else {
|
|
if (fileCompression == COMPRESSION_YAZ0) {
|
|
expandSize = getExpandSize(fileEntry);
|
|
if (expandSize) {
|
|
size = expandSize;
|
|
}
|
|
}
|
|
|
|
if (size > bufferSize) {
|
|
size = bufferSize;
|
|
}
|
|
|
|
JKRHeap::copyMemory(buffer, fileEntry->data, size);
|
|
}
|
|
|
|
if (returnSize) {
|
|
*returnSize = size;
|
|
}
|
|
return buffer;
|
|
}
|
|
|
|
/* 802D826C-802D8474 2D2BAC 0208+00 1/1 1/1 0/0 .text
|
|
* fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii */
|
|
u32 JKRDvdArchive::fetchResource_subroutine(s32 entryNum, u32 offset, u32 size, u8* dst,
|
|
u32 dstLength, JKRCompression fileCompression,
|
|
JKRCompression archiveCompression) {
|
|
u32 alignedSize = ALIGN_NEXT(size, 0x20);
|
|
u32 alignedDstLength = ALIGN_PREV(dstLength, 0x20);
|
|
|
|
switch (archiveCompression) {
|
|
case COMPRESSION_NONE: {
|
|
switch (fileCompression) {
|
|
case COMPRESSION_NONE:
|
|
if (alignedSize > alignedDstLength) {
|
|
alignedSize = alignedDstLength;
|
|
}
|
|
|
|
JKRDvdToMainRam(entryNum, dst, EXPAND_SWITCH_UNKNOWN0, alignedSize, NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(dst, alignedSize);
|
|
return alignedSize;
|
|
case COMPRESSION_YAY0:
|
|
case COMPRESSION_YAZ0:
|
|
// The dst pointer to JKRDvdToMainRam should be aligned to 32 bytes. This will align
|
|
// arcHeader to 32 bytes on the stack.
|
|
char arcHeaderBuffer[64];
|
|
u8* arcHeader = (u8*)ALIGN_NEXT((u32)arcHeaderBuffer, 0x20);
|
|
JKRDvdToMainRam(entryNum, arcHeader, EXPAND_SWITCH_UNKNOWN2, sizeof(SArcHeader),
|
|
NULL, JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(arcHeader, sizeof(SArcHeader));
|
|
|
|
u32 decompressedSize = JKRDecompExpandSize(arcHeader);
|
|
u32 alignedDecompressedSize = ALIGN_NEXT(decompressedSize, 0x20);
|
|
if (alignedDecompressedSize > alignedDstLength) {
|
|
alignedDecompressedSize = alignedDstLength;
|
|
}
|
|
|
|
JKRDvdToMainRam(entryNum, dst, EXPAND_SWITCH_UNKNOWN1, alignedDecompressedSize, NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(dst, alignedDecompressedSize);
|
|
return decompressedSize;
|
|
}
|
|
}
|
|
|
|
case COMPRESSION_YAZ0: {
|
|
if (size > alignedDstLength) {
|
|
size = alignedDstLength;
|
|
}
|
|
|
|
JKRDvdToMainRam(entryNum, dst, EXPAND_SWITCH_UNKNOWN1, size, NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(dst, size);
|
|
return size;
|
|
}
|
|
|
|
case COMPRESSION_YAY0: {
|
|
JUTException::panic(__FILE__, 649, "Sorry, not applied for SZP archive.\n");
|
|
}
|
|
|
|
default: {
|
|
JUTException::panic(__FILE__, 653, "??? bad sequence\n");
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 802D8474-802D8698 2D2DB4 0224+00 1/1 1/1 0/0 .text
|
|
* fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc */
|
|
u32 JKRDvdArchive::fetchResource_subroutine(s32 entryNum, u32 offset, u32 size, JKRHeap* heap,
|
|
JKRCompression fileCompression,
|
|
JKRCompression archiveCompression,
|
|
u8** returnResource) {
|
|
u32 alignedSize = ALIGN_NEXT(size, 0x20);
|
|
u8* buffer;
|
|
|
|
switch (archiveCompression) {
|
|
case COMPRESSION_NONE: {
|
|
switch (fileCompression) {
|
|
case COMPRESSION_NONE:
|
|
buffer = (u8*)JKRAllocFromHeap(heap, alignedSize, sizeof(SArcHeader));
|
|
JUT_ASSERT(675, buffer != 0);
|
|
|
|
JKRDvdToMainRam(entryNum, buffer, EXPAND_SWITCH_UNKNOWN0, alignedSize, NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(buffer, alignedSize);
|
|
|
|
*returnResource = buffer;
|
|
return alignedSize;
|
|
case COMPRESSION_YAY0:
|
|
case COMPRESSION_YAZ0:
|
|
// The dst pointer to JKRDvdToMainRam should be aligned to 32 bytes. This will align
|
|
// arcHeader to 32 bytes on the stack.
|
|
char arcHeaderBuffer[64];
|
|
u8* arcHeader = (u8*)ALIGN_NEXT((u32)arcHeaderBuffer, 0x20);
|
|
JKRDvdToMainRam(entryNum, arcHeader, EXPAND_SWITCH_UNKNOWN2, sizeof(SArcHeader),
|
|
NULL, JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(arcHeader, sizeof(SArcHeader));
|
|
|
|
alignedSize = JKRDecompExpandSize(arcHeader);
|
|
buffer = (u8*)JKRAllocFromHeap(heap, alignedSize, sizeof(SArcHeader));
|
|
JUT_ASSERT(715, buffer);
|
|
JKRDvdToMainRam(entryNum, buffer, EXPAND_SWITCH_UNKNOWN1, alignedSize, NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(buffer, alignedSize);
|
|
|
|
*returnResource = buffer;
|
|
return alignedSize;
|
|
}
|
|
}
|
|
|
|
case COMPRESSION_YAZ0: {
|
|
buffer = (u8*)JKRAllocFromHeap(heap, alignedSize, sizeof(SArcHeader));
|
|
JUT_ASSERT(735, buffer);
|
|
|
|
JKRDvdToMainRam(entryNum, buffer, EXPAND_SWITCH_UNKNOWN1, size, NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, offset, NULL, NULL);
|
|
DCInvalidateRange(buffer, size);
|
|
|
|
*returnResource = buffer;
|
|
return alignedSize;
|
|
}
|
|
|
|
case COMPRESSION_YAY0: {
|
|
JUTException::panic(__FILE__, 754, "Sorry, not applied SZP archive.\n");
|
|
}
|
|
|
|
default: {
|
|
JUTException::panic(__FILE__, 758, "??? bad sequence\n");
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 802D8698-802D87D4 2D2FD8 013C+00 1/0 0/0 0/0 .text getExpandedResSize__13JKRDvdArchiveCFPCv */
|
|
u32 JKRDvdArchive::getExpandedResSize(const void* resource) const {
|
|
u32 resourceSize;
|
|
if (!mExpandedSize) {
|
|
return getResSize(resource);
|
|
}
|
|
|
|
SDIFileEntry* fileEntry = findPtrResource(resource);
|
|
if (!fileEntry) {
|
|
return -1;
|
|
}
|
|
|
|
if (!fileEntry->isCompressed()) {
|
|
return getResSize(resource);
|
|
}
|
|
|
|
resourceSize = getExpandSize(fileEntry);
|
|
if (resourceSize) {
|
|
return resourceSize;
|
|
}
|
|
|
|
// The dst pointer to JKRDvdToMainRam should be aligned to 32 bytes. This will align arcHeader
|
|
// to 32 bytes on the stack.
|
|
char buffer[64];
|
|
u8* arcHeader = (u8*)ALIGN_NEXT((u32)buffer, 0x20);
|
|
JKRDvdToMainRam(mEntryNum, arcHeader, EXPAND_SWITCH_UNKNOWN2, sizeof(SArcHeader), NULL,
|
|
JKRDvdRipper::ALLOC_DIRECTION_FORWARD,
|
|
mDataOffset + fileEntry->data_offset, NULL, NULL);
|
|
DCInvalidateRange(arcHeader, sizeof(SArcHeader));
|
|
|
|
resourceSize = JKRDecompExpandSize(arcHeader);
|
|
// ???
|
|
((JKRDvdArchive*)this)->setExpandSize(fileEntry, resourceSize);
|
|
|
|
return resourceSize;
|
|
}
|