cesium-native 0.46.0
Loading...
Searching...
No Matches
AccessorUtility.h
1#pragma once
2
3#include <CesiumGltf/AccessorView.h>
4#include <CesiumGltf/MeshPrimitive.h>
5
6#include <glm/common.hpp>
7
8#include <array>
9#include <variant>
10
11namespace CesiumGltf {
19 int64_t operator()(std::monostate) { return 0; }
20
22 template <typename T> int64_t operator()(const AccessorView<T>& value) {
23 return value.size();
24 }
25};
26
38
41 template <typename T>
43 return value.status();
44 }
45};
46
51
58getPositionAccessorView(const Model& model, const MeshPrimitive& primitive);
59
64
71getNormalAccessorView(const Model& model, const MeshPrimitive& primitive);
72
76typedef std::variant<
84
91 const Model& model,
92 const MeshPrimitive& primitive,
93 int32_t featureIdAttributeIndex);
94
102 const Model& model,
103 const Node& node,
104 int32_t featureIdAttributeIndex);
105
118 int64_t operator()(const AccessorView<float>& value) {
119 if (index < 0 || index >= value.size()) {
120 return -1;
121 }
122 return static_cast<int64_t>(glm::round(value[index]));
123 }
124
126 template <typename T> int64_t operator()(const AccessorView<T>& value) {
127 if (index < 0 || index >= value.size()) {
128 return -1;
129 }
130 return static_cast<int64_t>(value[index]);
131 }
132
134 int64_t index;
135};
136
142typedef std::variant<
143 std::monostate,
148
155getIndexAccessorView(const Model& model, const MeshPrimitive& primitive);
156
170 std::array<int64_t, 3> operator()(std::monostate) {
171 int64_t firstVertex = faceIndex;
172 int64_t numFaces = 0;
173
174 switch (primitiveMode) {
176 numFaces = vertexCount - 2;
177 break;
179 numFaces = vertexCount - 2;
180 firstVertex++;
181 break;
183 numFaces = vertexCount / 3;
184 firstVertex *= 3;
185 break;
186 default:
187 // Unsupported primitive mode.
188 return {-1, -1, -1};
189 }
190
191 if (faceIndex < 0 || faceIndex >= numFaces) {
192 return {-1, -1, -1};
193 }
194
195 std::array<int64_t, 3> result;
196
198 result[0] = 0;
199 result[1] = firstVertex < vertexCount ? firstVertex : -1;
200 result[2] = firstVertex + 1 < vertexCount ? firstVertex + 1 : -1;
201 } else {
202 for (int64_t i = 0; i < 3; i++) {
203 int64_t vertexIndex = firstVertex + i;
204 result[static_cast<size_t>(i)] =
205 vertexIndex < vertexCount ? vertexIndex : -1;
206 }
207 }
208
209 return result;
210 }
211
215 template <typename T>
216 std::array<int64_t, 3> operator()(const AccessorView<T>& value) {
217 int64_t firstIndex = faceIndex;
218 int64_t numFaces = 0;
219
220 switch (primitiveMode) {
222 numFaces = value.size() - 2;
223 break;
225 numFaces = value.size() - 2;
226 firstIndex++;
227 break;
229 numFaces = value.size() / 3;
230 firstIndex *= 3;
231 break;
232 default:
233 // Unsupported primitive mode.
234 return {-1, -1, -1};
235 }
236
237 if (faceIndex < 0 || faceIndex >= numFaces) {
238 return {-1, -1, -1};
239 }
240
241 std::array<int64_t, 3> result;
242
244 result[0] = value[0];
245 result[1] = firstIndex < value.size()
246 ? static_cast<int64_t>(value[firstIndex])
247 : -1;
248 result[2] = firstIndex + 1 < value.size()
249 ? static_cast<int64_t>(value[firstIndex + 1])
250 : -1;
251 } else {
252 for (int64_t i = 0; i < 3; i++) {
253 int64_t index = firstIndex + i;
254 result[static_cast<size_t>(i)] =
255 index < value.size() ? static_cast<int64_t>(value[index]) : -1;
256 }
257 }
258
259 return result;
260 }
261
263 int64_t faceIndex;
265 int64_t vertexCount;
268}; // namespace CesiumGltf
269
281 int64_t operator()(std::monostate) { return -1; }
282
285 template <typename T>
287 if (index < 0 || index >= value.size()) {
288 return -1;
289 }
290
291 return value[index];
292 }
293
295 int64_t index;
296};
297
301typedef std::variant<
306
313 const Model& model,
314 const MeshPrimitive& primitive,
315 int32_t textureCoordinateSetIndex);
316
330 std::optional<glm::dvec2>
332 if (index < 0 || index >= value.size()) {
333 return std::nullopt;
334 }
335
336 return glm::dvec2(value[index].value[0], value[index].value[1]);
337 }
338
345 template <typename T>
346 std::optional<glm::dvec2>
348 if (index < 0 || index >= value.size()) {
349 return std::nullopt;
350 }
351
352 double u = static_cast<double>(value[index].value[0]);
353 double v = static_cast<double>(value[index].value[1]);
354
355 // TODO: do normalization logic in accessor view?
356 u /= std::numeric_limits<T>::max();
357 v /= std::numeric_limits<T>::max();
358
359 return glm::dvec2(u, v);
360 }
361
363 int64_t index;
364};
365
370typedef std::variant<
377
389getQuaternionAccessorView(const Model& model, const Accessor* accessor);
390
403getQuaternionAccessorView(const Model& model, int32_t accessorIndex);
404} // namespace CesiumGltf
A view on the data of one accessor of a glTF asset.
int64_t size() const noexcept
Returns the size (number of elements) of this accessor.
AccessorViewStatus status() const noexcept
Gets the status of this accessor view.
Classes for working with glTF models.
AccessorView< AccessorTypes::VEC3< float > > NormalAccessorType
std::variant< AccessorView< int8_t >, AccessorView< uint8_t >, AccessorView< int16_t >, AccessorView< uint16_t >, AccessorView< uint32_t >, AccessorView< float > > FeatureIdAccessorType
std::variant< std::monostate, AccessorView< uint8_t >, AccessorView< uint16_t >, AccessorView< uint32_t > > IndexAccessorType
std::variant< AccessorView< AccessorTypes::VEC4< uint8_t > >, AccessorView< AccessorTypes::VEC4< int8_t > >, AccessorView< AccessorTypes::VEC4< uint16_t > >, AccessorView< AccessorTypes::VEC4< int16_t > >, AccessorView< AccessorTypes::VEC4< float > > > QuaternionAccessorType
Type definition for quaternion accessors, as used in ExtMeshGpuInstancing rotations and animation sam...
IndexAccessorType getIndexAccessorView(const Model &model, const MeshPrimitive &primitive)
FeatureIdAccessorType getFeatureIdAccessorView(const Model &model, const MeshPrimitive &primitive, int32_t featureIdAttributeIndex)
TexCoordAccessorType getTexCoordAccessorView(const Model &model, const MeshPrimitive &primitive, int32_t textureCoordinateSetIndex)
NormalAccessorType getNormalAccessorView(const Model &model, const MeshPrimitive &primitive)
AccessorViewStatus
Indicates the status of an accessor view.
@ InvalidAccessorIndex
The accessor index does not refer to a valid accessor.
std::variant< AccessorView< AccessorTypes::VEC2< uint8_t > >, AccessorView< AccessorTypes::VEC2< uint16_t > >, AccessorView< AccessorTypes::VEC2< float > > > TexCoordAccessorType
AccessorView< AccessorTypes::VEC3< float > > PositionAccessorType
QuaternionAccessorType getQuaternionAccessorView(const Model &model, const Accessor *accessor)
Obtains a QuaternionAccessorType from the given Accessor on the given Model.
PositionAccessorType getPositionAccessorView(const Model &model, const MeshPrimitive &primitive)
A 2D vector element for an AccessorView.
This class is not meant to be instantiated directly. Use Accessor instead.
Definition Accessor.h:12
Visitor that retrieves the count of elements in the given accessor type as an int64_t.
int64_t operator()(const AccessorView< T > &value)
Attempts to obtain an element count from an AccessorView.
int64_t operator()(std::monostate)
Attempts to obtain an element count from an empty accessor variant, resulting in 0.
int64_t operator()(const AccessorView< float > &value)
Attempts to obtain a feature ID from an AccessorView over float values, returning the float value rou...
int64_t operator()(const AccessorView< T > &value)
Attempts to obtain a feature ID from an AccessorView.
int64_t index
The index of the vertex whose feature ID is being queried.
int64_t operator()(const CesiumGltf::AccessorView< T > &value)
Attempts to obtain a vertex index from an CesiumGltf::AccessorView.
int64_t index
The index of the vertex index within the accessor itself.
int64_t operator()(std::monostate)
Attempts to obtain a vertex index from an empty IndexAccessorType, resulting in -1.
std::array< int64_t, 3 > operator()(const AccessorView< T > &value)
Attempts to obtain the indices for the given face from an AccessorView, using the view's size and con...
int64_t faceIndex
The index of the face to obtain indices for.
std::array< int64_t, 3 > operator()(std::monostate)
Attempts to obtain the indices for the given face from an empty accessor variant, using the vertexCou...
int64_t vertexCount
The total number of vertices in the data being accessed.
int32_t primitiveMode
The MeshPrimitive::Mode of the data being accessed.
static constexpr int32_t TRIANGLES
TRIANGLES (4)
static constexpr int32_t TRIANGLE_FAN
TRIANGLE_FAN (6)
static constexpr int32_t TRIANGLE_STRIP
TRIANGLE_STRIP (5)
Geometry to be rendered with the given material.
This class is not meant to be instantiated directly. Use Model instead.
Definition Model.h:14
A node in the node hierarchy. When the node contains skin, all mesh.primitives MUST contain JOINTS_0 ...
Definition Node.h:23
Visitor that retrieves the status from the given accessor. Returns an invalid status for a std::monos...
AccessorViewStatus operator()(std::monostate)
Attempts to obtain an AccessorViewStatus from an empty accessor variant, resulting in AccessorViewSta...
AccessorViewStatus operator()(const AccessorView< T > &value)
Attempts to obtain an AccessorViewStatus from an AccessorView.
int64_t index
The index of texcoords to obtain.
std::optional< glm::dvec2 > operator()(const AccessorView< AccessorTypes::VEC2< T > > &value)
Attempts to obtain a glm::dvec2 at the given index from an accessor over a vec2. The values will be c...
std::optional< glm::dvec2 > operator()(const AccessorView< AccessorTypes::VEC2< float > > &value)
Attempts to obtain a glm::dvec2 at the given index from an accessor over a vec2 of floats....