axmol/extensions/cocostudio/SpineSkeletonDataCache.h

51 lines
1.2 KiB
C
Raw Normal View History

2019-11-24 23:15:56 +08:00
#ifndef _SPINESKELETONDATACACHE_H_
#define _SPINESKELETONDATACACHE_H_
#include <cocos2d.h>
#if defined(CC_BUILD_WITH_SPINE) && CC_BUILD_WITH_SPINE
2019-11-24 23:15:56 +08:00
#include "spine/spine.h"
#include "spine/spine-cocos2dx.h"
2020-08-03 20:31:47 +08:00
#include "cocostudio/CocosStudioExport.h"
#include <functional>
2019-11-24 23:15:56 +08:00
class CC_STUDIO_DLL SpineSkeletonDataCache
{
public:
class SkeletonData : public cocos2d::Ref
{
public:
2019-12-12 23:24:50 +08:00
SkeletonData(spine::SkeletonData* d, spine::AttachmentLoader* loader) : data(d), attachmentLoader(loader) {}
2019-11-24 23:15:56 +08:00
~SkeletonData()
{
if (data != nullptr)
2019-12-12 23:24:50 +08:00
delete (data);
2019-11-24 23:15:56 +08:00
if (attachmentLoader != nullptr)
2019-12-12 23:24:50 +08:00
delete (attachmentLoader);
2019-11-24 23:15:56 +08:00
}
2019-12-12 23:24:50 +08:00
spine::AttachmentLoader* attachmentLoader;
spine::SkeletonData* data;
2019-11-24 23:15:56 +08:00
};
static SpineSkeletonDataCache* getInstance();
SpineSkeletonDataCache();
void setErrorReportFunc(void(*errorfunc)(const char* pszFormat, ...));
2019-11-24 23:15:56 +08:00
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;
void(*_reportError)(const char* pszFormat, ...);
2019-11-24 23:15:56 +08:00
};
#endif
#endif