79 const std::optional<std::string>&
name() const noexcept {
80 return _pPropertyTable->
name;
89 int64_t
size() const noexcept {
137 template <
typename T,
bool Normalized = false>
140 if (this->
size() <= 0) {
146 if (!pClassProperty) {
151 return getPropertyViewImpl<T, Normalized>(propertyId, *pClassProperty);
176 template <
typename Callback>
179 if (this->
size() <= 0) {
188 if (!pClassProperty) {
201 const auto& enumDefinitionIt =
202 this->_pEnumDefinitions->find(*pClassProperty->
enumType);
203 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
212 enumDefinitionIt->second.valueType);
245 if (pClassProperty->
array) {
247 getArrayPropertyViewImpl<Callback, true>(
252 std::forward<Callback>(callback));
254 getArrayPropertyViewImpl<Callback, false>(
259 std::forward<Callback>(callback));
266 getScalarPropertyViewImpl<Callback, true>(
270 std::forward<Callback>(callback));
272 getScalarPropertyViewImpl<Callback, false>(
276 std::forward<Callback>(callback));
283 getVecNPropertyViewImpl<Callback, true>(
288 std::forward<Callback>(callback));
290 getVecNPropertyViewImpl<Callback, false>(
295 std::forward<Callback>(callback));
302 getMatNPropertyViewImpl<Callback, true>(
307 std::forward<Callback>(callback));
309 getMatNPropertyViewImpl<Callback, false>(
314 std::forward<Callback>(callback));
322 getPropertyViewImpl<std::string_view, false>(
331 getPropertyViewImpl<bool, false>(propertyId, *pClassProperty));
363 for (
const auto& property : this->_pClass->
properties) {
369 template <
typename Callback,
bool Normalized>
370 void getScalarArrayPropertyViewImpl(
371 const std::string& propertyId,
374 Callback&& callback)
const {
375 switch (componentType) {
455 template <
typename Callback, glm::length_t N,
bool Normalized>
456 void getVecNArrayPropertyViewImpl(
457 const std::string& propertyId,
458 const ClassProperty& classProperty,
460 Callback&& callback)
const {
461 switch (componentType) {
466 PropertyArrayView<glm::vec<N, int8_t>>,
467 Normalized>(propertyId, classProperty));
473 PropertyArrayView<glm::vec<N, uint8_t>>,
474 Normalized>(propertyId, classProperty));
480 PropertyArrayView<glm::vec<N, int16_t>>,
481 Normalized>(propertyId, classProperty));
487 PropertyArrayView<glm::vec<N, uint16_t>>,
488 Normalized>(propertyId, classProperty));
494 PropertyArrayView<glm::vec<N, int32_t>>,
495 Normalized>(propertyId, classProperty));
501 PropertyArrayView<glm::vec<N, uint32_t>>,
502 Normalized>(propertyId, classProperty));
508 PropertyArrayView<glm::vec<N, int64_t>>,
509 Normalized>(propertyId, classProperty));
515 PropertyArrayView<glm::vec<N, uint64_t>>,
516 Normalized>(propertyId, classProperty));
521 getPropertyViewImpl<PropertyArrayView<glm::vec<N, float>>,
false>(
528 getPropertyViewImpl<PropertyArrayView<glm::vec<N, double>>,
false>(
535 PropertyTablePropertyView<uint8_t>(
541 template <
typename Callback,
bool Normalized>
542 void getVecNArrayPropertyViewImpl(
543 const std::string& propertyId,
544 const ClassProperty& classProperty,
547 Callback&& callback)
const {
551 getVecNArrayPropertyViewImpl<Callback, 2, Normalized>(
555 std::forward<Callback>(callback));
558 getVecNArrayPropertyViewImpl<Callback, 3, Normalized>(
562 std::forward<Callback>(callback));
565 getVecNArrayPropertyViewImpl<Callback, 4, Normalized>(
569 std::forward<Callback>(callback));
574 PropertyTablePropertyView<uint8_t>(
580 template <
typename Callback, glm::length_t N,
bool Normalized>
581 void getMatNArrayPropertyViewImpl(
582 const std::string& propertyId,
583 const ClassProperty& classProperty,
585 Callback&& callback)
const {
586 switch (componentType) {
591 PropertyArrayView<glm::mat<N, N, int8_t>>,
592 Normalized>(propertyId, classProperty));
598 PropertyArrayView<glm::mat<N, N, uint8_t>>,
599 Normalized>(propertyId, classProperty));
605 PropertyArrayView<glm::mat<N, N, int16_t>>,
606 Normalized>(propertyId, classProperty));
612 PropertyArrayView<glm::mat<N, N, uint16_t>>,
613 Normalized>(propertyId, classProperty));
619 PropertyArrayView<glm::mat<N, N, int32_t>>,
620 Normalized>(propertyId, classProperty));
626 PropertyArrayView<glm::mat<N, N, uint32_t>>,
627 Normalized>(propertyId, classProperty));
633 PropertyArrayView<glm::mat<N, N, int64_t>>,
634 Normalized>(propertyId, classProperty));
640 PropertyArrayView<glm::mat<N, N, uint64_t>>,
641 Normalized>(propertyId, classProperty));
646 getPropertyViewImpl<PropertyArrayView<glm::mat<N, N, float>>,
false>(
653 getPropertyViewImpl<PropertyArrayView<glm::mat<N, N, double>>,
false>(
660 PropertyTablePropertyView<uint8_t>(
666 template <
typename Callback,
bool Normalized>
667 void getMatNArrayPropertyViewImpl(
668 const std::string& propertyId,
669 const ClassProperty& classProperty,
672 Callback&& callback)
const {
676 getMatNArrayPropertyViewImpl<Callback, 2, Normalized>(
680 std::forward<Callback>(callback));
683 getMatNArrayPropertyViewImpl<Callback, 3, Normalized>(
687 std::forward<Callback>(callback));
690 getMatNArrayPropertyViewImpl<Callback, 4, Normalized>(
694 std::forward<Callback>(callback));
699 PropertyTablePropertyView<uint8_t>(
705 template <
typename Callback,
bool Normalized>
706 void getArrayPropertyViewImpl(
707 const std::string& propertyId,
708 const ClassProperty& classProperty,
711 Callback&& callback)
const {
713 getScalarArrayPropertyViewImpl<Callback, Normalized>(
717 std::forward<Callback>(callback));
719 getVecNArrayPropertyViewImpl<Callback, Normalized>(
724 std::forward<Callback>(callback));
726 getMatNArrayPropertyViewImpl<Callback, Normalized>(
731 std::forward<Callback>(callback));
735 getPropertyViewImpl<PropertyArrayView<bool>,
false>(
742 getPropertyViewImpl<PropertyArrayView<std::string_view>,
false>(
748 PropertyTablePropertyView<uint8_t>(
753 template <
typename Callback, glm::length_t N,
bool Normalized>
754 void getVecNPropertyViewImpl(
755 const std::string& propertyId,
756 const ClassProperty& classProperty,
758 Callback&& callback)
const {
760 switch (componentType) {
764 getPropertyViewImpl<glm::vec<N, int8_t>, Normalized>(
771 getPropertyViewImpl<glm::vec<N, uint8_t>, Normalized>(
778 getPropertyViewImpl<glm::vec<N, int16_t>, Normalized>(
785 getPropertyViewImpl<glm::vec<N, uint16_t>, Normalized>(
792 getPropertyViewImpl<glm::vec<N, int32_t>, Normalized>(
799 getPropertyViewImpl<glm::vec<N, uint32_t>, Normalized>(
806 getPropertyViewImpl<glm::vec<N, int64_t>, Normalized>(
813 getPropertyViewImpl<glm::vec<N, uint64_t>, Normalized>(
820 getPropertyViewImpl<glm::vec<N, float>,
false>(
827 getPropertyViewImpl<glm::vec<N, double>,
false>(
834 PropertyTablePropertyView<uint8_t>(
840 template <
typename Callback,
bool Normalized>
841 void getVecNPropertyViewImpl(
842 const std::string& propertyId,
843 const ClassProperty& classProperty,
846 Callback&& callback)
const {
850 getVecNPropertyViewImpl<Callback, 2, Normalized>(
854 std::forward<Callback>(callback));
857 getVecNPropertyViewImpl<Callback, 3, Normalized>(
861 std::forward<Callback>(callback));
864 getVecNPropertyViewImpl<Callback, 4, Normalized>(
868 std::forward<Callback>(callback));
873 PropertyTablePropertyView<uint8_t>(
879 template <
typename Callback, glm::length_t N,
bool Normalized>
880 void getMatNPropertyViewImpl(
881 const std::string& propertyId,
882 const ClassProperty& classProperty,
884 Callback&& callback)
const {
885 switch (componentType) {
889 getPropertyViewImpl<glm::mat<N, N, int8_t>, Normalized>(
896 getPropertyViewImpl<glm::mat<N, N, uint8_t>, Normalized>(
903 getPropertyViewImpl<glm::mat<N, N, int16_t>, Normalized>(
910 getPropertyViewImpl<glm::mat<N, N, uint16_t>, Normalized>(
917 getPropertyViewImpl<glm::mat<N, N, int32_t>, Normalized>(
924 getPropertyViewImpl<glm::mat<N, N, uint32_t>, Normalized>(
931 getPropertyViewImpl<glm::mat<N, N, int64_t>, Normalized>(
938 getPropertyViewImpl<glm::mat<N, N, uint64_t>, Normalized>(
945 getPropertyViewImpl<glm::mat<N, N, float>,
false>(
952 getPropertyViewImpl<glm::mat<N, N, double>,
false>(
959 PropertyTablePropertyView<uint8_t>(
965 template <
typename Callback,
bool Normalized>
966 void getMatNPropertyViewImpl(
967 const std::string& propertyId,
968 const ClassProperty& classProperty,
971 Callback&& callback)
const {
975 getMatNPropertyViewImpl<Callback, 2, Normalized>(
979 std::forward<Callback>(callback));
982 getMatNPropertyViewImpl<Callback, 3, Normalized>(
986 std::forward<Callback>(callback));
989 getMatNPropertyViewImpl<Callback, 4, Normalized>(
993 std::forward<Callback>(callback));
998 PropertyTablePropertyView<uint8_t>(
1004 template <
typename Callback,
bool Normalized>
1005 void getScalarPropertyViewImpl(
1006 const std::string& propertyId,
1007 const ClassProperty& classProperty,
1009 Callback&& callback)
const {
1010 switch (componentType) {
1014 getPropertyViewImpl<int8_t, Normalized>(propertyId, classProperty));
1019 getPropertyViewImpl<uint8_t, Normalized>(propertyId, classProperty));
1024 getPropertyViewImpl<int16_t, Normalized>(propertyId, classProperty));
1029 getPropertyViewImpl<uint16_t, Normalized>(propertyId, classProperty));
1034 getPropertyViewImpl<int32_t, Normalized>(propertyId, classProperty));
1039 getPropertyViewImpl<uint32_t, Normalized>(propertyId, classProperty));
1044 getPropertyViewImpl<int64_t, Normalized>(propertyId, classProperty));
1049 getPropertyViewImpl<uint64_t, Normalized>(propertyId, classProperty));
1054 getPropertyViewImpl<float, false>(propertyId, classProperty));
1059 getPropertyViewImpl<double, false>(propertyId, classProperty));
1064 PropertyTablePropertyView<uint8_t>(
1070 template <
typename T,
bool Normalized>
1071 PropertyTablePropertyView<T, Normalized> getPropertyViewImpl(
1072 const std::string& propertyId,
1073 const ClassProperty& classProperty)
const {
1074 auto propertyTablePropertyIter =
1075 _pPropertyTable->
properties.find(propertyId);
1076 if (propertyTablePropertyIter == _pPropertyTable->
properties.end()) {
1077 if (!classProperty.required && classProperty.defaultProperty) {
1081 return PropertyTablePropertyView<T, Normalized>(
1083 _pPropertyTable->
count);
1087 return PropertyTablePropertyView<T, Normalized>(
1091 const PropertyTableProperty& propertyTableProperty =
1092 propertyTablePropertyIter->second;
1094 if constexpr (IsMetadataNumeric<T>::value || IsMetadataBoolean<T>::value) {
1095 return getNumericOrBooleanPropertyValues<T, Normalized>(
1097 propertyTableProperty);
1100 if constexpr (IsMetadataString<T>::value) {
1101 return getStringPropertyValues(classProperty, propertyTableProperty);
1104 if constexpr (IsMetadataBooleanArray<T>::value) {
1105 return getBooleanArrayPropertyValues(
1107 propertyTableProperty);
1110 if constexpr (IsMetadataNumericArray<T>::value) {
1111 return getNumericArrayPropertyValues<
1113 Normalized>(classProperty, propertyTableProperty);
1116 if constexpr (IsMetadataStringArray<T>::value) {
1117 return getStringArrayPropertyValues(classProperty, propertyTableProperty);
1121 template <
typename T,
bool Normalized>
1122 PropertyTablePropertyView<T, Normalized> getNumericOrBooleanPropertyValues(
1123 const ClassProperty& classProperty,
1124 const PropertyTableProperty& propertyTableProperty)
const {
1125 if (classProperty.array) {
1126 return PropertyTablePropertyView<T, Normalized>(
1132 return PropertyTablePropertyView<T, Normalized>(
1137 classProperty.componentType.value_or(
""));
1140 const auto& enumDefinitionIt =
1141 this->_pEnumDefinitions->find(*classProperty.enumType);
1142 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
1143 return PropertyTablePropertyView<T, Normalized>(
1148 enumDefinitionIt->second.valueType);
1151 return PropertyTablePropertyView<T, Normalized>(
1154 pEnumDefinition = &enumDefinitionIt->second;
1156 return PropertyTablePropertyView<T, Normalized>(
1160 if (TypeToPropertyType<T>::component != componentType) {
1161 return PropertyTablePropertyView<T, Normalized>(
1165 if (classProperty.normalized != Normalized ||
1167 return PropertyTablePropertyView<T, Normalized>(
1171 std::span<const std::byte> values;
1172 const auto status = getBufferSafe(propertyTableProperty.values, values);
1174 return PropertyTablePropertyView<T, Normalized>(
status);
1177 if (values.size() %
sizeof(T) != 0) {
1178 return PropertyTablePropertyView<T, Normalized>(
1179 PropertyTablePropertyViewStatus::
1180 ErrorBufferViewSizeNotDivisibleByTypeSize);
1183 size_t maxRequiredBytes = 0;
1184 if (IsMetadataBoolean<T>::value) {
1185 maxRequiredBytes =
static_cast<size_t>(
1186 glm::ceil(
static_cast<double>(_pPropertyTable->
count) / 8.0));
1189 static_cast<size_t>(_pPropertyTable->
count) *
sizeof(T);
1192 if (values.size() < maxRequiredBytes) {
1193 return PropertyTablePropertyView<T, Normalized>(
1194 PropertyTablePropertyViewStatus::
1195 ErrorBufferViewSizeDoesNotMatchPropertyTableCount);
1198 if constexpr (!Normalized) {
1199 return PropertyTablePropertyView<T, Normalized>(
1200 propertyTableProperty,
1203 _pPropertyTable->
count,
1206 return PropertyTablePropertyView<T, Normalized>(
1207 propertyTableProperty,
1209 _pPropertyTable->
count,
1214 PropertyTablePropertyView<std::string_view> getStringPropertyValues(
1215 const ClassProperty& classProperty,
1216 const PropertyTableProperty& propertyTableProperty)
const;
1218 PropertyTablePropertyView<PropertyArrayView<bool>>
1219 getBooleanArrayPropertyValues(
1220 const ClassProperty& classProperty,
1221 const PropertyTableProperty& propertyTableProperty)
const;
1223 template <
typename T,
bool Normalized>
1224 PropertyTablePropertyView<PropertyArrayView<T>, Normalized>
1225 getNumericArrayPropertyValues(
1226 const ClassProperty& classProperty,
1227 const PropertyTableProperty& propertyTableProperty)
const {
1228 if (!classProperty.array) {
1229 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1235 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1240 classProperty.componentType.value_or(
""));
1243 const auto& enumDefinitionIt =
1244 this->_pEnumDefinitions->find(*classProperty.enumType);
1245 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
1246 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1251 enumDefinitionIt->second.valueType);
1255 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1258 pEnumDefinition = &enumDefinitionIt->second;
1260 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1264 if (TypeToPropertyType<T>::component != componentType) {
1265 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1269 if (classProperty.normalized != Normalized) {
1270 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1274 std::span<const std::byte> values;
1275 auto status = getBufferSafe(propertyTableProperty.values, values);
1277 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1281 if (values.size() %
sizeof(T) != 0) {
1282 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1287 const int64_t fixedLengthArrayCount = classProperty.count.value_or(0);
1288 if (fixedLengthArrayCount > 0 && propertyTableProperty.arrayOffsets >= 0) {
1289 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1294 if (fixedLengthArrayCount <= 0 && propertyTableProperty.arrayOffsets < 0) {
1295 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1301 if (fixedLengthArrayCount > 0) {
1302 size_t maxRequiredBytes =
1303 static_cast<size_t>(_pPropertyTable->
count * fixedLengthArrayCount) *
1306 if (values.size() < maxRequiredBytes) {
1307 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1312 if constexpr (!Normalized) {
1313 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1314 propertyTableProperty,
1317 _pPropertyTable->
count,
1320 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1321 propertyTableProperty,
1323 _pPropertyTable->
count,
1331 propertyTableProperty.arrayOffsetType);
1333 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1337 constexpr bool checkBitsSize =
false;
1338 std::span<const std::byte> arrayOffsets;
1339 status = getArrayOffsetsBufferSafe(
1340 propertyTableProperty.arrayOffsets,
1343 static_cast<size_t>(_pPropertyTable->
count),
1347 return PropertyTablePropertyView<PropertyArrayView<T>, Normalized>(
1351 if constexpr (Normalized) {
1352 return PropertyTablePropertyView<PropertyArrayView<T>,
true>(
1353 propertyTableProperty,
1355 _pPropertyTable->
count,
1360 return PropertyTablePropertyView<PropertyArrayView<T>,
false>(
1361 propertyTableProperty,
1364 _pPropertyTable->
count,
1367 std::span<const std::byte>(),
1373 PropertyTablePropertyView<PropertyArrayView<std::string_view>>
1374 getStringArrayPropertyValues(
1375 const ClassProperty& classProperty,
1376 const PropertyTableProperty& propertyTableProperty)
const;
1380 std::span<const std::byte>& buffer)
const noexcept;
1383 int32_t arrayOffsetsBufferView,
1385 size_t valuesBufferSize,
1386 size_t propertyTableCount,
1388 std::span<const std::byte>& arrayOffsetsBuffer)
const noexcept;
1391 int32_t stringOffsetsBufferView,
1393 size_t valuesBufferSize,
1394 size_t propertyTableCount,
1395 std::span<const std::byte>& stringOffsetsBuffer)
const noexcept;
1397 const Model* _pModel;
1398 const PropertyTable* _pPropertyTable;
1399 const Class* _pClass;
1400 const std::unordered_map<std::string, CesiumGltf::Enum>* _pEnumDefinitions;