mirror of https://github.com/axmolengine/axmol.git
144 lines
4.1 KiB
C++
144 lines
4.1 KiB
C++
|
/****************************************************************************
|
||
|
Copyright (c) 2014 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 "CCAnimate3D.h"
|
||
|
#include "CCAnimation3D.h"
|
||
|
#include "CCSprite3D.h"
|
||
|
#include "CCMeshSkin.h"
|
||
|
|
||
|
#include "base/ccMacros.h"
|
||
|
#include "platform/CCFileUtils.h"
|
||
|
|
||
|
NS_CC_BEGIN
|
||
|
|
||
|
//create Animate3D using Animation.
|
||
|
Animate3D* Animate3D::create(Animation3D* animation)
|
||
|
{
|
||
|
auto animate = new Animate3D();
|
||
|
animate->_animation = animation;
|
||
|
animation->retain();
|
||
|
|
||
|
animate->autorelease();
|
||
|
setDuration(animate->getDuration());
|
||
|
|
||
|
return animate;
|
||
|
}
|
||
|
|
||
|
/** returns a clone of action */
|
||
|
Animate3D* Animate3D::clone() const
|
||
|
{
|
||
|
|
||
|
auto animate = const_cast<Animate3D*>(this);
|
||
|
auto copy = animate->create(animate->_animation);
|
||
|
|
||
|
copy->_speed = _speed;
|
||
|
copy->_elapsed = _elapsed;
|
||
|
copy->_playBack = _playBack;
|
||
|
|
||
|
return copy;
|
||
|
}
|
||
|
|
||
|
/** returns a new action that performs the exactly the reverse action */
|
||
|
Animate3D* Animate3D::reverse() const
|
||
|
{
|
||
|
auto animate = clone();
|
||
|
animate->_playBack = !animate->_playBack;
|
||
|
return animate;
|
||
|
}
|
||
|
|
||
|
//! called before the action start. It will also set the target.
|
||
|
void Animate3D::startWithTarget(Node *target)
|
||
|
{
|
||
|
Sprite3D* sprite = dynamic_cast<Sprite3D*>(target);
|
||
|
CCASSERT(sprite && sprite->getSkin() && _animation, "Animate3D apply to Sprite3D only");
|
||
|
|
||
|
ActionInterval::startWithTarget(target);
|
||
|
|
||
|
_boneCurves.clear();
|
||
|
auto skin = sprite->getSkin();
|
||
|
for (unsigned int i = 0; i < skin->getBoneCount(); i++) {
|
||
|
auto bone = skin->getBoneByIndex(i);
|
||
|
auto curve = _animation->getBoneCurveByName(bone->getName());
|
||
|
if (curve)
|
||
|
{
|
||
|
_boneCurves[bone] = curve;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
CCLOG("warning: bone %s not find in animation", bone->getName().c_str());
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//! called every frame with it's delta time. DON'T override unless you know what you are doing.
|
||
|
void Animate3D::step(float dt)
|
||
|
{
|
||
|
ActionInterval::step(dt * _speed);
|
||
|
}
|
||
|
|
||
|
void Animate3D::update(float t)
|
||
|
{
|
||
|
if (_target)
|
||
|
{
|
||
|
float dst[4];
|
||
|
if (_playBack)
|
||
|
t = 1 - t;
|
||
|
|
||
|
for (const auto& it : _boneCurves) {
|
||
|
auto bone = it.first;
|
||
|
auto curve = it.second;
|
||
|
if (curve->translateCurve)
|
||
|
{
|
||
|
curve->translateCurve->evaluate(t, dst, Linear);
|
||
|
bone->setAnimationValueTranslation(dst);
|
||
|
}
|
||
|
if (curve->rotCurve)
|
||
|
{
|
||
|
curve->translateCurve->evaluate(t, dst, QuatSlerp);
|
||
|
bone->setAnimationValueRotation(dst);
|
||
|
}
|
||
|
if (curve->scaleCurve)
|
||
|
{
|
||
|
curve->scaleCurve->evaluate(t, dst, Linear);
|
||
|
bone->setAnimationValueScale(dst);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
Animate3D::Animate3D()
|
||
|
: _speed(1)
|
||
|
, _animation(nullptr)
|
||
|
, _playBack(false)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
Animate3D::~Animate3D()
|
||
|
{
|
||
|
CC_SAFE_RELEASE(_animation);
|
||
|
}
|
||
|
|
||
|
NS_CC_END
|