72 lines
2.3 KiB
C
72 lines
2.3 KiB
C
|
|
// This file was generated by generate-classes.
|
||
|
|
// DO NOT EDIT THIS FILE!
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <CesiumGltf/Library.h>
|
||
|
|
#include <CesiumGltf/PropertyTextureProperty.h>
|
||
|
|
#include <CesiumUtility/ExtensibleObject.h>
|
||
|
|
|
||
|
|
#include <optional>
|
||
|
|
#include <string>
|
||
|
|
#include <unordered_map>
|
||
|
|
|
||
|
|
namespace CesiumGltf {
|
||
|
|
/**
|
||
|
|
* @brief Properties conforming to a class, organized as property values stored
|
||
|
|
* in textures.
|
||
|
|
*/
|
||
|
|
struct CESIUMGLTF_API PropertyTexture final
|
||
|
|
: public CesiumUtility::ExtensibleObject {
|
||
|
|
/**
|
||
|
|
* @brief The original name of this type.
|
||
|
|
*/
|
||
|
|
static constexpr const char* TypeName = "PropertyTexture";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief The name of the property texture, e.g. for display purposes.
|
||
|
|
*/
|
||
|
|
std::optional<std::string> name;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief The class that property values conform to. The value must be a class
|
||
|
|
* ID declared in the `classes` dictionary.
|
||
|
|
*/
|
||
|
|
std::string classProperty;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief A dictionary, where each key corresponds to a property ID in the
|
||
|
|
* class' `properties` dictionary and each value is an object describing where
|
||
|
|
* property values are stored. Required properties must be included in this
|
||
|
|
* dictionary.
|
||
|
|
*/
|
||
|
|
std::unordered_map<std::string, CesiumGltf::PropertyTextureProperty>
|
||
|
|
properties;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Calculates the size in bytes of this object, including the contents
|
||
|
|
* of all collections, pointers, and strings. This will NOT include the size
|
||
|
|
* of any extensions attached to the object. Calling this method may be slow
|
||
|
|
* as it requires traversing the object's entire structure.
|
||
|
|
*/
|
||
|
|
int64_t getSizeBytes() const {
|
||
|
|
int64_t accum = 0;
|
||
|
|
accum += int64_t(sizeof(PropertyTexture));
|
||
|
|
accum += CesiumUtility::ExtensibleObject::getSizeBytes() -
|
||
|
|
int64_t(sizeof(CesiumUtility::ExtensibleObject));
|
||
|
|
if (this->name) {
|
||
|
|
accum += int64_t(this->name->capacity() * sizeof(char));
|
||
|
|
}
|
||
|
|
accum += int64_t(this->classProperty.capacity() * sizeof(char));
|
||
|
|
accum += int64_t(
|
||
|
|
this->properties.bucket_count() *
|
||
|
|
(sizeof(std::string) + sizeof(CesiumGltf::PropertyTextureProperty)));
|
||
|
|
for (const auto& [k, v] : this->properties) {
|
||
|
|
accum += int64_t(k.capacity() * sizeof(char) - sizeof(std::string));
|
||
|
|
accum += v.getSizeBytes() -
|
||
|
|
int64_t(sizeof(CesiumGltf::PropertyTextureProperty));
|
||
|
|
}
|
||
|
|
return accum;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
} // namespace CesiumGltf
|