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
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SPINE_SKELETONTWOCOLORBATCH_H_
|
|
|
|
#define SPINE_SKELETONTWOCOLORBATCH_H_
|
2020-01-05 03:09:32 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "cocos2d.h"
|
2020-01-05 03:09:32 +08:00
|
|
|
#if COCOS2D_VERSION >= 0x00040000
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
#include "renderer/backend/ProgramState.h"
|
2020-01-05 03:09:32 +08:00
|
|
|
#include <spine/spine.h>
|
2019-11-23 20:27:39 +08:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace spine {
|
|
|
|
struct V3F_C4B_C4B_T2F {
|
2022-11-07 15:48:19 +08:00
|
|
|
cocos2d::Vec3 position;
|
|
|
|
cocos2d::Color4B color;
|
|
|
|
cocos2d::Color4B color2;
|
|
|
|
cocos2d::Tex2F texCoords;
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
2022-11-07 15:48:19 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
struct TwoColorTriangles {
|
2022-11-07 15:48:19 +08:00
|
|
|
V3F_C4B_C4B_T2F *verts;
|
|
|
|
unsigned short *indices;
|
2019-11-23 20:27:39 +08:00
|
|
|
int vertCount;
|
|
|
|
int indexCount;
|
|
|
|
};
|
2022-11-07 15:48:19 +08:00
|
|
|
|
|
|
|
class SP_API TwoColorTrianglesCommand : public cocos2d::CustomCommand {
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
|
|
|
TwoColorTrianglesCommand();
|
2022-11-07 15:48:19 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
~TwoColorTrianglesCommand();
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void init(float globalOrder, cocos2d::Texture2D *texture, cocos2d::backend::ProgramState *programState, cocos2d::BlendFunc blendType, const TwoColorTriangles &triangles, const cocos2d::Mat4 &mv, uint32_t flags);
|
|
|
|
|
|
|
|
void updateCommandPipelineDescriptor(cocos2d::backend::ProgramState *programState);
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
inline cocos2d::backend::TextureBackend *getTexture() const { return _texture; }
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void draw(cocos2d::Renderer *renderer);
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void updateVertexAndIndexBuffer(cocos2d::Renderer *renderer, V3F_C4B_C4B_T2F *vertices, int verticesSize, uint16_t *indices, int indicesSize);
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
inline uint32_t getMaterialID() const { return _materialID; }
|
2022-11-07 15:48:19 +08:00
|
|
|
|
|
|
|
inline const TwoColorTriangles &getTriangles() const { return _triangles; }
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
inline ssize_t getVertexCount() const { return _triangles.vertCount; }
|
2022-11-07 15:48:19 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
inline ssize_t getIndexCount() const { return _triangles.indexCount; }
|
2022-11-07 15:48:19 +08:00
|
|
|
|
|
|
|
inline const V3F_C4B_C4B_T2F *getVertices() const { return _triangles.verts; }
|
|
|
|
|
|
|
|
inline const unsigned short *getIndices() const { return _triangles.indices; }
|
|
|
|
|
|
|
|
inline cocos2d::BlendFunc getBlendType() const { return _blendType; }
|
|
|
|
|
|
|
|
inline const cocos2d::Mat4 &getModelView() const { return _mv; }
|
|
|
|
|
|
|
|
void setForceFlush(bool forceFlush) { _forceFlush = forceFlush; }
|
|
|
|
|
|
|
|
bool isForceFlush() { return _forceFlush; };
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
protected:
|
|
|
|
void generateMaterialID();
|
|
|
|
uint32_t _materialID;
|
2019-12-12 23:26:12 +08:00
|
|
|
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void *_prog = nullptr;
|
|
|
|
cocos2d::backend::TextureBackend *_texture = nullptr;
|
|
|
|
cocos2d::backend::ProgramState *_programState = nullptr;
|
|
|
|
cocos2d::backend::UniformLocation _locPMatrix;
|
|
|
|
cocos2d::backend::UniformLocation _locTexture;
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
cocos2d::BlendFunc _blendType;
|
|
|
|
TwoColorTriangles _triangles;
|
|
|
|
cocos2d::Mat4 _mv;
|
|
|
|
bool _forceFlush;
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
2023-01-06 18:38:16 +08:00
|
|
|
class SP_API SkeletonTwoColorBatch {
|
2022-11-07 15:48:19 +08:00
|
|
|
public:
|
|
|
|
static SkeletonTwoColorBatch *getInstance();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
static void destroyInstance();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void update(float delta);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
V3F_C4B_C4B_T2F *allocateVertices(uint32_t numVertices);
|
2019-11-23 20:27:39 +08:00
|
|
|
void deallocateVertices(uint32_t numVertices);
|
2022-11-07 15:48:19 +08:00
|
|
|
|
|
|
|
unsigned short *allocateIndices(uint32_t numIndices);
|
2019-11-23 20:27:39 +08:00
|
|
|
void deallocateIndices(uint32_t numIndices);
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
TwoColorTrianglesCommand *addCommand(cocos2d::Renderer *renderer, float globalOrder, cocos2d::Texture2D *texture, cocos2d::backend::ProgramState *programState, cocos2d::BlendFunc blendType, const TwoColorTriangles &triangles, const cocos2d::Mat4 &mv, uint32_t flags);
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void batch(cocos2d::Renderer *renderer, TwoColorTrianglesCommand *command);
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
void flush(cocos2d::Renderer *renderer, TwoColorTrianglesCommand *materialCommand);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
uint32_t getNumBatches() { return _numBatches; };
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
protected:
|
|
|
|
SkeletonTwoColorBatch();
|
|
|
|
virtual ~SkeletonTwoColorBatch();
|
|
|
|
|
|
|
|
void reset();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
TwoColorTrianglesCommand *nextFreeCommand();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
// pool of commands
|
2022-11-07 15:48:19 +08:00
|
|
|
std::vector<TwoColorTrianglesCommand *> _commandsPool;
|
2019-11-23 20:27:39 +08:00
|
|
|
uint32_t _nextFreeCommand;
|
|
|
|
|
|
|
|
// pool of vertices
|
|
|
|
std::vector<V3F_C4B_C4B_T2F> _vertices;
|
|
|
|
uint32_t _numVertices;
|
2022-11-07 15:48:19 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
// pool of indices
|
2019-12-12 23:26:12 +08:00
|
|
|
Vector<unsigned short> _indices;
|
2022-11-07 15:48:19 +08:00
|
|
|
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
// VBO handles & attribute locations
|
2022-11-07 15:48:19 +08:00
|
|
|
V3F_C4B_C4B_T2F *_vertexBuffer;
|
2019-11-23 20:27:39 +08:00
|
|
|
uint32_t _numVerticesBuffer;
|
2022-11-07 15:48:19 +08:00
|
|
|
uint32_t _numIndicesBuffer;
|
|
|
|
unsigned short *_indexBuffer;
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
// last batched command, needed for flushing to set material
|
2022-11-07 15:48:19 +08:00
|
|
|
TwoColorTrianglesCommand *_lastCommand = nullptr;
|
2019-12-12 23:26:12 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
// number of batches in the last frame
|
|
|
|
uint32_t _numBatches;
|
|
|
|
};
|
2022-11-07 15:48:19 +08:00
|
|
|
}// namespace spine
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2020-01-05 03:09:32 +08:00
|
|
|
#endif
|
|
|
|
|
2022-11-07 15:48:19 +08:00
|
|
|
#endif// SPINE_SKELETONTWOCOLORBATCH_H_
|