summaryrefslogtreecommitdiffstats
path: root/src/render/geometry/joint.cpp
blob: 828f170ab516cb61f0a82063e2a1fcb05a1496e0 (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
// 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

#include "joint_p.h"
#include <Qt3DRender/private/managers_p.h>
#include <Qt3DCore/QJoint>
#include <Qt3DCore/private/qjoint_p.h>

#include <algorithm>

QT_BEGIN_NAMESPACE

using namespace Qt3DCore;

namespace Qt3DRender {
namespace Render {

Joint::Joint()
    : BackendNode(Qt3DCore::QBackendNode::ReadOnly)
    , m_localPose()
    , m_jointManager(nullptr)
    , m_skeletonManager(nullptr)
{
}

void Joint::cleanup()
{
    m_inverseBindMatrix.setToIdentity();
    m_localPose = Sqt();
    m_childJointIds.clear();
    m_name.clear();
    m_owningSkeleton = HSkeleton();
    setEnabled(false);
}

void Joint::syncFromFrontEnd(const QNode *frontEnd, bool firstTime)
{
    const Qt3DCore::QJoint *joint = qobject_cast<const Qt3DCore::QJoint *>(frontEnd);
    if (!joint)
        return;

    bool jointDirty = firstTime;
    if (m_localPose.scale != joint->scale()) {
        m_localPose.scale = joint->scale();
        jointDirty = true;
    }
    if (m_localPose.rotation != joint->rotation()) {
        m_localPose.rotation = joint->rotation();
        jointDirty = true;
    }
    if (m_localPose.translation != joint->translation()) {
        m_localPose.translation = joint->translation();
        jointDirty = true;
    }
    if (m_inverseBindMatrix != joint->inverseBindMatrix()) {
        // Setting the inverse bind matrix should be a rare operation. Usually it is
        // set once and then remains constant for the duration of the skeleton. So just
        // trigger a rebuild of the skeleton's SkeletonData which will include obtaining
        // the inverse bind matrix.
        m_inverseBindMatrix = joint->inverseBindMatrix();
        m_skeletonManager->addDirtySkeleton(SkeletonManager::SkeletonDataDirty, m_owningSkeleton);
    }
    if (m_name != joint->name()) {
        // Joint name doesn't affect anything in the render aspect so no need
        // to mark anything as dirty.
        m_name = joint->name();

        // TODO: Notify other aspects (animation) about the name change.
    }

    Qt3DCore::QNodeIdVector childIds = qIdsForNodes(joint->childJoints());
    std::sort(std::begin(childIds), std::end(childIds));
    if (m_childJointIds != childIds)
        m_childJointIds = childIds;

    if (jointDirty) {
        markDirty(AbstractRenderer::JointDirty);
        m_jointManager->addDirtyJoint(peerId());
    }

    BackendNode::syncFromFrontEnd(frontEnd, firstTime);
}


JointFunctor::JointFunctor(AbstractRenderer *renderer,
                           JointManager *jointManager,
                           SkeletonManager *skeletonManager)
    : m_renderer(renderer)
    , m_jointManager(jointManager)
    , m_skeletonManager(skeletonManager)
{
}

Qt3DCore::QBackendNode *JointFunctor::create(Qt3DCore::QNodeId id) const
{
    Joint *backend = m_jointManager->getOrCreateResource(id);
    backend->setRenderer(m_renderer);
    backend->setJointManager(m_jointManager);
    backend->setSkeletonManager(m_skeletonManager);
    return backend;
}

Qt3DCore::QBackendNode *JointFunctor::get(Qt3DCore::QNodeId id) const
{
    return m_jointManager->lookupResource(id);
}

void JointFunctor::destroy(Qt3DCore::QNodeId id) const
{
    m_jointManager->removeDirtyJoint(id);
    m_jointManager->releaseResource(id);
}

} // namespace Render
} // namespace Qt3DRender

QT_END_NAMESPACE