axmol/extensions/CCArmature/CCBone.cpp

346 lines
7.6 KiB
C++
Raw Normal View History

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"
namespace cocos2d { namespace extension { namespace armature {
2013-06-06 12:02:54 +08:00
Bone *Bone::create()
2013-06-06 12:02:54 +08:00
{
Bone *pBone = new Bone();
2013-06-06 12:02:54 +08:00
if (pBone && pBone->init())
{
pBone->autorelease();
return pBone;
}
CC_SAFE_DELETE(pBone);
return NULL;
}
2013-06-07 10:52:32 +08:00
Bone *Bone::create(const char *name)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
Bone *pBone = new Bone();
2013-06-06 12:02:54 +08:00
if (pBone && pBone->init(name))
{
pBone->autorelease();
return pBone;
}
CC_SAFE_DELETE(pBone);
return NULL;
}
Bone::Bone()
2013-06-06 12:02:54 +08:00
{
_tweenData = NULL;
_parent = NULL;
_armature = NULL;
_childArmature = NULL;
_boneData = NULL;
_tween = NULL;
_tween = NULL;
_children = NULL;
_displayManager = NULL;
_ignoreMovementBoneData = false;
_worldTransform = AffineTransformMake(1, 0, 0, 1, 0, 0);
_transformDirty = true;
2013-06-06 12:02:54 +08:00
}
Bone::~Bone(void)
2013-06-06 12:02:54 +08:00
{
CC_SAFE_DELETE(_tweenData);
CC_SAFE_DELETE(_children);
CC_SAFE_DELETE(_tween);
CC_SAFE_DELETE(_displayManager);
2013-06-07 10:52:32 +08:00
if(_boneData)
2013-06-06 12:02:54 +08:00
{
_boneData->release();
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
CC_SAFE_RELEASE(_childArmature);
2013-06-06 12:02:54 +08:00
}
bool Bone::init()
2013-06-06 12:02:54 +08:00
{
return Bone::init(NULL);
2013-06-06 12:02:54 +08:00
}
bool Bone::init(const char *name)
2013-06-06 12:02:54 +08:00
{
bool bRet = false;
do
{
2013-06-07 10:52:32 +08:00
if(NULL != name)
2013-06-06 12:02:54 +08:00
{
_name = name;
2013-06-06 12:02:54 +08:00
}
CC_SAFE_DELETE(_tweenData);
_tweenData = new FrameData();
2013-06-06 12:02:54 +08:00
CC_SAFE_DELETE(_tween);
_tween = new Tween();
_tween->init(this);
2013-06-07 10:52:32 +08:00
CC_SAFE_DELETE(_displayManager);
_displayManager = new DisplayManager();
_displayManager->init(this);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
bRet = true;
}
while (0);
return bRet;
}
void Bone::setBoneData(BoneData *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
_boneData = boneData;
_boneData->retain();
2013-06-07 10:52:32 +08:00
_name = _boneData->name;
_ZOrder = _boneData->zOrder;
2013-06-07 10:52:32 +08:00
_displayManager->initDisplayList(boneData);
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
BoneData *Bone::getBoneData()
2013-06-06 12:02:54 +08:00
{
return _boneData;
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
void Bone::setArmature(Armature *armature)
{
_armature = armature;
_tween->setAnimation(_armature->getAnimation());
}
Armature *Bone::getArmature()
{
return _armature;
}
void Bone::update(float delta)
2013-06-06 12:02:54 +08:00
{
if (_parent)
_transformDirty = _transformDirty || _parent->isTransformDirty();
2013-06-07 10:52:32 +08:00
if (_transformDirty)
2013-06-07 10:52:32 +08:00
{
float cosX = cos(_tweenData->skewX);
float cosY = cos(_tweenData->skewY);
float sinX = sin(_tweenData->skewX);
float sinY = sin(_tweenData->skewY);
2013-06-07 10:52:32 +08:00
_worldTransform.a = _tweenData->scaleX * cosY;
_worldTransform.b = _tweenData->scaleX * sinY;
_worldTransform.c = _tweenData->scaleY * sinX;
_worldTransform.d = _tweenData->scaleY * cosX;
_worldTransform.tx = _tweenData->x;
_worldTransform.ty = _tweenData->y;
2013-06-07 10:52:32 +08:00
_worldTransform = AffineTransformConcat(nodeToParentTransform(), _worldTransform);
2013-06-07 10:52:32 +08:00
if(_parent)
2013-06-07 10:52:32 +08:00
{
_worldTransform = AffineTransformConcat(_worldTransform, _parent->_worldTransform);
2013-06-07 10:52:32 +08:00
}
}
DisplayFactory::updateDisplay(this, _displayManager->getCurrentDecorativeDisplay(), delta, _transformDirty);
2013-06-07 10:52:32 +08:00
Object *object = NULL;
CCARRAY_FOREACH(_children, object)
2013-06-07 10:52:32 +08:00
{
Bone *childBone = static_cast<Bone *>(object);
2013-06-07 10:52:32 +08:00
childBone->update(delta);
}
_transformDirty = false;
2013-06-06 12:02:54 +08:00
}
void Bone::updateDisplayedColor(const Color3B &parentColor)
2013-06-06 12:02:54 +08:00
{
NodeRGBA::updateDisplayedColor(parentColor);
2013-06-07 10:52:32 +08:00
updateColor();
2013-06-06 12:02:54 +08:00
}
void Bone::updateDisplayedOpacity(GLubyte parentOpacity)
2013-06-06 12:02:54 +08:00
{
NodeRGBA::updateDisplayedOpacity(parentOpacity);
2013-06-07 10:52:32 +08:00
updateColor();
2013-06-06 12:02:54 +08:00
}
void Bone::updateColor()
2013-06-06 12:02:54 +08:00
{
Node *display = _displayManager->getDisplayRenderNode();
RGBAProtocol *protocol = dynamic_cast<RGBAProtocol *>(display);
2013-06-07 10:52:32 +08:00
if(protocol != NULL)
{
protocol->setColor(Color3B(_displayedColor.r * _tweenData->r / 255, _displayedColor.g * _tweenData->g / 255, _displayedColor.b * _tweenData->b / 255));
protocol->setOpacity(_displayedOpacity * _tweenData->a / 255);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
void Bone::addChildBone(Bone *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->_parent, "child already added. It can't be added again");
2013-06-07 10:52:32 +08:00
if(!_children)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
childrenAlloc();
}
if (_children->indexOfObject(child) == UINT_MAX)
2013-06-07 10:52:32 +08:00
{
_children->addObject(child);
2013-06-07 10:52:32 +08:00
child->setParentBone(this);
2013-06-06 12:02:54 +08:00
}
}
void Bone::removeChildBone(Bone *bone, bool recursion)
2013-06-06 12:02:54 +08:00
{
if ( _children->indexOfObject(bone) != UINT_MAX )
2013-06-07 10:52:32 +08:00
{
if(recursion)
{
Array *_ccbones = bone->_children;
Object *_object = NULL;
2013-06-07 10:52:32 +08:00
CCARRAY_FOREACH(_ccbones, _object)
{
Bone *_ccBone = static_cast<Bone *>(_object);
2013-06-07 10:52:32 +08:00
bone->removeChildBone(_ccBone, recursion);
}
}
bone->setParentBone(NULL);
bone->getDisplayManager()->setCurrentDecorativeDisplay(NULL);
_children->removeObject(bone);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
void Bone::removeFromParent(bool recursion)
2013-06-06 12:02:54 +08:00
{
if (NULL != _parent)
2013-06-07 10:52:32 +08:00
{
_parent->removeChildBone(this, recursion);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
void Bone::setParentBone(Bone *parent)
2013-06-06 12:02:54 +08:00
{
_parent = parent;
2013-06-06 12:02:54 +08:00
}
Bone *Bone::getParentBone()
2013-06-06 12:02:54 +08:00
{
return _parent;
2013-06-06 12:02:54 +08:00
}
void Bone::childrenAlloc(void)
2013-06-06 12:02:54 +08:00
{
CC_SAFE_DELETE(_children);
_children = Array::createWithCapacity(4);
_children->retain();
2013-06-06 12:02:54 +08:00
}
void Bone::setChildArmature(Armature *armature)
2013-06-06 12:02:54 +08:00
{
if (_childArmature != armature)
2013-06-07 10:52:32 +08:00
{
CC_SAFE_RETAIN(armature);
CC_SAFE_RELEASE(_childArmature);
_childArmature = armature;
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
Armature *Bone::getChildArmature()
2013-06-06 12:02:54 +08:00
{
return _childArmature;
2013-06-06 12:02:54 +08:00
}
Array *Bone::getChildren()
2013-06-06 12:02:54 +08:00
{
return _children;
2013-06-06 12:02:54 +08:00
}
Tween *Bone::getTween()
2013-06-06 12:02:54 +08:00
{
return _tween;
2013-06-06 12:02:54 +08:00
}
void Bone::setZOrder(int zOrder)
2013-06-06 12:02:54 +08:00
{
if (_ZOrder != zOrder)
Node::setZOrder(zOrder);
2013-06-07 10:52:32 +08:00
}
void Bone::setTransformDirty(bool dirty)
2013-06-07 10:52:32 +08:00
{
_transformDirty = dirty;
2013-06-07 10:52:32 +08:00
}
bool Bone::isTransformDirty()
2013-06-07 10:52:32 +08:00
{
return _transformDirty;
2013-06-07 10:52:32 +08:00
}
AffineTransform Bone::nodeToArmatureTransform()
2013-06-07 10:52:32 +08:00
{
return _worldTransform;
2013-06-06 12:02:54 +08:00
}
void Bone::addDisplay(DisplayData *_displayData, int _index)
2013-06-06 12:02:54 +08:00
{
_displayManager->addDisplay(_displayData, _index);
2013-06-06 12:02:54 +08:00
}
void Bone::changeDisplayByIndex(int _index, bool _force)
2013-06-06 12:02:54 +08:00
{
_displayManager->changeDisplayByIndex(_index, _force);
2013-06-06 12:02:54 +08:00
}
}}} // namespace cocos2d { namespace extension { namespace armature {