76 const std::optional<std::string>&
name() const noexcept {
77 return _pPropertyTexture->
name;
122 template <
typename T,
bool Normalized = false>
124 const std::string& propertyId,
132 if (!pClassProperty) {
137 return getPropertyViewImpl<T, Normalized>(
164 template <
typename Callback>
166 const std::string& propertyId,
178 if (!pClassProperty) {
203 if (pClassProperty->
array) {
205 getArrayPropertyViewImpl<Callback, true>(
210 std::forward<Callback>(callback),
213 getArrayPropertyViewImpl<Callback, false>(
218 std::forward<Callback>(callback),
226 getScalarPropertyViewImpl<Callback, true>(
230 std::forward<Callback>(callback),
233 getScalarPropertyViewImpl<Callback, false>(
237 std::forward<Callback>(callback),
245 getVecNPropertyViewImpl<Callback, true>(
250 std::forward<Callback>(callback),
253 getVecNPropertyViewImpl<Callback, false>(
258 std::forward<Callback>(callback),
293 template <
typename Callback>
297 for (
const auto& property : this->_pClass->
properties) {
300 std::forward<Callback>(callback),
306 template <
typename T,
bool Normalized>
308 const std::string& propertyId,
311 auto propertyTexturePropertyIter =
312 _pPropertyTexture->
properties.find(propertyId);
313 if (propertyTexturePropertyIter == _pPropertyTexture->
properties.end()) {
321 return PropertyTexturePropertyView<T, Normalized>(
325 const PropertyTextureProperty& propertyTextureProperty =
326 propertyTexturePropertyIter->second;
328 if constexpr (IsMetadataScalar<T>::value) {
329 return createScalarPropertyView<T, Normalized>(
331 propertyTextureProperty,
335 if constexpr (IsMetadataVecN<T>::value) {
336 return createVecNPropertyView<T, Normalized>(
338 propertyTextureProperty,
342 if constexpr (IsMetadataArray<T>::value) {
343 return createArrayPropertyView<
345 Normalized>(classProperty, propertyTextureProperty, propertyOptions);
349 template <
typename Callback,
bool Normalized>
350 void getArrayPropertyViewImpl(
351 const std::string& propertyId,
352 const ClassProperty& classProperty,
356 const TextureViewOptions& propertyOptions)
const {
361 PropertyTexturePropertyView<uint8_t>(
366 int64_t count = classProperty.count.value_or(0);
367 if (count <= 0 || count > 4) {
370 PropertyTexturePropertyView<uint8_t>(
375 switch (componentType) {
379 getPropertyViewImpl<PropertyArrayView<int8_t>, Normalized>(
387 getPropertyViewImpl<PropertyArrayView<uint8_t>, Normalized>(
395 getPropertyViewImpl<PropertyArrayView<int16_t>, Normalized>(
403 getPropertyViewImpl<PropertyArrayView<uint16_t>, Normalized>(
411 PropertyTexturePropertyView<uint8_t>(
417 template <
typename Callback,
bool Normalized>
418 void getScalarPropertyViewImpl(
419 const std::string& propertyId,
420 const ClassProperty& classProperty,
423 const TextureViewOptions& propertyOptions)
const {
424 switch (componentType) {
428 getPropertyViewImpl<int8_t, Normalized>(
436 getPropertyViewImpl<uint8_t, Normalized>(
444 getPropertyViewImpl<int16_t, Normalized>(
452 getPropertyViewImpl<uint16_t, Normalized>(
460 getPropertyViewImpl<int32_t, Normalized>(
468 getPropertyViewImpl<uint32_t, Normalized>(
476 getPropertyViewImpl<float, false>(
484 PropertyTexturePropertyView<uint8_t>(
490 template <
typename Callback, glm::length_t N,
bool Normalized>
491 void getVecNPropertyViewImpl(
492 const std::string& propertyId,
493 const ClassProperty& classProperty,
496 const TextureViewOptions& propertyOptions)
const {
497 switch (componentType) {
501 getPropertyViewImpl<glm::vec<N, int8_t>, Normalized>(
509 getPropertyViewImpl<glm::vec<N, uint8_t>, Normalized>(
515 if constexpr (N == 2) {
518 getPropertyViewImpl<glm::vec<N, int16_t>, Normalized>(
526 if constexpr (N == 2) {
529 getPropertyViewImpl<glm::vec<N, uint16_t>, Normalized>(
539 PropertyTexturePropertyView<uint8_t>(
545 template <
typename Callback,
bool Normalized>
546 void getVecNPropertyViewImpl(
547 const std::string& propertyId,
548 const ClassProperty& classProperty,
552 const TextureViewOptions& propertyOptions)
const {
556 getVecNPropertyViewImpl<Callback, 2, Normalized>(
560 std::forward<Callback>(callback),
564 getVecNPropertyViewImpl<Callback, 3, Normalized>(
568 std::forward<Callback>(callback),
572 getVecNPropertyViewImpl<Callback, 4, Normalized>(
576 std::forward<Callback>(callback),
582 PropertyTexturePropertyView<uint8_t>(
588 template <
typename T,
bool Normalized>
589 PropertyTexturePropertyView<T, Normalized> createScalarPropertyView(
590 const ClassProperty& classProperty,
591 [[maybe_unused]]
const PropertyTextureProperty& propertyTextureProperty,
592 const TextureViewOptions& propertyOptions)
const {
593 if (classProperty.array) {
594 return PropertyTexturePropertyView<T, Normalized>(
600 return PropertyTexturePropertyView<T, Normalized>(
605 classProperty.componentType.value_or(
""));
609 const auto& enumDefinitionIt =
610 this->_pEnumDefinitions->find(*classProperty.enumType);
611 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
612 return PropertyTexturePropertyView<T, Normalized>(
617 enumDefinitionIt->second.valueType);
618 pEnumDefinition = &enumDefinitionIt->second;
622 return PropertyTexturePropertyView<T, Normalized>(
626 return PropertyTexturePropertyView<T, Normalized>(
630 if (TypeToPropertyType<T>::component != componentType) {
631 return PropertyTexturePropertyView<T, Normalized>(
635 if (classProperty.normalized != Normalized) {
636 return PropertyTexturePropertyView<T, Normalized>(
641 if constexpr (
sizeof(T) <= 4) {
642 return createPropertyViewImpl<T, Normalized>(
644 propertyTextureProperty,
649 return PropertyTexturePropertyView<T, Normalized>(
654 template <
typename T,
bool Normalized>
655 PropertyTexturePropertyView<T, Normalized> createVecNPropertyView(
656 const ClassProperty& classProperty,
657 [[maybe_unused]]
const PropertyTextureProperty& propertyTextureProperty,
658 [[maybe_unused]]
const TextureViewOptions& propertyOptions)
const {
659 if (classProperty.array) {
660 return PropertyTexturePropertyView<T, Normalized>(
666 return PropertyTexturePropertyView<T, Normalized>(
672 classProperty.componentType.value_or(
""));
673 if (TypeToPropertyType<T>::component != componentType) {
674 return PropertyTexturePropertyView<T, Normalized>(
678 if (classProperty.normalized != Normalized) {
679 return PropertyTexturePropertyView<T, Normalized>(
684 if constexpr (
sizeof(T) <= 4) {
685 return createPropertyViewImpl<T, Normalized>(
687 propertyTextureProperty,
692 return PropertyTexturePropertyView<T, Normalized>(
697 template <
typename T,
bool Normalized>
698 PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>
699 createArrayPropertyView(
700 const ClassProperty& classProperty,
701 [[maybe_unused]]
const PropertyTextureProperty& propertyTextureProperty,
702 [[maybe_unused]]
const TextureViewOptions& propertyOptions)
const {
703 if (!classProperty.array) {
704 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
710 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
715 classProperty.componentType.value_or(
""));
719 const auto& enumDefinitionIt =
720 this->_pEnumDefinitions->find(*classProperty.enumType);
721 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
722 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
727 enumDefinitionIt->second.valueType);
728 pEnumDefinition = &enumDefinitionIt->second;
732 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
736 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
740 if (TypeToPropertyType<T>::component != componentType) {
741 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
745 if (classProperty.normalized != Normalized) {
746 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
752 if constexpr (IsMetadataScalar<T>::value &&
sizeof(T) <= 4) {
754 size_t count =
static_cast<size_t>(classProperty.count.value_or(0));
755 if (count <= 0 || count > 4) {
756 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
760 if (count *
sizeof(T) > 4) {
761 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
765 return createPropertyViewImpl<PropertyArrayView<T>, Normalized>(
767 propertyTextureProperty,
772 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
777 template <
typename T,
bool Normalized>
778 PropertyTexturePropertyView<T, Normalized> createPropertyViewImpl(
779 const ClassProperty& classProperty,
780 const PropertyTextureProperty& propertyTextureProperty,
782 const TextureViewOptions& propertyOptions,
784 int32_t samplerIndex;
788 getTextureSafe(propertyTextureProperty.index, samplerIndex, imageIndex);
791 return PropertyTexturePropertyView<T, Normalized>(
status);
794 status = checkSampler(samplerIndex);
796 return PropertyTexturePropertyView<T, Normalized>(
status);
799 status = checkImage(imageIndex);
801 return PropertyTexturePropertyView<T, Normalized>(
status);
805 _pModel->
images[
static_cast<size_t>(imageIndex)].pAsset;
806 const std::vector<int64_t>& channels = propertyTextureProperty.channels;
808 status = checkChannels(channels, *pImage);
810 return PropertyTexturePropertyView<T, Normalized>(
status);
813 if (channels.size() *
static_cast<size_t>(pImage->bytesPerChannel) !=
818 if constexpr (!Normalized) {
819 if (pEnumDefinition !=
nullptr) {
820 return PropertyTexturePropertyView<T, Normalized>(
821 propertyTextureProperty,
824 _pModel->
samplers[
static_cast<size_t>(samplerIndex)],
830 return PropertyTexturePropertyView<T, Normalized>(
831 propertyTextureProperty,
833 _pModel->
samplers[
static_cast<size_t>(samplerIndex)],
839 const int32_t textureIndex,
840 int32_t& samplerIndex,
841 int32_t& imageIndex)
const noexcept;
844 checkSampler(
const int32_t samplerIndex)
const noexcept;
849 const std::vector<int64_t>& channels,
850 const ImageAsset& image)
const noexcept;
852 const Model* _pModel;
853 const PropertyTexture* _pPropertyTexture;
854 const Class* _pClass;
855 const std::unordered_map<std::string, CesiumGltf::Enum>* _pEnumDefinitions;