// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DANIMATION_ANIMATION_BLENDEDCLIPANIMATOR_P_H #define QT3DANIMATION_ANIMATION_BLENDEDCLIPANIMATOR_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include QT_BEGIN_NAMESPACE namespace Qt3DAnimation { namespace Animation { class Handler; class Q_AUTOTEST_EXPORT BlendedClipAnimator : public BackendNode { public: BlendedClipAnimator(); void cleanup(); void syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime) override; Qt3DCore::QNodeId blendTreeRootId() const; Qt3DCore::QNodeId mapperId() const { return m_mapperId; } Qt3DCore::QNodeId clockId() const { return m_clockId; } bool isRunning() const { return m_running; } void setNormalizedLocalTime(float normalizedTime, bool allowMarkDirty = true); float normalizedLocalTime() const { return m_normalizedLocalTime; } // Called by BuildBlendTreeJob bool canRun() const { return !m_mapperId.isNull() && !m_blendTreeRootId.isNull(); } void setBlendTreeRootId(Qt3DCore::QNodeId blendTreeRootId); void setMapperId(Qt3DCore::QNodeId mapperId); void setClockId(Qt3DCore::QNodeId clockId); void setRunning(bool running); void setStartTime(qint64 globalTime) { m_lastGlobalTimeNS = globalTime; } void setLoops(int loops) { m_loops = loops; } int loops() const { return m_loops; } int currentLoop() const { return m_currentLoop; } void setCurrentLoop(int currentLoop) { m_currentLoop = currentLoop; } void setMappingData(const QVector &mappingData) { m_mappingData = mappingData; } QVector mappingData() const { return m_mappingData; } void animationClipMarkedDirty() { setDirty(Handler::BlendedClipAnimatorDirty); } qint64 nsSincePreviousFrame(qint64 currentGlobalTimeNS); void setLastGlobalTimeNS(const qint64 &lastGlobalTimeNS); double lastLocalTime() const; void setLastLocalTime(double lastLocalTime); float lastNormalizedLocalTime() { return m_lastNormalizedLocalTime; } void setLastNormalizedLocalTime(float normalizedTime); bool isSeeking() const { return isValidNormalizedTime(m_normalizedLocalTime) && !qFuzzyCompare(m_lastNormalizedLocalTime, m_normalizedLocalTime); } private: Qt3DCore::QNodeId m_blendTreeRootId; Qt3DCore::QNodeId m_mapperId; Qt3DCore::QNodeId m_clockId; bool m_running; qint64 m_lastGlobalTimeNS; double m_lastLocalTime; int m_currentLoop; int m_loops; float m_normalizedLocalTime; float m_lastNormalizedLocalTime; QVector m_mappingData; }; } // namespace Animation } // namespace Qt3DAnimation QT_END_NAMESPACE #endif // QT3DANIMATION_ANIMATION_BLENDEDCLIPANIMATOR_P_H