axmol/extensions/cocostudio/SpineSkeletonDataCache.h

87 lines
2.0 KiB
C
Raw Normal View History

2019-11-24 23:15:56 +08:00
#ifndef _SPINESKELETONDATACACHE_H_
#define _SPINESKELETONDATACACHE_H_
#include <cocos2d.h>
#include "spine/spine.h"
#include "spine/spine-cocos2dx.h"
#include "CocosStudioExport.h"
#include <functional>
2019-11-24 23:15:56 +08:00
2020-11-04 19:09:30 +08:00
#if !defined(CC_USE_SPINE_CPP) || CC_USE_SPINE_CPP
2020-10-17 16:32:16 +08:00
class CCS_DLL SpineSkeletonDataCache
2019-11-24 23:15:56 +08:00
{
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
};
2020-11-04 19:09:30 +08:00
#else
class 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;
};
SpineSkeletonDataCache();
void setErrorReportFunc(void(*errorfunc)(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;
void(*_reportError)(const char* pszFormat, ...);
};
#endif
2019-11-24 23:15:56 +08:00
#endif