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
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
https://axys1.github.io/
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "ActionTimeline/CCSkeletonNode.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "math/TransformUtils.h"
|
|
|
|
#include "renderer/CCRenderer.h"
|
2019-11-25 01:35:26 +08:00
|
|
|
#include "renderer/ccShaders.h"
|
|
|
|
#include "base/ccUtils.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include <stack>
|
|
|
|
|
|
|
|
NS_TIMELINE_BEGIN
|
|
|
|
|
|
|
|
SkeletonNode* SkeletonNode::create()
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
SkeletonNode* skeletonNode = new SkeletonNode();
|
|
|
|
if (skeletonNode->init())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
skeletonNode->autorelease();
|
|
|
|
return skeletonNode;
|
|
|
|
}
|
2022-07-16 10:43:05 +08:00
|
|
|
AX_SAFE_DELETE(skeletonNode);
|
2019-11-23 20:27:39 +08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SkeletonNode::init()
|
|
|
|
{
|
|
|
|
_rackLength = _rackWidth = 20;
|
|
|
|
updateVertices();
|
2019-11-25 01:35:26 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
// init _customCommand
|
2019-11-25 01:35:26 +08:00
|
|
|
auto& pipelineDescriptor = _customCommand.getPipelineDescriptor();
|
2021-12-25 10:04:45 +08:00
|
|
|
auto* program =
|
2022-08-08 18:02:17 +08:00
|
|
|
ax::backend::Program::getBuiltinProgram(ax::backend::ProgramType::POSITION_COLOR); // TODO: noMVP?
|
|
|
|
setProgramState(new ax::backend::ProgramState(program), false);
|
2019-11-25 01:35:26 +08:00
|
|
|
pipelineDescriptor.programState = _programState;
|
|
|
|
|
|
|
|
_mvpLocation = _programState->getUniformLocation("u_MVPMatrix");
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
auto vertexLayout = _programState->getVertexLayout();
|
2019-11-25 01:35:26 +08:00
|
|
|
const auto& attributeInfo = _programState->getProgram()->getActiveAttributes();
|
2021-12-25 10:04:45 +08:00
|
|
|
auto iter = attributeInfo.find("a_position");
|
|
|
|
if (iter != attributeInfo.end())
|
2019-11-25 01:35:26 +08:00
|
|
|
{
|
2022-08-08 18:02:17 +08:00
|
|
|
vertexLayout->setAttribute("a_position", iter->second.location, ax::backend::VertexFormat::FLOAT3, 0,
|
2021-12-25 10:04:45 +08:00
|
|
|
false);
|
2019-11-25 01:35:26 +08:00
|
|
|
}
|
|
|
|
iter = attributeInfo.find("a_color");
|
2021-12-25 10:04:45 +08:00
|
|
|
if (iter != attributeInfo.end())
|
2019-11-25 01:35:26 +08:00
|
|
|
{
|
2022-08-08 18:02:17 +08:00
|
|
|
vertexLayout->setAttribute("a_color", iter->second.location, ax::backend::VertexFormat::FLOAT4,
|
2021-12-25 10:04:45 +08:00
|
|
|
3 * sizeof(float), false);
|
2019-11-25 01:35:26 +08:00
|
|
|
}
|
|
|
|
vertexLayout->setLayout(7 * sizeof(float));
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
_customCommand.createVertexBuffer(sizeof(_vertexData[0]), 8, ax::CustomCommand::BufferUsage::DYNAMIC);
|
|
|
|
_customCommand.createIndexBuffer(ax::CustomCommand::IndexFormat::U_SHORT, 12,
|
|
|
|
ax::CustomCommand::BufferUsage::STATIC);
|
2021-12-25 10:04:45 +08:00
|
|
|
unsigned short indices[12] = {0, 1, 2, 1, 3, 2, 4, 5, 6, 5, 7, 6};
|
2019-11-25 01:35:26 +08:00
|
|
|
_customCommand.updateIndexBuffer(indices, sizeof(indices));
|
|
|
|
|
|
|
|
// init _batchBoneCommand
|
|
|
|
_batchBoneCommand.getPipelineDescriptor().programState = _programState;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
_rootSkeleton = this;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
ax::Rect SkeletonNode::getBoundingBox() const
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
float minx, miny, maxx, maxy = 0;
|
2021-12-25 10:04:45 +08:00
|
|
|
minx = miny = maxx = maxy;
|
2022-08-08 18:02:17 +08:00
|
|
|
ax::Rect boundingBox = getVisibleSkinsRect();
|
2021-12-25 10:04:45 +08:00
|
|
|
bool first = true;
|
2022-08-08 18:02:17 +08:00
|
|
|
if (!boundingBox.equals(ax::Rect::ZERO))
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
minx = boundingBox.getMinX();
|
|
|
|
miny = boundingBox.getMinY();
|
|
|
|
maxx = boundingBox.getMaxX();
|
|
|
|
maxy = boundingBox.getMaxY();
|
2019-11-23 20:27:39 +08:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
auto allbones = getAllSubBones();
|
|
|
|
for (const auto& bone : allbones)
|
|
|
|
{
|
2022-08-08 18:02:17 +08:00
|
|
|
ax::Rect r = RectApplyAffineTransform(bone->getVisibleSkinsRect(),
|
2021-12-25 10:04:45 +08:00
|
|
|
bone->getNodeToParentAffineTransform(bone->getRootSkeletonNode()));
|
2022-08-08 18:02:17 +08:00
|
|
|
if (r.equals(ax::Rect::ZERO))
|
2019-11-23 20:27:39 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
boundingBox.setRect(minx, miny, maxx - minx, maxy - miny);
|
|
|
|
return RectApplyAffineTransform(boundingBox, this->getNodeToParentAffineTransform());
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
SkeletonNode::SkeletonNode() : BoneNode(), _subBonesDirty(true), _subBonesOrderDirty(true), _batchedVeticesCount(0) {}
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
SkeletonNode::~SkeletonNode()
|
|
|
|
{
|
2022-07-21 19:19:08 +08:00
|
|
|
for (auto&& bonepair : _subBonesMap)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
setRootSkeleton(bonepair.second, nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkeletonNode::updateVertices()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_rackLength != _squareVertices[6].x - _anchorPointInPoints.x ||
|
|
|
|
_rackWidth != _squareVertices[3].y - _anchorPointInPoints.y)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
const float radiusl = _rackLength * .5f;
|
|
|
|
const float radiusw = _rackWidth * .5f;
|
2019-11-23 20:27:39 +08:00
|
|
|
const float radiusl_2 = radiusl * .25f;
|
|
|
|
const float radiusw_2 = radiusw * .25f;
|
2021-12-25 10:04:45 +08:00
|
|
|
_squareVertices[5].y = _squareVertices[2].y = _squareVertices[1].y = _squareVertices[6].y =
|
|
|
|
_squareVertices[0].x = _squareVertices[4].x = _squareVertices[7].x = _squareVertices[3].x = .0f;
|
|
|
|
_squareVertices[5].x = -radiusl;
|
|
|
|
_squareVertices[0].y = -radiusw;
|
|
|
|
_squareVertices[6].x = radiusl;
|
|
|
|
_squareVertices[3].y = radiusw;
|
|
|
|
_squareVertices[1].x = radiusl_2;
|
|
|
|
_squareVertices[7].y = radiusw_2;
|
|
|
|
_squareVertices[2].x = -radiusl_2;
|
|
|
|
_squareVertices[4].y = -radiusw_2;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
{
|
|
|
|
_squareVertices[i] += _anchorPointInPoints;
|
|
|
|
}
|
|
|
|
|
|
|
|
_transformUpdated = _transformDirty = _inverseDirty = _contentSizeDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkeletonNode::updateColor()
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < 8; i++)
|
|
|
|
{
|
2019-11-25 01:35:26 +08:00
|
|
|
_vertexData[i].color = _rackColor;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
_transformUpdated = _transformDirty = _inverseDirty = _contentSizeDirty = true;
|
|
|
|
}
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
void SkeletonNode::visit(ax::Renderer* renderer, const ax::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
|
2022-08-08 18:02:17 +08:00
|
|
|
_director->pushMatrix(ax::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
|
|
|
|
_director->loadMatrix(ax::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW, _modelViewTransform);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
if (!_children.empty())
|
|
|
|
{
|
|
|
|
sortAllChildren();
|
|
|
|
// draw children zOrder < 0
|
|
|
|
for (; i < _children.size(); i++)
|
|
|
|
{
|
|
|
|
auto node = _children.at(i);
|
|
|
|
|
|
|
|
if (node && node->getLocalZOrder() < 0)
|
|
|
|
node->visit(renderer, _modelViewTransform, flags);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = _children.cbegin() + i; it != _children.cend(); ++it)
|
|
|
|
(*it)->visit(renderer, _modelViewTransform, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
checkSubBonesDirty();
|
|
|
|
for (const auto& bone : _subOrderedAllBones)
|
|
|
|
{
|
|
|
|
visitSkins(renderer, bone);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_isRackShow)
|
|
|
|
{
|
|
|
|
this->draw(renderer, _modelViewTransform, flags);
|
|
|
|
// batch draw all sub bones
|
2019-11-25 01:35:26 +08:00
|
|
|
_batchBoneCommand.init(_globalZOrder, _blendFunc);
|
2019-11-23 20:27:39 +08:00
|
|
|
renderer->addCommand(&_batchBoneCommand);
|
2019-11-25 01:35:26 +08:00
|
|
|
batchDrawAllSubBones();
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
2022-08-08 18:02:17 +08:00
|
|
|
_director->popMatrix(ax::MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
|
2019-11-23 20:27:39 +08:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
void SkeletonNode::draw(ax::Renderer* renderer, const ax::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);
|
|
|
|
for (int i = 0; i < 8; ++i)
|
|
|
|
{
|
2022-08-08 18:02:17 +08:00
|
|
|
ax::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);
|
2022-08-08 18:02:17 +08:00
|
|
|
_vertexData[i].vertex = ax::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));
|
|
|
|
|
|
|
|
// custom command and batched draw command share the same program state, so just set one time.
|
|
|
|
_programState->setUniform(_mvpLocation, transform.m, sizeof(transform.m));
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2019-11-25 01:35:26 +08:00
|
|
|
void SkeletonNode::batchDrawAllSubBones()
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
checkSubBonesDirty();
|
|
|
|
|
|
|
|
_batchedVeticesCount = 0;
|
|
|
|
for (const auto& bone : _subOrderedAllBones)
|
|
|
|
{
|
|
|
|
batchBoneDrawToSkeleton(bone);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
_batchBoneCommand.createVertexBuffer(sizeof(VertexData), _batchedVeticesCount,
|
2022-08-08 18:02:17 +08:00
|
|
|
ax::CustomCommand::BufferUsage::DYNAMIC);
|
2019-11-25 01:35:26 +08:00
|
|
|
_batchBoneCommand.updateVertexBuffer(_batchedBoneVertexData.data(), sizeof(VertexData) * _batchedVeticesCount);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
#ifdef AX_STUDIO_ENABLED_VIEW
|
2021-12-25 10:04:45 +08:00
|
|
|
// TODO
|
|
|
|
// glLineWidth(1);
|
|
|
|
// glEnable(GL_LINE_SMOOTH);
|
|
|
|
// glHint(GL_LINE_SMOOTH_HINT, GL_DONT_CARE);
|
|
|
|
// for (int i = 0; i < _batchedVeticesCount; i += 4 )
|
|
|
|
// {
|
|
|
|
// glDrawArrays(GL_TRIANGLE_FAN, i, 4);
|
|
|
|
// glDrawArrays(GL_LINE_LOOP, i, 4);
|
|
|
|
// }
|
2022-07-16 10:43:05 +08:00
|
|
|
// AX_INCREMENT_GL_DRAWN_BATCHES_AND_VERTICES(1, _batchedVeticesCount);
|
2019-11-23 20:27:39 +08:00
|
|
|
#else
|
2019-11-25 01:35:26 +08:00
|
|
|
unsigned short* indices = (unsigned short*)malloc(sizeof(unsigned short) * _batchedVeticesCount);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i = 0; i < _batchedVeticesCount; i += 4)
|
|
|
|
{
|
2019-11-25 01:35:26 +08:00
|
|
|
*indices++ = i;
|
|
|
|
*indices++ = i + 1;
|
|
|
|
*indices++ = i + 2;
|
|
|
|
|
|
|
|
*indices++ = i;
|
|
|
|
*indices++ = i + 2;
|
|
|
|
*indices++ = i + 3;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
2022-08-08 18:02:17 +08:00
|
|
|
_batchBoneCommand.createIndexBuffer(ax::CustomCommand::IndexFormat::U_SHORT, _batchedVeticesCount,
|
|
|
|
ax::CustomCommand::BufferUsage::DYNAMIC);
|
2019-11-25 01:35:26 +08:00
|
|
|
_batchBoneCommand.updateIndexBuffer(indices, sizeof(unsigned short) * _batchedVeticesCount);
|
|
|
|
free(indices);
|
2022-07-16 10:43:05 +08:00
|
|
|
#endif // AX_STUDIO_ENABLED_VIEW
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void SkeletonNode::changeSkins(const hlookup::string_map<std::string>& boneSkinNameMap)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2022-07-21 19:19:08 +08:00
|
|
|
for (auto&& boneskin : boneSkinNameMap)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto bone = getBoneNode(boneskin.first);
|
|
|
|
if (nullptr != bone)
|
|
|
|
bone->displaySkin(boneskin.second, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void SkeletonNode::changeSkins(std::string_view skinGroupName)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto suit = _skinGroupMap.find(skinGroupName);
|
|
|
|
if (suit != _skinGroupMap.end())
|
|
|
|
{
|
|
|
|
changeSkins(suit->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
BoneNode* SkeletonNode::getBoneNode(std::string_view boneName)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto iter = _subBonesMap.find(boneName);
|
|
|
|
if (iter != _subBonesMap.end())
|
|
|
|
{
|
|
|
|
return iter->second;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
const ax::StringMap<BoneNode*>& SkeletonNode::getAllSubBonesMap() const
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
return _subBonesMap;
|
|
|
|
}
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void SkeletonNode::addSkinGroup(std::string groupName, hlookup::string_map<std::string> boneSkinNameMap)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-31 12:12:40 +08:00
|
|
|
_skinGroupMap.emplace(groupName, std::move(boneSkinNameMap));
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SkeletonNode::checkSubBonesDirty()
|
|
|
|
{
|
|
|
|
if (_subBonesDirty)
|
|
|
|
{
|
|
|
|
updateOrderedAllbones();
|
|
|
|
_subBonesDirty = false;
|
|
|
|
}
|
|
|
|
if (_subBonesOrderDirty)
|
|
|
|
{
|
|
|
|
sortOrderedAllBones();
|
|
|
|
_subBonesOrderDirty = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkeletonNode::updateOrderedAllbones()
|
|
|
|
{
|
|
|
|
_subOrderedAllBones.clear();
|
|
|
|
// update sub bones, get All Visible SubBones
|
|
|
|
// get all sub bones as visit with visible
|
|
|
|
std::stack<BoneNode*> boneStack;
|
|
|
|
for (const auto& bone : _childBones)
|
|
|
|
{
|
|
|
|
if (bone->isVisible())
|
|
|
|
boneStack.push(bone);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (boneStack.size() > 0)
|
|
|
|
{
|
|
|
|
auto top = boneStack.top();
|
|
|
|
_subOrderedAllBones.pushBack(top);
|
|
|
|
boneStack.pop();
|
|
|
|
auto topChildren = top->getChildBones();
|
|
|
|
for (const auto& childbone : topChildren)
|
|
|
|
{
|
|
|
|
if (childbone->isVisible())
|
|
|
|
boneStack.push(childbone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkeletonNode::sortOrderedAllBones()
|
|
|
|
{
|
|
|
|
sortNodes(this->_subOrderedAllBones);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_TIMELINE_END
|