2019-06-18 15:12:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2019 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of the Qt Design Tooling
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "animationcurve.h"
|
2019-06-28 10:45:28 +02:00
|
|
|
#include "curvesegment.h"
|
|
|
|
|
#include "detail/utils.h"
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
#include <QEasingCurve>
|
2019-06-18 15:12:21 +02:00
|
|
|
#include <QLineF>
|
2019-06-28 10:45:28 +02:00
|
|
|
#include <QPainterPath>
|
2019-06-18 15:12:21 +02:00
|
|
|
|
|
|
|
|
namespace DesignTools {
|
|
|
|
|
|
|
|
|
|
AnimationCurve::AnimationCurve()
|
2019-06-28 10:45:28 +02:00
|
|
|
: m_fromData(false)
|
|
|
|
|
, m_minY(std::numeric_limits<double>::max())
|
|
|
|
|
, m_maxY(std::numeric_limits<double>::lowest())
|
|
|
|
|
, m_frames()
|
2019-06-18 15:12:21 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
AnimationCurve::AnimationCurve(const std::vector<Keyframe> &frames)
|
2019-06-28 10:45:28 +02:00
|
|
|
: m_fromData(false)
|
2019-06-18 15:12:21 +02:00
|
|
|
, m_minY(std::numeric_limits<double>::max())
|
|
|
|
|
, m_maxY(std::numeric_limits<double>::lowest())
|
2019-06-28 10:45:28 +02:00
|
|
|
, m_frames(frames)
|
2019-06-18 15:12:21 +02:00
|
|
|
{
|
2019-06-28 10:45:28 +02:00
|
|
|
analyze();
|
|
|
|
|
}
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
AnimationCurve::AnimationCurve(const QEasingCurve &easing, const QPointF &start, const QPointF &end)
|
|
|
|
|
: m_fromData(true)
|
|
|
|
|
, m_minY(std::numeric_limits<double>::max())
|
|
|
|
|
, m_maxY(std::numeric_limits<double>::lowest())
|
|
|
|
|
, m_frames()
|
|
|
|
|
{
|
|
|
|
|
auto mapPosition = [start, end](const QPointF &pos) {
|
|
|
|
|
QPointF slope(end.x() - start.x(), end.y() - start.y());
|
|
|
|
|
return QPointF(start.x() + slope.x() * pos.x(), start.y() + slope.y() * pos.y());
|
|
|
|
|
};
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
QVector<QPointF> points = easing.toCubicSpline();
|
|
|
|
|
int numSegments = points.count() / 3;
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
Keyframe current;
|
|
|
|
|
Keyframe tmp(start);
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
current.setInterpolation(Keyframe::Interpolation::Bezier);
|
|
|
|
|
tmp.setInterpolation(Keyframe::Interpolation::Bezier);
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
for (int i = 0; i < numSegments; i++) {
|
|
|
|
|
QPointF p1 = mapPosition(points.at(i * 3));
|
|
|
|
|
QPointF p2 = mapPosition(points.at(i * 3 + 1));
|
|
|
|
|
QPointF p3 = mapPosition(points.at(i * 3 + 2));
|
|
|
|
|
|
|
|
|
|
current.setPosition(tmp.position());
|
|
|
|
|
current.setLeftHandle(tmp.leftHandle());
|
|
|
|
|
current.setRightHandle(p1);
|
|
|
|
|
|
|
|
|
|
m_frames.push_back(current);
|
|
|
|
|
|
|
|
|
|
tmp.setLeftHandle(p2);
|
|
|
|
|
tmp.setPosition(p3);
|
2019-06-18 15:12:21 +02:00
|
|
|
}
|
2019-06-28 10:45:28 +02:00
|
|
|
|
|
|
|
|
m_frames.push_back(tmp);
|
|
|
|
|
|
|
|
|
|
analyze();
|
2019-06-18 15:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AnimationCurve::isValid() const
|
|
|
|
|
{
|
|
|
|
|
return m_frames.size() >= 2;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
bool AnimationCurve::isFromData() const
|
|
|
|
|
{
|
|
|
|
|
return m_fromData;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 15:12:21 +02:00
|
|
|
double AnimationCurve::minimumTime() const
|
|
|
|
|
{
|
|
|
|
|
if (!m_frames.empty())
|
|
|
|
|
return m_frames.front().position().x();
|
|
|
|
|
|
|
|
|
|
return std::numeric_limits<double>::max();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double AnimationCurve::maximumTime() const
|
|
|
|
|
{
|
|
|
|
|
if (!m_frames.empty())
|
|
|
|
|
return m_frames.back().position().x();
|
|
|
|
|
|
|
|
|
|
return std::numeric_limits<double>::lowest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double AnimationCurve::minimumValue() const
|
|
|
|
|
{
|
|
|
|
|
return m_minY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double AnimationCurve::maximumValue() const
|
|
|
|
|
{
|
|
|
|
|
return m_maxY;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
CurveSegment AnimationCurve::segment(double time) const
|
2019-06-18 15:12:21 +02:00
|
|
|
{
|
2019-06-28 10:45:28 +02:00
|
|
|
CurveSegment seg;
|
|
|
|
|
for (auto &frame : m_frames) {
|
|
|
|
|
if (frame.position().x() > time) {
|
|
|
|
|
seg.setRight(frame);
|
|
|
|
|
return seg;
|
|
|
|
|
}
|
|
|
|
|
seg.setLeft(frame);
|
|
|
|
|
}
|
|
|
|
|
return CurveSegment();
|
2019-06-18 15:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
std::vector<CurveSegment> AnimationCurve::segments() const
|
2019-06-18 15:12:21 +02:00
|
|
|
{
|
2019-06-28 10:45:28 +02:00
|
|
|
if (m_frames.empty())
|
|
|
|
|
return {};
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
std::vector<CurveSegment> out;
|
|
|
|
|
|
|
|
|
|
CurveSegment current;
|
|
|
|
|
current.setLeft(m_frames.at(0));
|
2019-06-18 15:12:21 +02:00
|
|
|
|
|
|
|
|
for (size_t i = 1; i < m_frames.size(); ++i) {
|
2019-06-28 10:45:28 +02:00
|
|
|
current.setRight(m_frames[i]);
|
|
|
|
|
out.push_back(current);
|
|
|
|
|
current.setLeft(m_frames[i]);
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
QPointF mapEasing(const QPointF &start, const QPointF &end, const QPointF &pos)
|
|
|
|
|
{
|
|
|
|
|
QPointF slope(end.x() - start.x(), end.y() - start.y());
|
|
|
|
|
return QPointF(start.x() + slope.x() * pos.x(), start.y() + slope.y() * pos.y());
|
|
|
|
|
}
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
QPainterPath AnimationCurve::simplePath() const
|
|
|
|
|
{
|
|
|
|
|
if (m_frames.empty())
|
|
|
|
|
return QPainterPath();
|
|
|
|
|
|
|
|
|
|
QPainterPath path(m_frames.front().position());
|
|
|
|
|
|
|
|
|
|
CurveSegment segment;
|
|
|
|
|
segment.setLeft(m_frames.front());
|
2019-06-18 15:12:21 +02:00
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
for (size_t i = 1; i < m_frames.size(); ++i) {
|
|
|
|
|
segment.setRight(m_frames[i]);
|
|
|
|
|
segment.extend(path);
|
2019-06-18 15:12:21 +02:00
|
|
|
segment.setLeft(m_frames[i]);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPainterPath AnimationCurve::intersectionPath() const
|
|
|
|
|
{
|
|
|
|
|
QPainterPath path = simplePath();
|
|
|
|
|
QPainterPath reversed = path.toReversed();
|
|
|
|
|
path.connectPath(reversed);
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<Keyframe> AnimationCurve::keyframes() const
|
|
|
|
|
{
|
|
|
|
|
return m_frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<QPointF> AnimationCurve::extrema() const
|
|
|
|
|
{
|
|
|
|
|
std::vector<QPointF> out;
|
|
|
|
|
|
|
|
|
|
for (auto &&segment : segments()) {
|
|
|
|
|
const auto es = segment.extrema();
|
|
|
|
|
out.insert(std::end(out), std::begin(es), std::end(es));
|
|
|
|
|
}
|
2019-06-18 15:12:21 +02:00
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<double> AnimationCurve::yForX(double x) const
|
|
|
|
|
{
|
|
|
|
|
if (m_frames.front().position().x() > x)
|
|
|
|
|
return std::vector<double>();
|
|
|
|
|
|
|
|
|
|
CurveSegment segment;
|
|
|
|
|
for (auto &frame : m_frames) {
|
|
|
|
|
if (frame.position().x() > x) {
|
|
|
|
|
segment.setRight(frame);
|
|
|
|
|
return segment.yForX(x);
|
|
|
|
|
}
|
|
|
|
|
segment.setLeft(frame);
|
|
|
|
|
}
|
|
|
|
|
return std::vector<double>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<double> AnimationCurve::xForY(double y, uint segment) const
|
|
|
|
|
{
|
|
|
|
|
if (m_frames.size() > segment + 1) {
|
|
|
|
|
CurveSegment seg(m_frames[segment], m_frames[segment + 1]);
|
|
|
|
|
return seg.xForY(y);
|
|
|
|
|
}
|
|
|
|
|
return std::vector<double>();
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
bool AnimationCurve::intersects(const QPointF &coord, double radiusX, double radiusY) const
|
2019-06-18 15:12:21 +02:00
|
|
|
{
|
|
|
|
|
if (m_frames.size() < 2)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
std::vector<CurveSegment> influencer;
|
|
|
|
|
|
|
|
|
|
CurveSegment current;
|
|
|
|
|
current.setLeft(m_frames.at(0));
|
|
|
|
|
|
|
|
|
|
for (size_t i = 1; i < m_frames.size(); ++i) {
|
2019-06-28 10:45:28 +02:00
|
|
|
const Keyframe &frame = m_frames.at(i);
|
2019-06-18 15:12:21 +02:00
|
|
|
|
|
|
|
|
current.setRight(frame);
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
if (current.containsX(coord.x() - radiusX) || current.containsX(coord.x())
|
|
|
|
|
|| current.containsX(coord.x() + radiusX)) {
|
2019-06-18 15:12:21 +02:00
|
|
|
influencer.push_back(current);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
if (frame.position().x() > coord.x() + radiusX)
|
2019-06-18 15:12:21 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
current.setLeft(frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (auto &segment : influencer) {
|
2019-06-28 10:45:28 +02:00
|
|
|
if (segment.intersects(coord, radiusX, radiusY))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnimationCurve::append(const AnimationCurve &other)
|
|
|
|
|
{
|
|
|
|
|
if (!other.isValid())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!isValid()) {
|
|
|
|
|
m_frames = other.keyframes();
|
|
|
|
|
analyze();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<Keyframe> otherFrames = other.keyframes();
|
|
|
|
|
m_frames.back().setRightHandle(otherFrames.front().rightHandle());
|
|
|
|
|
m_frames.insert(std::end(m_frames), std::begin(otherFrames) + 1, std::end(otherFrames));
|
|
|
|
|
analyze();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnimationCurve::insert(double time)
|
|
|
|
|
{
|
|
|
|
|
CurveSegment seg = segment(time);
|
|
|
|
|
|
|
|
|
|
if (!seg.isValid())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
auto insertFrames = [this](std::array<Keyframe, 3> &&frames) {
|
|
|
|
|
auto samePosition = [frames](const Keyframe &frame) {
|
|
|
|
|
return frame.position() == frames[0].position();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
auto iter = std::find_if(m_frames.begin(), m_frames.end(), samePosition);
|
|
|
|
|
if (iter != m_frames.end()) {
|
|
|
|
|
auto erased = m_frames.erase(iter, iter + 2);
|
|
|
|
|
m_frames.insert(erased, frames.begin(), frames.end());
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
insertFrames(seg.splitAt(time));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnimationCurve::analyze()
|
|
|
|
|
{
|
|
|
|
|
if (isValid()) {
|
|
|
|
|
m_minY = std::numeric_limits<double>::max();
|
|
|
|
|
m_maxY = std::numeric_limits<double>::lowest();
|
|
|
|
|
|
|
|
|
|
auto byTime = [](const auto &a, const auto &b) {
|
|
|
|
|
return a.position().x() < b.position().x();
|
|
|
|
|
};
|
|
|
|
|
std::sort(m_frames.begin(), m_frames.end(), byTime);
|
|
|
|
|
|
|
|
|
|
for (auto e : extrema()) {
|
|
|
|
|
if (m_minY > e.y())
|
|
|
|
|
m_minY = e.y();
|
|
|
|
|
|
|
|
|
|
if (m_maxY < e.y())
|
|
|
|
|
m_maxY = e.y();
|
2019-06-18 15:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
2019-06-28 10:45:28 +02:00
|
|
|
for (auto &frame : qAsConst(m_frames)) {
|
|
|
|
|
if (frame.position().y() < m_minY)
|
|
|
|
|
m_minY = frame.position().y();
|
|
|
|
|
|
|
|
|
|
if (frame.position().y() > m_maxY)
|
|
|
|
|
m_maxY = frame.position().y();
|
2019-06-18 15:12:21 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // End namespace DesignTools.
|