mirror of https://github.com/PrimeDecomp/prime.git
40 lines
972 B
C++
40 lines
972 B
C++
#ifndef _CSIMPLEPOOL_HPP
|
|
#define _CSIMPLEPOOL_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "rstl/hash_map.hpp"
|
|
#include "rstl/rc_ptr.hpp"
|
|
|
|
#include "Kyoto/CToken.hpp"
|
|
#include "Kyoto/IObjectStore.hpp"
|
|
|
|
class IFactory;
|
|
|
|
class CSimplePool : public IObjectStore {
|
|
public:
|
|
CSimplePool(IFactory& factory);
|
|
|
|
virtual CToken GetObj(const SObjectTag& tag, CVParamTransfer xfer);
|
|
virtual CToken GetObj(const SObjectTag& tag);
|
|
virtual CToken GetObj(const char* name);
|
|
virtual CToken GetObj(const char* name, CVParamTransfer xfer);
|
|
virtual bool HasObject(const SObjectTag& tag);
|
|
virtual bool ObjectIsLive(const SObjectTag& tag);
|
|
virtual unkptr GetFactory();
|
|
virtual void Flush();
|
|
virtual void ObjectUnreferenced(const SObjectTag& tag);
|
|
|
|
private:
|
|
u8 x4_;
|
|
u8 x5_;
|
|
rstl::hash_map< unkptr, unkptr, void, void > x8_resources;
|
|
unkptr x18_factory;
|
|
rstl::rc_ptr< CVParamTransfer > x1c_paramXfr;
|
|
};
|
|
CHECK_SIZEOF(CSimplePool, 0x20)
|
|
|
|
extern CSimplePool* gpSimplePool;
|
|
|
|
#endif
|