summaryrefslogtreecommitdiffstats
path: root/src/render/geometry/joint.cpp
blob: d36edc31486ae49626aefdb0517b1ef7d760270e (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
/****************************************************************************
**
** Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt3D module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:COMM$
**
** 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.
**
** $QT_END_LICENSE$
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
****************************************************************************/

#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(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const
{
    Joint *backend = m_jointManager->getOrCreateResource(change->subjectId());
    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