2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2015-10-03 13:16:42 +00:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "animation.h"
|
2015-04-19 10:29:19 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
#include "media/media_clip_reader.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-09-28 20:28:53 +00:00
|
|
|
namespace Media {
|
|
|
|
namespace Clip {
|
|
|
|
|
|
|
|
Reader *const ReaderPointer::BadPointer = SharedMemoryLocation<Reader, 0>();
|
|
|
|
|
|
|
|
ReaderPointer::~ReaderPointer() {
|
|
|
|
if (valid()) {
|
|
|
|
delete _pointer;
|
|
|
|
}
|
|
|
|
_pointer = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Clip
|
|
|
|
} // namespace Media
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
namespace {
|
2016-06-24 10:37:29 +00:00
|
|
|
|
|
|
|
AnimationManager *_manager = nullptr;
|
|
|
|
|
|
|
|
} // namespace
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
namespace anim {
|
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition linear = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
return delta * dt;
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition sineInOut = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
return -(delta / 2) * (cos(M_PI * dt) - 1);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition halfSine = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
return delta * sin(M_PI * dt / 2);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeOutBack = [](const float64 &delta, const float64 &dt) {
|
|
|
|
static constexpr auto s = 1.70158;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
const float64 t = dt - 1;
|
|
|
|
return delta * (t * t * ((s + 1) * t + s) + 1);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeInCirc = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
return -delta * (sqrt(1 - dt * dt) - 1);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeOutCirc = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
const float64 t = dt - 1;
|
|
|
|
return delta * sqrt(1 - t * t);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeInCubic = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
return delta * dt * dt * dt;
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeOutCubic = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
const float64 t = dt - 1;
|
|
|
|
return delta * (t * t * t + 1);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeInQuint = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
const float64 t2 = dt * dt;
|
|
|
|
return delta * t2 * t2 * dt;
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-07 11:24:19 +00:00
|
|
|
transition easeOutQuint = [](const float64 &delta, const float64 &dt) {
|
2016-06-24 10:37:29 +00:00
|
|
|
const float64 t = dt - 1, t2 = t * t;
|
|
|
|
return delta * (t2 * t2 * t + 1);
|
2016-11-07 11:24:19 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
void startManager() {
|
|
|
|
stopManager();
|
2015-12-15 14:50:51 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
_manager = new AnimationManager();
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
void stopManager() {
|
|
|
|
delete _manager;
|
|
|
|
_manager = nullptr;
|
|
|
|
|
|
|
|
Media::Clip::Finish();
|
|
|
|
}
|
2015-04-19 19:01:45 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
void registerClipManager(Media::Clip::Manager *manager) {
|
|
|
|
manager->connect(manager, SIGNAL(callback(Media::Clip::Reader*,qint32,qint32)), _manager, SLOT(clipCallback(Media::Clip::Reader*,qint32,qint32)));
|
2015-12-08 12:33:37 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
} // anim
|
|
|
|
|
2016-12-07 13:32:25 +00:00
|
|
|
void BasicAnimation::start() {
|
2015-12-08 12:33:37 +00:00
|
|
|
if (!_manager) return;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-05-12 16:05:20 +00:00
|
|
|
_callbacks.start();
|
2015-12-08 12:33:37 +00:00
|
|
|
_manager->start(this);
|
|
|
|
_animating = true;
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-07 13:32:25 +00:00
|
|
|
void BasicAnimation::stop() {
|
2015-12-08 12:33:37 +00:00
|
|
|
if (!_manager) return;
|
|
|
|
|
|
|
|
_animating = false;
|
|
|
|
_manager->stop(this);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
AnimationManager::AnimationManager() : _timer(this), _iterating(false) {
|
|
|
|
_timer.setSingleShot(false);
|
|
|
|
connect(&_timer, SIGNAL(timeout()), this, SLOT(timeout()));
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:32:25 +00:00
|
|
|
void AnimationManager::start(BasicAnimation *obj) {
|
2015-12-27 21:37:48 +00:00
|
|
|
if (_iterating) {
|
2016-09-26 12:09:59 +00:00
|
|
|
_starting.insert(obj);
|
2015-12-27 21:37:48 +00:00
|
|
|
if (!_stopping.isEmpty()) {
|
|
|
|
_stopping.remove(obj);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_objects.isEmpty()) {
|
|
|
|
_timer.start(AnimationTimerDelta);
|
|
|
|
}
|
2016-09-26 12:09:59 +00:00
|
|
|
_objects.insert(obj);
|
2015-12-27 21:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:32:25 +00:00
|
|
|
void AnimationManager::stop(BasicAnimation *obj) {
|
2015-12-27 21:37:48 +00:00
|
|
|
if (_iterating) {
|
2016-09-26 12:09:59 +00:00
|
|
|
_stopping.insert(obj);
|
2015-12-27 21:37:48 +00:00
|
|
|
if (!_starting.isEmpty()) {
|
2016-02-14 15:58:39 +00:00
|
|
|
_starting.remove(obj);
|
2015-12-27 21:37:48 +00:00
|
|
|
}
|
|
|
|
} else {
|
2016-09-26 12:09:59 +00:00
|
|
|
auto i = _objects.find(obj);
|
2015-12-27 21:37:48 +00:00
|
|
|
if (i != _objects.cend()) {
|
|
|
|
_objects.erase(i);
|
2016-09-26 12:09:59 +00:00
|
|
|
if (_objects.empty()) {
|
2015-12-27 21:37:48 +00:00
|
|
|
_timer.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationManager::timeout() {
|
|
|
|
_iterating = true;
|
2016-12-01 19:20:33 +00:00
|
|
|
auto ms = getms();
|
2016-09-26 12:09:59 +00:00
|
|
|
for_const (auto object, _objects) {
|
|
|
|
if (!_stopping.contains(object)) {
|
|
|
|
object->step(ms, true);
|
2016-02-14 15:58:39 +00:00
|
|
|
}
|
2015-12-27 21:37:48 +00:00
|
|
|
}
|
|
|
|
_iterating = false;
|
|
|
|
|
|
|
|
if (!_starting.isEmpty()) {
|
2016-09-26 12:09:59 +00:00
|
|
|
for_const (auto object, _starting) {
|
|
|
|
_objects.insert(object);
|
2015-12-27 21:37:48 +00:00
|
|
|
}
|
|
|
|
_starting.clear();
|
|
|
|
}
|
|
|
|
if (!_stopping.isEmpty()) {
|
2016-09-26 12:09:59 +00:00
|
|
|
for_const (auto object, _stopping) {
|
|
|
|
_objects.remove(object);
|
2015-12-27 21:37:48 +00:00
|
|
|
}
|
|
|
|
_stopping.clear();
|
|
|
|
}
|
2016-09-26 12:09:59 +00:00
|
|
|
if (_objects.empty()) {
|
2015-12-27 21:37:48 +00:00
|
|
|
_timer.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 10:37:29 +00:00
|
|
|
void AnimationManager::clipCallback(Media::Clip::Reader *reader, qint32 threadIndex, qint32 notification) {
|
|
|
|
Media::Clip::Reader::callback(reader, threadIndex, Media::Clip::Notification(notification));
|
2015-12-28 15:34:45 +00:00
|
|
|
}
|
2015-12-15 14:50:51 +00:00
|
|
|
|