metaforce/Runtime/CSimplePool.hpp

39 lines
991 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CSIMPLEPOOL_HPP__
#define __URDE_CSIMPLEPOOL_HPP__
2015-08-17 20:33:58 +00:00
2015-08-22 01:58:41 +00:00
#include "IObjectStore.hpp"
#include "RetroTypes.hpp"
#include "IVParamObj.hpp"
#include <unordered_map>
2015-08-18 05:54:43 +00:00
2016-03-04 23:04:53 +00:00
namespace urde
{
2015-08-22 01:58:41 +00:00
class IFactory;
class CObjectReference;
2015-08-18 05:54:43 +00:00
class CSimplePool : public IObjectStore
2015-08-17 20:33:58 +00:00
{
protected:
2017-01-22 04:32:53 +00:00
u8 x4_;
u8 x5_;
std::unordered_map<SObjectTag, CObjectReference*> x8_resources;
IFactory& x18_factory;
CVParamTransfer x1c_paramXfer;
2015-08-18 05:54:43 +00:00
public:
CSimplePool(IFactory& factory);
CToken GetObj(const SObjectTag&, const CVParamTransfer&);
CToken GetObj(const SObjectTag&);
2017-11-13 06:19:18 +00:00
CToken GetObj(std::string_view);
CToken GetObj(std::string_view, const CVParamTransfer&);
bool HasObject(const SObjectTag&) const;
bool ObjectIsLive(const SObjectTag&) const;
2017-01-22 04:32:53 +00:00
IFactory& GetFactory() const {return x18_factory;}
void Flush();
void ObjectUnreferenced(const SObjectTag&);
2017-02-12 03:17:18 +00:00
std::vector<SObjectTag> GetReferencedTags() const;
2015-08-17 20:33:58 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CSIMPLEPOOL_HPP__