mirror of https://github.com/AxioDL/metaforce.git
Update CSimplePool offsets
This commit is contained in:
parent
e9222c7aba
commit
34e3a7f383
|
@ -14,7 +14,7 @@ CToken ProjectResourcePool::GetObj(const char* name)
|
|||
return ret;
|
||||
|
||||
hecl::ProjectPath path(*m_parent.project(), name);
|
||||
SObjectTag tag = static_cast<ProjectResourceFactoryBase&>(x30_factory).
|
||||
SObjectTag tag = static_cast<ProjectResourceFactoryBase&>(x18_factory).
|
||||
TagFromPath(path, hecl::SharedBlenderToken);
|
||||
if (tag)
|
||||
return CSimplePool::GetObj(tag);
|
||||
|
@ -29,7 +29,7 @@ CToken ProjectResourcePool::GetObj(const char* name, const CVParamTransfer& pvxf
|
|||
return ret;
|
||||
|
||||
hecl::ProjectPath path(*m_parent.project(), name);
|
||||
SObjectTag tag = static_cast<ProjectResourceFactoryBase&>(x30_factory).
|
||||
SObjectTag tag = static_cast<ProjectResourceFactoryBase&>(x18_factory).
|
||||
TagFromPath(path, hecl::SharedBlenderToken);
|
||||
if (tag)
|
||||
return CSimplePool::GetObj(tag, pvxfer);
|
||||
|
|
|
@ -6,7 +6,7 @@ namespace urde
|
|||
{
|
||||
|
||||
CSimplePool::CSimplePool(IFactory& factory)
|
||||
: x30_factory(factory), x34_paramXfer(new TObjOwnerParam<IObjectStore*>(this))
|
||||
: x18_factory(factory), x1c_paramXfer(new TObjOwnerParam<IObjectStore*>(this))
|
||||
{}
|
||||
|
||||
CToken CSimplePool::GetObj(const SObjectTag& tag, const CVParamTransfer& paramXfer)
|
||||
|
@ -14,28 +14,28 @@ CToken CSimplePool::GetObj(const SObjectTag& tag, const CVParamTransfer& paramXf
|
|||
if (!tag)
|
||||
return {};
|
||||
|
||||
auto iter = x4_resources.find(tag);
|
||||
if (iter != x4_resources.end())
|
||||
auto iter = x8_resources.find(tag);
|
||||
if (iter != x8_resources.end())
|
||||
return CToken(iter->second);
|
||||
|
||||
CObjectReference* ret = new CObjectReference(*this, std::unique_ptr<IObj>(), tag, paramXfer);
|
||||
x4_resources.emplace(std::make_pair<SObjectTag, CObjectReference*>((SObjectTag)tag, std::move(ret)));
|
||||
x8_resources.emplace(std::make_pair<SObjectTag, CObjectReference*>((SObjectTag)tag, std::move(ret)));
|
||||
return CToken(ret);
|
||||
}
|
||||
|
||||
CToken CSimplePool::GetObj(const SObjectTag& tag)
|
||||
{
|
||||
return GetObj(tag, x34_paramXfer);
|
||||
return GetObj(tag, x1c_paramXfer);
|
||||
}
|
||||
|
||||
CToken CSimplePool::GetObj(const char* resourceName)
|
||||
{
|
||||
return GetObj(resourceName, x34_paramXfer);
|
||||
return GetObj(resourceName, x1c_paramXfer);
|
||||
}
|
||||
|
||||
CToken CSimplePool::GetObj(const char* resourceName, const CVParamTransfer& paramXfer)
|
||||
{
|
||||
const SObjectTag* tag = x30_factory.GetResourceIdByName(resourceName);
|
||||
const SObjectTag* tag = x18_factory.GetResourceIdByName(resourceName);
|
||||
if (!tag)
|
||||
return {};
|
||||
return GetObj(*tag, paramXfer);
|
||||
|
@ -43,16 +43,16 @@ CToken CSimplePool::GetObj(const char* resourceName, const CVParamTransfer& para
|
|||
|
||||
bool CSimplePool::HasObject(const SObjectTag& tag) const
|
||||
{
|
||||
auto iter = x4_resources.find(tag);
|
||||
if (iter != x4_resources.cend())
|
||||
auto iter = x8_resources.find(tag);
|
||||
if (iter != x8_resources.cend())
|
||||
return true;
|
||||
return x30_factory.CanBuild(tag);
|
||||
return x18_factory.CanBuild(tag);
|
||||
}
|
||||
|
||||
bool CSimplePool::ObjectIsLive(const SObjectTag& tag) const
|
||||
{
|
||||
auto iter = x4_resources.find(tag);
|
||||
if (iter == x4_resources.cend())
|
||||
auto iter = x8_resources.find(tag);
|
||||
if (iter == x8_resources.cend())
|
||||
return false;
|
||||
return iter->second->IsLoaded();
|
||||
}
|
||||
|
@ -63,9 +63,9 @@ void CSimplePool::Flush()
|
|||
|
||||
void CSimplePool::ObjectUnreferenced(const SObjectTag& tag)
|
||||
{
|
||||
auto iter = x4_resources.find(tag);
|
||||
if (iter != x4_resources.end())
|
||||
x4_resources.erase(iter);
|
||||
auto iter = x8_resources.find(tag);
|
||||
if (iter != x8_resources.end())
|
||||
x8_resources.erase(iter);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,10 +14,11 @@ class CObjectReference;
|
|||
class CSimplePool : public IObjectStore
|
||||
{
|
||||
protected:
|
||||
//std::list<std::pair<SObjectTag, CObjectReference*>> x4_resources;
|
||||
std::unordered_map<SObjectTag, CObjectReference*> x4_resources;
|
||||
IFactory& x30_factory;
|
||||
CVParamTransfer x34_paramXfer;
|
||||
u8 x4_;
|
||||
u8 x5_;
|
||||
std::unordered_map<SObjectTag, CObjectReference*> x8_resources;
|
||||
IFactory& x18_factory;
|
||||
CVParamTransfer x1c_paramXfer;
|
||||
public:
|
||||
CSimplePool(IFactory& factory);
|
||||
CToken GetObj(const SObjectTag&, const CVParamTransfer&);
|
||||
|
@ -26,7 +27,7 @@ public:
|
|||
CToken GetObj(const char*, const CVParamTransfer&);
|
||||
bool HasObject(const SObjectTag&) const;
|
||||
bool ObjectIsLive(const SObjectTag&) const;
|
||||
IFactory& GetFactory() const {return x30_factory;}
|
||||
IFactory& GetFactory() const {return x18_factory;}
|
||||
void Flush();
|
||||
void ObjectUnreferenced(const SObjectTag&);
|
||||
};
|
||||
|
|
2
hecl
2
hecl
|
@ -1 +1 @@
|
|||
Subproject commit b02a7baff487bbf86102c8531e98147e00b9c54e
|
||||
Subproject commit 51fc07f0a0f6e7c093f722fcb48454c65fa5f0ca
|
Loading…
Reference in New Issue