summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3d/qquaternionanimation.cpp
blob: f48b433d0334d47253c3c7aaa689da2826c3452d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qquaternionanimation_p.h"

#include <QtQuick/private/qquickanimation_p_p.h>

QT_BEGIN_NAMESPACE

/*!
    \qmltype QuaternionAnimation
    \inherits PropertyAnimation
    \inqmlmodule Qt3D.Core
    \since 5.6

    \brief A PropertyAnimation for quaternions.

    A specialized \l{PropertyAnimation} that defines an animation between two
    \l{QQuaternion}{quaternions}.

    By default spherical linear interpolation is used. This can be changed to
    the faster but less accurate normalized linear interpolation by setting the
    \a type property.

    Instead of specifying quaternions directly in the \a from and \a to
    properties, it is also possible to provide euler angles in degrees in the
    \a fromXRotation, \a toXRotation, \a fromYRotation, \a toYRotation,
    \a fromZRotation, \a toZRotation properties.

    \note Avoid mixing the quaternion and euler angle-based properties. The
    from and to values are expected to be fully specified either via a
    quaternion or the three euler angles.

    \sa {Animation and Transitions in Qt Quick} QQuaternion QQuaternion::slerp() QQuaternion::nlerp()
*/

namespace Qt3DCore {
namespace Quick {

class QQuaternionAnimationPrivate : public QQuickPropertyAnimationPrivate
{
    Q_DECLARE_PUBLIC(QQuaternionAnimation)

public:
    QQuaternionAnimationPrivate() :
        type(QQuaternionAnimation::Slerp)
    { }

    QQuaternionAnimation::Type type;
    QVector3D anglesFrom;
    QVector3D anglesTo;
};

QVariant q_quaternionInterpolator(const QQuaternion &from, const QQuaternion &to, qreal progress)
{
    return QVariant::fromValue(QQuaternion::slerp(from, to, progress));
}

QVariant q_quaternionNlerpInterpolator(const QQuaternion &from, const QQuaternion &to, qreal progress)
{
    return QVariant::fromValue(QQuaternion::nlerp(from, to, progress));
}

QQuaternionAnimation::QQuaternionAnimation(QObject *parent)
    : QQuickPropertyAnimation(*(new QQuaternionAnimationPrivate), parent)
{
    Q_D(QQuaternionAnimation);
    d->interpolatorType = qMetaTypeId<QQuaternion>();
    d->defaultToInterpolatorType = true;
    d->interpolator = QVariantAnimationPrivate::getInterpolator(d->interpolatorType);
}

QQuaternion QQuaternionAnimation::from() const
{
    Q_D(const QQuaternionAnimation);
    return d->from.value<QQuaternion>();
}

void QQuaternionAnimation::setFrom(const QQuaternion &f)
{
    QQuickPropertyAnimation::setFrom(QVariant::fromValue(f));
}

QQuaternion QQuaternionAnimation::to() const
{
    Q_D(const QQuaternionAnimation);
    return d->to.value<QQuaternion>();
}

void QQuaternionAnimation::setTo(const QQuaternion &t)
{
    QQuickPropertyAnimation::setTo(QVariant::fromValue(t));
}

QQuaternionAnimation::Type QQuaternionAnimation::type() const
{
    Q_D(const QQuaternionAnimation);
    return d->type;
}

void QQuaternionAnimation::setType(Type type)
{
    Q_D(QQuaternionAnimation);
    if (d->type == type)
        return;

    d->type = type;
    switch (type) {
    case Nlerp:
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wcast-function-type")
        d->interpolator = reinterpret_cast<QVariantAnimation::Interpolator>(&q_quaternionNlerpInterpolator);
QT_WARNING_POP
        break;
    case Slerp:
    default:
        d->interpolator = QVariantAnimationPrivate::getInterpolator(d->interpolatorType);
        break;
    }

    emit typeChanged(type);
}

float QQuaternionAnimation::fromXRotation() const
{
    Q_D(const QQuaternionAnimation);
    return d->anglesFrom.x();
}

void QQuaternionAnimation::setFromXRotation(float f)
{
    Q_D(QQuaternionAnimation);
    if (d->anglesFrom.x() == f)
        return;
    d->anglesFrom.setX(f);
    setFrom(QQuaternion::fromEulerAngles(d->anglesFrom));
    emit fromXRotationChanged(f);
}

float QQuaternionAnimation::fromYRotation() const
{
    Q_D(const QQuaternionAnimation);
    return d->anglesFrom.y();
}

void QQuaternionAnimation::setFromYRotation(float f)
{
    Q_D(QQuaternionAnimation);
    if (d->anglesFrom.y() == f)
        return;
    d->anglesFrom.setY(f);
    setFrom(QQuaternion::fromEulerAngles(d->anglesFrom));
    emit fromYRotationChanged(f);
}

float QQuaternionAnimation::fromZRotation() const
{
    Q_D(const QQuaternionAnimation);
    return d->anglesFrom.z();
}

void QQuaternionAnimation::setFromZRotation(float f)
{
    Q_D(QQuaternionAnimation);
    if (d->anglesFrom.z() == f)
        return;
    d->anglesFrom.setZ(f);
    setFrom(QQuaternion::fromEulerAngles(d->anglesFrom));
    emit fromZRotationChanged(f);
}

float QQuaternionAnimation::toXRotation() const
{
    Q_D(const QQuaternionAnimation);
    return d->anglesTo.x();
}

void QQuaternionAnimation::setToXRotation(float f)
{
    Q_D(QQuaternionAnimation);
    if (d->anglesTo.x() == f)
        return;
    d->anglesTo.setX(f);
    setTo(QQuaternion::fromEulerAngles(d->anglesTo));
    emit toXRotationChanged(f);
}

float QQuaternionAnimation::toYRotation() const
{
    Q_D(const QQuaternionAnimation);
    return d->anglesTo.y();
}

void QQuaternionAnimation::setToYRotation(float f)
{
    Q_D(QQuaternionAnimation);
    if (d->anglesTo.y() == f)
        return;
    d->anglesTo.setY(f);
    setTo(QQuaternion::fromEulerAngles(d->anglesTo));
    emit toYRotationChanged(f);
}

float QQuaternionAnimation::toZRotation() const
{
    Q_D(const QQuaternionAnimation);
    return d->anglesTo.z();
}

void QQuaternionAnimation::setToZRotation(float f)
{
    Q_D(QQuaternionAnimation);
    if (d->anglesTo.z() == f)
        return;
    d->anglesTo.setZ(f);
    setTo(QQuaternion::fromEulerAngles(d->anglesTo));
    emit toZRotationChanged(f);
}

} // namespace Quick
} // namespace Qt3DCore

QT_END_NAMESPACE

#include "moc_qquaternionanimation_p.cpp"