2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
2020-10-17 16:32:16 +08:00
|
|
|
Copyright (c) 2015-2017 Chukong Technologies Inc.
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCSKELETONNODE_H__
|
|
|
|
#define __CCSKELETONNODE_H__
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
#include "libeditor/ActionTimeline/CCTimelineMacro.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "renderer/CCRenderer.h"
|
2020-10-17 16:32:16 +08:00
|
|
|
#include "libeditor/CocosStudioExport.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "base/CCMap.h"
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
#include "libeditor/ActionTimeline/CCBoneNode.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
NS_TIMELINE_BEGIN
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
class CCS_DLL SkeletonNode : public BoneNode
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
friend class BoneNode;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static SkeletonNode* create();
|
|
|
|
|
|
|
|
/**
|
|
|
|
*get bonenode in skeleton node by bone name
|
|
|
|
*/
|
|
|
|
BoneNode* getBoneNode(const std::string& boneName);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*get All bones in this skeleton, <bone's name, BoneNode>
|
|
|
|
*/
|
|
|
|
const cocos2d::Map<std::string, BoneNode*>& getAllSubBonesMap() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*@brief: change displays
|
|
|
|
*@param: boneSkinNameMap, map <name of bone, name of skin to display which added to bone>
|
|
|
|
*/
|
|
|
|
void changeSkins(const std::map<std::string, std::string>& boneSkinNameMap);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*@brief: change displays
|
|
|
|
*@param: skinGroupName have
|
|
|
|
*/
|
|
|
|
void changeSkins(const std::string& skinGroupName);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*@brief: add a boneSkinNameMap as a SkinGroup named groupName
|
|
|
|
*@param: groupName, key
|
|
|
|
*@param: boneSkinNameMap, map <name of bone, name of skin to display which added to bone>
|
|
|
|
*/
|
|
|
|
void addSkinGroup(std::string groupName, std::map<std::string, std::string> boneSkinNameMap);
|
|
|
|
|
|
|
|
cocos2d::Rect getBoundingBox() const override;
|
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
|
|
|
SkeletonNode();
|
|
|
|
virtual ~SkeletonNode();
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void updateVertices() override;
|
|
|
|
virtual void updateColor() override;
|
|
|
|
|
|
|
|
virtual void visit(cocos2d::Renderer *renderer, const cocos2d::Mat4& parentTransform, uint32_t parentFlags) override;
|
|
|
|
virtual void draw(cocos2d::Renderer *renderer, const cocos2d::Mat4 &transform, uint32_t flags) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cocos2d::Map<std::string, BoneNode*> _subBonesMap;
|
|
|
|
|
|
|
|
private:
|
2019-11-25 01:35:26 +08:00
|
|
|
struct VertexData
|
|
|
|
{
|
|
|
|
cocos2d::Vec3 vertex;
|
|
|
|
cocos2d::Color4F color;
|
|
|
|
};
|
|
|
|
|
|
|
|
cocos2d::Vec2 _squareVertices[8];
|
|
|
|
VertexData _vertexData[8];
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
std::map<std::string, std::map<std::string, std::string> > _skinGroupMap; // map< suit name, map< bone name, skin name> >
|
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(SkeletonNode);
|
|
|
|
|
|
|
|
|
|
|
|
void checkSubBonesDirty();
|
|
|
|
// for draw skins as ordered bones' local z
|
|
|
|
cocos2d::Vector<BoneNode*> _subOrderedAllBones;
|
|
|
|
void updateOrderedAllbones();
|
|
|
|
void sortOrderedAllBones();
|
|
|
|
// for batch draw sub bones
|
|
|
|
bool _subBonesDirty;
|
|
|
|
bool _subBonesOrderDirty;
|
2019-11-25 01:35:26 +08:00
|
|
|
std::vector<VertexData> _batchedBoneVertexData;
|
2019-11-23 20:27:39 +08:00
|
|
|
int _batchedVeticesCount;
|
|
|
|
cocos2d::CustomCommand _batchBoneCommand;
|
|
|
|
|
2019-11-25 01:35:26 +08:00
|
|
|
void batchDrawAllSubBones();
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_TIMELINE_END
|
|
|
|
|
|
|
|
#endif //__CCSKELETONNODE_H__
|