summaryrefslogtreecommitdiffstats
path: root/src/threed/geometry/qlogicalvertex.h
blob: 3a5d9b6b7c15917cb870f659db95f19034caf1a4 (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtQuick3D module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#ifndef QLOGICALVERTEX_H
#define QLOGICALVERTEX_H

#include "qgeometrydata.h"
#include "qcustomdataarray.h"

QT_BEGIN_NAMESPACE

// uncomment this to perform heavy checking of QLogicalVertex
// #define QT3D_DEBUG_QLOGICALVERTEX 1

class QLogicalVertex
{
public:
    inline QLogicalVertex();
    inline QLogicalVertex(QGeometryData data, int index);
    inline QLogicalVertex(const QVector3D &a);
    inline QLogicalVertex(const QVector3D &a, const QVector3D &n);
    inline QLogicalVertex(const QVector3D &a,  const QVector3D &n, const QVector2D &t);
    inline QLogicalVertex(const QVector3D &a, QColor4ub color);
    ~QLogicalVertex() {}

    inline const QVector3D &vertex() const;
    inline void setVertex(const QVector3D &v);
    inline QVector3D &vertex();

    operator QVector3D () { return vertex(); }

    inline QVariant attribute(QGL::VertexAttribute field = QGL::CustomVertex0) const;
    inline void setAttribute(float value, QGL::VertexAttribute attr);
    inline void setAttribute(const QVector2D &v, QGL::VertexAttribute field = QGL::CustomVertex0);
    inline void setAttribute(const QVector3D &v, QGL::VertexAttribute field = QGL::CustomVertex0);
    inline float &floatAttribute(QGL::VertexAttribute field = QGL::CustomVertex0);
    inline QVector2D &vector2DAttribute(QGL::VertexAttribute field = QGL::CustomVertex0);
    inline QVector3D &vector3DAttribute(QGL::VertexAttribute field = QGL::CustomVertex0);
    inline float floatAttribute(QGL::VertexAttribute field = QGL::CustomVertex0) const;
    inline QVector2D vector2DAttribute(QGL::VertexAttribute field = QGL::CustomVertex0) const;
    inline QVector3D vector3DAttribute(QGL::VertexAttribute field = QGL::CustomVertex0) const;
    inline QCustomDataArray::ElementType attributeType(QGL::VertexAttribute field = QGL::CustomVertex0);

    inline const QVector3D &normal() const;
    inline void setNormal(const QVector3D &n);
    inline QVector3D &normal();

    inline const QColor4ub &color() const;
    inline void setColor(const QColor4ub &c);
    inline QColor4ub &colorRef();

    inline const QVector2D &texCoord(QGL::VertexAttribute attr = QGL::TextureCoord0) const;
    inline void setTexCoord(const QVector2D &t, QGL::VertexAttribute attr = QGL::TextureCoord0);
    inline QVector2D &texCoordRef(QGL::VertexAttribute attr = QGL::TextureCoord0);

    inline bool hasField(QGL::VertexAttribute type) const;
    inline quint32 fields() const;
    inline int index() const;
    inline QGeometryData data() const;
    inline bool isNull() const;

    bool operator==(const QLogicalVertex &rhs) const;

private:
    QGeometryData m_data;
    int m_index;
};

inline QLogicalVertex::QLogicalVertex()
    : m_index(-1)
{
}

inline QLogicalVertex::QLogicalVertex(QGeometryData data, int index)
    : m_data(data)
    , m_index(index)
{
    Q_ASSERT(index < data.count());
#ifdef QT3D_DEBUG_QLOGICALVERTEX
    data.check();
#endif
}

inline QLogicalVertex::QLogicalVertex(const QVector3D &a)
    : m_index(0)
{
    m_data.appendVertex(a);
}

inline QLogicalVertex::QLogicalVertex(const QVector3D &a, const QVector3D &n)
    : m_index(0)
{
    m_data.appendVertex(a);
    m_data.appendNormal(n);
}

inline QLogicalVertex::QLogicalVertex(const QVector3D &a, const QVector3D &n, const QVector2D &t)
    : m_index(0)
{
    m_data.appendVertex(a);
    m_data.appendNormal(n);
    m_data.appendTexCoord(t);
}

inline QLogicalVertex::QLogicalVertex(const QVector3D &a, QColor4ub color)
    : m_index(0)
{
    m_data.appendVertex(a);
    m_data.appendColor(color);
}

inline const QVector3D &QLogicalVertex::vertex() const
{
    return m_data.vertexAt(m_index);
}

inline void QLogicalVertex::setVertex(const QVector3D &v)
{
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(QGL::Position))
        m_data.appendVertex(v);
    else
        m_data.vertex(m_index) = v;
}

