summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3drender/items/quick3dmaterial.cpp
blob: 05f55844a088c16483732f4182b9d91e4697f779 (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
// Copyright (C) 2014 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 <Qt3DRender/qtexture.h>

#include <Qt3DQuickRender/private/quick3dmaterial_p.h>

QT_BEGIN_NAMESPACE

namespace Qt3DRender {

namespace Render {

namespace Quick {

Quick3DMaterial::Quick3DMaterial(QObject *parent)
    : QObject(parent)
{
}

QQmlListProperty<QParameter> Quick3DMaterial::qmlParameters()
{
    using qt_size_type = qsizetype;
    using ListContentType = QParameter;
    auto appendFunction = [](QQmlListProperty<ListContentType> *list, ListContentType *param) {
        Quick3DMaterial *mat = qobject_cast<Quick3DMaterial *>(list->object);
        if (mat) {
            param->setParent(mat->parentMaterial());
            mat->parentMaterial()->addParameter(param);
        }
    };
    auto countFunction = [](QQmlListProperty<ListContentType> *list) -> qt_size_type {
        Quick3DMaterial *mat = qobject_cast<Quick3DMaterial *>(list->object);
        if (mat)
            return mat->parentMaterial()->parameters().size();
        return 0;
    };
    auto atFunction = [](QQmlListProperty<ListContentType> *list, qt_size_type index) -> ListContentType * {
        Quick3DMaterial *mat = qobject_cast<Quick3DMaterial *>(list->object);
        if (mat)
            return mat->parentMaterial()->parameters().at(index);
        return nullptr;
    };
    auto clearFunction = [](QQmlListProperty<ListContentType> *list) {
        Quick3DMaterial *mat = qobject_cast<Quick3DMaterial *>(list->object);
        if (mat) {
            const auto parameters = mat->parentMaterial()->parameters();
            for (QParameter *p : parameters)
                mat->parentMaterial()->removeParameter(p);
        }
    };

    return QQmlListProperty<ListContentType>(this, nullptr, appendFunction, countFunction, atFunction, clearFunction);
}

} // Quick

} // namespace Render

} // Qt3D

QT_END_NAMESPACE

#include "moc_quick3dmaterial_p.cpp"