bmh/FlightSimulation/Plugins/CesiumForUnreal_5.4/Source/CesiumRuntime/Private/CesiumPropertyTableProperty.cpp
2025-02-07 22:52:32 +08:00

1464 lines
53 KiB
C++

// Copyright 2020-2024 CesiumGS, Inc. and Contributors
#include "CesiumPropertyTableProperty.h"
#include "CesiumGltf/MetadataConversions.h"
#include "CesiumGltf/PropertyTypeTraits.h"
#include "UnrealMetadataConversions.h"
#include <utility>
namespace {
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* of the specified type. If the type does not match, the callback is performed
* on an invalid PropertyTablePropertyView instead.
*
* @param property The std::any containing the property.
* @param callback The callback function.
*
* @tparam TProperty The property type.
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <
typename TProperty,
bool Normalized,
typename TResult,
typename Callback>
TResult
propertyTablePropertyCallback(const std::any& property, Callback&& callback) {
const CesiumGltf::PropertyTablePropertyView<TProperty, Normalized>*
pProperty = std::any_cast<
CesiumGltf::PropertyTablePropertyView<TProperty, Normalized>>(
&property);
if (pProperty) {
return callback(*pProperty);
}
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a scalar type. If the valueType does not have a valid component type, the
* callback is performed on an invalid PropertyTablePropertyView instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <bool Normalized, typename TResult, typename Callback>
TResult scalarPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.ComponentType) {
case ECesiumMetadataComponentType::Int8:
return propertyTablePropertyCallback<int8_t, Normalized, TResult, Callback>(
property,
std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint8:
return propertyTablePropertyCallback<
uint8_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int16:
return propertyTablePropertyCallback<
int16_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint16:
return propertyTablePropertyCallback<
uint16_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int32:
return propertyTablePropertyCallback<
int32_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint32:
return propertyTablePropertyCallback<
uint32_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int64:
return propertyTablePropertyCallback<
int64_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint64:
return propertyTablePropertyCallback<
uint64_t,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float32:
return propertyTablePropertyCallback<float, false, TResult, Callback>(
property,
std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float64:
return propertyTablePropertyCallback<double, false, TResult, Callback>(
property,
std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a scalar array type. If the valueType does not have a valid component
* type, the callback is performed on an invalid PropertyTablePropertyView
* instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <bool Normalized, typename TResult, typename Callback>
TResult scalarArrayPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.ComponentType) {
case ECesiumMetadataComponentType::Int8:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<int8_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint8:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<uint8_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int16:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<int16_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint16:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<uint16_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<int32_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<uint32_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<int64_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<uint64_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<float>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<double>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::vecN type. If the valueType does not have a valid component type,
* the callback is performed on an invalid PropertyTablePropertyView instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam N The dimensions of the glm::vecN
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <glm::length_t N, bool Normalized, typename TResult, typename Callback>
TResult vecNPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.ComponentType) {
case ECesiumMetadataComponentType::Int8:
return propertyTablePropertyCallback<
glm::vec<N, int8_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint8:
return propertyTablePropertyCallback<
glm::vec<N, uint8_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int16:
return propertyTablePropertyCallback<
glm::vec<N, int16_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint16:
return propertyTablePropertyCallback<
glm::vec<N, uint16_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int32:
return propertyTablePropertyCallback<
glm::vec<N, int32_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint32:
return propertyTablePropertyCallback<
glm::vec<N, uint32_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int64:
return propertyTablePropertyCallback<
glm::vec<N, int64_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint64:
return propertyTablePropertyCallback<
glm::vec<N, uint64_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float32:
return propertyTablePropertyCallback<
glm::vec<N, float>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float64:
return propertyTablePropertyCallback<
glm::vec<N, double>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::vecN type. If the valueType does not have a valid component type,
* the callback is performed on an invalid PropertyTablePropertyView instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <bool Normalized, typename TResult, typename Callback>
TResult vecNPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
if (valueType.Type == ECesiumMetadataType::Vec2) {
return vecNPropertyTablePropertyCallback<2, Normalized, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Vec3) {
return vecNPropertyTablePropertyCallback<3, Normalized, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Vec4) {
return vecNPropertyTablePropertyCallback<4, Normalized, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::vecN array type. If the valueType does not have a valid component
* type, the callback is performed on an invalid PropertyTablePropertyView
* instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam N The dimensions of the glm::vecN
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <glm::length_t N, bool Normalized, typename TResult, typename Callback>
TResult vecNArrayPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.ComponentType) {
case ECesiumMetadataComponentType::Int8:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, int8_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint8:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, uint8_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int16:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, int16_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint16:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, uint16_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, int32_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, uint32_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, int64_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, uint64_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, float>>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::vec<N, double>>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::vecN array type. If the valueType does not have a valid component
* type, the callback is performed on an invalid PropertyTablePropertyView
* instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <bool Normalized, typename TResult, typename Callback>
TResult vecNArrayPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
if (valueType.Type == ECesiumMetadataType::Vec2) {
return vecNArrayPropertyTablePropertyCallback<
2,
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Vec3) {
return vecNArrayPropertyTablePropertyCallback<
3,
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Vec4) {
return vecNArrayPropertyTablePropertyCallback<
4,
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
}
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::matN type. If the valueType does not have a valid component type,
* the callback is performed on an invalid PropertyTablePropertyView instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam N The dimensions of the glm::matN
* @tparam TNormalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <glm::length_t N, bool Normalized, typename TResult, typename Callback>
TResult matNPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.ComponentType) {
case ECesiumMetadataComponentType::Int8:
return propertyTablePropertyCallback<
glm::mat<N, N, int8_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint8:
return propertyTablePropertyCallback<
glm::mat<N, N, uint8_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int16:
return propertyTablePropertyCallback<
glm::mat<N, N, int16_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint16:
return propertyTablePropertyCallback<
glm::mat<N, N, uint16_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int32:
return propertyTablePropertyCallback<
glm::mat<N, N, int32_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint32:
return propertyTablePropertyCallback<
glm::mat<N, N, uint32_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int64:
return propertyTablePropertyCallback<
glm::mat<N, N, int64_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint64:
return propertyTablePropertyCallback<
glm::mat<N, N, uint64_t>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float32:
return propertyTablePropertyCallback<
glm::mat<N, N, float>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float64:
return propertyTablePropertyCallback<
glm::mat<N, N, double>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::matN type. If the valueType does not have a valid component type,
* the callback is performed on an invalid PropertyTablePropertyView instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <bool Normalized, typename TResult, typename Callback>
TResult matNPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
if (valueType.Type == ECesiumMetadataType::Mat2) {
return matNPropertyTablePropertyCallback<2, Normalized, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Mat3) {
return matNPropertyTablePropertyCallback<3, Normalized, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Mat4) {
return matNPropertyTablePropertyCallback<4, Normalized, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
return callback(CesiumGltf::PropertyTablePropertyView<uint8>());
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::matN array type. If the valueType does not have a valid component
* type, the callback is performed on an invalid PropertyTablePropertyView
* instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam N The dimensions of the glm::matN
* @tparam TNormalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <glm::length_t N, bool Normalized, typename TResult, typename Callback>
TResult matNArrayPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.ComponentType) {
case ECesiumMetadataComponentType::Int8:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, int8_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint8:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, uint8_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int16:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, int16_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint16:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, uint16_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, int32_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, uint32_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Int64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, int64_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Uint64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, uint64_t>>,
Normalized,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float32:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, float>>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataComponentType::Float64:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<glm::mat<N, N, double>>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
/**
* Callback on a std::any, assuming that it contains a PropertyTablePropertyView
* on a glm::matN array type. If the valueType does not have a valid component
* type, the callback is performed on an invalid PropertyTablePropertyView
* instead.
*
* @param property The std::any containing the property.
* @param valueType The FCesiumMetadataValueType of the property.
* @param callback The callback function.
*
* @tparam Normalized Whether the PropertyTablePropertyView is normalized.
* @tparam TResult The type of the output from the callback function.
* @tparam Callback The callback function type.
*/
template <bool Normalized, typename TResult, typename Callback>
TResult matNArrayPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
if (valueType.Type == ECesiumMetadataType::Mat2) {
return matNArrayPropertyTablePropertyCallback<
2,
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Mat3) {
return matNArrayPropertyTablePropertyCallback<
3,
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
}
if (valueType.Type == ECesiumMetadataType::Mat4) {
return matNArrayPropertyTablePropertyCallback<
4,
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
}
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
template <bool Normalized, typename TResult, typename Callback>
TResult arrayPropertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
Callback&& callback) {
switch (valueType.Type) {
case ECesiumMetadataType::Scalar:
return scalarArrayPropertyTablePropertyCallback<
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
case ECesiumMetadataType::Vec2:
case ECesiumMetadataType::Vec3:
case ECesiumMetadataType::Vec4:
return vecNArrayPropertyTablePropertyCallback<
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
case ECesiumMetadataType::Mat2:
case ECesiumMetadataType::Mat3:
case ECesiumMetadataType::Mat4:
return matNArrayPropertyTablePropertyCallback<
Normalized,
TResult,
Callback>(property, valueType, std::forward<Callback>(callback));
case ECesiumMetadataType::Boolean:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<bool>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
case ECesiumMetadataType::String:
return propertyTablePropertyCallback<
CesiumGltf::PropertyArrayView<std::string_view>,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
template <typename TResult, typename Callback>
TResult propertyTablePropertyCallback(
const std::any& property,
const FCesiumMetadataValueType& valueType,
bool normalized,
Callback&& callback) {
if (valueType.bIsArray) {
return normalized
? arrayPropertyTablePropertyCallback<true, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback))
: arrayPropertyTablePropertyCallback<false, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
}
switch (valueType.Type) {
case ECesiumMetadataType::Scalar:
return normalized
? scalarPropertyTablePropertyCallback<true, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback))
: scalarPropertyTablePropertyCallback<false, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
case ECesiumMetadataType::Vec2:
case ECesiumMetadataType::Vec3:
case ECesiumMetadataType::Vec4:
return normalized
? vecNPropertyTablePropertyCallback<true, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback))
: vecNPropertyTablePropertyCallback<false, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
case ECesiumMetadataType::Mat2:
case ECesiumMetadataType::Mat3:
case ECesiumMetadataType::Mat4:
return normalized
? matNPropertyTablePropertyCallback<true, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback))
: matNPropertyTablePropertyCallback<false, TResult, Callback>(
property,
valueType,
std::forward<Callback>(callback));
case ECesiumMetadataType::Boolean:
return propertyTablePropertyCallback<bool, false, TResult, Callback>(
property,
std::forward<Callback>(callback));
case ECesiumMetadataType::String:
return propertyTablePropertyCallback<
std::string_view,
false,
TResult,
Callback>(property, std::forward<Callback>(callback));
default:
return callback(CesiumGltf::PropertyTablePropertyView<uint8_t>());
}
}
} // namespace
ECesiumPropertyTablePropertyStatus
UCesiumPropertyTablePropertyBlueprintLibrary::GetPropertyTablePropertyStatus(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return Property._status;
}
ECesiumMetadataBlueprintType
UCesiumPropertyTablePropertyBlueprintLibrary::GetBlueprintType(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return CesiumMetadataValueTypeToBlueprintType(Property._valueType);
}
ECesiumMetadataBlueprintType
UCesiumPropertyTablePropertyBlueprintLibrary::GetArrayElementBlueprintType(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
if (!Property._valueType.bIsArray) {
return ECesiumMetadataBlueprintType::None;
}
FCesiumMetadataValueType valueType(Property._valueType);
valueType.bIsArray = false;
return CesiumMetadataValueTypeToBlueprintType(valueType);
}
FCesiumMetadataValueType
UCesiumPropertyTablePropertyBlueprintLibrary::GetValueType(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return Property._valueType;
}
int64 UCesiumPropertyTablePropertyBlueprintLibrary::GetPropertySize(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<int64>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> int64 { return view.size(); });
}
int64 UCesiumPropertyTablePropertyBlueprintLibrary::GetArraySize(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<int64>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> int64 { return view.arrayCount(); });
}
bool UCesiumPropertyTablePropertyBlueprintLibrary::GetBoolean(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
bool DefaultValue) {
return propertyTablePropertyCallback<bool>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, DefaultValue](const auto& v) -> bool {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<bool, decltype(value)>::
convert(value)
.value_or(DefaultValue);
}
return DefaultValue;
});
}
uint8 UCesiumPropertyTablePropertyBlueprintLibrary::GetByte(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
uint8 DefaultValue) {
return propertyTablePropertyCallback<uint8_t>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, DefaultValue](const auto& v) -> uint8 {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<uint8, decltype(value)>::
convert(value)
.value_or(DefaultValue);
}
return DefaultValue;
});
}
int32 UCesiumPropertyTablePropertyBlueprintLibrary::GetInteger(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
int32 DefaultValue) {
return propertyTablePropertyCallback<int32>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, DefaultValue](const auto& v) -> int32 {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<int32, decltype(value)>::
convert(value)
.value_or(DefaultValue);
}
return DefaultValue;
});
}
int64 UCesiumPropertyTablePropertyBlueprintLibrary::GetInteger64(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
int64 DefaultValue) {
return propertyTablePropertyCallback<int64>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, DefaultValue](const auto& v) -> int64 {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<int64_t, decltype(value)>::
convert(value)
.value_or(DefaultValue);
}
return DefaultValue;
});
}
float UCesiumPropertyTablePropertyBlueprintLibrary::GetFloat(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
float DefaultValue) {
return propertyTablePropertyCallback<float>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, DefaultValue](const auto& v) -> float {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<float, decltype(value)>::
convert(value)
.value_or(DefaultValue);
}
return DefaultValue;
});
}
double UCesiumPropertyTablePropertyBlueprintLibrary::GetFloat64(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
double DefaultValue) {
return propertyTablePropertyCallback<double>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, DefaultValue](const auto& v) -> double {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<double, decltype(value)>::
convert(value)
.value_or(DefaultValue);
}
return DefaultValue;
});
}
FIntPoint UCesiumPropertyTablePropertyBlueprintLibrary::GetIntPoint(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FIntPoint& DefaultValue) {
return propertyTablePropertyCallback<FIntPoint>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FIntPoint {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataString<decltype(value)>::value) {
return UnrealMetadataConversions::toIntPoint(value, DefaultValue);
} else {
auto maybeVec2 = CesiumGltf::
MetadataConversions<glm::ivec2, decltype(value)>::convert(value);
return maybeVec2 ? UnrealMetadataConversions::toIntPoint(*maybeVec2)
: DefaultValue;
}
});
}
FVector2D UCesiumPropertyTablePropertyBlueprintLibrary::GetVector2D(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FVector2D& DefaultValue) {
return propertyTablePropertyCallback<FVector2D>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FVector2D {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataString<decltype(value)>::value) {
return UnrealMetadataConversions::toVector2D(value, DefaultValue);
} else {
auto maybeVec2 = CesiumGltf::
MetadataConversions<glm::dvec2, decltype(value)>::convert(value);
return maybeVec2 ? UnrealMetadataConversions::toVector2D(*maybeVec2)
: DefaultValue;
}
});
}
FIntVector UCesiumPropertyTablePropertyBlueprintLibrary::GetIntVector(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FIntVector& DefaultValue) {
return propertyTablePropertyCallback<FIntVector>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FIntVector {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataString<decltype(value)>::value) {
return UnrealMetadataConversions::toIntVector(value, DefaultValue);
} else {
auto maybeVec3 = CesiumGltf::
MetadataConversions<glm::ivec3, decltype(value)>::convert(value);
return maybeVec3 ? UnrealMetadataConversions::toIntVector(*maybeVec3)
: DefaultValue;
}
});
}
FVector3f UCesiumPropertyTablePropertyBlueprintLibrary::GetVector3f(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FVector3f& DefaultValue) {
return propertyTablePropertyCallback<FVector3f>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FVector3f {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataString<decltype(value)>::value) {
return UnrealMetadataConversions::toVector3f(value, DefaultValue);
} else {
auto maybeVec3 = CesiumGltf::
MetadataConversions<glm::vec3, decltype(value)>::convert(value);
return maybeVec3 ? UnrealMetadataConversions::toVector3f(*maybeVec3)
: DefaultValue;
}
});
}
FVector UCesiumPropertyTablePropertyBlueprintLibrary::GetVector(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FVector& DefaultValue) {
return propertyTablePropertyCallback<FVector>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FVector {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataString<decltype(value)>::value) {
return UnrealMetadataConversions::toVector(value, DefaultValue);
} else {
auto maybeVec3 = CesiumGltf::
MetadataConversions<glm::dvec3, decltype(value)>::convert(value);
return maybeVec3 ? UnrealMetadataConversions::toVector(*maybeVec3)
: DefaultValue;
}
});
}
FVector4 UCesiumPropertyTablePropertyBlueprintLibrary::GetVector4(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FVector4& DefaultValue) {
return propertyTablePropertyCallback<FVector4>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FVector4 {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataString<decltype(value)>::value) {
return UnrealMetadataConversions::toVector4(value, DefaultValue);
} else {
auto maybeVec4 = CesiumGltf::
MetadataConversions<glm::dvec4, decltype(value)>::convert(value);
return maybeVec4 ? UnrealMetadataConversions::toVector4(*maybeVec4)
: DefaultValue;
}
});
}
FMatrix UCesiumPropertyTablePropertyBlueprintLibrary::GetMatrix(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FMatrix& DefaultValue) {
auto maybeMat4 = propertyTablePropertyCallback<std::optional<glm::dmat4>>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID](const auto& v) -> std::optional<glm::dmat4> {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return std::nullopt;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return std::nullopt;
}
auto value = *maybeValue;
return CesiumGltf::MetadataConversions<glm::dmat4, decltype(value)>::
convert(value);
});
return maybeMat4 ? UnrealMetadataConversions::toMatrix(*maybeMat4)
: DefaultValue;
}
FString UCesiumPropertyTablePropertyBlueprintLibrary::GetString(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID,
const FString& DefaultValue) {
return propertyTablePropertyCallback<FString>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID, &DefaultValue](const auto& v) -> FString {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return DefaultValue;
}
auto maybeValue = v.get(FeatureID);
if (!maybeValue) {
return DefaultValue;
}
auto value = *maybeValue;
using ValueType = decltype(value);
if constexpr (
CesiumGltf::IsMetadataVecN<ValueType>::value ||
CesiumGltf::IsMetadataMatN<ValueType>::value ||
CesiumGltf::IsMetadataString<ValueType>::value) {
return UnrealMetadataConversions::toString(value);
} else {
auto maybeString = CesiumGltf::
MetadataConversions<std::string, decltype(value)>::convert(value);
return maybeString ? UnrealMetadataConversions::toString(*maybeString)
: DefaultValue;
}
});
}
FCesiumPropertyArray UCesiumPropertyTablePropertyBlueprintLibrary::GetArray(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID) {
return propertyTablePropertyCallback<FCesiumPropertyArray>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID](const auto& v) -> FCesiumPropertyArray {
// size() returns zero if the view is invalid.
if (FeatureID < 0 || FeatureID >= v.size()) {
return FCesiumPropertyArray();
}
auto maybeValue = v.get(FeatureID);
if (maybeValue) {
auto value = *maybeValue;
if constexpr (CesiumGltf::IsMetadataArray<decltype(value)>::value) {
return FCesiumPropertyArray(std::move(value));
}
}
return FCesiumPropertyArray();
});
}
FCesiumMetadataValue UCesiumPropertyTablePropertyBlueprintLibrary::GetValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID](const auto& view) -> FCesiumMetadataValue {
// size() returns zero if the view is invalid.
if (FeatureID >= 0 && FeatureID < view.size()) {
return FCesiumMetadataValue(view.get(FeatureID));
}
return FCesiumMetadataValue();
});
}
FCesiumMetadataValue UCesiumPropertyTablePropertyBlueprintLibrary::GetRawValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[FeatureID](const auto& view) -> FCesiumMetadataValue {
// Return an empty value if the property is empty.
if (view.status() == CesiumGltf::PropertyTablePropertyViewStatus::
EmptyPropertyWithDefault) {
return FCesiumMetadataValue();
}
// size() returns zero if the view is invalid.
if (FeatureID >= 0 && FeatureID < view.size()) {
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.getRaw(FeatureID)));
}
return FCesiumMetadataValue();
});
}
bool UCesiumPropertyTablePropertyBlueprintLibrary::IsNormalized(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return Property._normalized;
}
FCesiumMetadataValue UCesiumPropertyTablePropertyBlueprintLibrary::GetOffset(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> FCesiumMetadataValue {
// Returns an empty value if no offset is specified.
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.offset()));
});
}
FCesiumMetadataValue UCesiumPropertyTablePropertyBlueprintLibrary::GetScale(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> FCesiumMetadataValue {
// Returns an empty value if no scale is specified.
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.scale()));
});
}
FCesiumMetadataValue
UCesiumPropertyTablePropertyBlueprintLibrary::GetMinimumValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> FCesiumMetadataValue {
// Returns an empty value if no min is specified.
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.min()));
});
}
FCesiumMetadataValue
UCesiumPropertyTablePropertyBlueprintLibrary::GetMaximumValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> FCesiumMetadataValue {
// Returns an empty value if no max is specified.
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.max()));
});
}
FCesiumMetadataValue
UCesiumPropertyTablePropertyBlueprintLibrary::GetNoDataValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> FCesiumMetadataValue {
// Returns an empty value if no "no data" value is specified.
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.noData()));
});
}
FCesiumMetadataValue
UCesiumPropertyTablePropertyBlueprintLibrary::GetDefaultValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return propertyTablePropertyCallback<FCesiumMetadataValue>(
Property._property,
Property._valueType,
Property._normalized,
[](const auto& view) -> FCesiumMetadataValue {
// Returns an empty value if no default value is specified.
return FCesiumMetadataValue(
CesiumGltf::propertyValueViewToCopy(view.defaultValue()));
});
}
PRAGMA_DISABLE_DEPRECATION_WARNINGS
ECesiumMetadataBlueprintType
UCesiumPropertyTablePropertyBlueprintLibrary::GetBlueprintComponentType(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return UCesiumPropertyTablePropertyBlueprintLibrary::
GetArrayElementBlueprintType(Property);
}
ECesiumMetadataTrueType_DEPRECATED
UCesiumPropertyTablePropertyBlueprintLibrary::GetTrueType(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return CesiumMetadataValueTypeToTrueType(Property._valueType);
}
ECesiumMetadataTrueType_DEPRECATED
UCesiumPropertyTablePropertyBlueprintLibrary::GetTrueComponentType(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
FCesiumMetadataValueType type = Property._valueType;
type.bIsArray = false;
return CesiumMetadataValueTypeToTrueType(type);
}
int64 UCesiumPropertyTablePropertyBlueprintLibrary::GetNumberOfFeatures(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return UCesiumPropertyTablePropertyBlueprintLibrary::GetPropertySize(
Property);
}
int64 UCesiumPropertyTablePropertyBlueprintLibrary::GetComponentCount(
UPARAM(ref) const FCesiumPropertyTableProperty& Property) {
return UCesiumPropertyTablePropertyBlueprintLibrary::GetArraySize(Property);
}
FCesiumMetadataValue
UCesiumPropertyTablePropertyBlueprintLibrary::GetGenericValue(
UPARAM(ref) const FCesiumPropertyTableProperty& Property,
int64 FeatureID) {
return UCesiumPropertyTablePropertyBlueprintLibrary::GetValue(
Property,
FeatureID);
}
PRAGMA_ENABLE_DEPRECATION_WARNINGS