inline QVector3D &QLogicalVertex::vertex()
{
    return m_data.vertex(m_index);
}

inline QVariant QLogicalVertex::attribute(QGL::VertexAttribute attr) const
{
    return m_data.attributes(attr).at(m_index);
}

inline void QLogicalVertex::setAttribute(float v, QGL::VertexAttribute attr)
{
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(attr))
        m_data.appendAttribute(v, attr);
    else
        m_data.floatAttribute(m_index, attr) = v;
}

inline void QLogicalVertex::setAttribute(const QVector2D &v, QGL::VertexAttribute attr)
{
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(attr))
        m_data.appendAttribute(v, attr);
    else
        m_data.vector2DAttribute(m_index, attr) = v;
}

inline void QLogicalVertex::setAttribute(const QVector3D &v, QGL::VertexAttribute attr)
{
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(attr))
        m_data.appendAttribute(v, attr);
    else
        m_data.vector3DAttribute(m_index, attr) = v;
}

inline float &QLogicalVertex::floatAttribute(QGL::VertexAttribute field)
{
    return m_data.floatAttribute(m_index, field);
}

inline QVector2D &QLogicalVertex::vector2DAttribute(QGL::VertexAttribute field)
{
    return m_data.vector2DAttribute(m_index, field);
}

inline QVector3D &QLogicalVertex::vector3DAttribute(QGL::VertexAttribute field)
{

    return m_data.vector3DAttribute(m_index, field);
}

inline float QLogicalVertex::floatAttribute(QGL::VertexAttribute field) const
{
    return m_data.floatAttributeAt(m_index, field);
}

inline QVector2D QLogicalVertex::vector2DAttribute(QGL::VertexAttribute field) const
{
    return m_data.vector2DAttributeAt(m_index, field);
}

inline QVector3D QLogicalVertex::vector3DAttribute(QGL::VertexAttribute field) const
{
    return m_data.vector3DAttributeAt(m_index, field);
}

inline QCustomDataArray::ElementType QLogicalVertex::attributeType(QGL::VertexAttribute field)
{
    return m_data.attributes(field).elementType();
}

inline const QVector3D &QLogicalVertex::normal() const
{
    return m_data.normalAt(m_index);
}

inline void QLogicalVertex::setNormal(const QVector3D &n)
{
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(QGL::Normal))
        m_data.appendNormal(n);
    else
        m_data.normal(m_index) = n;
}

inline QVector3D &QLogicalVertex::normal()
{
    return m_data.normal(m_index);
}

inline const QVector2D &QLogicalVertex::texCoord(QGL::VertexAttribute attr) const
{
    return m_data.texCoordAt(m_index, attr);
}

inline void QLogicalVertex::setTexCoord(const QVector2D &t, QGL::VertexAttribute attr)
{
    Q_ASSERT(attr >= QGL::TextureCoord0 && attr <= QGL::TextureCoord2);
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(attr))
        m_data.appendTexCoord(t, attr);
    else
        m_data.texCoord(m_index, attr) = t;
}

inline QVector2D &QLogicalVertex::texCoordRef(QGL::VertexAttribute attr)
{
    return m_data.texCoord(m_index, attr);
}

inline const QColor4ub &QLogicalVertex::color() const
{
    return m_data.colorAt(m_index);
}

inline void QLogicalVertex::setColor(const QColor4ub &c)
{
    if (m_index == -1)
        m_index = 0;
    if (m_index == m_data.count(QGL::Color))
        m_data.appendColor(c);
    else
        m_data.color(m_index) = c;
}

inline QColor4ub &QLogicalVertex::colorRef()
{
    return m_data.color(m_index);
}

inline bool QLogicalVertex::hasField(QGL::VertexAttribute attr) const
{
    return m_data.hasField(attr);
}

inline quint32 QLogicalVertex::fields() const
{
    return m_data.fields();
}

inline int QLogicalVertex::index() const
{
    return m_index;
}

inline bool QLogicalVertex::isNull() const
{
    return (m_index == -1);
}

#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, const QLogicalVertex &section);
#endif

QT_END_NAMESPACE

#endif // QLOGICALVERTEX_H