metaforce/Runtime/CResFactory.hpp

123 lines
3.7 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-17 13:33:58 -07:00
2015-08-22 23:42:29 -07:00
#include <unordered_map>
2015-08-17 22:54:43 -07:00
#include "IFactory.hpp"
2015-08-22 23:42:29 -07:00
#include "CResLoader.hpp"
#include "IVParamObj.hpp"
#include "MP1/MP1OriginalIDs.hpp"
#include "CToken.hpp"
2015-08-17 22:54:43 -07:00
2016-03-04 15:04:53 -08:00
namespace urde
{
class IDvdRequest;
class CSimplePool;
2015-08-17 22:54:43 -07:00
class CResFactory : public IFactory
2015-08-17 13:33:58 -07:00
{
2015-08-22 23:42:29 -07:00
CResLoader x4_loader;
CFactoryMgr x5c_factoryMgr;
2018-04-07 13:55:57 -07:00
#if RUNTIME_ORIGINAL_IDS
TLockedToken<MP1OriginalIDs> m_origIds;
#endif
2015-08-21 18:58:41 -07:00
public:
2015-08-22 23:42:29 -07:00
struct SLoadingData
{
SObjectTag x0_tag;
std::shared_ptr<IDvdRequest> x8_dvdReq;
std::unique_ptr<IObj>* xc_targetPtr = nullptr;
std::unique_ptr<u8[]> x10_loadBuffer;
u32 x14_resSize = 0;
CVParamTransfer x18_cvXfer;
bool m_compressed = false;
CObjectReference* m_selfRef = nullptr;
SLoadingData() = default;
SLoadingData(const SObjectTag& tag, std::unique_ptr<IObj>* ptr, const CVParamTransfer& xfer,
bool compressed, CObjectReference* selfRef)
: x0_tag(tag), xc_targetPtr(ptr), x18_cvXfer(xfer), m_compressed(compressed), m_selfRef(selfRef) {}
2015-08-22 23:42:29 -07:00
};
private:
std::list<SLoadingData> m_loadList;
std::unordered_map<SObjectTag, std::list<SLoadingData>::iterator> m_loadMap;
void AddToLoadList(SLoadingData&& data);
CFactoryFnReturn BuildSync(const SObjectTag&, const CVParamTransfer&, CObjectReference* selfRef);
bool PumpResource(SLoadingData& data);
2015-08-22 23:42:29 -07:00
public:
2015-08-26 17:23:46 -07:00
CResLoader& GetLoader() {return x4_loader;}
std::unique_ptr<IObj> Build(const SObjectTag&, const CVParamTransfer&, CObjectReference* selfRef);
void BuildAsync(const SObjectTag&, const CVParamTransfer&, std::unique_ptr<IObj>*, CObjectReference* selfRef);
void AsyncIdle();
2015-08-21 18:58:41 -07:00
void CancelBuild(const SObjectTag&);
bool CanBuild(const SObjectTag& tag)
{
return x4_loader.ResourceExists(tag);
}
u32 ResourceSize(const urde::SObjectTag& tag)
{
return x4_loader.ResourceSize(tag);
}
std::unique_ptr<u8[]> LoadResourceSync(const urde::SObjectTag& tag)
{
return x4_loader.LoadResourceSync(tag);
}
2017-11-04 19:08:05 -07:00
std::unique_ptr<u8[]> LoadNewResourcePartSync(const urde::SObjectTag& tag, u32 off, u32 size)
{
2017-11-04 19:08:05 -07:00
return x4_loader.LoadNewResourcePartSync(tag, off, size);
}
2017-10-28 00:08:48 -07:00
void GetTagListForFile(const char* pakName, std::vector<SObjectTag>& out) const
{
return x4_loader.GetTagListForFile(pakName, out);
}
2017-10-27 03:10:32 -07:00
std::shared_ptr<IDvdRequest> LoadResourceAsync(const urde::SObjectTag& tag, void* target)
{
return x4_loader.LoadResourceAsync(tag, target);
}
2017-11-04 19:08:05 -07:00
std::shared_ptr<IDvdRequest> LoadResourcePartAsync(const urde::SObjectTag& tag, u32 off, u32 size, void* target)
2017-10-27 03:10:32 -07:00
{
2017-11-04 19:08:05 -07:00
return x4_loader.LoadResourcePartAsync(tag, off, size, target);
2017-10-27 03:10:32 -07:00
}
2017-11-12 22:19:18 -08:00
const SObjectTag* GetResourceIdByName(std::string_view name) const
{
return x4_loader.GetResourceIdByName(name);
}
2015-08-22 23:42:29 -07:00
2017-08-12 22:26:14 -07:00
FourCC GetResourceTypeById(CAssetId id) const
2016-04-14 14:42:47 -07:00
{
return x4_loader.GetResourceTypeById(id);
}
2015-08-22 23:42:29 -07:00
std::vector<std::pair<std::string, SObjectTag>> GetResourceIdToNameList() const
{
return x4_loader.GetResourceIdToNameList();
2015-08-22 23:42:29 -07:00
}
2016-09-24 18:58:20 -07:00
void EnumerateResources(const std::function<bool(const SObjectTag&)>& lambda) const
2016-09-24 18:58:20 -07:00
{
return x4_loader.EnumerateResources(lambda);
2016-09-24 18:58:20 -07:00
}
2017-11-12 22:19:18 -08:00
void EnumerateNamedResources(const std::function<bool(std::string_view, const SObjectTag&)>& lambda) const
2016-09-24 18:58:20 -07:00
{
return x4_loader.EnumerateNamedResources(lambda);
2016-09-24 18:58:20 -07:00
}
void LoadOriginalIDs(CSimplePool& sp);
CAssetId TranslateOriginalToNew(CAssetId id) const;
CAssetId TranslateNewToOriginal(CAssetId id) const;
2017-10-27 03:10:32 -07:00
CResLoader* GetResLoader() { return &x4_loader; }
CFactoryMgr* GetFactoryMgr() { return &x5c_factoryMgr; }
2015-08-17 13:33:58 -07:00
};
}