/**************************************************************************** Copyright (c) 2015-2017 Chukong Technologies Inc. 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" #include "base/ccUtils.h" #include "renderer/CCRenderer.h" #include "renderer/ccShaders.h" #include "renderer/backend/ProgramState.h" #include "ActionTimeline/CCBoneNode.h" #include "ActionTimeline/CCSkeletonNode.h" NS_TIMELINE_BEGIN BoneNode* BoneNode::create() { BoneNode* ret = new (std::nothrow) BoneNode(); if (ret && ret->init()) { ret->autorelease(); return ret; } CC_SAFE_DELETE(ret); return nullptr; } BoneNode* BoneNode::create(int length) { BoneNode* ret = new (std::nothrow) BoneNode(); if (ret && ret->init()) { ret->setDebugDrawLength(length); ret->autorelease(); } else { CC_SAFE_DELETE(ret); } return ret; } BoneNode::~BoneNode() { } bool BoneNode::init() { _rackLength = 50; _rackWidth = 20; updateVertices(); updateColor(); auto& pipelineDescriptor = _customCommand.getPipelineDescriptor(); auto* program = cocos2d::backend::Program::getBuiltinProgram(cocos2d::backend::ProgramType::POSITION_COLOR); // TODO: noMVP? setProgramState(new (std::nothrow) cocos2d::backend::ProgramState(program), false); pipelineDescriptor.programState = _programState; _mvpLocation = _programState->getUniformLocation("u_MVPMatrix"); auto vertexLayout = _programState->getVertexLayout(); const auto& attributeInfo = _programState->getProgram()->getActiveAttributes(); auto iter = attributeInfo.find("a_position"); if (iter != attributeInfo.end()) { vertexLayout->setAttribute("a_position", iter->second.location, cocos2d::backend::VertexFormat::FLOAT3, 0, false); } iter = attributeInfo.find("a_color"); if (iter != attributeInfo.end()) { vertexLayout->setAttribute("a_color", iter->second.location, cocos2d::backend::VertexFormat::FLOAT4, 3 * sizeof(float), false); } vertexLayout->setLayout(7 * sizeof(float)); _customCommand.createVertexBuffer(sizeof(_vertexData[0]), 4, cocos2d::CustomCommand::BufferUsage::DYNAMIC); _customCommand.createIndexBuffer(cocos2d::CustomCommand::IndexFormat::U_SHORT, 6, cocos2d::CustomCommand::BufferUsage::STATIC); unsigned short indices[6] = { 0, 1, 2, 0, 2, 3 }; _customCommand.updateIndexBuffer(indices, sizeof(indices)); return true; } void BoneNode::addChild(cocos2d::Node* child, int localZOrder, int tag) { addToChildrenListHelper(child); Node::addChild(child, localZOrder, tag); } void BoneNode::addChild(Node* child, int localZOrder, const std::string &name) { 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) { for (auto &bonskin : _boneSkins) { 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) { auto skeletonNode = dynamic_cast(bone); if (skeletonNode == nullptr) // is not a nested skeleton { auto subBones = bone->getAllSubBones(); subBones.pushBack(bone); for (auto &subBone : subBones) { if (subBone->_rootSkeleton == nullptr) continue; subBone->_rootSkeleton = nullptr; auto toremoveIter = _rootSkeleton->_subBonesMap.find(subBone->getName()); if (toremoveIter != _rootSkeleton->_subBonesMap.end()) { _rootSkeleton->_subBonesMap.erase(toremoveIter); _rootSkeleton->_subBonesDirty = true; _rootSkeleton->_subBonesOrderDirty = true; } } } else { _rootSkeleton->_subBonesDirty = true; _rootSkeleton->_subBonesOrderDirty = true; } } _childBones.eraseObject(bone); } void BoneNode::addToBoneList(BoneNode* bone) { _childBones.pushBack(bone); if (_rootSkeleton != nullptr) { auto skeletonNode = dynamic_cast(bone); if (skeletonNode == nullptr && bone->_rootSkeleton == nullptr) // not nest skeleton { auto subBones = bone->getAllSubBones(); subBones.pushBack(bone); for (auto &subBone : subBones) { subBone->_rootSkeleton = _rootSkeleton; auto bonename = subBone->getName(); if (_rootSkeleton->_subBonesMap.find(bonename) == _rootSkeleton->_subBonesMap.end()) { _rootSkeleton->_subBonesMap.insert(subBone->getName(), subBone); _rootSkeleton->_subBonesDirty = true; _rootSkeleton->_subBonesOrderDirty = true; } else CCLOG("already has a bone named %s in skeleton %s", bonename.c_str(), _rootSkeleton->getName().c_str()); } } else { _rootSkeleton->_subBonesDirty = true; _rootSkeleton->_subBonesOrderDirty = true; } } } void BoneNode::addToSkinList(SkinNode* skin) { _boneSkins.pushBack(skin); auto blendSkin = dynamic_cast(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); } } } void BoneNode::displaySkin(const std::string &skinName, bool hideOthers) { for (auto &skin : _boneSkins) { if (skinName == skin->getName()) { skin->setVisible(true); } else if (hideOthers) { skin->setVisible(false); } } } cocos2d::Vector BoneNode::getVisibleSkins() const { cocos2d::Vector displayingSkins; for (const auto &boneskin : _boneSkins) { 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; bool first = true; cocos2d::Rect displayRect = cocos2d::Rect(0, 0, 0, 0); if (_isRackShow && _rootSkeleton != nullptr && _rootSkeleton->_isRackShow) { maxx = _rackLength; maxy = _rackWidth; 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; for (auto & skin : _boneSkins) { auto blendSkin = dynamic_cast(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; } void BoneNode::setDebugDrawColor(const cocos2d::Color4F &color) { _rackColor = color; updateColor(); } void BoneNode::visit(cocos2d::Renderer *renderer, const cocos2d::Mat4& parentTransform, uint32_t parentFlags) { // 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(); bool isdebugdraw = visibleByCamera && _isRackShow && nullptr == _rootSkeleton; int i = 0; if (!_children.empty()) { sortAllChildren(); // draw children zOrder < 0 for (; i < _children.size(); i++) { auto node = _children.at(i); if (_rootSkeleton != nullptr && _boneSkins.contains(node)) // skip skin when bone is in a skeleton 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); if (_rootSkeleton != nullptr && _boneSkins.contains(node)) // skip skin when bone is in a skeleton 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; } void BoneNode::draw(cocos2d::Renderer *renderer, const cocos2d::Mat4 &transform, uint32_t flags) { _customCommand.init(_globalZOrder, _blendFunc); renderer->addCommand(&_customCommand); #ifdef CC_STUDIO_ENABLED_VIEW //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); // // 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 for (int i = 0; i < 4; ++i) { cocos2d::Vec4 pos; pos.x = _squareVertices[i].x; pos.y = _squareVertices[i].y; pos.z = _positionZ; pos.w = 1; _modelViewTransform.transformVector(&pos); _vertexData[i].noMVPVertices = cocos2d::Vec3(pos.x, pos.y, pos.z) / pos.w; } _customCommand.updateVertexBuffer(_vertexData, sizeof(_vertexData)); _programState->setUniform(_mvpLocation, transform.m, sizeof(transform.m)); } void BoneNode::updateVertices() { if (_rackLength != _squareVertices[2].x - _anchorPointInPoints.x || _squareVertices[3].y != _rackWidth / 2 - _anchorPointInPoints.y) { _squareVertices[1].x = _squareVertices[1].y = _squareVertices[3].y = .0f; _squareVertices[0].x = _squareVertices[2].x = _rackLength * .1f; _squareVertices[2].y = _rackWidth * .5f; _squareVertices[0].y = -_squareVertices[2].y; _squareVertices[3].x = _rackLength; 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++) { _vertexData[i].squareColor = _rackColor; } _transformUpdated = _transformDirty = _inverseDirty = _contentSizeDirty = true; } void BoneNode::updateDisplayedColor(const cocos2d::Color3B& /*parentColor*/) { if (_cascadeColorEnabled) { for (const auto &child : _boneSkins) { child->updateDisplayedColor(_displayedColor); } } } void BoneNode::updateDisplayedOpacity(uint8_t /*parentOpacity*/) { 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::getAllSubBones() const { cocos2d::Vector allBones; std::stack boneStack; // for avoid recursive 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 BoneNode::getAllSubSkins() const { auto allbones = getAllSubBones(); cocos2d::Vector 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) { if (bonePoint.x >= 0.0f && bonePoint.y >= _squareVertices[0].y && bonePoint.x <= _rackLength && 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; if (y1 >= a1 * bonePoint.x - b1 && y1 <= a2 * bonePoint.x && y1 >= -a2 * bonePoint.x && y1 <= -a1 * bonePoint.x + b1) return true; } } return false; } #endif //CC_STUDIO_ENABLED_VIEW 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; pos.x = bone->_squareVertices[i].x; pos.y = bone->_squareVertices[i].y; pos.z = bone->_positionZ; 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; if (count + 8 >(int)(bone->_rootSkeleton->_batchedBoneVertexData.size())) { bone->_rootSkeleton->_batchedBoneVertexData.resize(count + 100); } for (int i = 0; i < 4; i++) { bone->_rootSkeleton->_batchedBoneVertexData[count + i].vertex = vpos[i]; bone->_rootSkeleton->_batchedBoneVertexData[count + i].color = bone->_vertexData[i].squareColor; } 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; } void BoneNode::setName(const std::string& name) { auto oldname = getName(); Node::setName(name); if (_rootSkeleton != nullptr) { auto oiter = _rootSkeleton->_subBonesMap.find(oldname); auto niter = _rootSkeleton->_subBonesMap.find(name); if (oiter != _rootSkeleton->_subBonesMap.end() && niter == _rootSkeleton->_subBonesMap.end()) { auto node = oiter->second; _rootSkeleton->_subBonesMap.erase(oiter); _rootSkeleton->_subBonesMap.insert(name, node); } } } void BoneNode::addToChildrenListHelper(Node * child) { BoneNode* bone = dynamic_cast(child); if (nullptr != bone) { addToBoneList(bone); } else { SkinNode* skin = dynamic_cast(child); if (nullptr != skin) { addToSkinList(skin); } } } void BoneNode::removeFromChildrenListHelper(Node * child) { BoneNode* bone = dynamic_cast(child); if (nullptr != bone) { removeFromBoneList(bone); } else { SkinNode* skin = dynamic_cast(child); if (nullptr != skin) { removeFromSkinList(skin); } } } void BoneNode::setVisible(bool visible) { if (_visible == visible) return; Node::setVisible(visible); if (_rootSkeleton != nullptr) { _rootSkeleton->_subBonesDirty = true; _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