mirror of https://github.com/axmolengine/axmol.git
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#ifndef _SPINESKELETONDATACACHE_H_
|
|
#define _SPINESKELETONDATACACHE_H_
|
|
#include <cocos2d.h>
|
|
#include "spine/spine.h"
|
|
#include "spine/spine-cocos2dx.h"
|
|
#include "editor-support/cocostudio/CocosStudioExport.h"
|
|
|
|
class CC_STUDIO_DLL SpineSkeletonDataCache
|
|
{
|
|
public:
|
|
class SkeletonData : public cocos2d::Ref
|
|
{
|
|
public:
|
|
SkeletonData(spSkeletonData* d, spAttachmentLoader* loader) : data(d), attachmentLoader(loader) {}
|
|
~SkeletonData()
|
|
{
|
|
if (data != nullptr)
|
|
spSkeletonData_dispose(data);
|
|
if (attachmentLoader != nullptr)
|
|
spAttachmentLoader_dispose(attachmentLoader);
|
|
}
|
|
spAttachmentLoader* attachmentLoader;
|
|
spSkeletonData* data;
|
|
};
|
|
|
|
static void setErrorLogFunc(void(*)(const char* pszFormat, ...));
|
|
|
|
static SpineSkeletonDataCache* getInstance();
|
|
|
|
SkeletonData* addData(const char* dataFile, const char* atlasFile, float scale);
|
|
|
|
void removeData(const char* dataFile);
|
|
|
|
void removeAllData(void);
|
|
void removeAllUnusedData(void);
|
|
|
|
public:
|
|
std::map<std::string, SkeletonData*> _cacheTable;
|
|
};
|
|
|
|
#endif
|
|
|