2018-05-19 01:10:37 +08:00
|
|
|
#include "..\e2daction.h"
|
2018-05-10 00:58:43 +08:00
|
|
|
|
|
|
|
|
e2d::Animation::Animation()
|
|
|
|
|
: _interval(1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 12:22:52 +08:00
|
|
|
e2d::Animation::Animation(const std::vector<Image*>& frames)
|
|
|
|
|
: _interval(1)
|
|
|
|
|
{
|
|
|
|
|
this->add(frames);
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-28 20:06:27 +08:00
|
|
|
e2d::Animation::Animation(float interval)
|
2018-05-10 00:58:43 +08:00
|
|
|
: _interval(interval)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-28 20:06:27 +08:00
|
|
|
e2d::Animation::Animation(float interval, const std::vector<Image*>& frames)
|
2018-05-10 00:58:43 +08:00
|
|
|
: _interval(interval)
|
|
|
|
|
{
|
|
|
|
|
this->add(frames);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e2d::Animation::~Animation()
|
|
|
|
|
{
|
2018-08-12 14:30:28 +08:00
|
|
|
for (const auto& frame : _frames)
|
2018-07-07 01:43:41 +08:00
|
|
|
{
|
2018-08-23 16:37:44 +08:00
|
|
|
GC::instance()->safeRelease(frame);
|
2018-07-07 01:43:41 +08:00
|
|
|
}
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
|
|
|
|
|
2018-08-23 16:37:44 +08:00
|
|
|
e2d::Animation& e2d::Animation::interval(float interval)
|
2018-05-10 00:58:43 +08:00
|
|
|
{
|
2018-07-28 20:06:27 +08:00
|
|
|
_interval = std::max(interval, 0.f);
|
2018-08-23 16:37:44 +08:00
|
|
|
return *this;
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
|
|
|
|
|
2018-08-23 16:37:44 +08:00
|
|
|
e2d::Animation& e2d::Animation::add(Image * frame)
|
2018-05-10 00:58:43 +08:00
|
|
|
{
|
2018-08-19 15:11:20 +08:00
|
|
|
WARN_IF(frame == nullptr, "Animation::add failed, frame is nullptr.");
|
2018-05-10 00:58:43 +08:00
|
|
|
if (frame)
|
|
|
|
|
{
|
|
|
|
|
_frames.push_back(frame);
|
2018-07-22 21:22:27 +08:00
|
|
|
frame->retain();
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
2018-08-23 16:37:44 +08:00
|
|
|
return *this;
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
|
|
|
|
|
2018-08-23 16:37:44 +08:00
|
|
|
e2d::Animation& e2d::Animation::add(const std::vector<Image*>& frames)
|
2018-05-10 00:58:43 +08:00
|
|
|
{
|
|
|
|
|
for (const auto &image : frames)
|
|
|
|
|
{
|
|
|
|
|
this->add(image);
|
|
|
|
|
}
|
2018-08-23 16:37:44 +08:00
|
|
|
return *this;
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
|
|
|
|
|
2018-08-23 16:37:44 +08:00
|
|
|
float e2d::Animation::interval() const
|
2018-05-10 00:58:43 +08:00
|
|
|
{
|
|
|
|
|
return _interval;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-23 16:37:44 +08:00
|
|
|
const std::vector<e2d::Image*>& e2d::Animation::frames() const
|
2018-05-10 00:58:43 +08:00
|
|
|
{
|
|
|
|
|
return _frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e2d::Animation * e2d::Animation::clone() const
|
|
|
|
|
{
|
2018-07-06 12:59:32 +08:00
|
|
|
auto animation = new (e2d::autorelease) Animation(_interval);
|
2018-05-24 12:24:39 +08:00
|
|
|
if (animation)
|
2018-05-10 00:58:43 +08:00
|
|
|
{
|
2018-08-12 14:30:28 +08:00
|
|
|
for (const auto& frame : _frames)
|
2018-05-24 12:24:39 +08:00
|
|
|
{
|
|
|
|
|
animation->add(frame);
|
|
|
|
|
}
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
2018-05-14 00:36:01 +08:00
|
|
|
return animation;
|
2018-05-10 00:58:43 +08:00
|
|
|
}
|
2018-05-24 12:24:39 +08:00
|
|
|
|
|
|
|
|
e2d::Animation * e2d::Animation::reverse() const
|
|
|
|
|
{
|
2018-08-23 16:37:44 +08:00
|
|
|
auto& oldFrames = this->frames();
|
2018-05-24 12:24:39 +08:00
|
|
|
std::vector<Image*> frames(oldFrames.size());
|
|
|
|
|
|
|
|
|
|
if (!oldFrames.empty())
|
|
|
|
|
{
|
|
|
|
|
for (auto iter = oldFrames.crbegin(),
|
|
|
|
|
iterCrend = oldFrames.crend();
|
|
|
|
|
iter != iterCrend;
|
|
|
|
|
++iter)
|
|
|
|
|
{
|
|
|
|
|
Image* frame = *iter;
|
|
|
|
|
if (frame)
|
|
|
|
|
{
|
|
|
|
|
frames.push_back(frame);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-23 16:37:44 +08:00
|
|
|
return new (e2d::autorelease) Animation(this->interval(), frames);
|
2018-05-24 12:24:39 +08:00
|
|
|
}
|