2013-06-06 12:02:54 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
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 "CCBone.h"
|
|
|
|
#include "CCArmature.h"
|
|
|
|
#include "utils/CCUtilMath.h"
|
|
|
|
#include "utils/CCArmatureDataManager.h"
|
|
|
|
#include "utils/CCTransformHelp.h"
|
|
|
|
#include "display/CCDisplayManager.h"
|
|
|
|
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CCBone *CCBone::create()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
CCBone *pBone = new CCBone();
|
|
|
|
if (pBone && pBone->init())
|
|
|
|
{
|
|
|
|
pBone->autorelease();
|
|
|
|
return pBone;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pBone);
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
CCBone *CCBone::create(const char *name)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
CCBone *pBone = new CCBone();
|
|
|
|
if (pBone && pBone->init(name))
|
|
|
|
{
|
|
|
|
pBone->autorelease();
|
|
|
|
return pBone;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pBone);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCBone::CCBone()
|
|
|
|
{
|
|
|
|
m_pTweenData = NULL;
|
|
|
|
m_pParent = NULL;
|
|
|
|
m_pArmature = NULL;
|
|
|
|
m_pChildArmature = NULL;
|
|
|
|
m_pBoneData = NULL;
|
|
|
|
m_pTween = NULL;
|
|
|
|
m_pTween = NULL;
|
|
|
|
m_pChildren = NULL;
|
|
|
|
m_pDisplayManager = NULL;
|
2013-06-07 10:52:32 +08:00
|
|
|
m_bIgnoreMovementBoneData = false;
|
|
|
|
m_tWorldTransform = CCAffineTransformMake(1, 0, 0, 1, 0, 0);
|
|
|
|
m_bTransformDirty = true;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CCBone::~CCBone(void)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CC_SAFE_DELETE(m_pTweenData);
|
2013-06-06 12:02:54 +08:00
|
|
|
CC_SAFE_DELETE(m_pChildren);
|
|
|
|
CC_SAFE_DELETE(m_pTween);
|
|
|
|
CC_SAFE_DELETE(m_pDisplayManager);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
if(m_pBoneData)
|
|
|
|
{
|
|
|
|
m_pBoneData->release();
|
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
CC_SAFE_RELEASE(m_pChildArmature);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CCBone::init()
|
|
|
|
{
|
|
|
|
return CCBone::init(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CCBone::init(const char *name)
|
|
|
|
{
|
|
|
|
bool bRet = false;
|
|
|
|
do
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
if(NULL != name)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
m_strName = name;
|
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CC_SAFE_DELETE(m_pTweenData);
|
|
|
|
m_pTweenData = new CCFrameData();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
CC_SAFE_DELETE(m_pTween);
|
2013-06-07 10:52:32 +08:00
|
|
|
m_pTween = new CCTween();
|
|
|
|
m_pTween->init(this);
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
CC_SAFE_DELETE(m_pDisplayManager);
|
|
|
|
m_pDisplayManager = new CCDisplayManager();
|
2013-06-07 10:52:32 +08:00
|
|
|
m_pDisplayManager->init(this);
|
|
|
|
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
bRet = true;
|
|
|
|
}
|
|
|
|
while (0);
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
void CCBone::setBoneData(CCBoneData *boneData)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
CCAssert(NULL != boneData, "_boneData must not be NULL");
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
m_pBoneData = boneData;
|
|
|
|
m_pBoneData->retain();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
m_strName = m_pBoneData->name;
|
2013-06-07 10:52:32 +08:00
|
|
|
m_nZOrder = m_pBoneData->zOrder;
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
m_pDisplayManager->initDisplayList(boneData);
|
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
CCBoneData *CCBone::getBoneData()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
return m_pBoneData;
|
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-08 22:08:22 +08:00
|
|
|
void CCBone::setArmature(CCArmature *armature)
|
|
|
|
{
|
|
|
|
m_pArmature = armature;
|
|
|
|
m_pTween->setAnimation(m_pArmature->getAnimation());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CCArmature *CCBone::getArmature()
|
|
|
|
{
|
|
|
|
return m_pArmature;
|
|
|
|
}
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
void CCBone::update(float delta)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
if (m_pParent)
|
|
|
|
m_bTransformDirty = m_bTransformDirty || m_pParent->isTransformDirty();
|
|
|
|
|
|
|
|
if (m_bTransformDirty)
|
|
|
|
{
|
|
|
|
float cosX = cos(m_pTweenData->skewX);
|
|
|
|
float cosY = cos(m_pTweenData->skewY);
|
|
|
|
float sinX = sin(m_pTweenData->skewX);
|
|
|
|
float sinY = sin(m_pTweenData->skewY);
|
|
|
|
|
|
|
|
m_tWorldTransform.a = m_pTweenData->scaleX * cosY;
|
|
|
|
m_tWorldTransform.b = m_pTweenData->scaleX * sinY;
|
|
|
|
m_tWorldTransform.c = m_pTweenData->scaleY * sinX;
|
|
|
|
m_tWorldTransform.d = m_pTweenData->scaleY * cosX;
|
|
|
|
m_tWorldTransform.tx = m_pTweenData->x;
|
|
|
|
m_tWorldTransform.ty = m_pTweenData->y;
|
|
|
|
|
|
|
|
m_tWorldTransform = CCAffineTransformConcat(nodeToParentTransform(), m_tWorldTransform);
|
|
|
|
|
|
|
|
if(m_pParent)
|
|
|
|
{
|
|
|
|
m_tWorldTransform = CCAffineTransformConcat(m_tWorldTransform, m_pParent->m_tWorldTransform);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CCDisplayFactory::updateDisplay(this, m_pDisplayManager->getCurrentDecorativeDisplay(), delta, m_bTransformDirty);
|
|
|
|
|
|
|
|
CCObject *object = NULL;
|
|
|
|
CCARRAY_FOREACH(m_pChildren, object)
|
|
|
|
{
|
|
|
|
CCBone *childBone = (CCBone *)object;
|
|
|
|
childBone->update(delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bTransformDirty = false;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
void CCBone::updateDisplayedColor(const ccColor3B &parentColor)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCNodeRGBA::updateDisplayedColor(parentColor);
|
|
|
|
updateColor();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::updateDisplayedOpacity(GLubyte parentOpacity)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCNodeRGBA::updateDisplayedOpacity(parentOpacity);
|
|
|
|
updateColor();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::updateColor()
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCNode *display = m_pDisplayManager->getDisplayRenderNode();
|
|
|
|
CCRGBAProtocol *protocol = dynamic_cast<CCRGBAProtocol *>(display);
|
|
|
|
if(protocol != NULL)
|
|
|
|
{
|
|
|
|
protocol->setColor(ccc3(_displayedColor.r * m_pTweenData->r / 255, _displayedColor.g * m_pTweenData->g / 255, _displayedColor.b * m_pTweenData->b / 255));
|
|
|
|
protocol->setOpacity(_displayedOpacity * m_pTweenData->a / 255);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
void CCBone::addChildBone(CCBone *child)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CCAssert( NULL != child, "Argument must be non-nil");
|
|
|
|
CCAssert( NULL == child->m_pParent, "child already added. It can't be added again");
|
|
|
|
|
|
|
|
if(!m_pChildren)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
childrenAlloc();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_pChildren->indexOfObject(child) == UINT_MAX)
|
|
|
|
{
|
|
|
|
m_pChildren->addObject(child);
|
|
|
|
child->setParentBone(this);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::removeChildBone(CCBone *bone, bool recursion)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
if ( m_pChildren->indexOfObject(bone) != UINT_MAX )
|
|
|
|
{
|
|
|
|
if(recursion)
|
|
|
|
{
|
|
|
|
CCArray *_ccbones = bone->m_pChildren;
|
|
|
|
CCObject *_object = NULL;
|
|
|
|
CCARRAY_FOREACH(_ccbones, _object)
|
|
|
|
{
|
|
|
|
CCBone *_ccBone = (CCBone *)_object;
|
|
|
|
bone->removeChildBone(_ccBone, recursion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bone->setParentBone(NULL);
|
|
|
|
|
|
|
|
bone->getDisplayManager()->setCurrentDecorativeDisplay(NULL);
|
|
|
|
|
|
|
|
m_pChildren->removeObject(bone);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::removeFromParent(bool recursion)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
if (NULL != m_pParent)
|
|
|
|
{
|
|
|
|
m_pParent->removeChildBone(this, recursion);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::setParentBone(CCBone *parent)
|
|
|
|
{
|
|
|
|
m_pParent = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCBone *CCBone::getParentBone()
|
|
|
|
{
|
|
|
|
return m_pParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::childrenAlloc(void)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
CC_SAFE_DELETE(m_pChildren);
|
|
|
|
m_pChildren = CCArray::createWithCapacity(4);
|
|
|
|
m_pChildren->retain();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CCBone::setChildArmature(CCArmature *armature)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
if (m_pChildArmature != armature)
|
|
|
|
{
|
|
|
|
CC_SAFE_RETAIN(armature);
|
|
|
|
CC_SAFE_RELEASE(m_pChildArmature);
|
|
|
|
m_pChildArmature = armature;
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCArmature *CCBone::getChildArmature()
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
return m_pChildArmature;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCArray *CCBone::getChildren()
|
|
|
|
{
|
|
|
|
return m_pChildren;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCTween *CCBone::getTween()
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
return m_pTween;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::setZOrder(int zOrder)
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
if (m_nZOrder != zOrder)
|
|
|
|
CCNode::setZOrder(zOrder);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::setTransformDirty(bool dirty)
|
|
|
|
{
|
|
|
|
m_bTransformDirty = dirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCBone::isTransformDirty()
|
|
|
|
{
|
|
|
|
return m_bTransformDirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCAffineTransform CCBone::nodeToArmatureTransform()
|
|
|
|
{
|
|
|
|
return m_tWorldTransform;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 16:22:58 +08:00
|
|
|
void CCBone::addDisplay(CCDisplayData *_displayData, int _index)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
m_pDisplayManager->addDisplay(_displayData, _index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCBone::changeDisplayByIndex(int _index, bool _force)
|
|
|
|
{
|
|
|
|
m_pDisplayManager->changeDisplayByIndex(_index, _force);
|
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
NS_CC_EXT_END
|