cesium-native 0.46.0
Loading...
Searching...
No Matches
PropertyTypeTraits.h
1#pragma once
2
3#include <CesiumGltf/PropertyArrayView.h>
4#include <CesiumGltf/PropertyType.h>
5
6#include <glm/glm.hpp>
7
8#include <cstdint>
9#include <optional>
10#include <type_traits>
11
12namespace CesiumGltf {
16template <typename... T> struct IsMetadataScalar;
18template <typename T> struct IsMetadataScalar<T> : std::false_type {};
20template <> struct IsMetadataScalar<uint8_t> : std::true_type {};
22template <> struct IsMetadataScalar<int8_t> : std::true_type {};
24template <> struct IsMetadataScalar<uint16_t> : std::true_type {};
26template <> struct IsMetadataScalar<int16_t> : std::true_type {};
28template <> struct IsMetadataScalar<uint32_t> : std::true_type {};
30template <> struct IsMetadataScalar<int32_t> : std::true_type {};
32template <> struct IsMetadataScalar<uint64_t> : std::true_type {};
34template <> struct IsMetadataScalar<int64_t> : std::true_type {};
36template <> struct IsMetadataScalar<float> : std::true_type {};
38template <> struct IsMetadataScalar<double> : std::true_type {};
39
43template <typename... T> struct IsMetadataInteger;
45template <typename T> struct IsMetadataInteger<T> : std::false_type {};
47template <> struct IsMetadataInteger<uint8_t> : std::true_type {};
49template <> struct IsMetadataInteger<int8_t> : std::true_type {};
51template <> struct IsMetadataInteger<uint16_t> : std::true_type {};
53template <> struct IsMetadataInteger<int16_t> : std::true_type {};
55template <> struct IsMetadataInteger<uint32_t> : std::true_type {};
57template <> struct IsMetadataInteger<int32_t> : std::true_type {};
59template <> struct IsMetadataInteger<uint64_t> : std::true_type {};
61template <> struct IsMetadataInteger<int64_t> : std::true_type {};
62
67template <typename... T> struct IsMetadataFloating;
69template <typename T> struct IsMetadataFloating<T> : std::false_type {};
71template <> struct IsMetadataFloating<float> : std::true_type {};
73template <> struct IsMetadataFloating<double> : std::true_type {};
74
78template <typename... T> struct IsMetadataVecN;
80template <typename T> struct IsMetadataVecN<T> : std::false_type {};
82template <glm::length_t n, typename T, glm::qualifier P>
83struct IsMetadataVecN<glm::vec<n, T, P>> : IsMetadataScalar<T> {};
84
88template <typename... T> struct IsMetadataMatN;
90template <typename T> struct IsMetadataMatN<T> : std::false_type {};
92template <glm::length_t n, typename T, glm::qualifier P>
93struct IsMetadataMatN<glm::mat<n, n, T, P>> : IsMetadataScalar<T> {};
94
99template <typename... T> struct IsMetadataNumeric;
103template <typename T> struct IsMetadataNumeric<T> {
107 static constexpr bool value = IsMetadataScalar<T>::value ||
110};
111
115template <typename... T> struct IsMetadataBoolean;
117template <typename T> struct IsMetadataBoolean<T> : std::false_type {};
119template <> struct IsMetadataBoolean<bool> : std::true_type {};
120
124template <typename... T> struct IsMetadataString;
126template <typename T> struct IsMetadataString<T> : std::false_type {};
128template <> struct IsMetadataString<std::string_view> : std::true_type {};
129
133template <typename... T> struct IsMetadataArray;
135template <typename T> struct IsMetadataArray<T> : std::false_type {};
137template <typename T>
138struct IsMetadataArray<PropertyArrayView<T>> : std::true_type {};
140template <typename T>
141struct IsMetadataArray<PropertyArrayCopy<T>> : std::true_type {};
142
147template <typename... T> struct IsMetadataNumericArray;
149template <typename T> struct IsMetadataNumericArray<T> : std::false_type {};
151template <typename T> struct IsMetadataNumericArray<PropertyArrayView<T>> {
153 static constexpr bool value = IsMetadataNumeric<T>::value;
154};
156template <typename T> struct IsMetadataNumericArray<PropertyArrayCopy<T>> {
158 static constexpr bool value = IsMetadataNumeric<T>::value;
159};
160
165template <typename... T> struct IsMetadataBooleanArray;
167template <typename T> struct IsMetadataBooleanArray<T> : std::false_type {};
169template <>
170struct IsMetadataBooleanArray<PropertyArrayView<bool>> : std::true_type {};
171
176template <typename... T> struct IsMetadataStringArray;
178template <typename T> struct IsMetadataStringArray<T> : std::false_type {};
180template <>
182 : std::true_type {};
183
187template <typename T> struct MetadataArrayType {
189 using type = void;
190};
192template <typename T>
198template <typename T>
203
213template <typename T> struct TypeToPropertyType;
214
215#pragma region Scalar Property Types
216
218template <> struct TypeToPropertyType<uint8_t> {
220 static constexpr PropertyComponentType component =
223 static constexpr PropertyType value = PropertyType::Scalar;
224};
225
227template <> struct TypeToPropertyType<int8_t> {
229 static constexpr PropertyComponentType component =
232 static constexpr PropertyType value = PropertyType::Scalar;
233};
234
236template <> struct TypeToPropertyType<uint16_t> {
238 static constexpr PropertyComponentType component =
241 static constexpr PropertyType value = PropertyType::Scalar;
242};
243
245template <> struct TypeToPropertyType<int16_t> {
247 static constexpr PropertyComponentType component =
250 static constexpr PropertyType value = PropertyType::Scalar;
251};
252
254template <> struct TypeToPropertyType<uint32_t> {
256 static constexpr PropertyComponentType component =
259 static constexpr PropertyType value = PropertyType::Scalar;
260};
261
263template <> struct TypeToPropertyType<int32_t> {
265 static constexpr PropertyComponentType component =
268 static constexpr PropertyType value = PropertyType::Scalar;
269};
270
272template <> struct TypeToPropertyType<uint64_t> {
274 static constexpr PropertyComponentType component =
277 static constexpr PropertyType value = PropertyType::Scalar;
278};
279
281template <> struct TypeToPropertyType<int64_t> {
283 static constexpr PropertyComponentType component =
286 static constexpr PropertyType value = PropertyType::Scalar;
287};
288
290template <> struct TypeToPropertyType<float> {
292 static constexpr PropertyComponentType component =
295 static constexpr PropertyType value = PropertyType::Scalar;
296};
297
299template <> struct TypeToPropertyType<double> {
301 static constexpr PropertyComponentType component =
304 static constexpr PropertyType value = PropertyType::Scalar;
305};
306#pragma endregion
307
308#pragma region Vector Property Types
309
311template <typename T, glm::qualifier P>
312struct TypeToPropertyType<glm::vec<2, T, P>> {
315 static constexpr PropertyComponentType component =
318 static constexpr PropertyType value = PropertyType::Vec2;
319};
320
322template <typename T, glm::qualifier P>
323struct TypeToPropertyType<glm::vec<3, T, P>> {
326 static constexpr PropertyComponentType component =
329 static constexpr PropertyType value = PropertyType::Vec3;
330};
331
333template <typename T, glm::qualifier P>
334struct TypeToPropertyType<glm::vec<4, T, P>> {
337 static constexpr PropertyComponentType component =
340 static constexpr PropertyType value = PropertyType::Vec4;
341};
342
343#pragma endregion
344
345#pragma region Matrix Property Types
346
348template <typename T, glm::qualifier P>
349struct TypeToPropertyType<glm::mat<2, 2, T, P>> {
352 static constexpr PropertyComponentType component =
355 static constexpr PropertyType value = PropertyType::Mat2;
356};
357
359template <typename T, glm::qualifier P>
360struct TypeToPropertyType<glm::mat<3, 3, T, P>> {
363 static constexpr PropertyComponentType component =
366 static constexpr PropertyType value = PropertyType::Mat3;
367};
368
370template <typename T, glm::qualifier P>
371struct TypeToPropertyType<glm::mat<4, 4, T, P>> {
374 static constexpr PropertyComponentType component =
377 static constexpr PropertyType value = PropertyType::Mat4;
378};
379
380#pragma endregion
381
383template <> struct TypeToPropertyType<bool> {
385 static constexpr PropertyComponentType component =
388 static constexpr PropertyType value = PropertyType::Boolean;
389};
390
392template <> struct TypeToPropertyType<std::string_view> {
395 static constexpr PropertyComponentType component =
398 static constexpr PropertyType value = PropertyType::String;
399};
400
404template <typename T> struct TypeToDimensions;
405
407template <glm::length_t n, typename T, glm::qualifier P>
408struct TypeToDimensions<glm::vec<n, T, P>> {
414 static constexpr glm::length_t dimensions = n;
415};
416
418template <glm::length_t n, typename T, glm::qualifier P>
419struct TypeToDimensions<glm::mat<n, n, T, P>> {
425 static constexpr glm::length_t dimensions = n;
426};
427
435template <typename T> bool canRepresentPropertyType(PropertyType type) {
436 if constexpr (IsMetadataScalar<T>::value) {
437 return type == PropertyType::Scalar || type == PropertyType::Enum;
438 } else {
439 return TypeToPropertyType<T>::value == type;
440 }
441}
442
446template <typename... T> struct CanBeNormalized;
448template <typename T> struct CanBeNormalized<T> : std::false_type {};
450template <> struct CanBeNormalized<uint8_t> : std::true_type {};
452template <> struct CanBeNormalized<int8_t> : std::true_type {};
454template <> struct CanBeNormalized<uint16_t> : std::true_type {};
456template <> struct CanBeNormalized<int16_t> : std::true_type {};
458template <> struct CanBeNormalized<uint32_t> : std::true_type {};
460template <> struct CanBeNormalized<int32_t> : std::true_type {};
462template <> struct CanBeNormalized<uint64_t> : std::true_type {};
464template <> struct CanBeNormalized<int64_t> : std::true_type {};
465
467template <glm::length_t n, typename T, glm::qualifier P>
468struct CanBeNormalized<glm::vec<n, T, P>> : CanBeNormalized<T> {};
469
471template <glm::length_t n, typename T, glm::qualifier P>
472struct CanBeNormalized<glm::mat<n, n, T, P>> : CanBeNormalized<T> {};
473
475template <typename T>
481template <typename T> struct TypeToNormalizedType;
482
484template <> struct TypeToNormalizedType<int8_t> {
486 using type = double;
487};
489template <> struct TypeToNormalizedType<uint8_t> {
491 using type = double;
492};
494template <> struct TypeToNormalizedType<int16_t> {
496 using type = double;
497};
499template <> struct TypeToNormalizedType<uint16_t> {
501 using type = double;
502};
504template <> struct TypeToNormalizedType<int32_t> {
506 using type = double;
507};
509template <> struct TypeToNormalizedType<uint32_t> {
511 using type = double;
512};
514template <> struct TypeToNormalizedType<int64_t> {
516 using type = double;
517};
519template <> struct TypeToNormalizedType<uint64_t> {
521 using type = double;
522};
523
525template <glm::length_t N, typename T, glm::qualifier Q>
526struct TypeToNormalizedType<glm::vec<N, T, Q>> {
528 using type = glm::vec<N, double, Q>;
529};
530
532template <glm::length_t N, typename T, glm::qualifier Q>
533struct TypeToNormalizedType<glm::mat<N, N, T, Q>> {
535 using type = glm::mat<N, N, double, Q>;
536};
537
545template <> struct TypeToNormalizedType<PropertyArrayView<uint8_t>> {
549};
551template <> struct TypeToNormalizedType<PropertyArrayView<int16_t>> {
555};
557template <> struct TypeToNormalizedType<PropertyArrayView<uint16_t>> {
561};
563template <> struct TypeToNormalizedType<PropertyArrayView<int32_t>> {
567};
569template <> struct TypeToNormalizedType<PropertyArrayView<uint32_t>> {
573};
575template <> struct TypeToNormalizedType<PropertyArrayView<int64_t>> {
579};
581template <> struct TypeToNormalizedType<PropertyArrayView<uint64_t>> {
585};
586
588template <glm::length_t N, typename T, glm::qualifier Q>
594
596template <glm::length_t N, typename T, glm::qualifier Q>
602
615template <typename T>
616using PropertyValueViewToCopy = std::conditional_t<
619 T>;
620
632template <typename T>
633using PropertyValueCopyToView = std::conditional_t<
636 T>;
637
647template <typename T>
648static std::optional<PropertyValueViewToCopy<T>>
649propertyValueViewToCopy(const std::optional<T>& view) {
650 if constexpr (IsMetadataNumericArray<T>::value) {
651 if (view) {
652 return std::make_optional<PropertyValueViewToCopy<T>>(
653 std::vector(view->begin(), view->end()));
654 } else {
655 return std::nullopt;
656 }
657 } else {
658 return view;
659 }
660}
661
670template <typename T>
671static PropertyValueViewToCopy<T> propertyValueViewToCopy(const T& view) {
672 if constexpr (IsMetadataNumericArray<T>::value) {
673 return PropertyValueViewToCopy<T>(std::vector(view.begin(), view.end()));
674 } else {
675 return view;
676 }
677}
678
687template <typename T>
688static PropertyValueCopyToView<T> propertyValueCopyToView(const T& copy) {
689 if constexpr (IsMetadataNumericArray<T>::value) {
690 return copy.view();
691 } else {
692 return copy;
693 }
694}
695
696} // namespace CesiumGltf
A copy of an array element of a PropertyTableProperty or PropertyTextureProperty.
A view on an array element of a PropertyTableProperty or PropertyTextureProperty.
Classes for working with glTF models.
PropertyComponentType
The possible types of a property component.
@ Float32
A property component equivalent to a float.
@ Uint32
A property component equivalent to a uint32_t.
@ Uint16
A property component equivalent to a uint16_t.
@ Int16
A property component equivalent to an int16_t.
@ Uint8
A property component equivalent to a uint8_t.
@ Int8
A property component equivalent to an int8_t.
@ Int32
A property component equivalent to an int32_t.
@ Uint64
A property component equivalent to a uint32_t.
@ Float64
A property component equivalent to a double.
@ Int64
A property component equivalent to an int64_t.
std::conditional_t< IsMetadataNumericArray< T >::value, PropertyArrayView< typename MetadataArrayType< T >::type >, T > PropertyValueCopyToView
Transforms a property value type from a copy that owns the data it is viewing to a view into that dat...
bool canRepresentPropertyType(PropertyType type)
Returns whether the type T can represent the given PropertyType.
std::conditional_t< IsMetadataNumericArray< T >::value, PropertyArrayCopy< typename MetadataArrayType< T >::type >, T > PropertyValueViewToCopy
Transforms a property value type from a view to an equivalent type that owns the data it is viewing....
PropertyType
The possible types of a property in a PropertyTableView.
@ Vec3
A vector with three components.
@ Scalar
A scalar property, i.e. an integer or floating point value.
@ Vec4
A vector with four components.
@ Vec2
A vector with two components.
STL namespace.
Check if a C++ type can be normalized.
Check if a C++ type can be represented as an array.
Check if a C++ type can be represented as an array of booleans property type.
Check if a C++ type can be represented as a boolean property type.
Check if a C++ type can be represented as a floating-point property type.
Check if a C++ type can be represented as an integer property type.
Check if a C++ type can be represented as a matN type.
Check if a C++ type can be represented as an array of numeric elements property type.
Check if a C++ type can be represented as a numeric property, i.e. a scalar / vecN / matN type.
Check if a C++ type can be represented as a scalar property type.
Check if a C++ type can be represented as an array of strings property type.
Check if a C++ type can be represented as a string property type.
Check if a C++ type can be represented as a vecN type.
Retrieve the component type of a metadata array.
void type
The component type of this metadata array.
The number of dimensions that this type contains.
glm::mat< N, N, double, Q > type
The representation of a glm::mat<N, N, T, Q> as a double type.
glm::vec< N, double, Q > type
The representation of a glm::vec<N, T, Q> as a double type.
double type
The representation of an int16_t as a double type.
double type
The representation of an int32_t as a double type.
double type
The representation of an int64_t as a double type.
double type
The representation of an int8_t as a double type.
double type
The representation of a uint16_t as a double type.
double type
The representation of a uint32_t as a double type.
double type
The representation of a uint64_t as a double type.
double type
The representation of a uint8_t as a double type.
Convert an integer numeric type to the corresponding representation as a double type....
Infer the best-fitting PropertyType and PropertyComponentType for a C++ type.