2016-05-27 00:56:18 +00:00
|
|
|
#include "amuse/ContainerRegistry.hpp"
|
|
|
|
#include "amuse/Common.hpp"
|
|
|
|
#include <stdio.h>
|
2016-10-27 23:48:12 +00:00
|
|
|
#include <stdlib.h>
|
2016-05-27 00:56:18 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
2016-05-28 07:15:59 +00:00
|
|
|
#include <memory>
|
2016-05-30 22:46:43 +00:00
|
|
|
#include <unordered_map>
|
2016-05-27 00:56:18 +00:00
|
|
|
#include <zlib.h>
|
2016-09-02 19:52:17 +00:00
|
|
|
#include <lzo/lzo1x.h>
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
#if _WIN32
|
2016-06-13 05:47:07 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#include <Stringapiset.h>
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
static void* memmem(const void* haystack, size_t hlen, const void* needle, size_t nlen)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
int needle_first;
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* p = static_cast<const uint8_t*>(haystack);
|
2016-05-27 00:56:18 +00:00
|
|
|
size_t plen = hlen;
|
|
|
|
|
|
|
|
if (!nlen)
|
|
|
|
return NULL;
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
needle_first = *(unsigned char*)needle;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
while (plen >= nlen && (p = static_cast<const uint8_t*>(memchr(p, needle_first, plen - nlen + 1))))
|
|
|
|
{
|
|
|
|
if (!memcmp(p, needle, nlen))
|
2016-07-14 04:54:46 +00:00
|
|
|
return (void*)p;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
p++;
|
|
|
|
plen = hlen - (p - static_cast<const uint8_t*>(haystack));
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-06-19 19:19:16 +00:00
|
|
|
static amuse::SystemString StrToSys(const std::string& str)
|
2016-06-13 05:47:07 +00:00
|
|
|
{
|
|
|
|
std::wstring ret;
|
|
|
|
int len = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.size(), nullptr, 0);
|
|
|
|
ret.assign(len, L'\0');
|
|
|
|
MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.size(), &ret[0], len);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2016-07-14 04:54:46 +00:00
|
|
|
static amuse::SystemString StrToSys(const std::string& str) { return str; }
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace amuse
|
|
|
|
{
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
const SystemChar* ContainerRegistry::TypeToName(Type tp)
|
2016-05-27 05:30:43 +00:00
|
|
|
{
|
|
|
|
switch (tp)
|
|
|
|
{
|
|
|
|
case Type::Invalid:
|
|
|
|
default:
|
|
|
|
return nullptr;
|
|
|
|
case Type::Raw4:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("4 RAW Chunks");
|
2016-05-27 05:30:43 +00:00
|
|
|
case Type::MetroidPrime:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("Metroid Prime (GCN)");
|
2016-05-27 05:30:43 +00:00
|
|
|
case Type::MetroidPrime2:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("Metroid Prime 2 (GCN)");
|
2016-05-27 05:30:43 +00:00
|
|
|
case Type::RogueSquadronPC:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("Star Wars - Rogue Squadron (PC)");
|
2016-05-27 05:30:43 +00:00
|
|
|
case Type::RogueSquadronN64:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("Star Wars - Rogue Squadron (N64)");
|
2016-07-18 22:38:28 +00:00
|
|
|
case Type::Factor5N64Rev:
|
|
|
|
return _S("Factor5 Revision ROM (N64)");
|
2016-05-27 05:30:43 +00:00
|
|
|
case Type::RogueSquadron2:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("Star Wars - Rogue Squadron 2 (GCN)");
|
2016-05-27 05:30:43 +00:00
|
|
|
case Type::RogueSquadron3:
|
2016-06-13 05:47:07 +00:00
|
|
|
return _S("Star Wars - Rogue Squadron 3 (GCN)");
|
2016-05-27 05:30:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
static size_t FileLength(FILE* fp)
|
|
|
|
{
|
|
|
|
FSeek(fp, 0, SEEK_END);
|
|
|
|
int64_t endPos = FTell(fp);
|
|
|
|
fseek(fp, 0, SEEK_SET);
|
|
|
|
return size_t(endPos);
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static SystemString ReadString(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
char byte;
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemString ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
while (fread(&byte, 1, 1, fp) == 1 && byte != 0)
|
|
|
|
ret.push_back(byte);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static bool IsChunkExtension(const SystemChar* path, const SystemChar*& dotOut)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
const SystemChar* ext = StrRChr(path, _S('.'));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (ext)
|
|
|
|
{
|
2016-07-14 04:54:46 +00:00
|
|
|
if (!CompareCaseInsensitive(ext, _S(".poo")) || !CompareCaseInsensitive(ext, _S(".pool")) ||
|
|
|
|
!CompareCaseInsensitive(ext, _S(".pro")) || !CompareCaseInsensitive(ext, _S(".proj")) ||
|
|
|
|
!CompareCaseInsensitive(ext, _S(".sdi")) || !CompareCaseInsensitive(ext, _S(".sdir")) ||
|
|
|
|
!CompareCaseInsensitive(ext, _S(".sam")) || !CompareCaseInsensitive(ext, _S(".samp")))
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
dotOut = ext;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static bool IsSongExtension(const SystemChar* path, const SystemChar*& dotOut)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
const SystemChar* ext = StrRChr(path, _S('.'));
|
2016-05-30 22:46:43 +00:00
|
|
|
if (ext)
|
|
|
|
{
|
2016-07-14 04:54:46 +00:00
|
|
|
if (!CompareCaseInsensitive(ext, _S(".son")) || !CompareCaseInsensitive(ext, _S(".sng")) ||
|
2016-06-13 05:47:07 +00:00
|
|
|
!CompareCaseInsensitive(ext, _S(".song")))
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
dotOut = ext;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
static bool ValidateMP1(FILE* fp)
|
|
|
|
{
|
2016-06-04 02:34:35 +00:00
|
|
|
if (FileLength(fp) > 40 * 1024 * 1024)
|
|
|
|
return false;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
uint32_t magic;
|
|
|
|
fread(&magic, 1, 4, fp);
|
|
|
|
magic = SBig(magic);
|
|
|
|
|
|
|
|
if (magic == 0x00030005)
|
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t nameCount;
|
|
|
|
fread(&nameCount, 1, 4, fp);
|
|
|
|
nameCount = SBig(nameCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < nameCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t nameLen;
|
|
|
|
fread(&nameLen, 1, 4, fp);
|
|
|
|
nameLen = SBig(nameLen);
|
2016-05-27 05:30:43 +00:00
|
|
|
FSeek(fp, nameLen, SEEK_CUR);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t resCount;
|
|
|
|
fread(&resCount, 1, 4, fp);
|
|
|
|
resCount = SBig(resCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < resCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
uint32_t type;
|
|
|
|
fread(&type, 1, 4, fp);
|
|
|
|
type = SBig(type);
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t offset;
|
|
|
|
fread(&offset, 1, 4, fp);
|
|
|
|
offset = SBig(offset);
|
|
|
|
|
|
|
|
if (type == 0x41475343)
|
|
|
|
{
|
|
|
|
int64_t origPos = FTell(fp);
|
|
|
|
FSeek(fp, offset, SEEK_SET);
|
|
|
|
char testBuf[6];
|
|
|
|
if (fread(testBuf, 1, 6, fp) == 6)
|
|
|
|
{
|
|
|
|
if (!memcmp(testBuf, "Audio/", 6))
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
FSeek(fp, origPos, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadMP1(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
FileLength(fp);
|
|
|
|
|
|
|
|
uint32_t magic;
|
|
|
|
fread(&magic, 1, 4, fp);
|
|
|
|
magic = SBig(magic);
|
|
|
|
|
|
|
|
if (magic == 0x00030005)
|
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t nameCount;
|
|
|
|
fread(&nameCount, 1, 4, fp);
|
|
|
|
nameCount = SBig(nameCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < nameCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t nameLen;
|
|
|
|
fread(&nameLen, 1, 4, fp);
|
|
|
|
nameLen = SBig(nameLen);
|
2016-05-27 05:30:43 +00:00
|
|
|
FSeek(fp, nameLen, SEEK_CUR);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t resCount;
|
|
|
|
fread(&resCount, 1, 4, fp);
|
|
|
|
resCount = SBig(resCount);
|
|
|
|
ret.reserve(resCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < resCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
uint32_t type;
|
|
|
|
fread(&type, 1, 4, fp);
|
|
|
|
type = SBig(type);
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t offset;
|
|
|
|
fread(&offset, 1, 4, fp);
|
|
|
|
offset = SBig(offset);
|
|
|
|
|
|
|
|
if (type == 0x41475343)
|
|
|
|
{
|
|
|
|
int64_t origPos = FTell(fp);
|
|
|
|
FSeek(fp, offset, SEEK_SET);
|
|
|
|
char testBuf[6];
|
|
|
|
if (fread(testBuf, 1, 6, fp) == 6)
|
|
|
|
{
|
|
|
|
if (!memcmp(testBuf, "Audio/", 6))
|
|
|
|
{
|
|
|
|
FSeek(fp, offset, SEEK_SET);
|
|
|
|
ReadString(fp);
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemString name = ReadString(fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-06-04 02:34:35 +00:00
|
|
|
uint32_t poolLen;
|
|
|
|
fread(&poolLen, 1, 4, fp);
|
|
|
|
poolLen = SBig(poolLen);
|
|
|
|
std::unique_ptr<uint8_t[]> pool(new uint8_t[poolLen]);
|
|
|
|
fread(pool.get(), 1, poolLen, fp);
|
|
|
|
|
|
|
|
uint32_t projLen;
|
|
|
|
fread(&projLen, 1, 4, fp);
|
|
|
|
projLen = SBig(projLen);
|
|
|
|
std::unique_ptr<uint8_t[]> proj(new uint8_t[projLen]);
|
|
|
|
fread(proj.get(), 1, projLen, fp);
|
|
|
|
|
|
|
|
uint32_t sampLen;
|
|
|
|
fread(&sampLen, 1, 4, fp);
|
|
|
|
sampLen = SBig(sampLen);
|
|
|
|
std::unique_ptr<uint8_t[]> samp(new uint8_t[sampLen]);
|
|
|
|
fread(samp.get(), 1, sampLen, fp);
|
|
|
|
|
|
|
|
uint32_t sdirLen;
|
|
|
|
fread(&sdirLen, 1, 4, fp);
|
|
|
|
sdirLen = SBig(sdirLen);
|
|
|
|
std::unique_ptr<uint8_t[]> sdir(new uint8_t[sdirLen]);
|
|
|
|
fread(sdir.get(), 1, sdirLen, fp);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(std::move(name),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projLen, pool.release(), poolLen,
|
|
|
|
sdir.release(), sdirLen, samp.release(), sampLen,
|
|
|
|
GCNDataTag{}});
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
FSeek(fp, origPos, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-30 22:46:43 +00:00
|
|
|
static bool ValidateMP1Songs(FILE* fp)
|
|
|
|
{
|
2016-06-04 02:34:35 +00:00
|
|
|
if (FileLength(fp) > 40 * 1024 * 1024)
|
|
|
|
return false;
|
2016-05-30 22:46:43 +00:00
|
|
|
|
|
|
|
uint32_t magic;
|
|
|
|
fread(&magic, 1, 4, fp);
|
|
|
|
magic = SBig(magic);
|
|
|
|
|
|
|
|
if (magic == 0x00030005)
|
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t nameCount;
|
|
|
|
fread(&nameCount, 1, 4, fp);
|
|
|
|
nameCount = SBig(nameCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < nameCount; ++i)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t nameLen;
|
|
|
|
fread(&nameLen, 1, 4, fp);
|
|
|
|
nameLen = SBig(nameLen);
|
|
|
|
FSeek(fp, nameLen, SEEK_CUR);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t resCount;
|
|
|
|
fread(&resCount, 1, 4, fp);
|
|
|
|
resCount = SBig(resCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < resCount; ++i)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
uint32_t type;
|
|
|
|
fread(&type, 1, 4, fp);
|
|
|
|
type = SBig(type);
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t offset;
|
|
|
|
fread(&offset, 1, 4, fp);
|
|
|
|
offset = SBig(offset);
|
|
|
|
|
|
|
|
if (type == 0x43534E47)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadMP1Songs(FILE* fp)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
2016-05-30 22:46:43 +00:00
|
|
|
FileLength(fp);
|
|
|
|
|
|
|
|
uint32_t magic;
|
|
|
|
fread(&magic, 1, 4, fp);
|
|
|
|
magic = SBig(magic);
|
|
|
|
|
|
|
|
if (magic == 0x00030005)
|
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t nameCount;
|
|
|
|
fread(&nameCount, 1, 4, fp);
|
|
|
|
nameCount = SBig(nameCount);
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
std::unordered_map<uint32_t, SystemString> names;
|
2016-05-30 22:46:43 +00:00
|
|
|
names.reserve(nameCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < nameCount; ++i)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
uint32_t id;
|
|
|
|
fread(&id, 1, 4, fp);
|
|
|
|
id = SBig(id);
|
|
|
|
uint32_t nameLen;
|
|
|
|
fread(&nameLen, 1, 4, fp);
|
|
|
|
nameLen = SBig(nameLen);
|
|
|
|
std::string str(nameLen, '\0');
|
|
|
|
fread(&str[0], 1, nameLen, fp);
|
2016-06-13 05:47:07 +00:00
|
|
|
names[id] = StrToSys(str);
|
2016-05-30 22:46:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t resCount;
|
|
|
|
fread(&resCount, 1, 4, fp);
|
|
|
|
resCount = SBig(resCount);
|
|
|
|
ret.reserve(resCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < resCount; ++i)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
uint32_t type;
|
|
|
|
fread(&type, 1, 4, fp);
|
|
|
|
type = SBig(type);
|
|
|
|
uint32_t id;
|
|
|
|
fread(&id, 1, 4, fp);
|
|
|
|
id = SBig(id);
|
|
|
|
uint32_t size;
|
|
|
|
fread(&size, 1, 4, fp);
|
|
|
|
size = SBig(size);
|
|
|
|
uint32_t offset;
|
|
|
|
fread(&offset, 1, 4, fp);
|
|
|
|
offset = SBig(offset);
|
|
|
|
|
|
|
|
if (type == 0x43534E47)
|
|
|
|
{
|
|
|
|
int64_t origPos = FTell(fp);
|
|
|
|
FSeek(fp, offset + 4, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t midiSetup;
|
|
|
|
fread(&midiSetup, 1, 4, fp);
|
|
|
|
midiSetup = SBig(midiSetup);
|
|
|
|
|
|
|
|
uint32_t groupId;
|
|
|
|
fread(&groupId, 1, 4, fp);
|
|
|
|
groupId = SBig(groupId);
|
|
|
|
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
|
|
|
|
uint32_t sonLength;
|
|
|
|
fread(&sonLength, 1, 4, fp);
|
|
|
|
sonLength = SBig(sonLength);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[sonLength]);
|
|
|
|
fread(song.get(), 1, sonLength, fp);
|
|
|
|
|
|
|
|
auto search = names.find(id);
|
|
|
|
if (search != names.end())
|
|
|
|
ret.emplace_back(std::move(search->second),
|
|
|
|
ContainerRegistry::SongData(std::move(song), sonLength, groupId, midiSetup));
|
|
|
|
else
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar name[128];
|
|
|
|
SNPrintf(name, 128, _S("%08X"), id);
|
2016-05-30 22:46:43 +00:00
|
|
|
ret.emplace_back(name, ContainerRegistry::SongData(std::move(song), sonLength, groupId, midiSetup));
|
|
|
|
}
|
|
|
|
|
|
|
|
FSeek(fp, origPos, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
static bool ValidateMP2(FILE* fp)
|
|
|
|
{
|
|
|
|
uint32_t magic;
|
|
|
|
fread(&magic, 1, 4, fp);
|
|
|
|
magic = SBig(magic);
|
|
|
|
|
|
|
|
if (magic == 0x00030005)
|
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t nameCount;
|
|
|
|
fread(&nameCount, 1, 4, fp);
|
|
|
|
nameCount = SBig(nameCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < nameCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t nameLen;
|
|
|
|
fread(&nameLen, 1, 4, fp);
|
|
|
|
nameLen = SBig(nameLen);
|
2016-05-27 05:30:43 +00:00
|
|
|
FSeek(fp, nameLen, SEEK_CUR);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t resCount;
|
|
|
|
fread(&resCount, 1, 4, fp);
|
|
|
|
resCount = SBig(resCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < resCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-09-02 19:52:17 +00:00
|
|
|
uint32_t compressed;
|
|
|
|
fread(&compressed, 1, 4, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
uint32_t type;
|
|
|
|
fread(&type, 1, 4, fp);
|
|
|
|
type = SBig(type);
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t offset;
|
|
|
|
fread(&offset, 1, 4, fp);
|
|
|
|
offset = SBig(offset);
|
|
|
|
|
|
|
|
if (type == 0x41475343)
|
|
|
|
{
|
|
|
|
int64_t origPos = FTell(fp);
|
|
|
|
FSeek(fp, offset, SEEK_SET);
|
|
|
|
char testBuf[4];
|
2016-09-02 19:52:17 +00:00
|
|
|
if (!compressed)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-09-02 19:52:17 +00:00
|
|
|
if (fread(testBuf, 1, 4, fp) != 4)
|
2016-05-27 00:56:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-09-02 19:52:17 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
FSeek(fp, 4, SEEK_CUR);
|
|
|
|
uint16_t chunkSz;
|
|
|
|
fread(&chunkSz, 1, 2, fp);
|
|
|
|
chunkSz = SBig(chunkSz);
|
|
|
|
uint8_t compBuf[0x8000];
|
|
|
|
uint8_t destBuf[0x8000 * 2];
|
|
|
|
fread(compBuf, 1, chunkSz, fp);
|
|
|
|
lzo_uint dsz = 0x8000 * 2;
|
|
|
|
lzo1x_decompress(compBuf, chunkSz, destBuf, &dsz, nullptr);
|
|
|
|
memcpy(testBuf, destBuf, 4);
|
|
|
|
}
|
|
|
|
if (amuse::SBig(*reinterpret_cast<uint32_t*>(testBuf)) == 0x1)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
2016-05-27 00:56:18 +00:00
|
|
|
FSeek(fp, origPos, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadMP2(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
FileLength(fp);
|
|
|
|
|
|
|
|
uint32_t magic;
|
|
|
|
fread(&magic, 1, 4, fp);
|
|
|
|
magic = SBig(magic);
|
|
|
|
|
|
|
|
if (magic == 0x00030005)
|
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_SET);
|
|
|
|
|
|
|
|
uint32_t nameCount;
|
|
|
|
fread(&nameCount, 1, 4, fp);
|
|
|
|
nameCount = SBig(nameCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < nameCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t nameLen;
|
|
|
|
fread(&nameLen, 1, 4, fp);
|
|
|
|
nameLen = SBig(nameLen);
|
2016-05-27 05:30:43 +00:00
|
|
|
FSeek(fp, nameLen, SEEK_CUR);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t resCount;
|
|
|
|
fread(&resCount, 1, 4, fp);
|
|
|
|
resCount = SBig(resCount);
|
|
|
|
ret.reserve(resCount);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < resCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-09-02 19:52:17 +00:00
|
|
|
uint32_t compressed;
|
|
|
|
fread(&compressed, 1, 4, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
uint32_t type;
|
|
|
|
fread(&type, 1, 4, fp);
|
|
|
|
type = SBig(type);
|
|
|
|
FSeek(fp, 8, SEEK_CUR);
|
|
|
|
uint32_t offset;
|
|
|
|
fread(&offset, 1, 4, fp);
|
|
|
|
offset = SBig(offset);
|
|
|
|
|
|
|
|
if (type == 0x41475343)
|
|
|
|
{
|
|
|
|
int64_t origPos = FTell(fp);
|
|
|
|
FSeek(fp, offset, SEEK_SET);
|
|
|
|
char testBuf[4];
|
2016-09-02 19:52:17 +00:00
|
|
|
FILE* old_fp = fp;
|
|
|
|
if (compressed)
|
|
|
|
{
|
|
|
|
uint32_t decompSz;
|
|
|
|
fread(&decompSz, 1, 4, fp);
|
|
|
|
decompSz = SBig(decompSz);
|
|
|
|
uint8_t compBuf[0x8000];
|
|
|
|
uint8_t* buf = new uint8_t[decompSz];
|
|
|
|
uint8_t* bufCur = buf;
|
|
|
|
uint32_t rem = decompSz;
|
|
|
|
while (rem)
|
|
|
|
{
|
|
|
|
uint16_t chunkSz;
|
|
|
|
fread(&chunkSz, 1, 2, fp);
|
|
|
|
chunkSz = SBig(chunkSz);
|
|
|
|
fread(compBuf, 1, chunkSz, fp);
|
|
|
|
lzo_uint dsz = rem;
|
|
|
|
lzo1x_decompress(compBuf, chunkSz, bufCur, &dsz, nullptr);
|
|
|
|
bufCur += dsz;
|
|
|
|
rem -= dsz;
|
|
|
|
}
|
|
|
|
|
2016-09-02 20:00:56 +00:00
|
|
|
fp = FOpen(_S("amuse_tmp.dat"), _S("rw"));
|
|
|
|
rewind(fp);
|
2016-09-02 19:52:17 +00:00
|
|
|
fwrite(buf, 1, decompSz, fp);
|
|
|
|
rewind(fp);
|
|
|
|
}
|
2016-05-27 00:56:18 +00:00
|
|
|
if (fread(testBuf, 1, 4, fp) == 4)
|
|
|
|
{
|
|
|
|
if (amuse::SBig(*reinterpret_cast<uint32_t*>(testBuf)) == 0x1)
|
|
|
|
{
|
|
|
|
FSeek(fp, offset + 4, SEEK_SET);
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemString name = ReadString(fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
FSeek(fp, 2, SEEK_CUR);
|
|
|
|
uint32_t poolSz;
|
|
|
|
fread(&poolSz, 1, 4, fp);
|
|
|
|
poolSz = SBig(poolSz);
|
|
|
|
|
|
|
|
uint32_t projSz;
|
|
|
|
fread(&projSz, 1, 4, fp);
|
|
|
|
projSz = SBig(projSz);
|
|
|
|
|
|
|
|
uint32_t sdirSz;
|
|
|
|
fread(&sdirSz, 1, 4, fp);
|
|
|
|
sdirSz = SBig(sdirSz);
|
|
|
|
|
|
|
|
uint32_t sampSz;
|
|
|
|
fread(&sampSz, 1, 4, fp);
|
|
|
|
sampSz = SBig(sampSz);
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-06-05 03:11:24 +00:00
|
|
|
if (projSz && poolSz && sdirSz && sampSz)
|
|
|
|
{
|
|
|
|
std::unique_ptr<uint8_t[]> pool(new uint8_t[poolSz]);
|
|
|
|
fread(pool.get(), 1, poolSz, fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> proj(new uint8_t[projSz]);
|
|
|
|
fread(proj.get(), 1, projSz, fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> sdir(new uint8_t[sdirSz]);
|
|
|
|
fread(sdir.get(), 1, sdirSz, fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> samp(new uint8_t[sampSz]);
|
|
|
|
fread(samp.get(), 1, sampSz, fp);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(std::move(name),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projSz, pool.release(), poolSz,
|
|
|
|
sdir.release(), sdirSz, samp.release(), sampSz,
|
|
|
|
GCNDataTag{}});
|
2016-06-05 03:11:24 +00:00
|
|
|
}
|
2016-05-28 02:28:59 +00:00
|
|
|
}
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
2016-09-02 20:00:56 +00:00
|
|
|
if (compressed)
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
Unlink(_S("amuse_tmp.dat"));
|
|
|
|
}
|
2016-09-02 19:52:17 +00:00
|
|
|
fp = old_fp;
|
2016-05-27 00:56:18 +00:00
|
|
|
FSeek(fp, origPos, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct RS1FSTEntry
|
|
|
|
{
|
|
|
|
uint32_t offset;
|
|
|
|
uint32_t decompSz;
|
|
|
|
uint32_t compSz;
|
|
|
|
uint16_t type;
|
|
|
|
uint16_t childCount;
|
|
|
|
char name[16];
|
|
|
|
|
|
|
|
void swapBig()
|
|
|
|
{
|
|
|
|
offset = SBig(offset);
|
|
|
|
decompSz = SBig(decompSz);
|
|
|
|
compSz = SBig(compSz);
|
|
|
|
type = SBig(type);
|
|
|
|
childCount = SBig(childCount);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-29 18:22:20 +00:00
|
|
|
static void SwapN64Rom16(void* data, size_t size)
|
|
|
|
{
|
|
|
|
uint16_t* words = reinterpret_cast<uint16_t*>(data);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < size / 2; ++i)
|
2016-05-29 18:22:20 +00:00
|
|
|
words[i] = SBig(words[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SwapN64Rom32(void* data, size_t size)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
uint32_t* words = reinterpret_cast<uint32_t*>(data);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < size / 4; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
words[i] = SBig(words[i]);
|
|
|
|
}
|
|
|
|
|
2016-07-17 21:23:29 +00:00
|
|
|
static const struct RS1SongMapping
|
2016-07-16 21:55:13 +00:00
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
int songId;
|
|
|
|
} RS1Mappings[] =
|
|
|
|
{
|
2016-07-17 21:23:29 +00:00
|
|
|
{"logo1_SNG", 0},
|
|
|
|
{"roguetitle_SNG", 1},
|
|
|
|
{"roguetheme_SNG", 1},
|
|
|
|
{"title_SNG", 2},
|
|
|
|
{"hangar1_SNG", 3},
|
|
|
|
{"hangar2_SNG", 3},
|
|
|
|
{"hangar3_SNG", 3},
|
|
|
|
{"jingle01_SNG", 4},
|
|
|
|
{"jingle02_SNG", 4},
|
|
|
|
{"jingle03_SNG", 4},
|
|
|
|
{"jingle04_SNG", 4},
|
|
|
|
{"jingle05_SNG", 4},
|
|
|
|
{"jingle06_SNG", 4},
|
|
|
|
{"jingle07_SNG", 4},
|
|
|
|
{"jingle08_SNG", 4},
|
|
|
|
{"c1l1_theme_SNG", 4},
|
|
|
|
{"c1l1_prob1_SNG", 4},
|
|
|
|
{"c1l1_prob2_SNG", 4},
|
|
|
|
{"c1l1_spc01_SNG", 4},
|
|
|
|
{"c1l1_spc02_SNG", 4},
|
|
|
|
{"c1l2_theme_SNG", 5},
|
|
|
|
{"c1l2_spc01_SNG", 5},
|
|
|
|
{"c1l3_spc01_SNG", 6},
|
|
|
|
{"c1l3_theme_SNG", 6},
|
|
|
|
{"c1l4_spc01_SNG", 7},
|
|
|
|
{"c1l4_theme_SNG", 7},
|
|
|
|
{"action1_SNG", 7},
|
|
|
|
{"action1b_SNG", 7},
|
|
|
|
{"action2_SNG", 7},
|
|
|
|
{"action4_SNG", 7},
|
|
|
|
{"action5_SNG", 7},
|
|
|
|
{"action6_SNG", 7},
|
|
|
|
{"action7_SNG", 7},
|
|
|
|
{"c1l5_act01_SNG", 8},
|
|
|
|
{"c1l5_act02_SNG", 8},
|
|
|
|
{"c1l5_theme_SNG", 8},
|
|
|
|
{"c1l5_spc01_SNG", 8},
|
|
|
|
{"c2l1_theme_SNG", 9},
|
|
|
|
{"c2l1_spc01_SNG", 9},
|
|
|
|
{"imperial_SNG", 10},
|
|
|
|
{"c2l2_theme_SNG", 10},
|
|
|
|
{"c2l2_spc01_SNG", 10},
|
|
|
|
{"c3l5_theme_SNG", 10},
|
|
|
|
{"c2l3_theme_SNG", 11},
|
|
|
|
{"c2l3_spc01_SNG", 11},
|
|
|
|
{"c2l5_theme_SNG", 12},
|
|
|
|
{"c2l5_spc01_SNG", 12},
|
|
|
|
{"c5l1_start_SNG", 12},
|
|
|
|
{"c4l1_theme_SNG", 12},
|
|
|
|
{"c5l1_1_SNG", 12},
|
|
|
|
{"c5l1_2_SNG", 12},
|
|
|
|
{"c5l1_3_SNG", 12},
|
|
|
|
{"c3l1_theme_SNG", 13},
|
|
|
|
{"c5l2_theme_SNG", 13},
|
|
|
|
{"c5l2_spc01_SNG", 13},
|
|
|
|
{"c5l3_theme_SNG", 13},
|
|
|
|
{"c3l2_theme_SNG", 14},
|
|
|
|
{"silent01_SNG", 14},
|
|
|
|
{"silent02_SNG", 14},
|
|
|
|
{"c3l5_spc01_SNG", 14},
|
|
|
|
{"c3l4_theme_SNG", 14},
|
|
|
|
{"c3l4_spc01_SNG", 14},
|
|
|
|
{"credits_SNG", 20},
|
|
|
|
{"c1l1_cut1_SNG", 30},
|
|
|
|
{"c1l2_cut1_SNG", 30},
|
|
|
|
{"c1l3_cut1_SNG", 30},
|
|
|
|
{"c1l4_cut1_SNG", 30},
|
|
|
|
{"c1l5_cut1_SNG", 30},
|
|
|
|
{"c2l1_cut1_SNG", 30},
|
|
|
|
{"c2l2_cut1_SNG", 30},
|
|
|
|
{"c2l3_cut1_SNG", 30},
|
|
|
|
{"c2l5_cut1_SNG", 30},
|
|
|
|
{"c2l6_cut1_SNG", 30},
|
|
|
|
{"c3l1_cut1_SNG", 30},
|
|
|
|
{"c3l2_cut1_SNG", 30},
|
|
|
|
{"c3l3_cut1_SNG", 30},
|
|
|
|
{"c3l4_cut1_SNG", 30},
|
|
|
|
{"c3l5_cut1_SNG", 30},
|
|
|
|
{"c4l1_cut1_SNG", 30},
|
|
|
|
{"c5l1_cut1_SNG", 30},
|
|
|
|
{"c5l2_cut1_SNG", 30},
|
|
|
|
{"c5l3_cut1_SNG", 30},
|
|
|
|
{"extr_cut1_SNG", 30},
|
|
|
|
{"cut_jing1_SNG", 30},
|
|
|
|
{"cut_jing2_SNG", 30},
|
|
|
|
{"cut_seq1_SNG", 30},
|
|
|
|
{"cut_seq2_SNG", 30},
|
|
|
|
{"cut_seq3_SNG", 30},
|
|
|
|
{"cut_seq4_SNG", 30},
|
|
|
|
{"cut_seq5_SNG", 30},
|
|
|
|
{"cut_seq6_SNG", 30},
|
|
|
|
{"cut_seq7_SNG", 30},
|
|
|
|
{"cut_seq8_SNG", 30},
|
|
|
|
{}
|
2016-07-16 21:55:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int LookupRS1SongId(const char* name)
|
|
|
|
{
|
2016-07-17 21:23:29 +00:00
|
|
|
const RS1SongMapping* map = RS1Mappings;
|
2016-07-16 21:55:13 +00:00
|
|
|
while (map->name)
|
|
|
|
{
|
|
|
|
if (!strcmp(name, map->name))
|
|
|
|
return map->songId;
|
|
|
|
++map;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
static bool ValidateRS1PC(FILE* fp)
|
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
if (endPos > 100 * 1024 * 1024)
|
|
|
|
return false;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
uint32_t fstOff;
|
|
|
|
uint32_t fstSz;
|
|
|
|
if (fread(&fstOff, 1, 4, fp) == 4 && fread(&fstSz, 1, 4, fp) == 4)
|
|
|
|
{
|
|
|
|
if (fstOff + fstSz <= endPos)
|
|
|
|
{
|
|
|
|
FSeek(fp, fstOff, SEEK_SET);
|
|
|
|
uint32_t elemCount = fstSz / 32;
|
|
|
|
std::unique_ptr<RS1FSTEntry[]> entries(new RS1FSTEntry[elemCount]);
|
|
|
|
fread(entries.get(), fstSz, 1, fp);
|
|
|
|
|
|
|
|
uint8_t foundComps = 0;
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < elemCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-05-27 05:30:43 +00:00
|
|
|
RS1FSTEntry& entry = entries[i];
|
|
|
|
if (!strncmp("proj_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
foundComps |= 1;
|
2016-05-27 05:30:43 +00:00
|
|
|
else if (!strncmp("pool_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
foundComps |= 2;
|
2016-05-27 05:30:43 +00:00
|
|
|
else if (!strncmp("sdir_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
foundComps |= 4;
|
2016-05-27 05:30:43 +00:00
|
|
|
else if (!strncmp("samp_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
foundComps |= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundComps == 0xf)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadRS1PC(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
uint32_t fstOff;
|
|
|
|
uint32_t fstSz;
|
|
|
|
if (fread(&fstOff, 1, 4, fp) == 4 && fread(&fstSz, 1, 4, fp) == 4)
|
|
|
|
{
|
|
|
|
if (fstOff + fstSz <= endPos)
|
|
|
|
{
|
|
|
|
FSeek(fp, fstOff, SEEK_SET);
|
|
|
|
uint32_t elemCount = fstSz / 32;
|
|
|
|
std::unique_ptr<RS1FSTEntry[]> entries(new RS1FSTEntry[elemCount]);
|
|
|
|
fread(entries.get(), fstSz, 1, fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> proj;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t projSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> pool;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t poolSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> sdir;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sdirSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> samp;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sampSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < elemCount; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-05-27 05:30:43 +00:00
|
|
|
RS1FSTEntry& entry = entries[i];
|
|
|
|
if (!strncmp("proj_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-04 02:34:35 +00:00
|
|
|
projSz = entry.decompSz;
|
2016-05-27 05:30:43 +00:00
|
|
|
proj.reset(new uint8_t[entry.decompSz]);
|
|
|
|
FSeek(fp, entry.offset, SEEK_SET);
|
|
|
|
fread(proj.get(), 1, entry.decompSz, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
2016-05-27 05:30:43 +00:00
|
|
|
else if (!strncmp("pool_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-04 02:34:35 +00:00
|
|
|
poolSz = entry.decompSz;
|
2016-05-27 05:30:43 +00:00
|
|
|
pool.reset(new uint8_t[entry.decompSz]);
|
|
|
|
FSeek(fp, entry.offset, SEEK_SET);
|
|
|
|
fread(pool.get(), 1, entry.decompSz, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
2016-05-27 05:30:43 +00:00
|
|
|
else if (!strncmp("sdir_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-04 02:34:35 +00:00
|
|
|
sdirSz = entry.decompSz;
|
2016-05-27 05:30:43 +00:00
|
|
|
sdir.reset(new uint8_t[entry.decompSz]);
|
|
|
|
FSeek(fp, entry.offset, SEEK_SET);
|
|
|
|
fread(sdir.get(), 1, entry.decompSz, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
2016-05-27 05:30:43 +00:00
|
|
|
else if (!strncmp("samp_SND", entry.name, 16))
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-04 02:34:35 +00:00
|
|
|
sampSz = entry.decompSz;
|
2016-05-27 05:30:43 +00:00
|
|
|
samp.reset(new uint8_t[entry.decompSz]);
|
|
|
|
FSeek(fp, entry.offset, SEEK_SET);
|
|
|
|
fread(samp.get(), 1, entry.decompSz, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(_S("Group"),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projSz, pool.release(), poolSz, sdir.release(),
|
|
|
|
sdirSz, samp.release(), sampSz, false, PCDataTag{}});
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-21 06:40:13 +00:00
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadRS1PCSongs(FILE* fp)
|
|
|
|
{
|
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
uint32_t fstOff;
|
|
|
|
uint32_t fstSz;
|
|
|
|
if (fread(&fstOff, 1, 4, fp) == 4 && fread(&fstSz, 1, 4, fp) == 4)
|
|
|
|
{
|
|
|
|
if (fstOff + fstSz <= endPos)
|
|
|
|
{
|
|
|
|
FSeek(fp, fstOff, SEEK_SET);
|
|
|
|
uint32_t elemCount = fstSz / 32;
|
|
|
|
std::unique_ptr<RS1FSTEntry[]> entries(new RS1FSTEntry[elemCount]);
|
|
|
|
fread(entries.get(), fstSz, 1, fp);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t i = 0; i < elemCount; ++i)
|
2016-06-21 06:40:13 +00:00
|
|
|
{
|
|
|
|
RS1FSTEntry& entry = entries[i];
|
|
|
|
if (strstr(entry.name, "SNG"))
|
|
|
|
{
|
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[entry.decompSz]);
|
|
|
|
FSeek(fp, entry.offset, SEEK_SET);
|
|
|
|
fread(song.get(), 1, entry.decompSz, fp);
|
|
|
|
|
|
|
|
SystemString name = StrToSys(entry.name);
|
2016-07-16 21:55:13 +00:00
|
|
|
ret.emplace_back(name, ContainerRegistry::SongData(std::move(song), entry.decompSz, -1,
|
|
|
|
LookupRS1SongId(entry.name)));
|
2016-06-21 06:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
static bool ValidateRS1N64(FILE* fp)
|
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
2016-05-28 02:28:59 +00:00
|
|
|
if (endPos > 32 * 1024 * 1024)
|
|
|
|
return false; /* N64 ROM definitely won't exceed 32MB */
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
if ((data[0] & 0x80) != 0x80 && (data[3] & 0x80) == 0x80)
|
2016-05-29 18:22:20 +00:00
|
|
|
SwapN64Rom32(data.get(), endPos);
|
|
|
|
else if ((data[0] & 0x80) != 0x80 && (data[1] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom16(data.get(), endPos);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-05-29 18:22:20 +00:00
|
|
|
#if 0
|
2016-05-29 04:31:58 +00:00
|
|
|
const uint32_t* gameId = reinterpret_cast<const uint32_t*>(&data[59]);
|
2016-05-29 18:22:20 +00:00
|
|
|
if (*gameId != 0x4553524e && *gameId != 0x4a53524e && *gameId != 0x5053524e)
|
|
|
|
return false; /* GameId not 'NRSE', 'NRSJ', or 'NRSP' */
|
|
|
|
#endif
|
2016-05-29 04:31:58 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* dataSeg =
|
|
|
|
reinterpret_cast<const uint8_t*>(memmem(data.get(), endPos, "dbg_data\0\0\0\0\0\0\0\0", 16));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (dataSeg)
|
|
|
|
{
|
|
|
|
dataSeg += 28;
|
|
|
|
size_t fstEnd = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
dataSeg += 4;
|
|
|
|
size_t fstOff = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
if (endPos <= size_t(dataSeg - data.get()) + fstOff || endPos <= size_t(dataSeg - data.get()) + fstEnd)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const RS1FSTEntry* entry = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstOff);
|
|
|
|
const RS1FSTEntry* lastEnt = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstEnd);
|
|
|
|
|
|
|
|
uint8_t foundComps = 0;
|
2016-07-14 04:54:46 +00:00
|
|
|
for (; entry != lastEnt; ++entry)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
if (!strncmp("proj_SND", entry->name, 16))
|
|
|
|
foundComps |= 1;
|
|
|
|
else if (!strncmp("pool_SND", entry->name, 16))
|
|
|
|
foundComps |= 2;
|
|
|
|
else if (!strncmp("sdir_SND", entry->name, 16))
|
|
|
|
foundComps |= 4;
|
|
|
|
else if (!strncmp("samp_SND", entry->name, 16))
|
|
|
|
foundComps |= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundComps == 0xf)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadRS1N64(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
if ((data[0] & 0x80) != 0x80 && (data[3] & 0x80) == 0x80)
|
2016-05-29 18:22:20 +00:00
|
|
|
SwapN64Rom32(data.get(), endPos);
|
|
|
|
else if ((data[0] & 0x80) != 0x80 && (data[1] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom16(data.get(), endPos);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* dataSeg =
|
|
|
|
reinterpret_cast<const uint8_t*>(memmem(data.get(), endPos, "dbg_data\0\0\0\0\0\0\0\0", 16));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (dataSeg)
|
|
|
|
{
|
|
|
|
dataSeg += 28;
|
|
|
|
size_t fstEnd = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
dataSeg += 4;
|
|
|
|
size_t fstOff = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
if (endPos <= size_t(dataSeg - data.get()) + fstOff || endPos <= size_t(dataSeg - data.get()) + fstEnd)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
const RS1FSTEntry* entry = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstOff);
|
|
|
|
const RS1FSTEntry* lastEnt = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstEnd);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> proj;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t projSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> pool;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t poolSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> sdir;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sdirSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
std::unique_ptr<uint8_t[]> samp;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sampSz = 0;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (; entry != lastEnt; ++entry)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
RS1FSTEntry ent = *entry;
|
|
|
|
ent.swapBig();
|
|
|
|
|
|
|
|
if (!strncmp("proj_SND", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
proj.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(proj.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
proj.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(proj.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
projSz = ent.decompSz;
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else if (!strncmp("pool_SND", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
pool.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(pool.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pool.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(pool.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
poolSz = ent.decompSz;
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else if (!strncmp("sdir_SND", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
sdir.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(sdir.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sdir.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(sdir.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
sdirSz = ent.decompSz;
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else if (!strncmp("samp_SND", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
samp.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(samp.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
samp.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(samp.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
sampSz = ent.decompSz;
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-28 02:28:59 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(_S("Group"),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projSz, pool.release(), poolSz, sdir.release(), sdirSz,
|
|
|
|
samp.release(), sampSz, false, N64DataTag{}});
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-20 03:35:57 +00:00
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadRS1N64Songs(FILE* fp)
|
|
|
|
{
|
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
if ((data[0] & 0x80) != 0x80 && (data[3] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom32(data.get(), endPos);
|
|
|
|
else if ((data[0] & 0x80) != 0x80 && (data[1] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom16(data.get(), endPos);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* dataSeg =
|
|
|
|
reinterpret_cast<const uint8_t*>(memmem(data.get(), endPos, "dbg_data\0\0\0\0\0\0\0\0", 16));
|
2016-06-20 03:35:57 +00:00
|
|
|
if (dataSeg)
|
|
|
|
{
|
|
|
|
dataSeg += 28;
|
|
|
|
size_t fstEnd = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
dataSeg += 4;
|
|
|
|
size_t fstOff = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
if (endPos <= size_t(dataSeg - data.get()) + fstOff || endPos <= size_t(dataSeg - data.get()) + fstEnd)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
const RS1FSTEntry* entry = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstOff);
|
|
|
|
const RS1FSTEntry* lastEnt = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstEnd);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (; entry != lastEnt; ++entry)
|
2016-06-20 03:35:57 +00:00
|
|
|
{
|
|
|
|
RS1FSTEntry ent = *entry;
|
|
|
|
ent.swapBig();
|
|
|
|
|
|
|
|
if (strstr(ent.name, "SNG"))
|
|
|
|
{
|
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[ent.decompSz]);
|
|
|
|
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
memmove(song.get(), dataSeg + ent.offset, ent.decompSz);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(song.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
|
|
|
|
|
|
|
SystemString name = StrToSys(ent.name);
|
2016-07-16 21:55:13 +00:00
|
|
|
ret.emplace_back(name, ContainerRegistry::SongData(std::move(song), ent.decompSz, -1,
|
|
|
|
LookupRS1SongId(ent.name)));
|
2016-06-20 03:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-18 22:38:28 +00:00
|
|
|
static bool ValidateFactor5N64Rev(FILE* fp)
|
2016-05-29 18:22:20 +00:00
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
if (endPos > 32 * 1024 * 1024)
|
|
|
|
return false; /* N64 ROM definitely won't exceed 32MB */
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
if ((data[0] & 0x80) != 0x80 && (data[3] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom32(data.get(), endPos);
|
|
|
|
else if ((data[0] & 0x80) != 0x80 && (data[1] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom16(data.get(), endPos);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
const uint32_t* gameId = reinterpret_cast<const uint32_t*>(&data[59]);
|
|
|
|
if (*gameId != 0x4553524e && *gameId != 0x4a53524e && *gameId != 0x5053524e)
|
|
|
|
return false; /* GameId not 'NRSE', 'NRSJ', or 'NRSP' */
|
|
|
|
#endif
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* dataSeg =
|
|
|
|
reinterpret_cast<const uint8_t*>(memmem(data.get(), endPos, "dbg_data\0\0\0\0\0\0\0\0", 16));
|
2016-05-29 18:22:20 +00:00
|
|
|
if (dataSeg)
|
|
|
|
{
|
|
|
|
dataSeg += 28;
|
|
|
|
size_t fstEnd = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
dataSeg += 4;
|
|
|
|
size_t fstOff = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
if (endPos <= size_t(dataSeg - data.get()) + fstOff || endPos <= size_t(dataSeg - data.get()) + fstEnd)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const RS1FSTEntry* entry = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstOff);
|
|
|
|
const RS1FSTEntry* lastEnt = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstEnd);
|
|
|
|
|
|
|
|
uint8_t foundComps = 0;
|
2016-07-14 04:54:46 +00:00
|
|
|
for (; entry != lastEnt; ++entry)
|
2016-05-29 18:22:20 +00:00
|
|
|
{
|
|
|
|
if (!strncmp("proj", entry->name, 16))
|
|
|
|
foundComps |= 1;
|
|
|
|
else if (!strncmp("pool", entry->name, 16))
|
|
|
|
foundComps |= 2;
|
|
|
|
else if (!strncmp("sdir", entry->name, 16))
|
|
|
|
foundComps |= 4;
|
|
|
|
else if (!strncmp("samp", entry->name, 16))
|
|
|
|
foundComps |= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundComps == 0xf)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-18 22:38:28 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadFactor5N64Rev(FILE* fp)
|
2016-05-29 18:22:20 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-29 18:22:20 +00:00
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
if ((data[0] & 0x80) != 0x80 && (data[3] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom32(data.get(), endPos);
|
|
|
|
else if ((data[0] & 0x80) != 0x80 && (data[1] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom16(data.get(), endPos);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* dataSeg =
|
|
|
|
reinterpret_cast<const uint8_t*>(memmem(data.get(), endPos, "dbg_data\0\0\0\0\0\0\0\0", 16));
|
2016-05-29 18:22:20 +00:00
|
|
|
if (dataSeg)
|
|
|
|
{
|
|
|
|
dataSeg += 28;
|
|
|
|
size_t fstEnd = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
dataSeg += 4;
|
|
|
|
size_t fstOff = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
if (endPos <= size_t(dataSeg - data.get()) + fstOff || endPos <= size_t(dataSeg - data.get()) + fstEnd)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
const RS1FSTEntry* entry = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstOff);
|
|
|
|
const RS1FSTEntry* lastEnt = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstEnd);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> proj;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t projSz = 0;
|
2016-05-29 18:22:20 +00:00
|
|
|
std::unique_ptr<uint8_t[]> pool;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t poolSz = 0;
|
2016-05-29 18:22:20 +00:00
|
|
|
std::unique_ptr<uint8_t[]> sdir;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sdirSz = 0;
|
2016-05-29 18:22:20 +00:00
|
|
|
std::unique_ptr<uint8_t[]> samp;
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sampSz = 0;
|
2016-05-29 18:22:20 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (; entry != lastEnt; ++entry)
|
2016-05-29 18:22:20 +00:00
|
|
|
{
|
|
|
|
RS1FSTEntry ent = *entry;
|
|
|
|
ent.swapBig();
|
|
|
|
|
|
|
|
if (!strncmp("proj", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
proj.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(proj.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
proj.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(proj.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
projSz = ent.decompSz;
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else if (!strncmp("pool", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
pool.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(pool.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pool.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(pool.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
poolSz = ent.decompSz;
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else if (!strncmp("sdir", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
sdir.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(sdir.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sdir.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(sdir.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
sdirSz = ent.decompSz;
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else if (!strncmp("samp", ent.name, 16))
|
|
|
|
{
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
samp.reset(new uint8_t[ent.decompSz]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(samp.get(), dataSeg + ent.offset, ent.decompSz);
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
samp.reset(new uint8_t[ent.decompSz]);
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(samp.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
2016-06-04 02:34:35 +00:00
|
|
|
sampSz = ent.decompSz;
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(_S("Group"),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projSz, pool.release(), poolSz, sdir.release(), sdirSz,
|
|
|
|
samp.release(), sampSz, true, N64DataTag{}});
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-18 22:38:28 +00:00
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadFactor5N64RevSongs(FILE* fp)
|
2016-06-21 06:40:13 +00:00
|
|
|
{
|
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
if ((data[0] & 0x80) != 0x80 && (data[3] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom32(data.get(), endPos);
|
|
|
|
else if ((data[0] & 0x80) != 0x80 && (data[1] & 0x80) == 0x80)
|
|
|
|
SwapN64Rom16(data.get(), endPos);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
const uint8_t* dataSeg =
|
|
|
|
reinterpret_cast<const uint8_t*>(memmem(data.get(), endPos, "dbg_data\0\0\0\0\0\0\0\0", 16));
|
2016-06-21 06:40:13 +00:00
|
|
|
if (dataSeg)
|
|
|
|
{
|
|
|
|
dataSeg += 28;
|
|
|
|
size_t fstEnd = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
dataSeg += 4;
|
|
|
|
size_t fstOff = SBig(*reinterpret_cast<const uint32_t*>(dataSeg));
|
|
|
|
if (endPos <= size_t(dataSeg - data.get()) + fstOff || endPos <= size_t(dataSeg - data.get()) + fstEnd)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
const RS1FSTEntry* entry = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstOff);
|
|
|
|
const RS1FSTEntry* lastEnt = reinterpret_cast<const RS1FSTEntry*>(dataSeg + fstEnd);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (; entry != lastEnt; ++entry)
|
2016-06-21 06:40:13 +00:00
|
|
|
{
|
|
|
|
RS1FSTEntry ent = *entry;
|
|
|
|
ent.swapBig();
|
|
|
|
|
|
|
|
if (!strncmp(ent.name, "s_", 2))
|
|
|
|
{
|
2016-07-18 22:38:28 +00:00
|
|
|
long idx = strtol(ent.name + 2, nullptr, 10);
|
|
|
|
|
2016-06-21 06:40:13 +00:00
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[ent.decompSz]);
|
|
|
|
|
|
|
|
if (ent.compSz == 0xffffffff)
|
|
|
|
{
|
|
|
|
memmove(song.get(), dataSeg + ent.offset, ent.decompSz);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uLongf outSz = ent.decompSz;
|
|
|
|
uncompress(song.get(), &outSz, dataSeg + ent.offset, ent.compSz);
|
|
|
|
}
|
|
|
|
|
|
|
|
SystemString name = StrToSys(ent.name);
|
2016-07-18 22:38:28 +00:00
|
|
|
ret.emplace_back(name, ContainerRegistry::SongData(std::move(song), ent.decompSz, -1, idx));
|
2016-06-21 06:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
struct RS2FSTEntry
|
|
|
|
{
|
|
|
|
uint64_t offset;
|
|
|
|
uint64_t decompSz;
|
|
|
|
uint64_t compSz;
|
|
|
|
uint64_t type;
|
|
|
|
char name[32];
|
|
|
|
|
|
|
|
void swapBig()
|
|
|
|
{
|
|
|
|
offset = SBig(offset);
|
|
|
|
decompSz = SBig(decompSz);
|
|
|
|
compSz = SBig(compSz);
|
|
|
|
type = SBig(type);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RS23GroupHead
|
|
|
|
{
|
|
|
|
uint32_t projOff;
|
|
|
|
uint32_t projLen;
|
2016-05-27 05:30:43 +00:00
|
|
|
uint32_t poolOff;
|
|
|
|
uint32_t poolLen;
|
2016-05-27 00:56:18 +00:00
|
|
|
uint32_t sdirOff;
|
|
|
|
uint32_t sdirLen;
|
|
|
|
uint32_t sampOff;
|
|
|
|
uint32_t sampLen;
|
|
|
|
|
2016-05-30 22:46:43 +00:00
|
|
|
uint32_t unkOff;
|
|
|
|
uint32_t unkLen;
|
|
|
|
|
|
|
|
uint32_t sonCount;
|
|
|
|
uint32_t sonIdxBeginOff;
|
|
|
|
uint32_t sonIdxEndOff;
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
void swapBig()
|
|
|
|
{
|
|
|
|
projOff = SBig(projOff);
|
|
|
|
projLen = SBig(projLen);
|
2016-05-27 05:30:43 +00:00
|
|
|
poolOff = SBig(poolOff);
|
|
|
|
poolLen = SBig(poolLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
sdirOff = SBig(sdirOff);
|
|
|
|
sdirLen = SBig(sdirLen);
|
|
|
|
sampOff = SBig(sampOff);
|
|
|
|
sampLen = SBig(sampLen);
|
2016-05-30 22:46:43 +00:00
|
|
|
unkOff = SBig(unkOff);
|
|
|
|
unkLen = SBig(unkLen);
|
|
|
|
sonCount = SBig(sonCount);
|
|
|
|
sonIdxBeginOff = SBig(sonIdxBeginOff);
|
|
|
|
sonIdxEndOff = SBig(sonIdxEndOff);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RS23SONHead
|
|
|
|
{
|
|
|
|
uint32_t offset;
|
|
|
|
uint32_t length;
|
|
|
|
uint16_t groupId;
|
|
|
|
uint16_t setupId;
|
|
|
|
|
|
|
|
void swapBig()
|
|
|
|
{
|
|
|
|
offset = SBig(offset);
|
|
|
|
length = SBig(length);
|
|
|
|
groupId = SBig(groupId);
|
|
|
|
setupId = SBig(setupId);
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool ValidateRS2(FILE* fp)
|
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
if (endPos > 600 * 1024 * 1024)
|
|
|
|
return false;
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
uint64_t fstOff;
|
|
|
|
fread(&fstOff, 1, 8, fp);
|
|
|
|
fstOff = SBig(fstOff);
|
|
|
|
uint64_t fstSz;
|
|
|
|
fread(&fstSz, 1, 8, fp);
|
|
|
|
fstSz = SBig(fstSz);
|
|
|
|
|
|
|
|
if (fstOff + fstSz > endPos)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FSeek(fp, int64_t(fstOff), SEEK_SET);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < fstSz / 64; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
RS2FSTEntry entry;
|
|
|
|
fread(&entry, 1, 64, fp);
|
|
|
|
entry.swapBig();
|
2016-05-27 05:44:41 +00:00
|
|
|
if (!entry.offset)
|
|
|
|
return false; /* This is to reject RS3 data */
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!strncmp("data", entry.name, 32))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadRS2(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
uint64_t fstOff;
|
|
|
|
fread(&fstOff, 1, 8, fp);
|
|
|
|
fstOff = SBig(fstOff);
|
|
|
|
uint64_t fstSz;
|
|
|
|
fread(&fstSz, 1, 8, fp);
|
|
|
|
fstSz = SBig(fstSz);
|
|
|
|
|
|
|
|
if (fstOff + fstSz > endPos)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
FSeek(fp, int64_t(fstOff), SEEK_SET);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < fstSz / 64; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
RS2FSTEntry entry;
|
|
|
|
fread(&entry, 1, 64, fp);
|
|
|
|
entry.swapBig();
|
|
|
|
if (!strncmp("data", entry.name, 32))
|
|
|
|
{
|
|
|
|
FSeek(fp, int64_t(entry.offset), SEEK_SET);
|
|
|
|
std::unique_ptr<uint8_t[]> audData(new uint8_t[entry.decompSz]);
|
|
|
|
fread(audData.get(), 1, entry.decompSz, fp);
|
|
|
|
|
|
|
|
uint32_t indexOff = SBig(*reinterpret_cast<uint32_t*>(audData.get() + 4));
|
|
|
|
uint32_t groupCount = SBig(*reinterpret_cast<uint32_t*>(audData.get() + indexOff));
|
|
|
|
const uint32_t* groupOffs = reinterpret_cast<const uint32_t*>(audData.get() + indexOff + 4);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t j = 0; j < groupCount; ++j)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
const uint8_t* groupData = audData.get() + SBig(groupOffs[j]);
|
|
|
|
RS23GroupHead head = *reinterpret_cast<const RS23GroupHead*>(groupData);
|
|
|
|
head.swapBig();
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> pool(new uint8_t[head.poolLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(pool.get(), audData.get() + head.poolOff, head.poolLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> proj(new uint8_t[head.projLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(proj.get(), audData.get() + head.projOff, head.projLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> sdir(new uint8_t[head.sdirLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(sdir.get(), audData.get() + head.sdirOff, head.sdirLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> samp(new uint8_t[head.sampLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(samp.get(), audData.get() + head.sampOff, head.sampLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-06-05 03:11:24 +00:00
|
|
|
if (head.projLen && head.poolLen && head.sdirLen && head.sampLen)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar name[128];
|
|
|
|
SNPrintf(name, 128, _S("GroupFile%02u"), j);
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(name, IntrusiveAudioGroupData{proj.release(), head.projLen, pool.release(),
|
|
|
|
head.poolLen, sdir.release(), head.sdirLen,
|
|
|
|
samp.release(), head.sampLen, GCNDataTag{}});
|
2016-06-05 03:11:24 +00:00
|
|
|
}
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadRS2Songs(FILE* fp)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
2016-05-30 22:46:43 +00:00
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
uint64_t fstOff;
|
|
|
|
fread(&fstOff, 1, 8, fp);
|
|
|
|
fstOff = SBig(fstOff);
|
|
|
|
uint64_t fstSz;
|
|
|
|
fread(&fstSz, 1, 8, fp);
|
|
|
|
fstSz = SBig(fstSz);
|
|
|
|
|
|
|
|
if (fstOff + fstSz > endPos)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
FSeek(fp, int64_t(fstOff), SEEK_SET);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < fstSz / 64; ++i)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
RS2FSTEntry entry;
|
|
|
|
fread(&entry, 1, 64, fp);
|
|
|
|
entry.swapBig();
|
|
|
|
if (!strncmp("data", entry.name, 32))
|
|
|
|
{
|
|
|
|
FSeek(fp, int64_t(entry.offset), SEEK_SET);
|
|
|
|
std::unique_ptr<uint8_t[]> audData(new uint8_t[entry.decompSz]);
|
|
|
|
fread(audData.get(), 1, entry.decompSz, fp);
|
|
|
|
|
|
|
|
uint32_t indexOff = SBig(*reinterpret_cast<uint32_t*>(audData.get() + 4));
|
|
|
|
uint32_t groupCount = SBig(*reinterpret_cast<uint32_t*>(audData.get() + indexOff));
|
|
|
|
const uint32_t* groupOffs = reinterpret_cast<const uint32_t*>(audData.get() + indexOff + 4);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t j = 0; j < groupCount; ++j)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
const uint8_t* groupData = audData.get() + SBig(groupOffs[j]);
|
|
|
|
RS23GroupHead head = *reinterpret_cast<const RS23GroupHead*>(groupData);
|
|
|
|
head.swapBig();
|
|
|
|
|
|
|
|
if (!head.sonCount)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const RS23SONHead* sonData = reinterpret_cast<const RS23SONHead*>(audData.get() + head.sonIdxBeginOff);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t s = 0; s < head.sonCount; ++s)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
RS23SONHead sonHead = sonData[s];
|
|
|
|
sonHead.swapBig();
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar name[128];
|
|
|
|
SNPrintf(name, 128, _S("GroupFile%02u-%u"), j, s);
|
2016-05-30 22:46:43 +00:00
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[sonHead.length]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(song.get(), audData.get() + sonHead.offset, sonHead.length);
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(name, ContainerRegistry::SongData(std::move(song), sonHead.length, sonHead.groupId,
|
|
|
|
sonHead.setupId));
|
2016-05-30 22:46:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
struct RS3FSTEntry
|
|
|
|
{
|
|
|
|
uint64_t offset;
|
|
|
|
uint64_t decompSz;
|
|
|
|
uint64_t compSz;
|
|
|
|
uint64_t type;
|
|
|
|
char name[128];
|
|
|
|
|
|
|
|
void swapBig()
|
|
|
|
{
|
|
|
|
offset = SBig(offset);
|
|
|
|
decompSz = SBig(decompSz);
|
|
|
|
compSz = SBig(compSz);
|
|
|
|
type = SBig(type);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool ValidateRS3(FILE* fp)
|
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
if (endPos > 600 * 1024 * 1024)
|
|
|
|
return false;
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
uint64_t fstOff;
|
|
|
|
fread(&fstOff, 1, 8, fp);
|
|
|
|
fstOff = SBig(fstOff);
|
|
|
|
uint64_t fstSz;
|
|
|
|
fread(&fstSz, 1, 8, fp);
|
|
|
|
fstSz = SBig(fstSz);
|
|
|
|
|
|
|
|
if (fstOff + fstSz > endPos)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FSeek(fp, int64_t(fstOff), SEEK_SET);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < fstSz / 160; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
RS3FSTEntry entry;
|
|
|
|
fread(&entry, 1, 160, fp);
|
|
|
|
entry.swapBig();
|
|
|
|
if (!strncmp("data", entry.name, 128))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
static std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> LoadRS3(FILE* fp)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
|
|
|
|
uint64_t fstOff;
|
|
|
|
fread(&fstOff, 1, 8, fp);
|
|
|
|
fstOff = SBig(fstOff);
|
|
|
|
uint64_t fstSz;
|
|
|
|
fread(&fstSz, 1, 8, fp);
|
|
|
|
fstSz = SBig(fstSz);
|
|
|
|
|
|
|
|
if (fstOff + fstSz > endPos)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
FSeek(fp, int64_t(fstOff), SEEK_SET);
|
2016-07-14 04:54:46 +00:00
|
|
|
for (size_t i = 0; i < fstSz / 160; ++i)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
RS3FSTEntry entry;
|
|
|
|
fread(&entry, 1, 160, fp);
|
|
|
|
entry.swapBig();
|
|
|
|
if (!strncmp("data", entry.name, 128))
|
|
|
|
{
|
|
|
|
FSeek(fp, int64_t(entry.offset), SEEK_SET);
|
|
|
|
std::unique_ptr<uint8_t[]> audData(new uint8_t[entry.decompSz]);
|
|
|
|
fread(audData.get(), 1, entry.decompSz, fp);
|
|
|
|
|
|
|
|
uint32_t indexOff = SBig(*reinterpret_cast<uint32_t*>(audData.get() + 4));
|
|
|
|
uint32_t groupCount = SBig(*reinterpret_cast<uint32_t*>(audData.get() + indexOff));
|
|
|
|
const uint32_t* groupOffs = reinterpret_cast<const uint32_t*>(audData.get() + indexOff + 4);
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
for (uint32_t j = 0; j < groupCount; ++j)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
const uint8_t* groupData = audData.get() + SBig(groupOffs[j]);
|
|
|
|
RS23GroupHead head = *reinterpret_cast<const RS23GroupHead*>(groupData);
|
|
|
|
head.swapBig();
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> pool(new uint8_t[head.poolLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(pool.get(), audData.get() + head.poolOff, head.poolLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> proj(new uint8_t[head.projLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(proj.get(), audData.get() + head.projOff, head.projLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> sdir(new uint8_t[head.sdirLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(sdir.get(), audData.get() + head.sdirOff, head.sdirLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> samp(new uint8_t[head.sampLen]);
|
2016-06-08 04:33:15 +00:00
|
|
|
memmove(samp.get(), audData.get() + head.sampOff, head.sampLen);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-06-05 03:11:24 +00:00
|
|
|
if (head.projLen && head.poolLen && head.sdirLen && head.sampLen)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar name[128];
|
|
|
|
SNPrintf(name, 128, _S("GroupFile%02u"), j);
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(name, IntrusiveAudioGroupData{proj.release(), head.projLen, pool.release(),
|
|
|
|
head.poolLen, sdir.release(), head.sdirLen,
|
|
|
|
samp.release(), head.sampLen, GCNDataTag{}});
|
2016-06-05 03:11:24 +00:00
|
|
|
}
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-03 22:41:31 +00:00
|
|
|
static bool ValidateStarFoxAdvSongs(FILE* fp)
|
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
if (endPos > 2 * 1024 * 1024)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
|
|
|
|
const uint32_t* lengths = reinterpret_cast<const uint32_t*>(data.get());
|
|
|
|
size_t totalLen = 0;
|
2016-07-14 04:54:46 +00:00
|
|
|
int i = 0;
|
|
|
|
for (; i < 128; ++i)
|
2016-07-03 22:41:31 +00:00
|
|
|
{
|
|
|
|
uint32_t len = SBig(lengths[i]);
|
|
|
|
if (len == 0)
|
|
|
|
break;
|
|
|
|
totalLen += len;
|
|
|
|
totalLen = ((totalLen + 31) & ~31);
|
|
|
|
}
|
2016-07-14 04:54:46 +00:00
|
|
|
totalLen += (((i * 4) + 31) & ~31);
|
2016-07-03 22:41:31 +00:00
|
|
|
|
|
|
|
return totalLen == endPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadStarFoxAdvSongs(FILE* midifp)
|
|
|
|
{
|
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
|
|
|
|
|
|
|
size_t endPos = FileLength(midifp);
|
|
|
|
if (endPos > 2 * 1024 * 1024)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, midifp);
|
|
|
|
|
|
|
|
const uint32_t* lengths = reinterpret_cast<const uint32_t*>(data.get());
|
2016-07-14 04:54:46 +00:00
|
|
|
int i = 0;
|
|
|
|
for (; i < 128; ++i)
|
2016-07-03 22:41:31 +00:00
|
|
|
{
|
|
|
|
uint32_t len = SBig(lengths[i]);
|
|
|
|
if (len == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t sngCount = i;
|
2016-07-14 04:54:46 +00:00
|
|
|
size_t cur = (((sngCount * 4) + 31) & ~31);
|
|
|
|
for (i = 0; i < sngCount; ++i)
|
2016-07-03 22:41:31 +00:00
|
|
|
{
|
|
|
|
uint32_t len = SBig(lengths[i]);
|
|
|
|
if (len == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
SystemChar name[128];
|
|
|
|
SNPrintf(name, 128, _S("Song%u"), i);
|
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[len]);
|
|
|
|
memmove(song.get(), data.get() + cur, len);
|
|
|
|
ret.emplace_back(name, ContainerRegistry::SongData(std::move(song), len, -1, i));
|
|
|
|
|
|
|
|
cur += len;
|
|
|
|
cur = ((cur + 31) & ~31);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-07 04:10:02 +00:00
|
|
|
static bool ValidatePaperMarioTTYDSongs(FILE* fp)
|
|
|
|
{
|
|
|
|
size_t endPos = FileLength(fp);
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, fp);
|
|
|
|
uint32_t off = 0;
|
|
|
|
while (off < endPos)
|
|
|
|
{
|
|
|
|
int32_t len = SBig(*(reinterpret_cast<int32_t*>(data.get() + off)));
|
|
|
|
if (len == -1)
|
|
|
|
break;
|
|
|
|
off += len;
|
|
|
|
}
|
|
|
|
return (off + 4) == endPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TTYDSongDesc
|
|
|
|
{
|
|
|
|
char name[30];
|
|
|
|
uint8_t group;
|
|
|
|
uint8_t setup;
|
|
|
|
};
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
static std::vector<std::pair<SystemString, ContainerRegistry::SongData>> LoadPaperMarioTTYDSongs(FILE* midifp,
|
|
|
|
FILE* descFp)
|
2016-07-07 04:10:02 +00:00
|
|
|
{
|
|
|
|
if (!descFp)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
std::vector<TTYDSongDesc> songDescs;
|
|
|
|
/* We need at least 143 for the default song table */
|
|
|
|
songDescs.reserve(143);
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
TTYDSongDesc songDesc;
|
|
|
|
fread(&songDesc, sizeof(TTYDSongDesc), 1, descFp);
|
|
|
|
if (songDesc.name[0] == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
uint32_t i = 0;
|
|
|
|
songDescs.push_back(songDesc);
|
|
|
|
}
|
|
|
|
size_t endPos = FileLength(midifp);
|
|
|
|
std::unique_ptr<uint8_t[]> data(new uint8_t[endPos]);
|
|
|
|
fread(data.get(), 1, endPos, midifp);
|
|
|
|
uint32_t off = 0;
|
|
|
|
uint32_t song = 0;
|
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ret;
|
|
|
|
|
|
|
|
while (off < endPos)
|
|
|
|
{
|
|
|
|
int32_t len = SBig(*(reinterpret_cast<int32_t*>(data.get() + off)));
|
|
|
|
if (len == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> songData(new uint8_t[len - 32]);
|
|
|
|
memcpy(songData.get(), (data.get() + off + 32), len - 32);
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(
|
|
|
|
StrToSys(std::string(songDescs[song].name, 30)),
|
|
|
|
ContainerRegistry::SongData(std::move(songData), len - 32, songDescs[song].group, songDescs[song].setup));
|
2016-07-07 04:10:02 +00:00
|
|
|
off += len;
|
|
|
|
song++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
ContainerRegistry::Type ContainerRegistry::DetectContainerType(const SystemChar* path)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FILE* fp;
|
|
|
|
|
|
|
|
/* See if provided file is one of four raw chunks */
|
2016-06-13 05:47:07 +00:00
|
|
|
const SystemChar* dot = nullptr;
|
2016-05-27 00:56:18 +00:00
|
|
|
if (IsChunkExtension(path, dot))
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar newpath[1024];
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
/* Project */
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.pro"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.proj"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return Type::Invalid;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Pool */
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.poo"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.pool"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return Type::Invalid;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Sample Directory */
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.sdi"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.sdir"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return Type::Invalid;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Sample */
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.sam"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.samp"), int(dot - path), path);
|
|
|
|
fp = FOpen(newpath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return Type::Invalid;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
2016-05-28 07:15:59 +00:00
|
|
|
|
|
|
|
return Type::Raw4;
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now attempt single-file case */
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(path, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
if (ValidateMP1(fp))
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return Type::MetroidPrime;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateMP2(fp))
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return Type::MetroidPrime2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS1PC(fp))
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return Type::RogueSquadronPC;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS1N64(fp))
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return Type::RogueSquadronN64;
|
|
|
|
}
|
|
|
|
|
2016-07-18 22:38:28 +00:00
|
|
|
if (ValidateFactor5N64Rev(fp))
|
2016-05-29 18:22:20 +00:00
|
|
|
{
|
|
|
|
fclose(fp);
|
2016-07-18 22:38:28 +00:00
|
|
|
return Type::Factor5N64Rev;
|
2016-05-29 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
if (ValidateRS2(fp))
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return Type::RogueSquadron2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS3(fp))
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return Type::RogueSquadron3;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Type::Invalid;
|
|
|
|
}
|
2016-06-13 05:47:07 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ContainerRegistry::LoadContainer(const SystemChar* path)
|
2016-06-04 02:34:35 +00:00
|
|
|
{
|
|
|
|
Type typeOut;
|
|
|
|
return LoadContainer(path, typeOut);
|
|
|
|
};
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ContainerRegistry::LoadContainer(const SystemChar* path,
|
|
|
|
Type& typeOut)
|
2016-05-27 00:56:18 +00:00
|
|
|
{
|
|
|
|
FILE* fp;
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::Invalid;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
/* See if provided file is one of four raw chunks */
|
2016-06-13 05:47:07 +00:00
|
|
|
const SystemChar* dot = nullptr;
|
2016-05-27 00:56:18 +00:00
|
|
|
if (IsChunkExtension(path, dot))
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, IntrusiveAudioGroupData>> ret;
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
/* Project */
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar projPath[1024];
|
|
|
|
SNPrintf(projPath, 1024, _S("%.*s.pro"), int(dot - path), path);
|
|
|
|
fp = FOpen(projPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(projPath, 1024, _S("%.*s.proj"), int(dot - path), path);
|
|
|
|
fp = FOpen(projPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Pool */
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar poolPath[1024];
|
|
|
|
SNPrintf(poolPath, 1024, _S("%.*s.poo"), int(dot - path), path);
|
|
|
|
fp = FOpen(poolPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(poolPath, 1024, _S("%.*s.pool"), int(dot - path), path);
|
|
|
|
fp = FOpen(poolPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Sample Directory */
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar sdirPath[1024];
|
|
|
|
SNPrintf(sdirPath, 1024, _S("%.*s.sdi"), int(dot - path), path);
|
|
|
|
fp = FOpen(sdirPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(sdirPath, 1024, _S("%.*s.sdir"), int(dot - path), path);
|
|
|
|
fp = FOpen(sdirPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Sample */
|
2016-06-13 05:47:07 +00:00
|
|
|
SystemChar sampPath[1024];
|
|
|
|
SNPrintf(sampPath, 1024, _S("%.*s.sam"), int(dot - path), path);
|
|
|
|
fp = FOpen(sampPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
SNPrintf(sampPath, 1024, _S("%.*s.samp"), int(dot - path), path);
|
|
|
|
fp = FOpen(sampPath, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (!fp)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(projPath, _S("rb"));
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t projLen = FileLength(fp);
|
|
|
|
if (!projLen)
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
2016-06-04 02:34:35 +00:00
|
|
|
std::unique_ptr<uint8_t[]> proj(new uint8_t[projLen]);
|
|
|
|
fread(proj.get(), 1, projLen, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(poolPath, _S("rb"));
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t poolLen = FileLength(fp);
|
|
|
|
if (!poolLen)
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
2016-06-04 02:34:35 +00:00
|
|
|
std::unique_ptr<uint8_t[]> pool(new uint8_t[poolLen]);
|
|
|
|
fread(pool.get(), 1, poolLen, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(sdirPath, _S("rb"));
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sdirLen = FileLength(fp);
|
|
|
|
if (!sdirLen)
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
2016-06-04 02:34:35 +00:00
|
|
|
std::unique_ptr<uint8_t[]> sdir(new uint8_t[sdirLen]);
|
|
|
|
fread(sdir.get(), 1, sdirLen, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(sampPath, _S("rb"));
|
2016-06-04 02:34:35 +00:00
|
|
|
size_t sampLen = FileLength(fp);
|
2016-06-09 01:26:29 +00:00
|
|
|
if (!sampLen)
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
2016-06-04 02:34:35 +00:00
|
|
|
std::unique_ptr<uint8_t[]> samp(new uint8_t[sampLen]);
|
|
|
|
fread(samp.get(), 1, sampLen, fp);
|
2016-05-27 00:56:18 +00:00
|
|
|
|
|
|
|
fclose(fp);
|
2016-05-28 02:28:59 +00:00
|
|
|
|
|
|
|
/* SDIR-based format detection */
|
|
|
|
if (*reinterpret_cast<uint32_t*>(sdir.get() + 8) == 0x0)
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(_S("Group"),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projLen, pool.release(), poolLen, sdir.release(),
|
|
|
|
sdirLen, samp.release(), sampLen, GCNDataTag{}});
|
2016-05-28 02:28:59 +00:00
|
|
|
else if (sdir[9] == 0x0)
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(_S("Group"),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projLen, pool.release(), poolLen, sdir.release(),
|
|
|
|
sdirLen, samp.release(), sampLen, false, N64DataTag{}});
|
2016-05-28 02:28:59 +00:00
|
|
|
else
|
2016-07-14 04:54:46 +00:00
|
|
|
ret.emplace_back(_S("Group"),
|
|
|
|
IntrusiveAudioGroupData{proj.release(), projLen, pool.release(), poolLen, sdir.release(),
|
|
|
|
sdirLen, samp.release(), sampLen, false, PCDataTag{}});
|
2016-05-28 02:28:59 +00:00
|
|
|
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::Raw4;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now attempt single-file case */
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(path, _S("rb"));
|
2016-05-27 00:56:18 +00:00
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
if (ValidateMP1(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadMP1(fp);
|
|
|
|
fclose(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::MetroidPrime;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateMP2(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadMP2(fp);
|
|
|
|
fclose(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::MetroidPrime2;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS1PC(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadRS1PC(fp);
|
|
|
|
fclose(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::RogueSquadronPC;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS1N64(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadRS1N64(fp);
|
|
|
|
fclose(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::RogueSquadronN64;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-18 22:38:28 +00:00
|
|
|
if (ValidateFactor5N64Rev(fp))
|
2016-05-29 18:22:20 +00:00
|
|
|
{
|
2016-07-18 22:38:28 +00:00
|
|
|
auto ret = LoadFactor5N64Rev(fp);
|
2016-05-29 18:22:20 +00:00
|
|
|
fclose(fp);
|
2016-07-18 22:38:28 +00:00
|
|
|
typeOut = Type::Factor5N64Rev;
|
2016-05-29 18:22:20 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:56:18 +00:00
|
|
|
if (ValidateRS2(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadRS2(fp);
|
|
|
|
fclose(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::RogueSquadron2;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS3(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadRS3(fp);
|
|
|
|
fclose(fp);
|
2016-06-04 02:34:35 +00:00
|
|
|
typeOut = Type::RogueSquadron3;
|
2016-05-27 00:56:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
std::vector<std::pair<SystemString, ContainerRegistry::SongData>> ContainerRegistry::LoadSongs(const SystemChar* path)
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
|
|
|
FILE* fp;
|
|
|
|
|
|
|
|
/* See if provided file is a raw song */
|
2016-06-13 05:47:07 +00:00
|
|
|
const SystemChar* dot = nullptr;
|
2016-05-30 22:46:43 +00:00
|
|
|
if (IsSongExtension(path, dot))
|
|
|
|
{
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(path, _S("rb"));
|
2016-05-30 22:46:43 +00:00
|
|
|
size_t fLen = FileLength(fp);
|
|
|
|
if (!fLen)
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
std::unique_ptr<uint8_t[]> song(new uint8_t[fLen]);
|
|
|
|
fread(song.get(), 1, fLen, fp);
|
|
|
|
fclose(fp);
|
|
|
|
|
2016-06-13 05:47:07 +00:00
|
|
|
std::vector<std::pair<SystemString, SongData>> ret;
|
|
|
|
ret.emplace_back(_S("Song"), SongData(std::move(song), fLen, -1, -1));
|
2016-05-30 22:46:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now attempt archive-file case */
|
2016-06-13 05:47:07 +00:00
|
|
|
fp = FOpen(path, _S("rb"));
|
2016-05-30 22:46:43 +00:00
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
if (ValidateMP1Songs(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadMP1Songs(fp);
|
|
|
|
fclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-21 06:40:13 +00:00
|
|
|
if (ValidateRS1PC(fp))
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
2016-06-21 06:40:13 +00:00
|
|
|
auto ret = LoadRS1PCSongs(fp);
|
2016-05-30 22:46:43 +00:00
|
|
|
fclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-21 06:40:13 +00:00
|
|
|
if (ValidateRS1N64(fp))
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
2016-06-21 06:40:13 +00:00
|
|
|
auto ret = LoadRS1N64Songs(fp);
|
2016-05-30 22:46:43 +00:00
|
|
|
fclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-18 22:38:28 +00:00
|
|
|
if (ValidateFactor5N64Rev(fp))
|
2016-05-30 22:46:43 +00:00
|
|
|
{
|
2016-07-18 22:38:28 +00:00
|
|
|
auto ret = LoadFactor5N64RevSongs(fp);
|
2016-05-30 22:46:43 +00:00
|
|
|
fclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ValidateRS2(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadRS2Songs(fp);
|
|
|
|
fclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-03 22:41:31 +00:00
|
|
|
if (ValidateStarFoxAdvSongs(fp))
|
|
|
|
{
|
|
|
|
auto ret = LoadStarFoxAdvSongs(fp);
|
|
|
|
fclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-07 04:10:02 +00:00
|
|
|
if (ValidatePaperMarioTTYDSongs(fp))
|
|
|
|
{
|
|
|
|
/* Song Description */
|
|
|
|
SystemChar newpath[1024];
|
|
|
|
dot = StrRChr(path, _S('.'));
|
|
|
|
SNPrintf(newpath, 1024, _S("%.*s.stbl"), int(dot - path), path);
|
|
|
|
FILE* descFp = FOpen(newpath, _S("rb"));
|
|
|
|
if (descFp)
|
|
|
|
{
|
|
|
|
auto ret = LoadPaperMarioTTYDSongs(fp, descFp);
|
|
|
|
fclose(fp);
|
|
|
|
fclose(descFp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 22:46:43 +00:00
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
2016-05-27 00:56:18 +00:00
|
|
|
}
|