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"
|
2016-02-05 01:27:03 +00:00
|
|
|
#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-17 22:05:00 +00:00
|
|
|
{
|
2015-08-22 01:58:41 +00:00
|
|
|
class IFactory;
|
2016-02-05 01:27:03 +00:00
|
|
|
class CObjectReference;
|
2015-08-17 22:05:00 +00:00
|
|
|
|
2015-08-18 05:54:43 +00:00
|
|
|
class CSimplePool : public IObjectStore
|
2015-08-17 20:33:58 +00:00
|
|
|
{
|
2016-04-05 01:51:25 +00:00
|
|
|
protected:
|
2016-04-15 03:02:21 +00:00
|
|
|
//std::list<std::pair<SObjectTag, CObjectReference*>> x4_resources;
|
|
|
|
std::unordered_map<SObjectTag, CObjectReference*> x4_resources;
|
2016-02-05 01:27:03 +00:00
|
|
|
IFactory& x30_factory;
|
|
|
|
CVParamTransfer x34_paramXfer;
|
2015-08-18 05:54:43 +00:00
|
|
|
public:
|
2016-02-05 01:27:03 +00:00
|
|
|
CSimplePool(IFactory& factory);
|
|
|
|
CToken GetObj(const SObjectTag&, const CVParamTransfer&);
|
|
|
|
CToken GetObj(const SObjectTag&);
|
2016-04-11 03:59:54 +00:00
|
|
|
CToken GetObj(const char*);
|
|
|
|
CToken GetObj(const char*, const CVParamTransfer&);
|
2016-02-05 05:52:05 +00:00
|
|
|
bool HasObject(const SObjectTag&) const;
|
|
|
|
bool ObjectIsLive(const SObjectTag&) const;
|
2016-02-05 01:27:03 +00:00
|
|
|
IFactory& GetFactory() const {return x30_factory;}
|
|
|
|
void Flush();
|
|
|
|
void ObjectUnreferenced(const SObjectTag&);
|
2015-08-17 20:33:58 +00:00
|
|
|
};
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CSIMPLEPOOL_HPP__
|