2019-11-23 20:27:39 +08:00
|
|
|
/******************************************************************************
|
2019-12-12 23:26:12 +08:00
|
|
|
* Spine Runtimes License Agreement
|
2022-11-07 15:48:19 +08:00
|
|
|
* Last updated September 24, 2021. Replaces all prior versions.
|
2019-11-23 20:27:39 +08:00
|
|
|
*
|
2022-11-07 15:48:19 +08:00
|
|
|
* Copyright (c) 2013-2021, Esoteric Software LLC
|
2019-11-23 20:27:39 +08:00
|
|
|
*
|
2019-12-12 23:26:12 +08:00
|
|
|
* Integration of the Spine Runtimes into software or otherwise creating
|
|
|
|
* derivative works of the Spine Runtimes is permitted under the terms and
|
|
|
|
* conditions of Section 2 of the Spine Editor License Agreement:
|
|
|
|
* http://esotericsoftware.com/spine-editor-license
|
2019-11-23 20:27:39 +08:00
|
|
|
*
|
2019-12-12 23:26:12 +08:00
|
|
|
* Otherwise, it is permitted to integrate the Spine Runtimes into software
|
|
|
|
* or otherwise create derivative works of the Spine Runtimes (collectively,
|
|
|
|
* "Products"), provided that each user of the Products must obtain their own
|
|
|
|
* Spine Editor license and redistribution of the Products in any form must
|
|
|
|
* include this license and copyright notice.
|
|
|
|
*
|
2020-01-05 03:09:32 +08:00
|
|
|
* THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
|
|
|
* BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2019-11-23 20:27:39 +08:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2019-12-12 23:26:12 +08:00
|
|
|
#include <spine/Extension.h>
|
2022-11-07 15:48:19 +08:00
|
|
|
#include <spine/spine-cocos2dx.h>
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
USING_NS_CC;
|
2019-12-12 23:26:12 +08:00
|
|
|
using namespace spine;
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
Cocos2dAtlasAttachmentLoader::Cocos2dAtlasAttachmentLoader(Atlas *atlas) : AtlasAttachmentLoader(atlas) {
|
2019-12-12 23:26:12 +08:00
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
Cocos2dAtlasAttachmentLoader::~Cocos2dAtlasAttachmentLoader() {}
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void Cocos2dAtlasAttachmentLoader::configureAttachment(Attachment *attachment) {
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2019-12-12 23:26:12 +08:00
|
|
|
#if COCOS2D_VERSION >= 0x0040000
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
backend::SamplerAddressMode wrap(TextureWrap wrap) {
|
|
|
|
return wrap == TextureWrap_ClampToEdge ? backend::SamplerAddressMode::CLAMP_TO_EDGE : backend::SamplerAddressMode::REPEAT;
|
2019-12-12 23:26:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
backend::SamplerFilter filter(TextureFilter filter) {
|
2019-11-23 20:27:39 +08:00
|
|
|
switch (filter) {
|
2022-11-07 15:48:19 +08:00
|
|
|
case TextureFilter_Unknown:
|
|
|
|
break;
|
|
|
|
case TextureFilter_Nearest:
|
|
|
|
return backend::SamplerFilter::NEAREST;
|
|
|
|
case TextureFilter_Linear:
|
|
|
|
return backend::SamplerFilter::LINEAR;
|
|
|
|
case TextureFilter_MipMap:
|
|
|
|
return backend::SamplerFilter::LINEAR;
|
|
|
|
case TextureFilter_MipMapNearestNearest:
|
|
|
|
return backend::SamplerFilter::NEAREST;
|
|
|
|
case TextureFilter_MipMapLinearNearest:
|
|
|
|
return backend::SamplerFilter::NEAREST;
|
|
|
|
case TextureFilter_MipMapNearestLinear:
|
|
|
|
return backend::SamplerFilter::LINEAR;
|
|
|
|
case TextureFilter_MipMapLinearLinear:
|
|
|
|
return backend::SamplerFilter::LINEAR;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
2019-12-12 23:26:12 +08:00
|
|
|
return backend::SamplerFilter::LINEAR;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2019-12-12 23:26:12 +08:00
|
|
|
#else
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
GLuint wrap(TextureWrap wrap) {
|
|
|
|
return wrap == TextureWrap_ClampToEdge ? GL_CLAMP_TO_EDGE : GL_REPEAT;
|
2019-12-12 23:26:12 +08:00
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
GLuint filter(TextureFilter filter) {
|
2020-01-05 03:09:32 +08:00
|
|
|
switch (filter) {
|
2022-11-07 15:48:19 +08:00
|
|
|
case TextureFilter_Unknown:
|
|
|
|
break;
|
|
|
|
case TextureFilter_Nearest:
|
|
|
|
return GL_NEAREST;
|
|
|
|
case TextureFilter_Linear:
|
|
|
|
return GL_LINEAR;
|
|
|
|
case TextureFilter_MipMap:
|
|
|
|
return GL_LINEAR_MIPMAP_LINEAR;
|
|
|
|
case TextureFilter_MipMapNearestNearest:
|
|
|
|
return GL_NEAREST_MIPMAP_NEAREST;
|
|
|
|
case TextureFilter_MipMapLinearNearest:
|
|
|
|
return GL_LINEAR_MIPMAP_NEAREST;
|
|
|
|
case TextureFilter_MipMapNearestLinear:
|
|
|
|
return GL_NEAREST_MIPMAP_LINEAR;
|
|
|
|
case TextureFilter_MipMapLinearLinear:
|
|
|
|
return GL_LINEAR_MIPMAP_LINEAR;
|
2020-01-05 03:09:32 +08:00
|
|
|
}
|
|
|
|
return GL_LINEAR;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2019-12-12 23:26:12 +08:00
|
|
|
#endif
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
Cocos2dTextureLoader::Cocos2dTextureLoader() : TextureLoader() {}
|
|
|
|
Cocos2dTextureLoader::~Cocos2dTextureLoader() {}
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void Cocos2dTextureLoader::load(AtlasPage &page, const spine::String &path) {
|
|
|
|
Texture2D *texture = Director::getInstance()->getTextureCache()->addImage(path.buffer());
|
|
|
|
CCASSERT(texture != nullptr, "Invalid image");
|
2020-01-05 03:09:32 +08:00
|
|
|
if (texture) {
|
|
|
|
texture->retain();
|
2019-12-12 23:26:12 +08:00
|
|
|
#if COCOS2D_VERSION >= 0x0040000
|
2020-01-05 03:09:32 +08:00
|
|
|
Texture2D::TexParams textureParams(filter(page.minFilter), filter(page.magFilter), wrap(page.uWrap), wrap(page.vWrap));
|
2019-12-12 23:26:12 +08:00
|
|
|
#else
|
2020-01-05 03:09:32 +08:00
|
|
|
Texture2D::TexParams textureParams = {filter(page.minFilter), filter(page.magFilter), wrap(page.uWrap), wrap(page.vWrap)};
|
2019-12-12 23:26:12 +08:00
|
|
|
#endif
|
2020-01-05 03:09:32 +08:00
|
|
|
texture->setTexParameters(textureParams);
|
|
|
|
|
2023-05-07 21:15:56 +08:00
|
|
|
page.texture = texture;
|
2020-01-05 03:09:32 +08:00
|
|
|
page.width = texture->getPixelsWide();
|
|
|
|
page.height = texture->getPixelsHigh();
|
|
|
|
}
|
2019-12-12 23:26:12 +08:00
|
|
|
}
|
2020-01-05 03:09:32 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void Cocos2dTextureLoader::unload(void *texture) {
|
2020-01-05 03:09:32 +08:00
|
|
|
if (texture) {
|
2022-11-07 15:48:19 +08:00
|
|
|
((Texture2D *) texture)->release();
|
2020-01-05 03:09:32 +08:00
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
Cocos2dExtension::Cocos2dExtension() : DefaultSpineExtension() {}
|
2020-01-05 03:09:32 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
Cocos2dExtension::~Cocos2dExtension() {}
|
2019-12-12 23:26:12 +08:00
|
|
|
|
|
|
|
char *Cocos2dExtension::_readFile(const spine::String &path, int *length) {
|
2022-11-07 15:48:19 +08:00
|
|
|
Data data = FileUtils::getInstance()->getDataFromFile(path.buffer());
|
2020-01-05 03:09:32 +08:00
|
|
|
if (data.isNull()) return nullptr;
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
// avoid buffer overflow (int is shorter than ssize_t in certain platforms)
|
2019-11-23 20:27:39 +08:00
|
|
|
#if COCOS2D_VERSION >= 0x00031200
|
|
|
|
ssize_t tmpLen;
|
2022-11-07 15:48:19 +08:00
|
|
|
char *ret = (char *) data.takeBuffer(&tmpLen);
|
2019-11-23 20:27:39 +08:00
|
|
|
*length = static_cast<int>(tmpLen);
|
|
|
|
return ret;
|
|
|
|
#else
|
2019-12-12 23:26:12 +08:00
|
|
|
*length = static_cast<int>(data.getSize());
|
2022-11-07 15:48:19 +08:00
|
|
|
auto bytes = SpineExtension::alloc<char>(*length, __FILE__, __LINE__);
|
2019-12-12 23:26:12 +08:00
|
|
|
memcpy(bytes, data.getBytes(), *length);
|
|
|
|
return bytes;
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif
|
|
|
|
}
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
SpineExtension *spine::getDefaultExtension() {
|
2020-01-05 03:09:32 +08:00
|
|
|
return new Cocos2dExtension();
|
|
|
|
}
|