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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "base/CCDirector.h"
|
2019-11-25 01:35:26 +08:00
|
|
|
#include "base/ccUtils.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "renderer/CCRenderer.h"
|
2019-11-25 01:35:26 +08:00
|
|
|
#include "renderer/ccShaders.h"
|
|
|
|
#include "renderer/backend/ProgramState.h"
|
2020-10-17 16:32:16 +08:00
|
|
|
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "ActionTimeline/CCBoneNode.h"
|
|
|
|
#include "ActionTimeline/CCSkeletonNode.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
NS_TIMELINE_BEGIN
|
|
|
|
|
|
|
|
BoneNode* BoneNode::create()
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
BoneNode* ret = new BoneNode();
|
|
|
|
if (ret->init())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
ret->autorelease();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(ret);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
BoneNode* BoneNode::create(int length)
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
BoneNode* ret = new BoneNode();
|
|
|
|
if (ret->init())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
ret->setDebugDrawLength(length);
|
|
|
|
ret->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(ret);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
BoneNode::~BoneNode() {}
|
2020-10-17 16:32:16 +08:00
|
|
|
|
|
|
|
bool BoneNode::init()
|
|
|
|
{
|
|
|
|
_rackLength = 50;
|
2021-12-25 10:04:45 +08:00
|
|
|
_rackWidth = 20;
|
2020-10-17 16:32:16 +08:00
|
|
|
updateVertices();
|
|
|
|
updateColor();
|
|
|
|
|
|
|
|
auto& pipelineDescriptor = _customCommand.getPipelineDescriptor();
|
2021-12-25 10:04:45 +08:00
|
|
|
auto* program =
|
|
|
|
cocos2d::backend::Program::getBuiltinProgram(cocos2d::backend::ProgramType::POSITION_COLOR); // TODO: noMVP?
|
2021-12-08 00:11:53 +08:00
|
|
|
setProgramState(new cocos2d::backend::ProgramState(program), false);
|
2020-10-17 16:32:16 +08:00
|
|
|
pipelineDescriptor.programState = _programState;
|
|
|
|
|
2021-12-31 11:00:35 +08:00
|
|
|
_mvpLocation = _programState->getUniformLocation("u_MVPMatrix");
|
2020-10-17 16:32:16 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
auto vertexLayout = _programState->getVertexLayout();
|
2020-10-17 16:32:16 +08:00
|
|
|
const auto& attributeInfo = _programState->getProgram()->getActiveAttributes();
|
2021-12-31 11:00:35 +08:00
|
|
|
auto iter = attributeInfo.find("a_position");
|
2020-10-17 16:32:16 +08:00
|
|
|
if (iter != attributeInfo.end())
|
|
|
|
{
|
2021-12-31 11:00:35 +08:00
|
|
|
vertexLayout->setAttribute("a_position", iter->second.location, cocos2d::backend::VertexFormat::FLOAT3, 0,
|
2021-12-25 10:04:45 +08:00
|
|
|
false);
|
2020-10-17 16:32:16 +08:00
|
|
|
}
|
2021-12-31 11:00:35 +08:00
|
|
|
iter = attributeInfo.find("a_color");
|
2020-10-17 16:32:16 +08:00
|
|
|
if (iter != attributeInfo.end())
|
|
|
|
{
|
2021-12-31 11:00:35 +08:00
|
|
|
vertexLayout->setAttribute("a_color", iter->second.location, cocos2d::backend::VertexFormat::FLOAT4,
|
2021-12-25 10:04:45 +08:00
|
|
|
3 * sizeof(float), false);
|
2020-10-17 16:32:16 +08:00
|
|
|
}
|
|
|
|
vertexLayout->setLayout(7 * sizeof(float));
|
|
|
|
|
|
|
|
_customCommand.createVertexBuffer(sizeof(_vertexData[0]), 4, cocos2d::CustomCommand::BufferUsage::DYNAMIC);
|
2021-12-25 10:04:45 +08:00
|
|
|
_customCommand.createIndexBuffer(cocos2d::CustomCommand::IndexFormat::U_SHORT, 6,
|
|
|
|
cocos2d::CustomCommand::BufferUsage::STATIC);
|
|
|
|
unsigned short indices[6] = {0, 1, 2, 0, 2, 3};
|
2020-10-17 16:32:16 +08:00
|
|
|
_customCommand.updateIndexBuffer(indices, sizeof(indices));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
void BoneNode::addChild(cocos2d::Node* child, int localZOrder, int tag)
|
|
|
|
{
|
|
|
|
addToChildrenListHelper(child);
|
|
|
|
Node::addChild(child, localZOrder, tag);
|
|
|
|
}
|
|
|
|
|
2021-12-31 11:00:35 +08:00
|
|
|
void BoneNode::addChild(Node* child, int localZOrder, const std::string& name)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
addToChildrenListHelper(child);
|
|
|
|
Node::addChild(child, localZOrder, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::addSkin(SkinNode* skin, bool isDisplay, bool hideOthers)
|
|
|
|
{
|
|
|
|
CCASSERT(skin != nullptr, "Argument must be non-nil");
|
|
|
|
if (hideOthers)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
for (auto& bonskin : _boneSkins)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
bonskin->setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Node::addChild(skin);
|
|
|
|
skin->setVisible(isDisplay);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::addSkin(SkinNode* skin, bool display)
|
|
|
|
{
|
|
|
|
addSkin(skin, display, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::removeChild(Node* child, bool cleanup /* = true */)
|
|
|
|
{
|
|
|
|
ssize_t index = _children.getIndex(child);
|
|
|
|
if (index != cocos2d::CC_INVALID_INDEX)
|
|
|
|
{
|
|
|
|
removeFromChildrenListHelper(child);
|
|
|
|
Node::removeChild(child, cleanup);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::removeFromBoneList(BoneNode* bone)
|
|
|
|
{
|
|
|
|
if (_rootSkeleton != nullptr)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
auto skeletonNode = dynamic_cast<SkeletonNode*>(bone);
|
|
|
|
if (skeletonNode == nullptr) // is not a nested skeleton
|
|
|
|
{
|
|
|
|
auto subBones = bone->getAllSubBones();
|
|
|
|
subBones.pushBack(bone);
|
2021-12-31 11:00:35 +08:00
|
|
|
for (auto& subBone : subBones)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
if (subBone->_rootSkeleton == nullptr)
|
|
|
|
continue;
|
|
|
|
subBone->_rootSkeleton = nullptr;
|
|
|
|
|
|
|
|
auto toremoveIter = _rootSkeleton->_subBonesMap.find(subBone->getName());
|
|
|
|
if (toremoveIter != _rootSkeleton->_subBonesMap.end())
|
|
|
|
{
|
|
|
|
_rootSkeleton->_subBonesMap.erase(toremoveIter);
|
2021-12-25 10:04:45 +08:00
|
|
|
_rootSkeleton->_subBonesDirty = true;
|
2019-11-23 20:27:39 +08:00
|
|
|
_rootSkeleton->_subBonesOrderDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_rootSkeleton->_subBonesDirty = true;
|
2019-11-23 20:27:39 +08:00
|
|
|
_rootSkeleton->_subBonesOrderDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_childBones.eraseObject(bone);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::addToBoneList(BoneNode* bone)
|
|
|
|
{
|
|
|
|
_childBones.pushBack(bone);
|
|
|
|
if (_rootSkeleton != nullptr)
|
|
|
|
{
|
|
|
|
auto skeletonNode = dynamic_cast<SkeletonNode*>(bone);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (skeletonNode == nullptr && bone->_rootSkeleton == nullptr) // not nest skeleton
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto subBones = bone->getAllSubBones();
|
|
|
|
subBones.pushBack(bone);
|
2021-12-31 11:00:35 +08:00
|
|
|
for (auto& subBone : subBones)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
subBone->_rootSkeleton = _rootSkeleton;
|
2021-12-25 10:04:45 +08:00
|
|
|
auto bonename = subBone->getName();
|
2019-11-23 20:27:39 +08:00
|
|
|
if (_rootSkeleton->_subBonesMap.find(bonename) == _rootSkeleton->_subBonesMap.end())
|
|
|
|
{
|
|
|
|
_rootSkeleton->_subBonesMap.insert(subBone->getName(), subBone);
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
_rootSkeleton->_subBonesDirty = true;
|
2019-11-23 20:27:39 +08:00
|
|
|
_rootSkeleton->_subBonesOrderDirty = true;
|
|
|
|
}
|
|
|
|
else
|
2021-12-31 11:00:35 +08:00
|
|
|
CCLOG("already has a bone named %s in skeleton %s", bonename.c_str(),
|
|
|
|
_rootSkeleton->getName().c_str());
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_rootSkeleton->_subBonesDirty = true;
|
2019-11-23 20:27:39 +08:00
|
|
|
_rootSkeleton->_subBonesOrderDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::addToSkinList(SkinNode* skin)
|
|
|
|
{
|
|
|
|
_boneSkins.pushBack(skin);
|
|
|
|
auto blendSkin = dynamic_cast<BlendProtocol*>(skin);
|
|
|
|
if (nullptr != blendSkin && _blendFunc != blendSkin->getBlendFunc())
|
|
|
|
{
|
|
|
|
blendSkin->setBlendFunc(_blendFunc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::removeFromSkinList(SkinNode* skin)
|
|
|
|
{
|
|
|
|
_boneSkins.eraseObject(skin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::displaySkin(SkinNode* skin, bool hideOthers)
|
|
|
|
{
|
|
|
|
for (auto boneskin : _boneSkins)
|
|
|
|
{
|
|
|
|
if (boneskin == skin)
|
|
|
|
{
|
|
|
|
boneskin->setVisible(true);
|
|
|
|
}
|
|
|
|
else if (hideOthers)
|
|
|
|
{
|
|
|
|
boneskin->setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-31 11:00:35 +08:00
|
|
|
void BoneNode::displaySkin(const std::string& skinName, bool hideOthers)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
for (auto& skin : _boneSkins)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
if (skinName == skin->getName())
|
|
|
|
{
|
|
|
|
skin->setVisible(true);
|
|
|
|
}
|
|
|
|
else if (hideOthers)
|
|
|
|
{
|
|
|
|
skin->setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::Vector<SkinNode*> BoneNode::getVisibleSkins() const
|
|
|
|
{
|
|
|
|
cocos2d::Vector<SkinNode*> displayingSkins;
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& boneskin : _boneSkins)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
if (boneskin->isVisible())
|
|
|
|
{
|
|
|
|
displayingSkins.pushBack(boneskin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return displayingSkins;
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::Rect BoneNode::getBoundingBox() const
|
|
|
|
{
|
|
|
|
cocos2d::Rect boundingBox = getVisibleSkinsRect();
|
|
|
|
return RectApplyAffineTransform(boundingBox, this->getNodeToParentAffineTransform());
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::Rect BoneNode::getVisibleSkinsRect() const
|
|
|
|
{
|
|
|
|
float minx, miny, maxx, maxy = 0;
|
|
|
|
minx = miny = maxx = maxy;
|
2021-12-25 10:04:45 +08:00
|
|
|
bool first = true;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
cocos2d::Rect displayRect = cocos2d::Rect(0, 0, 0, 0);
|
|
|
|
if (_isRackShow && _rootSkeleton != nullptr && _rootSkeleton->_isRackShow)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
maxx = _rackLength;
|
|
|
|
maxy = _rackWidth;
|
2019-11-23 20:27:39 +08:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto& skin : _boneSkins)
|
|
|
|
{
|
|
|
|
cocos2d::Rect r = skin->getBoundingBox();
|
|
|
|
if (!skin->isVisible() || r.equals(cocos2d::Rect::ZERO))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (first)
|
|
|
|
{
|
|
|
|
minx = r.getMinX();
|
|
|
|
miny = r.getMinY();
|
|
|
|
maxx = r.getMaxX();
|
|
|
|
maxy = r.getMaxY();
|
|
|
|
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
minx = MIN(r.getMinX(), minx);
|
|
|
|
miny = MIN(r.getMinY(), miny);
|
|
|
|
maxx = MAX(r.getMaxX(), maxx);
|
|
|
|
maxy = MAX(r.getMaxY(), maxy);
|
|
|
|
}
|
|
|
|
displayRect.setRect(minx, miny, maxx - minx, maxy - miny);
|
|
|
|
}
|
|
|
|
return displayRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setBlendFunc(const cocos2d::BlendFunc& blendFunc)
|
|
|
|
{
|
|
|
|
if (_blendFunc != blendFunc)
|
|
|
|
{
|
|
|
|
_blendFunc = blendFunc;
|
2021-12-25 10:04:45 +08:00
|
|
|
for (auto& skin : _boneSkins)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto blendSkin = dynamic_cast<BlendProtocol*>(skin);
|
|
|
|
if (nullptr != blendSkin)
|
|
|
|
{
|
|
|
|
blendSkin->setBlendFunc(_blendFunc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setDebugDrawLength(float length)
|
|
|
|
{
|
|
|
|
_rackLength = length;
|
|
|
|
updateVertices();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setDebugDrawWidth(float width)
|
|
|
|
{
|
|
|
|
_rackWidth = width;
|
|
|
|
updateVertices();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setDebugDrawEnabled(bool isDebugDraw)
|
|
|
|
{
|
|
|
|
if (_isRackShow == isDebugDraw)
|
|
|
|
return;
|
|
|
|
_isRackShow = isDebugDraw;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void BoneNode::setDebugDrawColor(const cocos2d::Color4F& color)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
_rackColor = color;
|
|
|
|
updateColor();
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void BoneNode::visit(cocos2d::Renderer* renderer, const cocos2d::Mat4& parentTransform, uint32_t parentFlags)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
// quick return if not visible. children won't be drawn.
|
|
|
|
if (!_visible)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t flags = processParentFlags(parentTransform, parentFlags);
|
|
|
|
|
|
|
|
// IMPORTANT:
|
|
|
|
// To ease the migration to v3.0, we still support the Mat4 stack,
|
|
|
|
// but it is deprecated and your code should not rely on it
|
|
|
|
_director->pushMatrix(cocos2d::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
|
|
|
|
_director->loadMatrix(cocos2d::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW, _modelViewTransform);
|
|
|
|
|
|
|
|
bool visibleByCamera = isVisitableByVisitingCamera();
|
2021-12-25 10:04:45 +08:00
|
|
|
bool isdebugdraw = visibleByCamera && _isRackShow && nullptr == _rootSkeleton;
|
|
|
|
int i = 0;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
if (!_children.empty())
|
|
|
|
{
|
|
|
|
sortAllChildren();
|
|
|
|
// draw children zOrder < 0
|
|
|
|
for (; i < _children.size(); i++)
|
|
|
|
{
|
|
|
|
auto node = _children.at(i);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_rootSkeleton != nullptr && _boneSkins.contains(node)) // skip skin when bone is in a skeleton
|
2019-11-23 20:27:39 +08:00
|
|
|
continue;
|
|
|
|
if (node && node->getLocalZOrder() < 0)
|
|
|
|
node->visit(renderer, _modelViewTransform, flags);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// self draw
|
|
|
|
if (isdebugdraw)
|
|
|
|
this->draw(renderer, _modelViewTransform, flags);
|
|
|
|
|
|
|
|
for (auto it = _children.cbegin() + i; it != _children.cend(); ++it)
|
|
|
|
{
|
|
|
|
auto node = (*it);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_rootSkeleton != nullptr && _boneSkins.contains(node)) // skip skin when bone is in a skeleton
|
2019-11-23 20:27:39 +08:00
|
|
|
continue;
|
|
|
|
node->visit(renderer, _modelViewTransform, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (isdebugdraw)
|
|
|
|
{
|
|
|
|
this->draw(renderer, _modelViewTransform, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
_director->popMatrix(cocos2d::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
|
|
|
|
|
|
|
|
// FIX ME: Why need to set _orderOfArrival to 0??
|
|
|
|
// Please refer to https://github.com/cocos2d/cocos2d-x/pull/6920
|
|
|
|
// reset for next frame
|
|
|
|
// _orderOfArrival = 0;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void BoneNode::draw(cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t flags)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2019-11-25 01:35:26 +08:00
|
|
|
_customCommand.init(_globalZOrder, _blendFunc);
|
2019-11-23 20:27:39 +08:00
|
|
|
renderer->addCommand(&_customCommand);
|
|
|
|
|
2019-11-25 01:35:26 +08:00
|
|
|
#ifdef CC_STUDIO_ENABLED_VIEW
|
2021-12-25 10:04:45 +08:00
|
|
|
// TODO
|
|
|
|
// glVertexAttribPointer(cocos2d::GLProgram::VERTEX_ATTRIB_POSITION, 3, GL_FLOAT, GL_FALSE, 0, _noMVPVertices);
|
|
|
|
// glVertexAttribPointer(cocos2d::GLProgram::VERTEX_ATTRIB_COLOR, 4, GL_FLOAT, GL_FALSE, 0, _squareColors);
|
2019-11-25 01:35:26 +08:00
|
|
|
//
|
2021-12-25 10:04:45 +08:00
|
|
|
// glEnable(GL_LINE_SMOOTH);
|
|
|
|
// glHint(GL_LINE_SMOOTH_HINT, GL_DONT_CARE);
|
|
|
|
// glDrawArrays(GL_LINE_LOOP, 0, 4);
|
|
|
|
// CC_INCREMENT_GL_DRAWN_BATCHES_AND_VERTICES(1, 8);
|
|
|
|
#endif // CC_STUDIO_ENABLED_VIEW
|
2019-11-25 01:35:26 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i = 0; i < 4; ++i)
|
|
|
|
{
|
|
|
|
cocos2d::Vec4 pos;
|
2021-12-25 10:04:45 +08:00
|
|
|
pos.x = _squareVertices[i].x;
|
|
|
|
pos.y = _squareVertices[i].y;
|
|
|
|
pos.z = _positionZ;
|
2019-11-23 20:27:39 +08:00
|
|
|
pos.w = 1;
|
|
|
|
_modelViewTransform.transformVector(&pos);
|
2019-11-25 01:35:26 +08:00
|
|
|
_vertexData[i].noMVPVertices = cocos2d::Vec3(pos.x, pos.y, pos.z) / pos.w;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
2019-11-25 01:35:26 +08:00
|
|
|
_customCommand.updateVertexBuffer(_vertexData, sizeof(_vertexData));
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
_programState->setUniform(_mvpLocation, transform.m, sizeof(transform.m));
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::updateVertices()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_rackLength != _squareVertices[2].x - _anchorPointInPoints.x ||
|
|
|
|
_squareVertices[3].y != _rackWidth / 2 - _anchorPointInPoints.y)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
_squareVertices[1].x = _squareVertices[1].y = _squareVertices[3].y = .0f;
|
|
|
|
_squareVertices[0].x = _squareVertices[2].x = _rackLength * .1f;
|
2021-12-25 10:04:45 +08:00
|
|
|
_squareVertices[2].y = _rackWidth * .5f;
|
|
|
|
_squareVertices[0].y = -_squareVertices[2].y;
|
|
|
|
_squareVertices[3].x = _rackLength;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
_squareVertices[i] += _anchorPointInPoints;
|
|
|
|
}
|
|
|
|
_transformUpdated = _transformDirty = _inverseDirty = _contentSizeDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::updateColor()
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < 4; i++)
|
|
|
|
{
|
2019-11-25 01:35:26 +08:00
|
|
|
_vertexData[i].squareColor = _rackColor;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
_transformUpdated = _transformDirty = _inverseDirty = _contentSizeDirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::updateDisplayedColor(const cocos2d::Color3B& /*parentColor*/)
|
|
|
|
{
|
|
|
|
if (_cascadeColorEnabled)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& child : _boneSkins)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
child->updateDisplayedColor(_displayedColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 01:35:26 +08:00
|
|
|
void BoneNode::updateDisplayedOpacity(uint8_t /*parentOpacity*/)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
if (_cascadeOpacityEnabled)
|
|
|
|
{
|
|
|
|
for (const auto& child : _boneSkins)
|
|
|
|
{
|
|
|
|
child->updateDisplayedOpacity(_displayedOpacity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::disableCascadeOpacity()
|
|
|
|
{
|
|
|
|
for (const auto& child : _boneSkins)
|
|
|
|
{
|
|
|
|
child->updateDisplayedOpacity(255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::disableCascadeColor()
|
|
|
|
{
|
|
|
|
for (const auto& child : _boneSkins)
|
|
|
|
{
|
|
|
|
child->updateDisplayedColor(cocos2d::Color3B::WHITE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::Vector<BoneNode*> BoneNode::getAllSubBones() const
|
|
|
|
{
|
|
|
|
cocos2d::Vector<BoneNode*> allBones;
|
2021-12-25 10:04:45 +08:00
|
|
|
std::stack<BoneNode*> boneStack; // for avoid recursive
|
2019-11-23 20:27:39 +08:00
|
|
|
for (const auto& bone : _childBones)
|
|
|
|
{
|
|
|
|
boneStack.push(bone);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (boneStack.size() > 0)
|
|
|
|
{
|
|
|
|
auto top = boneStack.top();
|
|
|
|
allBones.pushBack(top);
|
|
|
|
boneStack.pop();
|
|
|
|
auto topchildren = top->getChildBones();
|
|
|
|
for (const auto& childbone : topchildren)
|
|
|
|
{
|
|
|
|
boneStack.push(childbone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return allBones;
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::Vector<SkinNode*> BoneNode::getAllSubSkins() const
|
|
|
|
{
|
|
|
|
auto allbones = getAllSubBones();
|
|
|
|
cocos2d::Vector<SkinNode*> allskins;
|
|
|
|
for (const auto& bone : allbones)
|
|
|
|
{
|
|
|
|
for (const auto& skin : bone->getSkins())
|
|
|
|
{
|
|
|
|
allskins.pushBack(skin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return allskins;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::sortAllChildren()
|
|
|
|
{
|
|
|
|
if (_reorderChildDirty)
|
|
|
|
{
|
|
|
|
sortNodes(_childBones);
|
|
|
|
sortNodes(_boneSkins);
|
|
|
|
Node::sortAllChildren();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SkeletonNode* BoneNode::getRootSkeletonNode() const
|
|
|
|
{
|
|
|
|
return _rootSkeleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CC_STUDIO_ENABLED_VIEW
|
|
|
|
bool BoneNode::isPointOnRack(const cocos2d::Vec2& bonePoint)
|
|
|
|
{
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
if (bonePoint.x >= 0.0f && bonePoint.y >= _squareVertices[0].y && bonePoint.x <= _rackLength &&
|
2019-11-23 20:27:39 +08:00
|
|
|
bonePoint.y <= _squareVertices[2].y)
|
|
|
|
{
|
|
|
|
if (_rackLength != 0.0f && _rackWidth != 0.0f)
|
|
|
|
{
|
|
|
|
float a1 = (_squareVertices[2].y - _squareVertices[3].y) / (_squareVertices[3].x - _squareVertices[0].x);
|
|
|
|
float a2 = (_squareVertices[2].y - _squareVertices[3].y) / (_squareVertices[0].x - _squareVertices[1].x);
|
|
|
|
float b1 = a1 * _squareVertices[3].x;
|
|
|
|
float y1 = bonePoint.y - _squareVertices[1].y;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (y1 >= a1 * bonePoint.x - b1 && y1 <= a2 * bonePoint.x && y1 >= -a2 * bonePoint.x &&
|
2019-11-23 20:27:39 +08:00
|
|
|
y1 <= -a1 * bonePoint.x + b1)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif // CC_STUDIO_ENABLED_VIEW
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
void BoneNode::batchBoneDrawToSkeleton(BoneNode* bone) const
|
|
|
|
{
|
|
|
|
bool visibleByCamera = bone->isVisitableByVisitingCamera();
|
|
|
|
if (!visibleByCamera)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::Vec3 vpos[4];
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
cocos2d::Vec4 pos;
|
2021-12-25 10:04:45 +08:00
|
|
|
pos.x = bone->_squareVertices[i].x;
|
|
|
|
pos.y = bone->_squareVertices[i].y;
|
|
|
|
pos.z = bone->_positionZ;
|
2019-11-23 20:27:39 +08:00
|
|
|
pos.w = 1;
|
|
|
|
bone->_modelViewTransform.transformVector(&pos); // call after visit
|
|
|
|
vpos[i] = cocos2d::Vec3(pos.x, pos.y, pos.z) / pos.w;
|
|
|
|
}
|
|
|
|
|
|
|
|
int count = bone->_rootSkeleton->_batchedVeticesCount;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (count + 8 > (int)(bone->_rootSkeleton->_batchedBoneVertexData.size()))
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2019-11-25 01:35:26 +08:00
|
|
|
bone->_rootSkeleton->_batchedBoneVertexData.resize(count + 100);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
2019-11-25 01:35:26 +08:00
|
|
|
bone->_rootSkeleton->_batchedBoneVertexData[count + i].vertex = vpos[i];
|
2021-12-25 10:04:45 +08:00
|
|
|
bone->_rootSkeleton->_batchedBoneVertexData[count + i].color = bone->_vertexData[i].squareColor;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
bone->_rootSkeleton->_batchedVeticesCount += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
// call after self visit
|
|
|
|
void BoneNode::visitSkins(cocos2d::Renderer* renderer, BoneNode* bone) const
|
|
|
|
{
|
|
|
|
// quick return if not visible. children won't be drawn.
|
|
|
|
if (!bone->_visible)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IMPORTANT:
|
|
|
|
// To ease the migration to v3.0, we still support the Mat4 stack,
|
|
|
|
// but it is deprecated and your code should not rely on it
|
|
|
|
_director->pushMatrix(cocos2d::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
|
|
|
|
_director->loadMatrix(cocos2d::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW, bone->_modelViewTransform);
|
|
|
|
|
|
|
|
if (!bone->_boneSkins.empty())
|
|
|
|
{
|
|
|
|
bone->sortAllChildren();
|
|
|
|
for (auto it = bone->_boneSkins.cbegin(); it != bone->_boneSkins.cend(); ++it)
|
|
|
|
(*it)->visit(renderer, bone->_modelViewTransform, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
_director->popMatrix(cocos2d::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
|
|
|
|
|
|
|
|
// FIX ME: Why need to set _orderOfArrival to 0??
|
|
|
|
// Please refer to https://github.com/cocos2d/cocos2d-x/pull/6920
|
|
|
|
// reset for next frame
|
|
|
|
// _orderOfArrival = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setRootSkeleton(BoneNode* bone, SkeletonNode* skeleton) const
|
|
|
|
{
|
|
|
|
bone->_rootSkeleton = skeleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setLocalZOrder(int localZOrder)
|
|
|
|
{
|
|
|
|
Node::setLocalZOrder(localZOrder);
|
|
|
|
if (_rootSkeleton != nullptr)
|
|
|
|
_rootSkeleton->_subBonesOrderDirty = true;
|
|
|
|
}
|
|
|
|
|
2021-12-31 11:00:35 +08:00
|
|
|
void BoneNode::setName(const std::string& name)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto oldname = getName();
|
|
|
|
Node::setName(name);
|
|
|
|
if (_rootSkeleton != nullptr)
|
|
|
|
{
|
|
|
|
auto oiter = _rootSkeleton->_subBonesMap.find(oldname);
|
|
|
|
auto niter = _rootSkeleton->_subBonesMap.find(name);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (oiter != _rootSkeleton->_subBonesMap.end() && niter == _rootSkeleton->_subBonesMap.end())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto node = oiter->second;
|
|
|
|
_rootSkeleton->_subBonesMap.erase(oiter);
|
|
|
|
_rootSkeleton->_subBonesMap.insert(name, node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void BoneNode::addToChildrenListHelper(Node* child)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
BoneNode* bone = dynamic_cast<BoneNode*>(child);
|
|
|
|
if (nullptr != bone)
|
|
|
|
{
|
|
|
|
addToBoneList(bone);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SkinNode* skin = dynamic_cast<SkinNode*>(child);
|
|
|
|
if (nullptr != skin)
|
|
|
|
{
|
|
|
|
addToSkinList(skin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void BoneNode::removeFromChildrenListHelper(Node* child)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
BoneNode* bone = dynamic_cast<BoneNode*>(child);
|
|
|
|
if (nullptr != bone)
|
|
|
|
{
|
|
|
|
removeFromBoneList(bone);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SkinNode* skin = dynamic_cast<SkinNode*>(child);
|
|
|
|
if (nullptr != skin)
|
|
|
|
{
|
|
|
|
removeFromSkinList(skin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setVisible(bool visible)
|
|
|
|
{
|
|
|
|
if (_visible == visible)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Node::setVisible(visible);
|
|
|
|
if (_rootSkeleton != nullptr)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_rootSkeleton->_subBonesDirty = true;
|
2019-11-23 20:27:39 +08:00
|
|
|
_rootSkeleton->_subBonesOrderDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setContentSize(const cocos2d::Size& contentSize)
|
|
|
|
{
|
|
|
|
Node::setContentSize(contentSize);
|
|
|
|
updateVertices();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BoneNode::setAnchorPoint(const cocos2d::Vec2& anchorPoint)
|
|
|
|
{
|
|
|
|
Node::setAnchorPoint(anchorPoint);
|
|
|
|
updateVertices();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_TIMELINE_END
|