aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/linegeometry.cpp
blob: 5b6110d2af06582ec29a40265cbeb0d919362563 (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
/****************************************************************************
**
** Copyright (C) 2020 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/

#ifdef QUICK3D_MODULE

#include "linegeometry.h"

#include <QtQuick3DRuntimeRender/private/qssgrendergeometry_p.h>

namespace QmlDesigner {
namespace Internal {

LineGeometry::LineGeometry()
    : QQuick3DGeometry()
{
}

LineGeometry::~LineGeometry()
{
}

#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
QString LineGeometry::name() const
{
    return objectName();
}

void LineGeometry::setName(const QString &name)
{
    setObjectName(name);
    emit nameChanged();
}
#endif

QVector3D LineGeometry::startPos() const
{
    return m_startPos;
}

QVector3D LineGeometry::endPos() const
{
    return m_endPos;
}

void LineGeometry::setStartPos(const QVector3D &pos)
{
    if (pos != m_startPos) {
        m_startPos = pos;
        emit startPosChanged();
        update();
    }
}

void LineGeometry::setEndPos(const QVector3D &pos)
{
    if (pos != m_endPos) {
        m_endPos = pos;
        emit endPosChanged();
        update();
    }
}

QSSGRenderGraphObject *LineGeometry::updateSpatialNode(QSSGRenderGraphObject *node)
{
    node = QQuick3DGeometry::updateSpatialNode(node);
    QSSGRenderGeometry *geometry = static_cast<QSSGRenderGeometry *>(node);
    geometry->clear();

    QByteArray vertexData;
    vertexData.resize(2 * 3 * 4); // 2 vertices of 3 floats each 4 bytes
    float *dataPtr = reinterpret_cast<float *>(vertexData.data());

    dataPtr[0] = m_startPos[0];
    dataPtr[1] = m_startPos[1];
    dataPtr[2] = m_startPos[2];
    dataPtr[3] = m_endPos[0];
    dataPtr[4] = m_endPos[1];
    dataPtr[5] = m_endPos[2];

    geometry->addAttribute(QSSGRenderGeometry::Attribute::PositionSemantic, 0,
                           QSSGRenderGeometry::Attribute::ComponentType::F32Type);
    geometry->setStride(12);
    geometry->setVertexData(vertexData);
    geometry->setPrimitiveType(QSSGRenderGeometry::Lines);
    geometry->setBounds(m_startPos, m_endPos);

    return node;
}

}
}

#endif // QUICK3D_MODULE