summaryrefslogtreecommitdiffstats
path: root/src/core/aspect/qcoreaspect.cpp
blob: 0f14d4326481b313e890f45fe31cf84f90a791c3 (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
// Copyright (C) 2020 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 "qcoreaspect.h"
#include "qcoreaspect_p.h"
#include <Qt3DCore/qcoresettings.h>
#include <Qt3DCore/private/coresettings_p.h>
#include <Qt3DCore/private/qaspectmanager_p.h>
#include <Qt3DCore/private/qscene_p.h>
#include <Qt3DCore/private/calcboundingvolumejob_p.h>

QT_BEGIN_NAMESPACE

namespace Qt3DCore {

QCoreAspectPrivate::QCoreAspectPrivate()
    : Qt3DCore::QAbstractAspectPrivate()
    , m_boundingVolumesEnabled(true)
{

}

QCoreAspectPrivate::~QCoreAspectPrivate()
{

}

QCoreAspectPrivate *QCoreAspectPrivate::get(QCoreAspect *aspect)
{
    return aspect->d_func();
}

void QCoreAspectPrivate::jobsDone()
{

}

void QCoreAspectPrivate::frameDone()
{

}

QCoreAspect::QCoreAspect(QObject *parent)
    : Qt3DCore::QAbstractAspect(*new QCoreAspectPrivate, parent)
{

}

QCoreAspect::~QCoreAspect()
{

}

QAspectJobPtr QCoreAspect::calculateBoundingVolumeJob() const
{
    Q_D(const QCoreAspect);
    return d->m_calculateBoundingVolumeJob;
}

std::vector<QAspectJobPtr> QCoreAspect::jobsToExecute(qint64 time)
{
    Q_D(QCoreAspect);
    Q_UNUSED(time);

    std::vector<QAspectJobPtr> jobs;

    auto scene = d->m_aspectManager->scene();
    auto dirtyBits = scene->dirtyBits();

    if (d->m_boundingVolumesEnabled) {
        if (dirtyBits & QScene::GeometryDirty ||
            dirtyBits & QScene::BuffersDirty ||
            dirtyBits & QScene::EntityEnabledDirty) {
            jobs.push_back(d->m_calculateBoundingVolumeJob);
        }
    }

    return jobs;
}

QVariant QCoreAspect::executeCommand(const QStringList &args)
{
    Q_UNUSED(args);
    return {};
}

void QCoreAspect::onRegistered()
{
    Q_D(QCoreAspect);

    if (d->m_calculateBoundingVolumeJob.isNull())
        d->m_calculateBoundingVolumeJob = CalculateBoundingVolumeJobPtr::create(this);

    registerBackendType<QCoreSettings>(QSharedPointer<CoreSettingsFunctor>::create(this));
}

void QCoreAspect::onUnregistered()
{
    unregisterBackendType<Qt3DCore::QCoreSettings>();
}

void QCoreAspect::onEngineStartup()
{
    Q_D(QCoreAspect);

    Q_ASSERT(d->m_calculateBoundingVolumeJob);
    d->m_calculateBoundingVolumeJob->setRoot(d->m_root);
}

void QCoreAspect::frameDone()
{
    Q_D(QCoreAspect);
    auto scene = d->m_aspectManager->scene();
    scene->clearDirtyBits();
}

} // namespace Qt3DCore

QT_END_NAMESPACE

QT3D_REGISTER_NAMESPACED_ASPECT("core", QT_PREPEND_NAMESPACE(Qt3DCore), QCoreAspect)

#include "moc_qcoreaspect.cpp"