// 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_HANDLER_H #define QT3DANIMATION_ANIMATION_HANDLER_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 #include #include #include #include QT_BEGIN_NAMESPACE #if defined(QT_BUILD_INTERNAL) class tst_Handler; #endif namespace Qt3DAnimation { namespace Animation { class AnimationClip; class AnimationClipLoaderManager; class ClockManager; class ClipAnimator; class ClipAnimatorManager; class BlendedClipAnimator; class BlendedClipAnimatorManager; class ChannelMapping; class ChannelMappingManager; class ChannelMapper; class ChannelMapperManager; class ClipBlendNodeManager; class SkeletonManager; class FindRunningClipAnimatorsJob; class LoadAnimationClipJob; class EvaluateClipAnimatorJob; class BuildBlendTreesJob; class EvaluateBlendClipAnimatorJob; using BuildBlendTreesJobPtr = QSharedPointer; using EvaluateBlendClipAnimatorJobPtr = QSharedPointer; class Q_AUTOTEST_EXPORT Handler { public: Handler(); ~Handler(); enum DirtyFlag { AnimationClipDirty, ChannelMappingsDirty, ClipAnimatorDirty, BlendedClipAnimatorDirty }; qint64 simulationTime() const { return m_simulationTime; } void setDirty(DirtyFlag flag, Qt3DCore::QNodeId nodeId); void setClipAnimatorRunning(const HClipAnimator &handle, bool running); QVector runningClipAnimators() const { return m_runningClipAnimators; } void setBlendedClipAnimatorRunning(const HBlendedClipAnimator &handle, bool running); QVector runningBlenndedClipAnimators() const { return m_runningBlendedClipAnimators; } AnimationClipLoaderManager *animationClipLoaderManager() const noexcept { return m_animationClipLoaderManager.data(); } ClockManager *clockManager() const noexcept { return m_clockManager.data(); } ClipAnimatorManager *clipAnimatorManager() const noexcept { return m_clipAnimatorManager.data(); } BlendedClipAnimatorManager *blendedClipAnimatorManager() const noexcept { return m_blendedClipAnimatorManager.data(); } ChannelMappingManager *channelMappingManager() const noexcept { return m_channelMappingManager.data(); } ChannelMapperManager *channelMapperManager() const noexcept { return m_channelMapperManager.data(); } ClipBlendNodeManager *clipBlendNodeManager() const noexcept { return m_clipBlendNodeManager.data(); } SkeletonManager *skeletonManager() const noexcept { return m_skeletonManager.data(); } std::vector jobsToExecute(qint64 time); void cleanupHandleList(QVector *clips); void cleanupHandleList(QVector *animators); void cleanupHandleList(QVector *animators); private: QMutex m_mutex; QScopedPointer m_animationClipLoaderManager; QScopedPointer m_clockManager; QScopedPointer m_clipAnimatorManager; QScopedPointer m_blendedClipAnimatorManager; QScopedPointer m_channelMappingManager; QScopedPointer m_channelMapperManager; QScopedPointer m_clipBlendNodeManager; QScopedPointer m_skeletonManager; QVector m_dirtyAnimationClips; QVector m_dirtyClipAnimators; QVector m_dirtyBlendedAnimators; QVector m_runningClipAnimators; QVector m_runningBlendedClipAnimators; QSharedPointer m_loadAnimationClipJob; QSharedPointer m_findRunningClipAnimatorsJob; QVector> m_evaluateClipAnimatorJobs; QVector m_evaluateBlendClipAnimatorJobs; BuildBlendTreesJobPtr m_buildBlendTreesJob; qint64 m_simulationTime; #if defined(QT_BUILD_INTERNAL) friend class QT_PREPEND_NAMESPACE(tst_Handler); #endif }; } // namespace Animation } // namespace Qt3DAnimation QT_END_NAMESPACE #endif // QT3DANIMATION_ANIMATION_HANDLER_H