metaforce/Runtime/CResLoader.cpp

203 lines
5.7 KiB
C++
Raw Normal View History

2015-08-23 16:58:07 -07:00
#include "CResLoader.hpp"
#include "CPakFile.hpp"
2016-03-04 15:04:53 -08:00
namespace urde
2015-08-23 16:58:07 -07:00
{
2017-08-12 22:26:14 -07:00
const std::vector<CAssetId>* CResLoader::GetTagListForFile(const std::string& name) const
2015-08-23 16:58:07 -07:00
{
std::string namePak = name + ".pak";
2017-02-07 22:48:43 -08:00
for (const std::unique_ptr<CPakFile>& pak : x18_pakLoadedList)
2016-03-06 19:12:32 -08:00
if (!CStringExtras::CompareCaseInsensitive(namePak, pak->x18_path))
2015-08-23 16:58:07 -07:00
return &pak->GetDepList();
return nullptr;
}
2017-02-07 22:48:43 -08:00
void CResLoader::AddPakFileAsync(const std::string& name, bool samusPak, bool worldPak)
2015-08-23 16:58:07 -07:00
{
std::string namePak = name + ".pak";
if (CDvdFile::FileExists(namePak.c_str()))
{
2017-02-07 22:48:43 -08:00
x30_pakLoadingList.emplace_back(new CPakFile(namePak, samusPak, worldPak));
2015-08-23 16:58:07 -07:00
++x44_pakLoadingCount;
}
}
2017-02-07 22:48:43 -08:00
void CResLoader::AddPakFile(const std::string& name, bool samusPak, bool worldPak)
2015-08-23 16:58:07 -07:00
{
2017-02-07 22:48:43 -08:00
AddPakFileAsync(name, samusPak, worldPak);
2015-08-23 16:58:07 -07:00
while (x44_pakLoadingCount)
AsyncIdlePakLoading();
}
CInputStream* CResLoader::LoadNewResourcePartSync(const SObjectTag& tag, int offset, int length, void* extBuf)
{
void* buf = extBuf;
CPakFile* file = FindResourceForLoad(tag);
if (!buf)
2016-04-15 13:42:40 -07:00
buf = new u8[length];
2015-11-20 17:16:07 -08:00
file->SyncSeekRead(buf, length, ESeekOrigin::Begin, x50_cachedResInfo->x4_offset + offset);
return new CMemoryInStream((atUint8*)buf, length, !extBuf);
2015-08-23 16:58:07 -07:00
}
void CResLoader::LoadMemResourceSync(const SObjectTag& tag, void** bufOut, int* sizeOut)
{
CPakFile* file = FindResourceForLoad(tag);
2016-04-15 13:42:40 -07:00
void* buf = new u8[x50_cachedResInfo->x8_size];
2015-11-20 17:16:07 -08:00
file->SyncSeekRead(buf, x50_cachedResInfo->x8_size, ESeekOrigin::Begin,
2015-08-23 16:58:07 -07:00
x50_cachedResInfo->x4_offset);
*bufOut = buf;
*sizeOut = x50_cachedResInfo->x8_size;
}
CInputStream* CResLoader::LoadResourceFromMemorySync(const SObjectTag& tag, const void* buf)
{
FindResourceForLoad(tag);
CInputStream* newStrm = new CMemoryInStream((atUint8*)buf, x50_cachedResInfo->x8_size);
2015-08-23 16:58:07 -07:00
if (x50_cachedResInfo->xb_compressed)
{
newStrm->readUint32Big();
newStrm = new CZipInputStream(std::unique_ptr<CInputStream>(newStrm));
2015-08-23 16:58:07 -07:00
}
return newStrm;
}
CInputStream* CResLoader::LoadNewResourceSync(const SObjectTag& tag, void* extBuf)
{
void* buf = extBuf;
CPakFile* file = FindResourceForLoad(tag);
size_t resSz = ROUND_UP_32(x50_cachedResInfo->x8_size);
if (!buf)
2016-04-15 13:42:40 -07:00
buf = new u8[resSz];
2015-11-20 17:16:07 -08:00
file->SyncSeekRead(buf, resSz, ESeekOrigin::Begin, x50_cachedResInfo->x4_offset);
CInputStream* newStrm = new CMemoryInStream((atUint8*)buf, resSz, !extBuf);
2015-08-23 16:58:07 -07:00
if (x50_cachedResInfo->xb_compressed)
{
newStrm->readUint32Big();
newStrm = new CZipInputStream(std::unique_ptr<CInputStream>(newStrm));
2015-08-23 16:58:07 -07:00
}
return newStrm;
}
2016-03-06 19:12:32 -08:00
std::shared_ptr<IDvdRequest> CResLoader::LoadResourcePartAsync(const SObjectTag& tag, int offset, int length, void* buf)
2015-08-23 16:58:07 -07:00
{
return FindResourceForLoad(tag.id)->AsyncSeekRead(buf, length,
2015-11-20 17:16:07 -08:00
ESeekOrigin::Begin, x50_cachedResInfo->x4_offset + offset);
2015-08-23 16:58:07 -07:00
}
2016-03-06 19:12:32 -08:00
std::shared_ptr<IDvdRequest> CResLoader::LoadResourceAsync(const SObjectTag& tag, void* buf)
2015-08-23 16:58:07 -07:00
{
return FindResourceForLoad(tag.id)->AsyncSeekRead(buf, ROUND_UP_32(x50_cachedResInfo->x8_size),
2015-11-20 17:16:07 -08:00
ESeekOrigin::Begin, x50_cachedResInfo->x4_offset);
2015-08-23 16:58:07 -07:00
}
bool CResLoader::GetResourceCompression(const SObjectTag& tag)
{
if (FindResource(tag.id))
return x50_cachedResInfo->xb_compressed;
return false;
}
u32 CResLoader::ResourceSize(const SObjectTag& tag)
{
if (FindResource(tag.id))
return x50_cachedResInfo->x8_size;
return false;
}
bool CResLoader::ResourceExists(const SObjectTag& tag)
{
return FindResource(tag.id);
}
2017-08-12 22:26:14 -07:00
FourCC CResLoader::GetResourceTypeById(CAssetId id) const
2015-08-23 16:58:07 -07:00
{
if (FindResource(id))
return x50_cachedResInfo->x0_type;
2015-08-30 20:44:42 -07:00
return FourCC();
2015-08-23 16:58:07 -07:00
}
2015-08-27 17:11:31 -07:00
const SObjectTag* CResLoader::GetResourceIdByName(const char* name) const
2015-08-23 16:58:07 -07:00
{
2017-02-07 22:48:43 -08:00
for (const std::unique_ptr<CPakFile>& file : x18_pakLoadedList)
2015-08-23 16:58:07 -07:00
{
2015-08-27 17:11:31 -07:00
const SObjectTag* id = file->GetResIdByName(name);
2015-08-23 16:58:07 -07:00
if (id)
return id;
}
2015-08-27 17:11:31 -07:00
return nullptr;
2015-08-23 16:58:07 -07:00
}
bool CResLoader::AreAllPaksLoaded() const
{
return x44_pakLoadingCount == 0;
}
void CResLoader::AsyncIdlePakLoading()
{
2017-02-07 22:48:43 -08:00
for (auto it=x30_pakLoadingList.begin();
it != x30_pakLoadingList.end();
2015-08-23 16:58:07 -07:00
++it)
{
(*it)->AsyncIdle();
2015-11-20 17:16:07 -08:00
if ((*it)->x2c_asyncLoadPhase == CPakFile::EAsyncPhase::Loaded)
2015-08-23 16:58:07 -07:00
{
MoveToCorrectLoadedList(std::move(*it));
2017-02-07 22:48:43 -08:00
it = x30_pakLoadingList.erase(it);
2015-08-23 16:58:07 -07:00
--x44_pakLoadingCount;
}
}
}
2017-08-12 22:26:14 -07:00
bool CResLoader::FindResource(CAssetId id) const
2015-08-23 16:58:07 -07:00
{
2017-02-07 22:48:43 -08:00
for (const std::unique_ptr<CPakFile>& file : x18_pakLoadedList)
2016-08-28 21:22:54 -07:00
if (const_cast<CResLoader*>(this)->CacheFromPak(*file, id))
2015-08-23 16:58:07 -07:00
return true;
return false;
}
2017-08-12 22:26:14 -07:00
CPakFile* CResLoader::FindResourceForLoad(CAssetId id)
2015-08-23 16:58:07 -07:00
{
2017-02-07 22:48:43 -08:00
for (std::unique_ptr<CPakFile>& file : x18_pakLoadedList)
2015-08-23 16:58:07 -07:00
if (CacheFromPakForLoad(*file, id))
return file.get();
return nullptr;
}
CPakFile* CResLoader::FindResourceForLoad(const SObjectTag& tag)
{
return FindResourceForLoad(tag.id);
}
2017-08-12 22:26:14 -07:00
bool CResLoader::CacheFromPakForLoad(CPakFile& file, CAssetId id)
2015-08-23 16:58:07 -07:00
{
const CPakFile::SResInfo* info = file.GetResInfoForLoad(id);
if (info)
{
x4c_cachedResId = id;
x50_cachedResInfo = info;
return true;
}
return false;
}
2017-08-12 22:26:14 -07:00
bool CResLoader::CacheFromPak(const CPakFile& file, CAssetId id)
2015-08-23 16:58:07 -07:00
{
const CPakFile::SResInfo* info = file.GetResInfo(id);
if (info)
{
x4c_cachedResId = id;
x50_cachedResInfo = info;
return true;
}
return false;
}
void CResLoader::MoveToCorrectLoadedList(std::unique_ptr<CPakFile>&& file)
{
2017-02-07 22:48:43 -08:00
x18_pakLoadedList.push_back(std::move(file));
2015-08-23 16:58:07 -07:00
}
}