Loading...
Searching...
No Matches
4#define MAKE_NO_COPY(CLASSNAME) \
6 CLASSNAME(const CLASSNAME&); \
7 CLASSNAME& operator=(const CLASSNAME&);
10#define DECLARE_SINGLETON(CLASSNAME) \
11 MAKE_NO_COPY(CLASSNAME) \
13 explicit CLASSNAME(); \
14 static CLASSNAME* sInstance; \
16 static CLASSNAME* getInstance(); \
17 static void delInstance();
20#define IMPLEMENT_SINGLETON(CLASSNAME) \
21 CLASSNAME* CLASSNAME::sInstance= nullptr; \
23 CLASSNAME* CLASSNAME::getInstance() { \
24 if(sInstance == nullptr) \
25 sInstance = new CLASSNAME; \
28 void CLASSNAME::delInstance() \
30 SAFE_DELETE(sInstance); \
34#define NULLPTR(p) { (p) = nullptr; }
35#define SAFE_DELETE(p) { delete (p); NULLPTR(p); }
36#define SAFE_DELETE_SOBJECT(p) {if(p) MemoryMgr::getInstance()->ReleaseObject(p);}
37#define SAFE_DELETE_SGAMEOBJECT(p) {if(p) GameObjectMgr::getInstance()->DeleteGameObject(p);}
38#define SAFE_DELETE_ARRAY(p) { if(p) delete[] (p); NULLPTR(p); }
39#define SAFE_DESTROY(p) { if(p) (p)->Destroy(); NULLPTR(p); }
40#define SAFE_RELEASE(p) { if(p) (p)->Release(); }