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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCArmature.h"
|
|
|
|
#include "cocostudio/CCArmatureDataManager.h"
|
|
|
|
#include "cocostudio/CCArmatureDefine.h"
|
|
|
|
#include "cocostudio/CCDataReaderHelper.h"
|
|
|
|
#include "cocostudio/CCDatas.h"
|
|
|
|
#include "cocostudio/CCSkin.h"
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
#if ENABLE_PHYSICS_BOX2D_DETECT
|
|
|
|
#include "Box2D/Box2D.h"
|
|
|
|
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
|
|
|
|
#include "chipmunk.h"
|
|
|
|
#endif
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
using namespace cocos2d;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
|
|
|
|
namespace cocostudio {
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature *Armature::create()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature *armature = new Armature();
|
2013-06-06 12:02:54 +08:00
|
|
|
if (armature && armature->init())
|
|
|
|
{
|
|
|
|
armature->autorelease();
|
|
|
|
return armature;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(armature);
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
Armature *Armature::create(const char *name)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature *armature = new Armature();
|
2013-09-13 18:07:37 +08:00
|
|
|
if (armature && armature->init(name))
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
armature->autorelease();
|
|
|
|
return armature;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(armature);
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature *Armature::create(const char *name, Bone *parentBone)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature *armature = new Armature();
|
2013-06-07 10:52:32 +08:00
|
|
|
if (armature && armature->init(name, parentBone))
|
|
|
|
{
|
|
|
|
armature->autorelease();
|
|
|
|
return armature;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(armature);
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature::Armature()
|
2013-11-05 15:32:13 +08:00
|
|
|
: _armatureData(nullptr)
|
|
|
|
, _batchNode(nullptr)
|
|
|
|
, _atlas(nullptr)
|
|
|
|
, _parentBone(nullptr)
|
2013-09-15 20:24:25 +08:00
|
|
|
, _armatureTransformDirty(true)
|
2013-11-05 15:32:13 +08:00
|
|
|
, _animation(nullptr)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature::~Armature(void)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
_boneDic.clear();
|
|
|
|
_topBoneList.clear();
|
|
|
|
_textureAtlasDic.clear();
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_animation);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool Armature::init()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
return init(nullptr);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool Armature::init(const char *name)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
bool bRet = false;
|
|
|
|
do
|
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
removeAllChildren();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_animation);
|
2013-06-20 14:15:53 +08:00
|
|
|
_animation = new ArmatureAnimation();
|
2013-06-15 14:03:30 +08:00
|
|
|
_animation->init(this);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
_boneDic.clear();
|
|
|
|
_topBoneList.clear();
|
|
|
|
_textureAtlasDic.clear();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-12-02 13:32:31 +08:00
|
|
|
_blendFunc = BlendFunc::ALPHA_NON_PREMULTIPLIED;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
_name = name == nullptr ? "" : name;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-16 15:16:05 +08:00
|
|
|
ArmatureDataManager *armatureDataManager = ArmatureDataManager::getInstance();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if(_name.length() != 0)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_name = name;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
AnimationData *animationData = armatureDataManager->getAnimationData(name);
|
2013-09-16 12:02:57 +08:00
|
|
|
CCASSERT(animationData, "AnimationData not exist! ");
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_animation->setAnimationData(animationData);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ArmatureData *armatureData = armatureDataManager->getArmatureData(name);
|
2013-07-20 13:01:27 +08:00
|
|
|
CCASSERT(armatureData, "");
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_armatureData = armatureData;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-12-13 19:40:38 +08:00
|
|
|
for (auto element : armatureData->boneDataDic)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-12-13 19:40:38 +08:00
|
|
|
Bone *bone = createBone(element.first.c_str());
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
//! init bone's Tween to 1st movement's 1st frame
|
2013-06-07 10:52:32 +08:00
|
|
|
do
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
MovementData *movData = animationData->getMovement(animationData->movementNames.at(0).c_str());
|
2013-06-06 12:02:54 +08:00
|
|
|
CC_BREAK_IF(!movData);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
MovementBoneData *movBoneData = movData->getMovementBoneData(bone->getName().c_str());
|
2013-12-13 19:40:38 +08:00
|
|
|
CC_BREAK_IF(!movBoneData || movBoneData->frameList.size() <= 0);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
FrameData *frameData = movBoneData->getFrameData(0);
|
2013-06-06 12:02:54 +08:00
|
|
|
CC_BREAK_IF(!frameData);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
bone->getTweenData()->copy(frameData);
|
2013-06-07 10:52:32 +08:00
|
|
|
bone->changeDisplayByIndex(frameData->displayIndex, false);
|
|
|
|
}
|
|
|
|
while (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
update(0);
|
|
|
|
updateOffsetPoint();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_name = "new_armature";
|
2013-06-20 14:15:53 +08:00
|
|
|
_armatureData = ArmatureData::create();
|
2013-06-15 14:03:30 +08:00
|
|
|
_armatureData->name = _name;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
AnimationData *animationData = AnimationData::create();
|
2013-06-15 14:03:30 +08:00
|
|
|
animationData->name = _name;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
armatureDataManager->addArmatureData(_name.c_str(), _armatureData);
|
|
|
|
armatureDataManager->addAnimationData(_name.c_str(), animationData);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_animation->setAnimationData(animationData);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-09-16 12:02:57 +08:00
|
|
|
setShaderProgram(ShaderCache::getInstance()->getProgram(GLProgram::SHADER_NAME_POSITION_TEXTURE_COLOR));
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
unscheduleUpdate();
|
2013-06-07 10:52:32 +08:00
|
|
|
scheduleUpdate();
|
|
|
|
|
|
|
|
setCascadeOpacityEnabled(true);
|
|
|
|
setCascadeColorEnabled(true);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
bRet = true;
|
|
|
|
}
|
|
|
|
while (0);
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool Armature::init(const char *name, Bone *parentBone)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_parentBone = parentBone;
|
2013-06-07 10:52:32 +08:00
|
|
|
return init(name);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
Bone *Armature::createBone(const char *boneName)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Bone *existedBone = getBone(boneName);
|
2013-11-05 15:32:13 +08:00
|
|
|
if(existedBone != nullptr)
|
2013-06-07 10:52:32 +08:00
|
|
|
return existedBone;
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
BoneData *boneData = (BoneData *)_armatureData->getBoneData(boneName);
|
2013-06-07 10:52:32 +08:00
|
|
|
std::string parentName = boneData->parentName;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
Bone *bone = nullptr;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-07 14:01:03 +08:00
|
|
|
if( parentName.length() != 0 )
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
createBone(parentName.c_str());
|
2013-06-20 14:15:53 +08:00
|
|
|
bone = Bone::create(boneName);
|
2013-06-06 12:02:54 +08:00
|
|
|
addBone(bone, parentName.c_str());
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
bone = Bone::create(boneName);
|
2013-06-06 12:02:54 +08:00
|
|
|
addBone(bone, "");
|
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
bone->setBoneData(boneData);
|
2013-06-07 10:52:32 +08:00
|
|
|
bone->getDisplayManager()->changeDisplayByIndex(-1, false);
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
return bone;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::addBone(Bone *bone, const char *parentName)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
CCASSERT( bone != nullptr, "Argument must be non-nil");
|
2013-12-16 14:34:09 +08:00
|
|
|
CCASSERT(_boneDic.at(bone->getName()) == nullptr, "bone already added. It can't be added again");
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
if (nullptr != parentName)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
Bone *boneParent = _boneDic.at(parentName);
|
2013-06-06 12:02:54 +08:00
|
|
|
if (boneParent)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
boneParent->addChildBone(bone);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
_topBoneList.pushBack(bone);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
else
|
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
_topBoneList.pushBack(bone);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
bone->setArmature(this);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
_boneDic.insert(bone->getName(), bone);
|
2013-06-06 12:02:54 +08:00
|
|
|
addChild(bone);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::removeBone(Bone *bone, bool recursion)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
CCASSERT(bone != nullptr, "bone must be added to the bone dictionary!");
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
bone->setArmature(nullptr);
|
2013-06-06 12:02:54 +08:00
|
|
|
bone->removeFromParent(recursion);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
if (_topBoneList.contains(bone))
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
_topBoneList.erase(bone);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-12-16 14:34:09 +08:00
|
|
|
_boneDic.erase(bone->getName());
|
2013-06-08 22:08:22 +08:00
|
|
|
removeChild(bone, true);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
Bone *Armature::getBone(const char *name) const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
return _boneDic.at(name);
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::changeBoneParent(Bone *bone, const char *parentName)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
CCASSERT(bone != nullptr, "bone must be added to the bone dictionary!");
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
if(bone->getParentBone())
|
|
|
|
{
|
2013-12-11 17:53:45 +08:00
|
|
|
bone->getParentBone()->getChildren().erase(bone);
|
2013-11-05 15:32:13 +08:00
|
|
|
bone->setParentBone(nullptr);
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
if (parentName != nullptr)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
Bone *boneParent = _boneDic.at(parentName);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
if (boneParent)
|
|
|
|
{
|
|
|
|
boneParent->addChildBone(bone);
|
2013-12-16 14:34:09 +08:00
|
|
|
if (_topBoneList.contains(bone))
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
_topBoneList.erase(bone);
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
_topBoneList.pushBack(bone);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
const cocos2d::Map<std::string, Bone*>& Armature::getBoneDic() const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _boneDic;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-08-29 09:31:32 +08:00
|
|
|
const AffineTransform& Armature::getNodeToParentTransform() const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_transformDirty)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
_armatureTransformDirty = true;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
// Translate values
|
2013-06-15 14:03:30 +08:00
|
|
|
float x = _position.x;
|
|
|
|
float y = _position.y;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_ignoreAnchorPointForPosition)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
x += _anchorPointInPoints.x;
|
|
|
|
y += _anchorPointInPoints.y;
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rotation values
|
|
|
|
// Change rotation code to handle X and Y
|
|
|
|
// If we skew with the exact same value for both x and y then we're simply just rotating
|
|
|
|
float cx = 1, sx = 0, cy = 1, sy = 0;
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_rotationX || _rotationY)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
float radiansX = -CC_DEGREES_TO_RADIANS(_rotationX);
|
|
|
|
float radiansY = -CC_DEGREES_TO_RADIANS(_rotationY);
|
2013-06-07 10:52:32 +08:00
|
|
|
cx = cosf(radiansX);
|
|
|
|
sx = sinf(radiansX);
|
|
|
|
cy = cosf(radiansY);
|
|
|
|
sy = sinf(radiansY);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add offset point
|
2013-06-15 14:03:30 +08:00
|
|
|
x += cy * _offsetPoint.x * _scaleX + -sx * _offsetPoint.y * _scaleY;
|
|
|
|
y += sy * _offsetPoint.x * _scaleX + cx * _offsetPoint.y * _scaleY;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
bool needsSkewMatrix = ( _skewX || _skewY );
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
// optimization:
|
|
|
|
// inline anchor point calculation if skew is not needed
|
|
|
|
// Adjusted transform calculation for rotational skew
|
2013-07-12 14:47:36 +08:00
|
|
|
if (! needsSkewMatrix && !_anchorPointInPoints.equals(Point::ZERO))
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
x += cy * -_anchorPointInPoints.x * _scaleX + -sx * -_anchorPointInPoints.y * _scaleY;
|
|
|
|
y += sy * -_anchorPointInPoints.x * _scaleX + cx * -_anchorPointInPoints.y * _scaleY;
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Build Transform Matrix
|
|
|
|
// Adjusted transform calculation for rotational skew
|
2013-06-20 14:15:53 +08:00
|
|
|
_transform = AffineTransformMake( cy * _scaleX, sy * _scaleX,
|
2013-06-15 14:03:30 +08:00
|
|
|
-sx * _scaleY, cx * _scaleY,
|
2013-06-07 10:52:32 +08:00
|
|
|
x, y );
|
|
|
|
|
|
|
|
// XXX: Try to inline skew
|
|
|
|
// If skew is needed, apply skew and then anchor point
|
|
|
|
if (needsSkewMatrix)
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
AffineTransform skewMatrix = AffineTransformMake(1.0f, tanf(CC_DEGREES_TO_RADIANS(_skewY)),
|
2013-06-15 14:03:30 +08:00
|
|
|
tanf(CC_DEGREES_TO_RADIANS(_skewX)), 1.0f,
|
2013-06-07 10:52:32 +08:00
|
|
|
0.0f, 0.0f );
|
2013-06-20 14:15:53 +08:00
|
|
|
_transform = AffineTransformConcat(skewMatrix, _transform);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
// adjust anchor point
|
2013-07-12 14:47:36 +08:00
|
|
|
if (!_anchorPointInPoints.equals(Point::ZERO))
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_transform = AffineTransformTranslate(_transform, -_anchorPointInPoints.x, -_anchorPointInPoints.y);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_additionalTransformDirty)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_transform = AffineTransformConcat(_transform, _additionalTransform);
|
2013-06-15 14:03:30 +08:00
|
|
|
_additionalTransformDirty = false;
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_transformDirty = false;
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
return _transform;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::updateOffsetPoint()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
// Set contentsize and Calculate anchor point.
|
2013-07-17 09:16:04 +08:00
|
|
|
Rect rect = getBoundingBox();
|
2013-06-07 10:52:32 +08:00
|
|
|
setContentSize(rect.size);
|
2013-07-12 14:11:55 +08:00
|
|
|
_offsetPoint = Point(-rect.origin.x, -rect.origin.y);
|
2013-09-13 18:07:37 +08:00
|
|
|
if (rect.size.width != 0 && rect.size.height != 0)
|
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
setAnchorPoint(Point(_offsetPoint.x / rect.size.width, _offsetPoint.y / rect.size.height));
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
void Armature::setAnimation(ArmatureAnimation *animation)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
_animation = animation;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-11-05 19:53:38 +08:00
|
|
|
ArmatureAnimation *Armature::getAnimation() const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _animation;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-05 19:53:38 +08:00
|
|
|
bool Armature::getArmatureTransformDirty() const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _armatureTransformDirty;
|
2013-09-14 19:54:49 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::update(float dt)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_animation->update(dt);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
for (auto object : _topBoneList)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-07-09 14:29:51 +08:00
|
|
|
static_cast<Bone*>(object)->update(dt);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
_armatureTransformDirty = false;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::draw()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
if (_parentBone == nullptr && _batchNode == nullptr)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
CC_NODE_DRAW_SETUP();
|
2013-07-26 09:42:53 +08:00
|
|
|
GL::blendFunc(_blendFunc.src, _blendFunc.dst);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
2013-11-28 16:02:03 +08:00
|
|
|
for (auto object : _children)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-15 19:08:45 +08:00
|
|
|
if (Bone *bone = dynamic_cast<Bone *>(object))
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-10-30 09:41:40 +08:00
|
|
|
Node *node = bone->getDisplayRenderNode();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
if (nullptr == node)
|
2013-09-13 18:07:37 +08:00
|
|
|
continue;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
switch (bone->getDisplayRenderNodeType())
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-13 18:07:37 +08:00
|
|
|
case CS_DISPLAY_SPRITE:
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-16 12:21:18 +08:00
|
|
|
Skin *skin = static_cast<Skin *>(node);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
TextureAtlas *textureAtlas = skin->getTextureAtlas();
|
2013-12-13 15:02:09 +08:00
|
|
|
bool blendDirty = bone->isBlendDirty();
|
|
|
|
if(_atlas != textureAtlas || blendDirty)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
if (_atlas)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
_atlas->drawQuads();
|
|
|
|
_atlas->removeAllQuads();
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
_atlas = textureAtlas;
|
|
|
|
if (_atlas->getCapacity() == _atlas->getTotalQuads() && !_atlas->resizeCapacity(_atlas->getCapacity() * 2))
|
2013-09-13 18:07:37 +08:00
|
|
|
return;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
skin->updateTransform();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-12-13 15:02:09 +08:00
|
|
|
if (blendDirty)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-12-13 15:02:09 +08:00
|
|
|
ccBlendFunc func = bone->getBlendFunc();
|
|
|
|
ccGLBlendFunc(func.src, func.dst);
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_atlas->drawQuads();
|
|
|
|
_atlas->removeAllQuads();
|
2013-09-15 20:24:25 +08:00
|
|
|
GL::blendFunc(_blendFunc.src, _blendFunc.dst);
|
2013-12-13 15:02:09 +08:00
|
|
|
|
|
|
|
bone->setBlendDirty(false);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
}
|
2013-09-13 18:07:37 +08:00
|
|
|
break;
|
|
|
|
case CS_DISPLAY_ARMATURE:
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-16 12:21:18 +08:00
|
|
|
Armature *armature = static_cast<Armature *>(node);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
TextureAtlas *textureAtlas = armature->getTextureAtlas();
|
2013-09-15 20:24:25 +08:00
|
|
|
if(_atlas != textureAtlas)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
if (_atlas)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
_atlas->drawQuads();
|
|
|
|
_atlas->removeAllQuads();
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-09-13 18:07:37 +08:00
|
|
|
armature->draw();
|
2013-10-29 16:57:06 +08:00
|
|
|
_atlas = armature->getTextureAtlas();
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_atlas)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_atlas->drawQuads();
|
|
|
|
_atlas->removeAllQuads();
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-09-13 18:07:37 +08:00
|
|
|
node->visit();
|
|
|
|
|
|
|
|
CC_NODE_DRAW_SETUP();
|
2013-09-15 20:24:25 +08:00
|
|
|
GL::blendFunc(_blendFunc.src, _blendFunc.dst);
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
break;
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
}
|
2013-09-13 18:07:37 +08:00
|
|
|
else if(Node *node = dynamic_cast<Node *>(object))
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_atlas)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_atlas->drawQuads();
|
|
|
|
_atlas->removeAllQuads();
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
node->visit();
|
|
|
|
|
|
|
|
CC_NODE_DRAW_SETUP();
|
2013-07-26 09:42:53 +08:00
|
|
|
GL::blendFunc(_blendFunc.src, _blendFunc.dst);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-05 15:32:13 +08:00
|
|
|
if(_atlas && !_batchNode && _parentBone == nullptr)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_atlas->drawQuads();
|
|
|
|
_atlas->removeAllQuads();
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void Armature::visit()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
// quick return if not visible. children won't be drawn.
|
2013-06-15 14:03:30 +08:00
|
|
|
if (!_visible)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
kmGLPushMatrix();
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_grid && _grid->isActive())
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_grid->beforeDraw();
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
transform();
|
|
|
|
sortAllChildren();
|
|
|
|
draw();
|
|
|
|
|
|
|
|
// reset for next frame
|
2013-06-15 14:03:30 +08:00
|
|
|
_orderOfArrival = 0;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_grid && _grid->isActive())
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_grid->afterDraw(this);
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
kmGLPopMatrix();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-07-17 09:16:04 +08:00
|
|
|
Rect Armature::getBoundingBox() const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
float minx, miny, maxx, maxy = 0;
|
|
|
|
|
|
|
|
bool first = true;
|
|
|
|
|
2013-07-12 14:30:26 +08:00
|
|
|
Rect boundingBox = Rect(0, 0, 0, 0);
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-11-28 16:02:03 +08:00
|
|
|
for(auto object : _children)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-15 19:08:45 +08:00
|
|
|
if (Bone *bone = dynamic_cast<Bone *>(object))
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-09-13 18:07:37 +08:00
|
|
|
Rect r = bone->getDisplayManager()->getBoundingBox();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
if(first)
|
|
|
|
{
|
|
|
|
minx = r.getMinX();
|
|
|
|
miny = r.getMinY();
|
|
|
|
maxx = r.getMaxX();
|
|
|
|
maxy = r.getMaxY();
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
minx = r.getMinX() < boundingBox.getMinX() ? r.getMinX() : boundingBox.getMinX();
|
|
|
|
miny = r.getMinY() < boundingBox.getMinY() ? r.getMinY() : boundingBox.getMinY();
|
|
|
|
maxx = r.getMaxX() > boundingBox.getMaxX() ? r.getMaxX() : boundingBox.getMaxX();
|
|
|
|
maxy = r.getMaxY() > boundingBox.getMaxY() ? r.getMaxY() : boundingBox.getMaxY();
|
|
|
|
}
|
|
|
|
|
|
|
|
boundingBox.setRect(minx, miny, maxx - minx, maxy - miny);
|
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
return RectApplyAffineTransform(boundingBox, getNodeToParentTransform());
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-11-05 19:53:38 +08:00
|
|
|
Bone *Armature::getBoneAtPoint(float x, float y) const
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
long length = _children.size();
|
2013-08-20 08:09:28 +08:00
|
|
|
Bone *bs;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
2013-11-28 16:02:03 +08:00
|
|
|
for(long i = length - 1; i >= 0; i--)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
bs = static_cast<Bone*>( _children.at(i) );
|
2013-08-20 08:09:28 +08:00
|
|
|
if(bs->getDisplayManager()->containPoint(x, y))
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-08-20 08:09:28 +08:00
|
|
|
return bs;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
TextureAtlas *Armature::getTexureAtlasWithTexture(Texture2D *texture)
|
2013-10-30 09:41:40 +08:00
|
|
|
{
|
|
|
|
int key = texture->getName();
|
|
|
|
|
|
|
|
if (_parentBone && _parentBone->getArmature())
|
|
|
|
{
|
|
|
|
return _parentBone->getArmature()->getTexureAtlasWithTexture(texture);
|
|
|
|
}
|
|
|
|
else if (_batchNode)
|
|
|
|
{
|
|
|
|
_batchNode->getTexureAtlasWithTexture(texture);
|
|
|
|
}
|
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
TextureAtlas *atlas = static_cast<TextureAtlas *>(_textureAtlasDic.at(key));
|
2013-11-05 15:32:13 +08:00
|
|
|
if (atlas == nullptr)
|
2013-10-30 09:41:40 +08:00
|
|
|
{
|
|
|
|
atlas = TextureAtlas::createWithTexture(texture, 4);
|
2013-12-16 14:34:09 +08:00
|
|
|
_textureAtlasDic.insert(key, atlas);
|
2013-10-30 09:41:40 +08:00
|
|
|
}
|
|
|
|
return atlas;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Armature::setParentBone(Bone *parentBone)
|
|
|
|
{
|
|
|
|
_parentBone = parentBone;
|
2013-12-16 14:34:09 +08:00
|
|
|
|
|
|
|
for (auto element : _boneDic)
|
2013-10-30 09:41:40 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
element.second->setArmature(this);
|
2013-10-30 09:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-05 19:53:38 +08:00
|
|
|
Bone *Armature::getParentBone() const
|
2013-10-30 09:41:40 +08:00
|
|
|
{
|
|
|
|
return _parentBone;
|
|
|
|
}
|
|
|
|
|
2013-12-06 13:40:49 +08:00
|
|
|
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
|
|
|
|
|
2013-11-01 14:36:44 +08:00
|
|
|
void CCArmature::setColliderFilter(ColliderFilter *filter)
|
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
for (auto element : _boneDic)
|
2013-11-01 14:36:44 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
element.second->setColliderFilter(filter);
|
2013-11-01 14:36:44 +08:00
|
|
|
}
|
|
|
|
}
|
2013-12-06 13:40:49 +08:00
|
|
|
#elif ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
|
|
|
|
|
|
|
|
void CCArmature::drawContour()
|
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
for(auto element : _boneDic)
|
2013-12-06 13:40:49 +08:00
|
|
|
{
|
2013-12-16 14:34:09 +08:00
|
|
|
Bone *bone = element.second;
|
|
|
|
ColliderDetector *detector = bone->getColliderDetector();
|
|
|
|
|
|
|
|
if (!detector)
|
2013-12-06 13:40:49 +08:00
|
|
|
continue;
|
|
|
|
|
2013-12-16 14:34:09 +08:00
|
|
|
const cocos2d::Vector<ColliderBody*>& bodyList = detector->getColliderBodyList();
|
|
|
|
|
|
|
|
for (auto object : bodyList)
|
2013-12-06 13:40:49 +08:00
|
|
|
{
|
|
|
|
ColliderBody *body = static_cast<ColliderBody*>(object);
|
2013-12-13 19:40:38 +08:00
|
|
|
const std::vector<CCPoint> &vertexList = body->getCalculatedVertexList();
|
2013-12-06 13:40:49 +08:00
|
|
|
|
2013-12-13 19:40:38 +08:00
|
|
|
int length = vertexList.size();
|
2013-12-06 13:40:49 +08:00
|
|
|
Point *points = new Point[length];
|
|
|
|
for (int i = 0; i<length; i++)
|
|
|
|
{
|
2013-12-13 19:40:38 +08:00
|
|
|
CCPoint p = vertexList.at(i);
|
|
|
|
points[i].x = p.x;
|
|
|
|
points[i].y = p.y;
|
2013-12-06 13:40:49 +08:00
|
|
|
}
|
|
|
|
DrawPrimitives::drawPoly( points, length, true );
|
|
|
|
|
|
|
|
delete points;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2013-11-01 14:36:44 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
#if ENABLE_PHYSICS_BOX2D_DETECT
|
2013-11-05 19:53:38 +08:00
|
|
|
b2Body *Armature::getBody() const
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _body;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
void Armature::setBody(b2Body *body)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
if (_body == body)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
_body = body;
|
|
|
|
_body->SetUserData(this);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-11-06 15:25:44 +08:00
|
|
|
for(auto object : *_children)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 19:08:45 +08:00
|
|
|
if (Bone *bone = dynamic_cast<Bone *>(object))
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
|
|
|
Array *displayList = bone->getDisplayManager()->getDecorativeDisplayList();
|
|
|
|
|
2013-11-06 15:25:44 +08:00
|
|
|
for(auto displayObject : displayList)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-11-06 15:25:44 +08:00
|
|
|
ColliderDetector *detector = static_cast<DecorativeDisplay *>(displayObject)->getColliderDetector();
|
2013-11-05 15:32:13 +08:00
|
|
|
if (detector != nullptr)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
detector->setBody(_body);
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
b2Fixture *Armature::getShapeList()
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
if (_body)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _body->GetFixtureList();
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
|
2013-11-05 19:53:38 +08:00
|
|
|
cpBody *Armature::getBody() const
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _body;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
void Armature::setBody(cpBody *body)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
if (_body == body)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-15 20:24:25 +08:00
|
|
|
_body = body;
|
|
|
|
_body->data = this;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-11-28 16:02:03 +08:00
|
|
|
for(auto object: _children)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 19:08:45 +08:00
|
|
|
if (Bone *bone = dynamic_cast<Bone *>(object))
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
|
|
|
Array *displayList = bone->getDisplayManager()->getDecorativeDisplayList();
|
|
|
|
|
2013-11-06 15:25:44 +08:00
|
|
|
for(auto displayObject: *displayList)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-11-06 15:25:44 +08:00
|
|
|
ColliderDetector *detector = static_cast<DecorativeDisplay *>(displayObject)->getColliderDetector();
|
2013-11-05 15:32:13 +08:00
|
|
|
if (detector != nullptr)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
detector->setBody(_body);
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
cpShape *Armature::getShapeList()
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
if (_body)
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _body->shapeList_private;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|