file_path
stringlengths 21
207
| content
stringlengths 5
1.02M
| size
int64 5
1.02M
| lang
stringclasses 9
values | avg_line_length
float64 1.33
100
| max_line_length
int64 4
993
| alphanum_fraction
float64 0.27
0.93
|
---|---|---|---|---|---|---|
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricGeometryDescriptor.h | #pragma once
#include <cstdint>
#include <set>
namespace CesiumGltf {
struct MeshPrimitive;
struct Model;
} // namespace CesiumGltf
namespace cesium::omniverse {
struct FabricFeaturesInfo;
struct FabricVertexAttributeDescriptor;
/**
* @brief A descriptor used to initialize a {@link FabricGeometry} and {@link FabricGeometryPool}.
*
* The descriptor uniquely identifies the topology of a {@link FabricGeometry} i.e. what Fabric
* attributes are added to the prim, but not the actual values.
*
* Geometries that have the same geometry descriptor will be assigned to the same geometry pool.
* To reduce the number of geometry pools that are needed the list of member variables should be
* as limited as possible.
*/
class FabricGeometryDescriptor {
public:
FabricGeometryDescriptor(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
const FabricFeaturesInfo& featuresInfo,
bool smoothNormals);
[[nodiscard]] bool hasNormals() const;
[[nodiscard]] bool hasVertexColors() const;
[[nodiscard]] bool hasVertexIds() const;
[[nodiscard]] uint64_t getTexcoordSetCount() const;
[[nodiscard]] const std::set<FabricVertexAttributeDescriptor>& getCustomVertexAttributes() const;
bool operator==(const FabricGeometryDescriptor& other) const;
private:
bool _hasNormals{false};
bool _hasVertexColors{false};
bool _hasVertexIds{false};
uint64_t _texcoordSetCount{0};
// std::set is sorted which is important for checking FabricGeometryDescriptor equality
// Note that features ids are treated as custom vertex attributes since they don't have specific parsing behavior
std::set<FabricVertexAttributeDescriptor> _customVertexAttributes;
};
} // namespace cesium::omniverse
| 1,783 | C | 32.037036 | 117 | 0.751542 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricPropertyInfo.h | #pragma once
#include "cesium/omniverse/DataType.h"
#include "cesium/omniverse/DataTypeUtil.h"
#include "cesium/omniverse/FabricTextureInfo.h"
namespace cesium::omniverse {
template <DataType T> struct FabricPropertyInfo {
std::optional<DataTypeUtil::GetNativeType<DataTypeUtil::getTransformedType<T>()>> offset;
std::optional<DataTypeUtil::GetNativeType<DataTypeUtil::getTransformedType<T>()>> scale;
std::optional<DataTypeUtil::GetNativeType<DataTypeUtil::getTransformedType<T>()>> min;
std::optional<DataTypeUtil::GetNativeType<DataTypeUtil::getTransformedType<T>()>> max;
bool required;
std::optional<DataTypeUtil::GetNativeType<T>> noData;
std::optional<DataTypeUtil::GetNativeType<DataTypeUtil::getTransformedType<T>()>> defaultValue;
};
template <DataType T> struct FabricPropertyAttributePropertyInfo {
static constexpr auto Type = T;
std::string attribute;
FabricPropertyInfo<T> propertyInfo;
};
template <DataType T> struct FabricPropertyTexturePropertyInfo {
static constexpr auto Type = T;
FabricTextureInfo textureInfo;
uint64_t textureIndex;
FabricPropertyInfo<T> propertyInfo;
};
template <DataType T> struct FabricPropertyTablePropertyInfo {
static constexpr auto Type = T;
uint64_t featureIdSetIndex;
FabricPropertyInfo<T> propertyInfo;
};
} // namespace cesium::omniverse
| 1,365 | C | 34.02564 | 99 | 0.7663 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricAttributesBuilder.h | #pragma once
#include <omni/fabric/AttrNameAndType.h>
namespace omni::fabric {
class StageReaderWriter;
}
namespace cesium::omniverse {
class Context;
class FabricAttributesBuilder {
public:
FabricAttributesBuilder(Context* pContext);
~FabricAttributesBuilder() = default;
FabricAttributesBuilder(const FabricAttributesBuilder&) = delete;
FabricAttributesBuilder& operator=(const FabricAttributesBuilder&) = delete;
FabricAttributesBuilder(FabricAttributesBuilder&&) noexcept = default;
FabricAttributesBuilder& operator=(FabricAttributesBuilder&&) noexcept = default;
void addAttribute(const omni::fabric::Type& type, const omni::fabric::Token& name);
void createAttributes(const omni::fabric::Path& path) const;
private:
static const uint64_t MAX_ATTRIBUTES{30};
uint64_t _size{0};
std::array<omni::fabric::AttrNameAndType, MAX_ATTRIBUTES> _attributes;
Context* _pContext;
};
} // namespace cesium::omniverse
| 971 | C | 28.454545 | 87 | 0.753862 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/OmniPolygonRasterOverlay.h | #pragma once
#include "cesium/omniverse/OmniRasterOverlay.h"
#include <Cesium3DTilesSelection/RasterizedPolygonsTileExcluder.h>
#include <CesiumRasterOverlays/RasterizedPolygonsOverlay.h>
#include <CesiumUtility/IntrusivePointer.h>
namespace cesium::omniverse {
class OmniPolygonRasterOverlay final : public OmniRasterOverlay {
public:
OmniPolygonRasterOverlay(Context* pContext, const pxr::SdfPath& path);
~OmniPolygonRasterOverlay() override = default;
OmniPolygonRasterOverlay(const OmniPolygonRasterOverlay&) = delete;
OmniPolygonRasterOverlay& operator=(const OmniPolygonRasterOverlay&) = delete;
OmniPolygonRasterOverlay(OmniPolygonRasterOverlay&&) noexcept = default;
OmniPolygonRasterOverlay& operator=(OmniPolygonRasterOverlay&&) noexcept = default;
[[nodiscard]] std::vector<pxr::SdfPath> getCartographicPolygonPaths() const;
[[nodiscard]] CesiumRasterOverlays::RasterOverlay* getRasterOverlay() const override;
[[nodiscard]] bool getInvertSelection() const;
[[nodiscard]] bool getExcludeSelectedTiles() const;
[[nodiscard]] std::shared_ptr<Cesium3DTilesSelection::RasterizedPolygonsTileExcluder> getExcluder();
void reload() override;
private:
CesiumUtility::IntrusivePointer<CesiumRasterOverlays::RasterizedPolygonsOverlay> _pPolygonRasterOverlay;
std::shared_ptr<Cesium3DTilesSelection::RasterizedPolygonsTileExcluder> _pExcluder;
};
} // namespace cesium::omniverse
| 1,446 | C | 44.218749 | 108 | 0.797372 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/Broadcast.h | #pragma once
// clang-format off
// carb/events/IObject.h should include this
#include <utility>
// clang-format on
#include <carb/events/IEvents.h>
#include <pxr/usd/usd/common.h>
namespace cesium::omniverse::Broadcast {
void assetsUpdated();
void connectionUpdated();
void profileUpdated();
void tokensUpdated();
void showTroubleshooter(
const pxr::SdfPath& tilesetPath,
int64_t tilesetIonAssetId,
const std::string& tilesetName,
int64_t rasterOverlayIonAssetId,
const std::string& rasterOverlayName,
const std::string& message);
void setDefaultTokenComplete();
void tilesetLoaded(const pxr::SdfPath& tilesetPath);
void sendMessageToBus(carb::events::EventType eventType);
void sendMessageToBus(const std::string_view& eventKey);
} // namespace cesium::omniverse::Broadcast
| 805 | C | 25.866666 | 57 | 0.762733 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricTexture.h | #pragma once
#include <carb/RenderingTypes.h>
#include <pxr/base/tf/token.h>
#include <memory>
#include <string>
namespace omni::ui {
class DynamicTextureProvider;
}
namespace CesiumGltf {
struct ImageCesium;
}
namespace cesium::omniverse {
class Context;
enum class TransferFunction {
LINEAR,
SRGB,
};
class FabricTexture {
public:
FabricTexture(Context* pContext, const std::string& name, int64_t poolId);
~FabricTexture();
FabricTexture(const FabricTexture&) = delete;
FabricTexture& operator=(const FabricTexture&) = delete;
FabricTexture(FabricTexture&&) noexcept = default;
FabricTexture& operator=(FabricTexture&&) noexcept = default;
void setImage(const CesiumGltf::ImageCesium& image, TransferFunction transferFunction);
void setBytes(const std::vector<std::byte>& bytes, uint64_t width, uint64_t height, carb::Format format);
void setActive(bool active);
[[nodiscard]] const pxr::TfToken& getAssetPathToken() const;
[[nodiscard]] int64_t getPoolId() const;
private:
void reset();
Context* _pContext;
std::unique_ptr<omni::ui::DynamicTextureProvider> _pTexture;
pxr::TfToken _assetPathToken;
int64_t _poolId;
};
} // namespace cesium::omniverse
| 1,243 | C | 22.923076 | 109 | 0.716814 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/ObjectPool.h | #pragma once
#include <cassert>
#include <memory>
#include <queue>
namespace cesium::omniverse {
template <typename T> class ObjectPool {
public:
ObjectPool() = default;
virtual ~ObjectPool() = default;
std::shared_ptr<T> acquire() {
const auto percentActive = computePercentActive();
if (percentActive > _doublingThreshold) {
// Capacity is initially 0, so make sure the new capacity is at least 1
const auto newCapacity = std::max(_capacity * 2, uint64_t(1));
setCapacity(newCapacity);
}
auto pObject = _queue.front();
_queue.pop_front();
setActive(pObject.get(), true);
return pObject;
}
void release(std::shared_ptr<T> pObject) {
_queue.push_back(pObject);
setActive(pObject.get(), false);
}
[[nodiscard]] uint64_t getCapacity() const {
return _capacity;
}
[[nodiscard]] uint64_t getNumberActive() const {
return getCapacity() - getNumberInactive();
}
[[nodiscard]] uint64_t getNumberInactive() const {
return _queue.size();
}
[[nodiscard]] bool isEmpty() const {
return getNumberInactive() == getCapacity();
}
[[nodiscard]] double computePercentActive() const {
const auto numberActive = static_cast<double>(getNumberActive());
const auto capacity = static_cast<double>(getCapacity());
if (capacity == 0) {
return 1.0;
}
return numberActive / capacity;
}
void setCapacity(uint64_t capacity) {
const auto oldCapacity = _capacity;
const auto newCapacity = capacity;
assert(newCapacity >= oldCapacity);
if (newCapacity <= oldCapacity) {
// We can't shrink capacity because it would mean destroying objects currently in use
return;
}
const auto count = newCapacity - oldCapacity;
for (uint64_t i = 0; i < count; ++i) {
_queue.push_back(createObject(_objectId++));
++_capacity;
}
}
protected:
virtual std::shared_ptr<T> createObject(uint64_t objectId) const = 0;
virtual void setActive(T* pObject, bool active) const = 0;
const std::deque<std::shared_ptr<T>>& getQueue() {
return _queue;
}
private:
std::deque<std::shared_ptr<T>> _queue;
uint64_t _objectId{0};
uint64_t _capacity{0};
double _doublingThreshold{0.75};
};
} // namespace cesium::omniverse
| 2,500 | C | 24.520408 | 97 | 0.5976 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/OmniGlobeAnchor.h | #pragma once
#include <CesiumGeospatial/Cartographic.h>
#include <glm/glm.hpp>
#include <glm/gtc/quaternion.hpp>
#include <pxr/usd/sdf/path.h>
namespace CesiumGeospatial {
class GlobeAnchor;
class Ellipsoid;
} // namespace CesiumGeospatial
namespace cesium::omniverse {
class Context;
class OmniGlobeAnchor {
public:
OmniGlobeAnchor(Context* pContext, const pxr::SdfPath& path);
~OmniGlobeAnchor();
OmniGlobeAnchor(const OmniGlobeAnchor&) = delete;
OmniGlobeAnchor& operator=(const OmniGlobeAnchor&) = delete;
OmniGlobeAnchor(OmniGlobeAnchor&&) noexcept = default;
OmniGlobeAnchor& operator=(OmniGlobeAnchor&&) noexcept = default;
[[nodiscard]] const pxr::SdfPath& getPath() const;
[[nodiscard]] bool getDetectTransformChanges() const;
[[nodiscard]] bool getAdjustOrientation() const;
[[nodiscard]] pxr::SdfPath getResolvedGeoreferencePath() const;
void updateByEcefPosition();
void updateByGeographicCoordinates();
void updateByPrimLocalTransform(bool resetOrientation);
void updateByGeoreference();
private:
[[nodiscard]] bool isAnchorValid() const;
void initialize();
void finalize();
[[nodiscard]] glm::dvec3 getPrimLocalToEcefTranslation() const;
[[nodiscard]] CesiumGeospatial::Cartographic getGeographicCoordinates() const;
[[nodiscard]] glm::dvec3 getPrimLocalTranslation() const;
[[nodiscard]] glm::dvec3 getPrimLocalRotation() const;
[[nodiscard]] glm::dquat getPrimLocalOrientation() const;
[[nodiscard]] glm::dvec3 getPrimLocalScale() const;
void savePrimLocalToEcefTranslation();
void saveGeographicCoordinates();
void savePrimLocalTransform();
Context* _pContext;
pxr::SdfPath _path;
std::unique_ptr<CesiumGeospatial::GlobeAnchor> _pAnchor;
// These are used for quick comparisons, so we can short circuit successive updates.
glm::dvec3 _cachedPrimLocalToEcefTranslation{0.0};
glm::dvec3 _cachedPrimLocalToEcefRotation{0.0};
glm::dvec3 _cachedPrimLocalToEcefScale{1.0};
CesiumGeospatial::Cartographic _cachedGeographicCoordinates{0.0, 0.0, 0.0};
glm::dvec3 _cachedPrimLocalTranslation{0.0};
glm::dvec3 _cachedPrimLocalRotation{0.0, 0.0, 0.0};
glm::dquat _cachedPrimLocalOrientation{1.0, 0.0, 0.0, 0.0};
glm::dvec3 _cachedPrimLocalScale{1.0};
};
} // namespace cesium::omniverse
| 2,361 | C | 33.735294 | 88 | 0.733587 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/Viewport.h | #pragma once
#include <glm/glm.hpp>
namespace cesium::omniverse {
struct Viewport {
glm::dmat4 viewMatrix;
glm::dmat4 projMatrix;
double width;
double height;
};
} // namespace cesium::omniverse
| 215 | C | 13.399999 | 32 | 0.683721 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/MathUtil.h | #pragma once
#include <glm/glm.hpp>
#include <glm/gtc/quaternion.hpp>
#include <array>
namespace CesiumGeospatial {
class Cartographic;
}
namespace cesium::omniverse::MathUtil {
enum class EulerAngleOrder {
XYZ,
XZY,
YXZ,
YZX,
ZXY,
ZYX,
};
struct DecomposedEuler {
glm::dvec3 translation;
glm::dvec3 rotation;
glm::dvec3 scale;
};
struct Decomposed {
glm::dvec3 translation;
glm::dquat rotation;
glm::dvec3 scale;
};
EulerAngleOrder getReversedEulerAngleOrder(EulerAngleOrder eulerAngleOrder);
DecomposedEuler decomposeEuler(const glm::dmat4& matrix, EulerAngleOrder eulerAngleOrder);
Decomposed decompose(const glm::dmat4& matrix);
glm::dmat4 composeEuler(
const glm::dvec3& translation,
const glm::dvec3& rotation,
const glm::dvec3& scale,
EulerAngleOrder eulerAngleOrder);
glm::dmat4 compose(const glm::dvec3& translation, const glm::dquat& rotation, const glm::dvec3& scale);
bool equal(const CesiumGeospatial::Cartographic& a, const CesiumGeospatial::Cartographic& b);
bool epsilonEqual(const CesiumGeospatial::Cartographic& a, const CesiumGeospatial::Cartographic& b, double epsilon);
bool epsilonEqual(const glm::dmat4& a, const glm::dmat4& b, double epsilon);
bool epsilonEqual(const glm::dvec3& a, const glm::dvec3& b, double epsilon);
bool epsilonEqual(const glm::dquat& a, const glm::dquat& b, double epsilon);
glm::dvec3 getCorner(const std::array<glm::dvec3, 2>& extent, uint64_t index);
std::array<glm::dvec3, 2> transformExtent(const std::array<glm::dvec3, 2>& extent, const glm::dmat4& transform);
} // namespace cesium::omniverse::MathUtil
| 1,635 | C | 27.206896 | 116 | 0.738226 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricTexturePool.h | #pragma once
#include "cesium/omniverse/FabricTexture.h"
#include "cesium/omniverse/ObjectPool.h"
namespace cesium::omniverse {
class FabricTexturePool final : public ObjectPool<FabricTexture> {
public:
FabricTexturePool(Context* pContext, int64_t poolId, uint64_t initialCapacity);
~FabricTexturePool() override = default;
FabricTexturePool(const FabricTexturePool&) = delete;
FabricTexturePool& operator=(const FabricTexturePool&) = delete;
FabricTexturePool(FabricTexturePool&&) noexcept = default;
FabricTexturePool& operator=(FabricTexturePool&&) noexcept = default;
[[nodiscard]] int64_t getPoolId() const;
protected:
[[nodiscard]] std::shared_ptr<FabricTexture> createObject(uint64_t objectId) const override;
void setActive(FabricTexture* pTexture, bool active) const override;
private:
Context* _pContext;
int64_t _poolId;
};
} // namespace cesium::omniverse
| 925 | C | 30.931033 | 96 | 0.75027 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/OmniCartographicPolygon.h | #pragma once
#include <glm/fwd.hpp>
#include <pxr/usd/sdf/path.h>
namespace CesiumGeospatial {
class Cartographic;
}
namespace cesium::omniverse {
class Context;
class OmniCartographicPolygon {
public:
OmniCartographicPolygon(Context* pContext, const pxr::SdfPath& path);
~OmniCartographicPolygon() = default;
OmniCartographicPolygon(const OmniCartographicPolygon&) = delete;
OmniCartographicPolygon& operator=(const OmniCartographicPolygon&) = delete;
OmniCartographicPolygon(OmniCartographicPolygon&&) noexcept = default;
OmniCartographicPolygon& operator=(OmniCartographicPolygon&&) noexcept = default;
[[nodiscard]] const pxr::SdfPath& getPath() const;
[[nodiscard]] std::vector<CesiumGeospatial::Cartographic> getCartographics() const;
private:
Context* _pContext;
pxr::SdfPath _path;
};
} // namespace cesium::omniverse
| 877 | C | 27.32258 | 87 | 0.753706 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/LoggerSink.h | #pragma once
// clang-format off
// Needs to go above Omniverse headers
#include <cctype>
// clang-format on
#include <omni/log/ILog.h>
#include <spdlog/details/null_mutex.h>
#include <spdlog/sinks/base_sink.h>
#include <mutex>
#include <string>
namespace cesium::omniverse {
class LoggerSink final : public spdlog::sinks::base_sink<spdlog::details::null_mutex> {
public:
LoggerSink(omni::log::Level logLevel);
protected:
void sink_it_(const spdlog::details::log_msg& msg) override;
void flush_() override;
private:
std::string formatMessage(const spdlog::details::log_msg& msg);
std::mutex _formatMutex;
omni::log::Level _logLevel;
};
} // namespace cesium::omniverse
| 709 | C | 19.882352 | 87 | 0.702398 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricPropertyDescriptor.h | #pragma once
#include "cesium/omniverse/DataType.h"
#include <string>
namespace cesium::omniverse {
enum class FabricPropertyStorageType {
ATTRIBUTE,
TEXTURE,
TABLE,
};
struct FabricPropertyDescriptor {
FabricPropertyStorageType storageType;
MdlInternalPropertyType type;
std::string propertyId;
uint64_t featureIdSetIndex; // Only relevant for property tables
// Make sure to update this function when adding new fields to the struct
// In C++ 20 we can use the default equality comparison (= default)
// clang-format off
bool operator==(const FabricPropertyDescriptor& other) const {
return storageType == other.storageType &&
type == other.type &&
propertyId == other.propertyId &&
featureIdSetIndex == other.featureIdSetIndex;
}
// clang-format on
};
} // namespace cesium::omniverse
| 900 | C | 25.499999 | 77 | 0.684444 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/OmniWebMapTileServiceRasterOverlay.h | #pragma once
#include "cesium/omniverse/OmniRasterOverlay.h"
#include <CesiumRasterOverlays/WebMapTileServiceRasterOverlay.h>
#include <CesiumUtility/IntrusivePointer.h>
#include <string>
namespace cesium::omniverse {
class OmniWebMapTileServiceRasterOverlay final : public OmniRasterOverlay {
public:
OmniWebMapTileServiceRasterOverlay(Context* pContext, const pxr::SdfPath& path);
~OmniWebMapTileServiceRasterOverlay() override = default;
OmniWebMapTileServiceRasterOverlay(const OmniWebMapTileServiceRasterOverlay&) = delete;
OmniWebMapTileServiceRasterOverlay& operator=(const OmniWebMapTileServiceRasterOverlay&) = delete;
OmniWebMapTileServiceRasterOverlay(OmniWebMapTileServiceRasterOverlay&&) noexcept = default;
OmniWebMapTileServiceRasterOverlay& operator=(OmniWebMapTileServiceRasterOverlay&&) noexcept = default;
[[nodiscard]] CesiumRasterOverlays::RasterOverlay* getRasterOverlay() const override;
[[nodiscard]] std::string getUrl() const;
[[nodiscard]] std::string getLayer() const;
[[nodiscard]] std::string getTileMatrixSetId() const;
[[nodiscard]] std::string getStyle() const;
[[nodiscard]] std::string getFormat() const;
[[nodiscard]] int getMinimumZoomLevel() const;
[[nodiscard]] int getMaximumZoomLevel() const;
[[nodiscard]] bool getSpecifyZoomLevels() const;
[[nodiscard]] bool getUseWebMercatorProjection() const;
[[nodiscard]] bool getSpecifyTilingScheme() const;
[[nodiscard]] double getNorth() const;
[[nodiscard]] double getSouth() const;
[[nodiscard]] double getEast() const;
[[nodiscard]] double getWest() const;
[[nodiscard]] bool getSpecifyTileMatrixSetLabels() const;
[[nodiscard]] std::string getTileMatrixSetLabelPrefix() const;
[[nodiscard]] std::vector<std::string> getTileMatrixSetLabels() const;
[[nodiscard]] int getRootTilesX() const;
[[nodiscard]] int getRootTilesY() const;
void reload() override;
private:
CesiumUtility::IntrusivePointer<CesiumRasterOverlays::WebMapTileServiceRasterOverlay>
_pWebMapTileServiceRasterOverlay;
};
} // namespace cesium::omniverse
| 2,139 | C | 42.673469 | 107 | 0.758298 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/RenderStatistics.h | #pragma once
#include <cstdint>
namespace cesium::omniverse {
struct RenderStatistics {
uint64_t materialsCapacity{0};
uint64_t materialsLoaded{0};
uint64_t geometriesCapacity{0};
uint64_t geometriesLoaded{0};
uint64_t geometriesRendered{0};
uint64_t trianglesLoaded{0};
uint64_t trianglesRendered{0};
uint64_t tilesetCachedBytes{0};
uint64_t tilesVisited{0};
uint64_t culledTilesVisited{0};
uint64_t tilesRendered{0};
uint64_t tilesCulled{0};
uint64_t maxDepthVisited{0};
uint64_t tilesLoadingWorker{0};
uint64_t tilesLoadingMain{0};
uint64_t tilesLoaded{0};
};
} // namespace cesium::omniverse
| 664 | C | 23.629629 | 35 | 0.707831 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricMesh.h | #pragma once
#include "cesium/omniverse/FabricFeaturesInfo.h"
#include "cesium/omniverse/FabricMaterialInfo.h"
#include <memory>
#include <unordered_map>
#include <vector>
namespace cesium::omniverse {
class FabricGeometry;
class FabricMaterial;
class FabricTexture;
struct FabricMesh {
FabricMesh() = default;
~FabricMesh() = default;
FabricMesh(const FabricMesh&) = delete;
FabricMesh& operator=(const FabricMesh&) = delete;
FabricMesh(FabricMesh&&) noexcept = default;
FabricMesh& operator=(FabricMesh&&) noexcept = default;
std::shared_ptr<FabricGeometry> pGeometry;
std::shared_ptr<FabricMaterial> pMaterial;
std::shared_ptr<FabricTexture> pBaseColorTexture;
std::vector<std::shared_ptr<FabricTexture>> featureIdTextures;
std::vector<std::shared_ptr<FabricTexture>> propertyTextures;
std::vector<std::shared_ptr<FabricTexture>> propertyTableTextures;
FabricMaterialInfo materialInfo;
FabricFeaturesInfo featuresInfo;
std::unordered_map<uint64_t, uint64_t> texcoordIndexMapping;
std::unordered_map<uint64_t, uint64_t> rasterOverlayTexcoordIndexMapping;
std::vector<uint64_t> featureIdIndexSetIndexMapping;
std::vector<uint64_t> featureIdAttributeSetIndexMapping;
std::vector<uint64_t> featureIdTextureSetIndexMapping;
std::unordered_map<uint64_t, uint64_t> propertyTextureIndexMapping;
};
} // namespace cesium::omniverse
| 1,413 | C | 33.487804 | 77 | 0.760793 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricMaterialInfo.h | #pragma once
#include "cesium/omniverse/FabricTextureInfo.h"
#include <glm/glm.hpp>
#include <optional>
#ifdef CESIUM_OMNI_MSVC
#pragma push_macro("OPAQUE")
#undef OPAQUE
#endif
namespace cesium::omniverse {
/**
* @brief Matches gltf_alpha_mode in gltf/pbr.mdl.
*/
enum class FabricAlphaMode : int {
OPAQUE = 0,
MASK = 1,
BLEND = 2,
};
/**
* @brief Material values parsed from a glTF material passed to {@link FabricMaterial::setMaterial}.
*/
struct FabricMaterialInfo {
double alphaCutoff;
FabricAlphaMode alphaMode;
double baseAlpha;
glm::dvec3 baseColorFactor;
glm::dvec3 emissiveFactor;
double metallicFactor;
double roughnessFactor;
bool doubleSided;
bool hasVertexColors;
std::optional<FabricTextureInfo> baseColorTexture;
// Make sure to update this function when adding new fields to the struct
// In C++ 20 we can use the default equality comparison (= default)
// clang-format off
bool operator==(const FabricMaterialInfo& other) const {
return alphaCutoff == other.alphaCutoff &&
alphaMode == other.alphaMode &&
baseAlpha == other.baseAlpha &&
baseColorFactor == other.baseColorFactor &&
emissiveFactor == other.emissiveFactor &&
metallicFactor == other.metallicFactor &&
roughnessFactor == other.roughnessFactor &&
doubleSided == other.doubleSided &&
hasVertexColors == other.hasVertexColors &&
baseColorTexture == other.baseColorTexture;
}
// clang-format on
};
} // namespace cesium::omniverse
| 1,636 | C | 26.745762 | 99 | 0.661369 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/OmniIonServer.h | #pragma once
#include <pxr/usd/sdf/path.h>
namespace CesiumIonClient {
struct Token;
}
namespace cesium::omniverse {
class CesiumIonSession;
class Context;
class OmniIonServer {
public:
OmniIonServer(Context* pContext, const pxr::SdfPath& path);
~OmniIonServer() = default;
OmniIonServer(const OmniIonServer&) = delete;
OmniIonServer& operator=(const OmniIonServer&) = delete;
OmniIonServer(OmniIonServer&&) noexcept = default;
OmniIonServer& operator=(OmniIonServer&&) noexcept = default;
[[nodiscard]] const pxr::SdfPath& getPath() const;
[[nodiscard]] std::string getIonServerUrl() const;
[[nodiscard]] std::string getIonServerApiUrl() const;
[[nodiscard]] int64_t getIonServerApplicationId() const;
[[nodiscard]] CesiumIonClient::Token getToken() const;
void setToken(const CesiumIonClient::Token& token);
[[nodiscard]] std::shared_ptr<CesiumIonSession> getSession() const;
private:
Context* _pContext;
pxr::SdfPath _path;
std::shared_ptr<CesiumIonSession> _session;
};
} // namespace cesium::omniverse
| 1,084 | C | 26.820512 | 71 | 0.71679 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricRasterOverlaysInfo.h | #pragma once
#include <vector>
namespace cesium::omniverse {
enum class FabricOverlayRenderMethod {
OVERLAY = 0,
CLIPPING = 1,
};
struct FabricRasterOverlaysInfo {
std::vector<FabricOverlayRenderMethod> overlayRenderMethods;
};
} // namespace cesium::omniverse
| 278 | C | 15.411764 | 64 | 0.741007 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/FabricResourceManager.h | #pragma once
#include "cesium/omniverse/FabricMaterialInfo.h"
#include <pxr/usd/usd/common.h>
#include <atomic>
#include <mutex>
#include <vector>
namespace CesiumGltf {
struct ImageCesium;
struct MeshPrimitive;
struct Model;
} // namespace CesiumGltf
namespace omni::ui {
class DynamicTextureProvider;
}
namespace cesium::omniverse {
class Context;
class FabricGeometry;
class FabricGeometryPool;
class FabricMaterial;
class FabricMaterialPool;
class FabricGeometryDescriptor;
class FabricMaterialDescriptor;
class FabricTexture;
class FabricTexturePool;
struct FabricFeaturesInfo;
struct FabricRasterOverlaysInfo;
class FabricResourceManager {
public:
FabricResourceManager(Context* pContext);
~FabricResourceManager();
FabricResourceManager(const FabricResourceManager&) = delete;
FabricResourceManager& operator=(const FabricResourceManager&) = delete;
FabricResourceManager(FabricResourceManager&&) noexcept = delete;
FabricResourceManager& operator=(FabricResourceManager&&) noexcept = delete;
bool shouldAcquireMaterial(
const CesiumGltf::MeshPrimitive& primitive,
bool hasRasterOverlay,
const pxr::SdfPath& tilesetMaterialPath) const;
bool getDisableTextures() const;
std::shared_ptr<FabricGeometry> acquireGeometry(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
const FabricFeaturesInfo& featuresInfo,
bool smoothNormals);
std::shared_ptr<FabricMaterial> acquireMaterial(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
const FabricMaterialInfo& materialInfo,
const FabricFeaturesInfo& featuresInfo,
const FabricRasterOverlaysInfo& rasterOverlaysInfo,
int64_t tilesetId,
const pxr::SdfPath& tilesetMaterialPath);
std::shared_ptr<FabricTexture> acquireTexture();
void releaseGeometry(std::shared_ptr<FabricGeometry> pGeometry);
void releaseMaterial(std::shared_ptr<FabricMaterial> pMaterial);
void releaseTexture(std::shared_ptr<FabricTexture> pTexture);
void setDisableMaterials(bool disableMaterials);
void setDisableTextures(bool disableTextures);
void setDisableGeometryPool(bool disableGeometryPool);
void setDisableMaterialPool(bool disableMaterialPool);
void setDisableTexturePool(bool disableTexturePool);
void setGeometryPoolInitialCapacity(uint64_t geometryPoolInitialCapacity);
void setMaterialPoolInitialCapacity(uint64_t materialPoolInitialCapacity);
void setTexturePoolInitialCapacity(uint64_t texturePoolInitialCapacity);
void setDebugRandomColors(bool debugRandomColors);
void updateShaderInput(
const pxr::SdfPath& materialPath,
const pxr::SdfPath& shaderPath,
const pxr::TfToken& attributeName) const;
void clear();
private:
struct SharedMaterial {
SharedMaterial() = default;
~SharedMaterial() = default;
SharedMaterial(const SharedMaterial&) = delete;
SharedMaterial& operator=(const SharedMaterial&) = delete;
SharedMaterial(SharedMaterial&&) noexcept = default;
SharedMaterial& operator=(SharedMaterial&&) noexcept = default;
std::shared_ptr<FabricMaterial> pMaterial;
FabricMaterialInfo materialInfo;
int64_t tilesetId;
uint64_t referenceCount;
};
std::shared_ptr<FabricMaterial> createMaterial(const FabricMaterialDescriptor& materialDescriptor);
std::shared_ptr<FabricMaterial> acquireSharedMaterial(
const FabricMaterialInfo& materialInfo,
const FabricMaterialDescriptor& materialDescriptor,
int64_t tilesetId);
void releaseSharedMaterial(const FabricMaterial& material);
bool isSharedMaterial(const FabricMaterial& material) const;
std::shared_ptr<FabricGeometry> acquireGeometryFromPool(const FabricGeometryDescriptor& geometryDescriptor);
std::shared_ptr<FabricMaterial> acquireMaterialFromPool(const FabricMaterialDescriptor& materialDescriptor);
std::shared_ptr<FabricTexture> acquireTextureFromPool();
FabricGeometryPool* getGeometryPool(const FabricGeometry& geometry) const;
FabricMaterialPool* getMaterialPool(const FabricMaterial& material) const;
FabricTexturePool* getTexturePool(const FabricTexture& texture) const;
int64_t getNextGeometryId();
int64_t getNextMaterialId();
int64_t getNextTextureId();
int64_t getNextGeometryPoolId();
int64_t getNextMaterialPoolId();
int64_t getNextTexturePoolId();
std::vector<std::unique_ptr<FabricGeometryPool>> _geometryPools;
std::vector<std::unique_ptr<FabricMaterialPool>> _materialPools;
std::vector<std::unique_ptr<FabricTexturePool>> _texturePools;
bool _disableMaterials{false};
bool _disableTextures{false};
bool _disableGeometryPool{false};
bool _disableMaterialPool{false};
bool _disableTexturePool{false};
uint64_t _geometryPoolInitialCapacity{0};
uint64_t _materialPoolInitialCapacity{0};
uint64_t _texturePoolInitialCapacity{0};
bool _debugRandomColors{false};
std::atomic<int64_t> _geometryId{0};
std::atomic<int64_t> _materialId{0};
std::atomic<int64_t> _textureId{0};
std::atomic<int64_t> _geometryPoolId{0};
std::atomic<int64_t> _materialPoolId{0};
std::atomic<int64_t> _texturePoolId{0};
std::mutex _poolMutex;
Context* _pContext;
std::unique_ptr<omni::ui::DynamicTextureProvider> _defaultWhiteTexture;
std::unique_ptr<omni::ui::DynamicTextureProvider> _defaultTransparentTexture;
pxr::TfToken _defaultWhiteTextureAssetPathToken;
pxr::TfToken _defaultTransparentTextureAssetPathToken;
std::vector<SharedMaterial> _sharedMaterials;
};
} // namespace cesium::omniverse
| 5,777 | C | 34.447853 | 112 | 0.752986 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/GltfUtil.h | #pragma once
#include "cesium/omniverse/DataType.h"
#include "cesium/omniverse/FabricVertexAttributeAccessors.h"
#include <CesiumGltf/Accessor.h>
#include <glm/fwd.hpp>
#include <set>
namespace CesiumGltf {
struct ImageCesium;
struct Material;
struct Model;
struct MeshPrimitive;
struct Texture;
struct PropertyTextureProperty;
} // namespace CesiumGltf
namespace cesium::omniverse {
struct FabricFeaturesInfo;
struct FabricMaterialInfo;
struct FabricTextureInfo;
struct FabricVertexAttributeDescriptor;
} // namespace cesium::omniverse
namespace cesium::omniverse::GltfUtil {
PositionsAccessor getPositions(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
std::optional<std::array<glm::dvec3, 2>>
getExtent(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
IndicesAccessor getIndices(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
const PositionsAccessor& positions);
FaceVertexCountsAccessor getFaceVertexCounts(const IndicesAccessor& indices);
NormalsAccessor getNormals(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
const PositionsAccessor& positionsAccessor,
const IndicesAccessor& indices,
bool smoothNormals);
TexcoordsAccessor
getTexcoords(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive, uint64_t setIndex);
TexcoordsAccessor getRasterOverlayTexcoords(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
uint64_t setIndex);
VertexColorsAccessor
getVertexColors(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive, uint64_t setIndex);
VertexIdsAccessor getVertexIds(const PositionsAccessor& positionsAccessor);
const CesiumGltf::ImageCesium*
getBaseColorTextureImage(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
const CesiumGltf::ImageCesium* getFeatureIdTextureImage(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
uint64_t featureIdSetIndex);
FabricMaterialInfo getMaterialInfo(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
FabricFeaturesInfo getFeaturesInfo(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
std::set<FabricVertexAttributeDescriptor>
getCustomVertexAttributes(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
const FabricMaterialInfo& getDefaultMaterialInfo();
const FabricTextureInfo& getDefaultTextureInfo();
FabricTextureInfo getPropertyTexturePropertyInfo(
const CesiumGltf::Model& model,
const CesiumGltf::PropertyTextureProperty& propertyTextureProperty);
bool hasNormals(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive, bool smoothNormals);
bool hasTexcoords(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive, uint64_t setIndex);
bool hasRasterOverlayTexcoords(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
uint64_t setIndex);
bool hasVertexColors(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive, uint64_t setIndex);
bool hasMaterial(const CesiumGltf::MeshPrimitive& primitive);
std::vector<uint64_t> getTexcoordSetIndexes(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
std::vector<uint64_t>
getRasterOverlayTexcoordSetIndexes(const CesiumGltf::Model& model, const CesiumGltf::MeshPrimitive& primitive);
CesiumGltf::Ktx2TranscodeTargets getKtx2TranscodeTargets();
template <DataType T>
VertexAttributeAccessor<T> getVertexAttributeValues(
const CesiumGltf::Model& model,
const CesiumGltf::MeshPrimitive& primitive,
const std::string& attributeName) {
const auto it = primitive.attributes.find(attributeName);
if (it == primitive.attributes.end()) {
return {};
}
const auto pAccessor = model.getSafe(&model.accessors, it->second);
if (!pAccessor) {
return {};
}
const auto view = CesiumGltf::AccessorView<DataTypeUtil::GetNativeType<T>>(model, *pAccessor);
if (view.status() != CesiumGltf::AccessorViewStatus::Valid) {
return {};
}
return VertexAttributeAccessor<T>(view);
}
} // namespace cesium::omniverse::GltfUtil
| 4,312 | C | 34.06504 | 120 | 0.790584 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/OmniGeoreference.h | #pragma once
#include <CesiumGeospatial/Ellipsoid.h>
#include <CesiumGeospatial/LocalHorizontalCoordinateSystem.h>
#include <pxr/usd/sdf/path.h>
namespace CesiumGeospatial {
class Cartographic;
class LocalHorizontalCoordinateSystem;
} // namespace CesiumGeospatial
namespace cesium::omniverse {
class Context;
class OmniGeoreference {
public:
OmniGeoreference(Context* pContext, const pxr::SdfPath& path);
~OmniGeoreference() = default;
OmniGeoreference(const OmniGeoreference&) = delete;
OmniGeoreference& operator=(const OmniGeoreference&) = delete;
OmniGeoreference(OmniGeoreference&&) noexcept = default;
OmniGeoreference& operator=(OmniGeoreference&&) noexcept = default;
[[nodiscard]] const pxr::SdfPath& getPath() const;
[[nodiscard]] CesiumGeospatial::Cartographic getOrigin() const;
[[nodiscard]] const CesiumGeospatial::Ellipsoid& getEllipsoid() const;
[[nodiscard]] CesiumGeospatial::LocalHorizontalCoordinateSystem getLocalCoordinateSystem() const;
private:
Context* _pContext;
pxr::SdfPath _path;
CesiumGeospatial::Ellipsoid _ellipsoid;
};
} // namespace cesium::omniverse
| 1,149 | C | 30.944444 | 101 | 0.762402 |
CesiumGS/cesium-omniverse/src/core/include/cesium/omniverse/TilesetStatistics.h | #pragma once
#include <cstdint>
namespace cesium::omniverse {
struct TilesetStatistics {
uint64_t tilesetCachedBytes{0};
uint64_t tilesVisited{0};
uint64_t culledTilesVisited{0};
uint64_t tilesRendered{0};
uint64_t tilesCulled{0};
uint64_t maxDepthVisited{0};
uint64_t tilesLoadingWorker{0};
uint64_t tilesLoadingMain{0};
uint64_t tilesLoaded{0};
};
} // namespace cesium::omniverse
| 423 | C | 20.199999 | 35 | 0.706856 |
CesiumGS/cesium-omniverse/src/bindings/PythonBindings.cpp | #include "cesium/omniverse/CesiumIonSession.h"
#include "cesium/omniverse/CesiumOmniverse.h"
#include <CesiumUtility/CreditSystem.h>
#include <carb/BindingsPythonUtils.h>
#include <pxr/base/gf/matrix4d.h>
#include <pxr/base/gf/vec4d.h>
#include <pxr/usd/sdf/path.h>
// Needs to go after carb
#include "pyboost11.h"
namespace pybind11::detail {
PYBOOST11_TYPE_CASTER(pxr::GfMatrix4d, _("Matrix4d"));
}
#ifdef CESIUM_OMNI_CLANG
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
#endif
CARB_BINDINGS("cesium.omniverse.python")
#ifdef CESIUM_OMNI_CLANG
#pragma clang diagnostic pop
#endif
DISABLE_PYBIND11_DYNAMIC_CAST(cesium::omniverse::ICesiumOmniverseInterface)
struct ViewportPythonBinding {
pxr::GfMatrix4d viewMatrix;
pxr::GfMatrix4d projMatrix;
double width;
double height;
};
PYBIND11_MODULE(CesiumOmniversePythonBindings, m) {
using namespace cesium::omniverse;
m.doc() = "pybind11 cesium.omniverse bindings";
// clang-format off
carb::defineInterfaceClass<ICesiumOmniverseInterface>(
m, "ICesiumOmniverseInterface", "acquire_cesium_omniverse_interface", "release_cesium_omniverse_interface")
.def("on_startup", &ICesiumOmniverseInterface::onStartup)
.def("on_shutdown", &ICesiumOmniverseInterface::onShutdown)
.def("reload_tileset", &ICesiumOmniverseInterface::reloadTileset)
.def("on_update_frame", [](ICesiumOmniverseInterface& interface, const std::vector<ViewportPythonBinding>& viewports, bool waitForLoadingTiles) {
return interface.onUpdateFrame(reinterpret_cast<const ViewportApi*>(viewports.data()), viewports.size(), waitForLoadingTiles);
})
.def("on_stage_change", &ICesiumOmniverseInterface::onUsdStageChanged)
.def("connect_to_ion", &ICesiumOmniverseInterface::connectToIon)
.def("get_session", &ICesiumOmniverseInterface::getSession)
.def("get_server_path", &ICesiumOmniverseInterface::getServerPath)
.def("get_sessions", &ICesiumOmniverseInterface::getSessions)
.def("get_server_paths", &ICesiumOmniverseInterface::getServerPaths)
.def("get_set_default_token_result", &ICesiumOmniverseInterface::getSetDefaultTokenResult)
.def("is_default_token_set", &ICesiumOmniverseInterface::isDefaultTokenSet)
.def("create_token", &ICesiumOmniverseInterface::createToken)
.def("select_token", &ICesiumOmniverseInterface::selectToken)
.def("specify_token", &ICesiumOmniverseInterface::specifyToken)
.def("get_asset_troubleshooting_details", &ICesiumOmniverseInterface::getAssetTroubleshootingDetails)
.def("get_asset_token_troubleshooting_details", &ICesiumOmniverseInterface::getAssetTokenTroubleshootingDetails)
.def("get_default_token_troubleshooting_details", &ICesiumOmniverseInterface::getDefaultTokenTroubleshootingDetails)
.def("update_troubleshooting_details", py::overload_cast<const char*, int64_t, uint64_t, uint64_t>(&ICesiumOmniverseInterface::updateTroubleshootingDetails))
.def("update_troubleshooting_details", py::overload_cast<const char*, int64_t, int64_t, uint64_t, uint64_t>(&ICesiumOmniverseInterface::updateTroubleshootingDetails))
.def("print_fabric_stage", &ICesiumOmniverseInterface::printFabricStage)
.def("get_render_statistics", &ICesiumOmniverseInterface::getRenderStatistics)
.def("credits_available", &ICesiumOmniverseInterface::creditsAvailable)
.def("get_credits", &ICesiumOmniverseInterface::getCredits)
.def("credits_start_next_frame", &ICesiumOmniverseInterface::creditsStartNextFrame)
.def("is_tracing_enabled", &ICesiumOmniverseInterface::isTracingEnabled)
.def("clear_accessor_cache", &ICesiumOmniverseInterface::clearAccessorCache);
// clang-format on
py::class_<CesiumIonSession, std::shared_ptr<CesiumIonSession>>(m, "CesiumIonSession")
.def("is_connected", &CesiumIonSession::isConnected)
.def("is_connecting", &CesiumIonSession::isConnecting)
.def("is_resuming", &CesiumIonSession::isResuming)
.def("is_profile_loaded", &CesiumIonSession::isProfileLoaded)
.def("is_loading_profile", &CesiumIonSession::isLoadingProfile)
.def("is_asset_list_loaded", &CesiumIonSession::isAssetListLoaded)
.def("is_loading_asset_list", &CesiumIonSession::isLoadingAssetList)
.def("is_token_list_loaded", &CesiumIonSession::isTokenListLoaded)
.def("is_loading_token_list", &CesiumIonSession::isLoadingTokenList)
.def("get_authorize_url", &CesiumIonSession::getAuthorizeUrl)
.def("get_connection", &CesiumIonSession::getConnection)
.def("get_profile", &CesiumIonSession::getProfile)
.def("get_assets", &CesiumIonSession::getAssets)
.def("get_tokens", &CesiumIonSession::getTokens)
.def("refresh_tokens", &CesiumIonSession::refreshTokens)
.def("refresh_profile", &CesiumIonSession::refreshProfile)
.def("refresh_assets", &CesiumIonSession::refreshAssets)
.def("disconnect", &CesiumIonSession::disconnect);
py::class_<SetDefaultTokenResult>(m, "SetDefaultTokenResult")
.def_readonly("code", &SetDefaultTokenResult::code)
.def_readonly("message", &SetDefaultTokenResult::message);
py::class_<CesiumIonClient::Assets>(m, "Assets")
.def_readonly("link", &CesiumIonClient::Assets::link)
.def_readonly("items", &CesiumIonClient::Assets::items);
py::class_<CesiumIonClient::Asset>(m, "Asset")
.def_readonly("asset_id", &CesiumIonClient::Asset::id)
.def_readonly("name", &CesiumIonClient::Asset::name)
.def_readonly("description", &CesiumIonClient::Asset::description)
.def_readonly("attribution", &CesiumIonClient::Asset::attribution)
.def_readonly("asset_type", &CesiumIonClient::Asset::type)
.def_readonly("bytes", &CesiumIonClient::Asset::bytes)
.def_readonly("date_added", &CesiumIonClient::Asset::dateAdded)
.def_readonly("status", &CesiumIonClient::Asset::status)
.def_readonly("percent_complete", &CesiumIonClient::Asset::percentComplete);
py::class_<CesiumIonClient::Connection>(m, "Connection")
// Wrap non-static member function in lambda. May be able to use py::overload_cast<> in C++ 20
.def("get_api_uri", [](CesiumIonClient::Connection& connection) { return connection.getApiUrl(); })
.def("get_access_token", &CesiumIonClient::Connection::getAccessToken);
py::class_<CesiumIonClient::Profile>(m, "Profile")
.def_readonly("id", &CesiumIonClient::Profile::id)
.def_readonly("username", &CesiumIonClient::Profile::username);
py::class_<CesiumIonClient::Token>(m, "Token")
.def_readonly("id", &CesiumIonClient::Token::id)
.def_readonly("name", &CesiumIonClient::Token::name)
.def_readonly("token", &CesiumIonClient::Token::token)
.def_readonly("is_default", &CesiumIonClient::Token::isDefault);
py::class_<TokenTroubleshootingDetails>(m, "TokenTroubleshootingDetails")
.def_readonly("token", &TokenTroubleshootingDetails::token)
.def_readonly("is_valid", &TokenTroubleshootingDetails::isValid)
.def_readonly("allows_access_to_asset", &TokenTroubleshootingDetails::allowsAccessToAsset)
.def_readonly("associated_with_user_account", &TokenTroubleshootingDetails::associatedWithUserAccount)
.def_readonly("show_details", &TokenTroubleshootingDetails::showDetails);
py::class_<AssetTroubleshootingDetails>(m, "AssetTroubleshootingDetails")
.def_readonly("asset_id", &AssetTroubleshootingDetails::assetId)
.def_readonly("asset_exists_in_user_account", &AssetTroubleshootingDetails::assetExistsInUserAccount);
py::class_<RenderStatistics>(m, "RenderStatistics")
.def_readonly("materials_capacity", &RenderStatistics::materialsCapacity)
.def_readonly("materials_loaded", &RenderStatistics::materialsLoaded)
.def_readonly("geometries_capacity", &RenderStatistics::geometriesCapacity)
.def_readonly("geometries_loaded", &RenderStatistics::geometriesLoaded)
.def_readonly("geometries_rendered", &RenderStatistics::geometriesRendered)
.def_readonly("triangles_loaded", &RenderStatistics::trianglesLoaded)
.def_readonly("triangles_rendered", &RenderStatistics::trianglesRendered)
.def_readonly("tileset_cached_bytes", &RenderStatistics::tilesetCachedBytes)
.def_readonly("tiles_visited", &RenderStatistics::tilesVisited)
.def_readonly("culled_tiles_visited", &RenderStatistics::culledTilesVisited)
.def_readonly("tiles_rendered", &RenderStatistics::tilesRendered)
.def_readonly("tiles_culled", &RenderStatistics::tilesCulled)
.def_readonly("max_depth_visited", &RenderStatistics::maxDepthVisited)
.def_readonly("tiles_loading_worker", &RenderStatistics::tilesLoadingWorker)
.def_readonly("tiles_loading_main", &RenderStatistics::tilesLoadingMain)
.def_readonly("tiles_loaded", &RenderStatistics::tilesLoaded);
py::class_<ViewportPythonBinding>(m, "Viewport")
.def(py::init())
.def_readwrite("viewMatrix", &ViewportPythonBinding::viewMatrix)
.def_readwrite("projMatrix", &ViewportPythonBinding::projMatrix)
.def_readwrite("width", &ViewportPythonBinding::width)
.def_readwrite("height", &ViewportPythonBinding::height);
}
| 9,489 | C++ | 55.153846 | 174 | 0.720413 |
CesiumGS/cesium-omniverse/src/bindings/pyboost11.h | // From https://yyc.solvcon.net/en/latest/writing/2021/pyboost11/code.html
// clang-format off
/*
* Copyright (c) 2021, Yung-Yu Chen <[email protected]>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <pybind11/pybind11.h>
#ifdef CESIUM_OMNI_GCC
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif
#include <boost/python.hpp>
#ifdef CESIUM_OMNI_GCC
#pragma GCC diagnostic pop
#endif
namespace pyboost11
{
// Pybind11 cast by using boost.python.
template <typename T> struct caster
{
caster(pybind11::handle src)
: obj(boost::python::handle<>(boost::python::borrowed(src.ptr())))
, ext(obj)
{}
bool check() const { return ext.check(); }
// From-Python conversion.
operator T() { return ext(); }
T operator()() { return ext(); }
// To-Python conversion.
static pybind11::handle to_python(T & src)
{
namespace bpy = boost::python;
return bpy::incref(bpy::object(src).ptr());
}
boost::python::object obj;
boost::python::extract<T> ext;
};
} // end namespace pyboost11
namespace pybind11
{
namespace detail
{
template <typename type> struct pyboost11_type_caster
{
// Expanded from PYBIND11_TYPE_CASTER.
protected:
type value;
public:
template <typename T_, enable_if_t<std::is_same<type, remove_cv_t<T_>>::value, int> = 0>
static handle cast(T_ *src, return_value_policy policy, handle parent) {
if (!src) return none().release();
if (policy == return_value_policy::take_ownership) {
auto h = cast(std::move(*src), policy, parent); delete src; return h;
} else {
return cast(*src, policy, parent);
}
}
operator type*() { return &value; }
operator type&() { return value; }
operator type&&() && { return std::move(value); }
template <typename T_> using cast_op_type = pybind11::detail::movable_cast_op_type<T_>;
// Boilerplate.
bool load(handle src, bool)
{
if (!src)
{
return false;
}
pyboost11::caster<type> ext(src);
if (!ext.check())
{
return false;
}
value = ext();
return true;
}
static handle cast(type * src, return_value_policy /* policy */, handle /* parent */)
{
return pyboost11::caster<type>::to_python(src);
}
static handle cast(type src, return_value_policy /* policy */, handle /* parent */)
{
return pyboost11::caster<type>::to_python(src);
}
};
#define PYBOOST11_TYPE_CASTER(type, py_name) \
template <> struct type_caster<type> : public pyboost11_type_caster<type> \
{ static constexpr auto name = py_name; }
} // end namespace detail
} // end namespace pybind11
namespace pyboost11
{
// Boost.python convert by using pybind11.
template <typename T> struct converter
{
public:
converter() { init(); }
void init()
{
static bool initialized = false;
if (!initialized)
{
namespace bpy = boost::python;
// From-Python conversion.
bpy::converter::registry::push_back
(
&convertible
, &construct
, bpy::type_id<T>()
);
// To-Python conversion.
bpy::to_python_converter<T, converter>();
initialized = true;
}
}
// From-Python convertibility.
static void * convertible(PyObject * objptr)
{
namespace pyb = pybind11;
try
{
pyb::handle(objptr).cast<T>();
return objptr;
}
catch (pyb::cast_error const &)
{
return nullptr;
}
}
// From-Python conversion.
static void construct
(
PyObject * objptr
, boost::python::converter::rvalue_from_python_stage1_data * data
)
{
namespace pyb = pybind11;
void * storage = reinterpret_cast
<
boost::python::converter::rvalue_from_python_storage<T> *
>(data)->storage.bytes;
new (storage) T(pyb::handle(objptr).cast<T>());
data->convertible = storage;
}
// To-Python conversion.
static PyObject * convert(T const & t)
{
return pybind11::cast(t).inc_ref().ptr();
}
};
} // end namespace pyboost11
// vim: set ff=unix fenc=utf8 et sw=4 ts=4 sts=4:
// clang-format on
| 5,974 | C | 26.790698 | 92 | 0.629227 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapSession.cpp | #include ".//session.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateEcefToUsdTransformAttr(CesiumSession &self,
object defaultVal, bool writeSparsely) {
return self.CreateEcefToUsdTransformAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Matrix4d), writeSparsely);
}
static std::string
_Repr(const CesiumSession &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.Session(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumSession()
{
typedef CesiumSession This;
class_<This, bases<UsdTyped> >
cls("Session");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetEcefToUsdTransformAttr",
&This::GetEcefToUsdTransformAttr)
.def("CreateEcefToUsdTransformAttr",
&_CreateEcefToUsdTransformAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 2,983 | C++ | 24.724138 | 84 | 0.588669 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapTileset.cpp | #include ".//tileset.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateSourceTypeAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateSourceTypeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Token), writeSparsely);
}
static UsdAttribute
_CreateUrlAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateUrlAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateIonAssetIdAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonAssetIdAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int64), writeSparsely);
}
static UsdAttribute
_CreateIonAccessTokenAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonAccessTokenAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateMaximumScreenSpaceErrorAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumScreenSpaceErrorAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Float), writeSparsely);
}
static UsdAttribute
_CreatePreloadAncestorsAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreatePreloadAncestorsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreatePreloadSiblingsAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreatePreloadSiblingsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateForbidHolesAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateForbidHolesAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateMaximumSimultaneousTileLoadsAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumSimultaneousTileLoadsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->UInt), writeSparsely);
}
static UsdAttribute
_CreateMaximumCachedBytesAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumCachedBytesAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->UInt64), writeSparsely);
}
static UsdAttribute
_CreateLoadingDescendantLimitAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateLoadingDescendantLimitAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->UInt), writeSparsely);
}
static UsdAttribute
_CreateEnableFrustumCullingAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateEnableFrustumCullingAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateEnableFogCullingAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateEnableFogCullingAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateEnforceCulledScreenSpaceErrorAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateEnforceCulledScreenSpaceErrorAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateCulledScreenSpaceErrorAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateCulledScreenSpaceErrorAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Float), writeSparsely);
}
static UsdAttribute
_CreateSuspendUpdateAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateSuspendUpdateAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateSmoothNormalsAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateSmoothNormalsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateShowCreditsOnScreenAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateShowCreditsOnScreenAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateMainThreadLoadingTimeLimitAttr(CesiumTileset &self,
object defaultVal, bool writeSparsely) {
return self.CreateMainThreadLoadingTimeLimitAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Float), writeSparsely);
}
static std::string
_Repr(const CesiumTileset &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.Tileset(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumTileset()
{
typedef CesiumTileset This;
class_<This, bases<UsdGeomGprim> >
cls("Tileset");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetSourceTypeAttr",
&This::GetSourceTypeAttr)
.def("CreateSourceTypeAttr",
&_CreateSourceTypeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetUrlAttr",
&This::GetUrlAttr)
.def("CreateUrlAttr",
&_CreateUrlAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonAssetIdAttr",
&This::GetIonAssetIdAttr)
.def("CreateIonAssetIdAttr",
&_CreateIonAssetIdAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonAccessTokenAttr",
&This::GetIonAccessTokenAttr)
.def("CreateIonAccessTokenAttr",
&_CreateIonAccessTokenAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumScreenSpaceErrorAttr",
&This::GetMaximumScreenSpaceErrorAttr)
.def("CreateMaximumScreenSpaceErrorAttr",
&_CreateMaximumScreenSpaceErrorAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetPreloadAncestorsAttr",
&This::GetPreloadAncestorsAttr)
.def("CreatePreloadAncestorsAttr",
&_CreatePreloadAncestorsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetPreloadSiblingsAttr",
&This::GetPreloadSiblingsAttr)
.def("CreatePreloadSiblingsAttr",
&_CreatePreloadSiblingsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetForbidHolesAttr",
&This::GetForbidHolesAttr)
.def("CreateForbidHolesAttr",
&_CreateForbidHolesAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumSimultaneousTileLoadsAttr",
&This::GetMaximumSimultaneousTileLoadsAttr)
.def("CreateMaximumSimultaneousTileLoadsAttr",
&_CreateMaximumSimultaneousTileLoadsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumCachedBytesAttr",
&This::GetMaximumCachedBytesAttr)
.def("CreateMaximumCachedBytesAttr",
&_CreateMaximumCachedBytesAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetLoadingDescendantLimitAttr",
&This::GetLoadingDescendantLimitAttr)
.def("CreateLoadingDescendantLimitAttr",
&_CreateLoadingDescendantLimitAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetEnableFrustumCullingAttr",
&This::GetEnableFrustumCullingAttr)
.def("CreateEnableFrustumCullingAttr",
&_CreateEnableFrustumCullingAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetEnableFogCullingAttr",
&This::GetEnableFogCullingAttr)
.def("CreateEnableFogCullingAttr",
&_CreateEnableFogCullingAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetEnforceCulledScreenSpaceErrorAttr",
&This::GetEnforceCulledScreenSpaceErrorAttr)
.def("CreateEnforceCulledScreenSpaceErrorAttr",
&_CreateEnforceCulledScreenSpaceErrorAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetCulledScreenSpaceErrorAttr",
&This::GetCulledScreenSpaceErrorAttr)
.def("CreateCulledScreenSpaceErrorAttr",
&_CreateCulledScreenSpaceErrorAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSuspendUpdateAttr",
&This::GetSuspendUpdateAttr)
.def("CreateSuspendUpdateAttr",
&_CreateSuspendUpdateAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSmoothNormalsAttr",
&This::GetSmoothNormalsAttr)
.def("CreateSmoothNormalsAttr",
&_CreateSmoothNormalsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetShowCreditsOnScreenAttr",
&This::GetShowCreditsOnScreenAttr)
.def("CreateShowCreditsOnScreenAttr",
&_CreateShowCreditsOnScreenAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMainThreadLoadingTimeLimitAttr",
&This::GetMainThreadLoadingTimeLimitAttr)
.def("CreateMainThreadLoadingTimeLimitAttr",
&_CreateMainThreadLoadingTimeLimitAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetGeoreferenceBindingRel",
&This::GetGeoreferenceBindingRel)
.def("CreateGeoreferenceBindingRel",
&This::CreateGeoreferenceBindingRel)
.def("GetIonServerBindingRel",
&This::GetIonServerBindingRel)
.def("CreateIonServerBindingRel",
&This::CreateIonServerBindingRel)
.def("GetRasterOverlayBindingRel",
&This::GetRasterOverlayBindingRel)
.def("CreateRasterOverlayBindingRel",
&This::CreateRasterOverlayBindingRel)
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 13,615 | C++ | 34.550914 | 82 | 0.617481 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/api.h | #ifndef CESIUMUSDSCHEMAS_API_H
#define CESIUMUSDSCHEMAS_API_H
#include "pxr/base/arch/export.h"
#if defined(PXR_STATIC)
# define CESIUMUSDSCHEMAS_API
# define CESIUMUSDSCHEMAS_API_TEMPLATE_CLASS(...)
# define CESIUMUSDSCHEMAS_API_TEMPLATE_STRUCT(...)
# define CESIUMUSDSCHEMAS_LOCAL
#else
# if defined(CESIUMUSDSCHEMAS_EXPORTS)
# define CESIUMUSDSCHEMAS_API ARCH_EXPORT
# define CESIUMUSDSCHEMAS_API_TEMPLATE_CLASS(...) ARCH_EXPORT_TEMPLATE(class, __VA_ARGS__)
# define CESIUMUSDSCHEMAS_API_TEMPLATE_STRUCT(...) ARCH_EXPORT_TEMPLATE(struct, __VA_ARGS__)
# else
# define CESIUMUSDSCHEMAS_API ARCH_IMPORT
# define CESIUMUSDSCHEMAS_API_TEMPLATE_CLASS(...) ARCH_IMPORT_TEMPLATE(class, __VA_ARGS__)
# define CESIUMUSDSCHEMAS_API_TEMPLATE_STRUCT(...) ARCH_IMPORT_TEMPLATE(struct, __VA_ARGS__)
# endif
# define CESIUMUSDSCHEMAS_LOCAL ARCH_HIDDEN
#endif
#endif
| 908 | C | 35.359999 | 98 | 0.72467 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/polygonRasterOverlay.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_POLYGONRASTEROVERLAY_H
#define CESIUMUSDSCHEMAS_GENERATED_POLYGONRASTEROVERLAY_H
/// \file CesiumUsdSchemas/polygonRasterOverlay.h
#include "pxr/pxr.h"
#include ".//api.h"
#include ".//rasterOverlay.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMPOLYGONRASTEROVERLAYPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumPolygonRasterOverlay
///
/// Adds a prim for representing a polygon raster overlay.
///
/// For any described attribute \em Fallback \em Value or \em Allowed \em Values below
/// that are text/tokens, the actual token is published and defined in \ref CesiumTokens.
/// So to set an attribute to the value "rightHanded", use CesiumTokens->rightHanded
/// as the value.
///
class CesiumPolygonRasterOverlay : public CesiumRasterOverlay
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumPolygonRasterOverlay on UsdPrim \p prim .
/// Equivalent to CesiumPolygonRasterOverlay::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumPolygonRasterOverlay(const UsdPrim& prim=UsdPrim())
: CesiumRasterOverlay(prim)
{
}
/// Construct a CesiumPolygonRasterOverlay on the prim held by \p schemaObj .
/// Should be preferred over CesiumPolygonRasterOverlay(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumPolygonRasterOverlay(const UsdSchemaBase& schemaObj)
: CesiumRasterOverlay(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumPolygonRasterOverlay();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumPolygonRasterOverlay holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumPolygonRasterOverlay(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumPolygonRasterOverlay
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumPolygonRasterOverlay
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// INVERTSELECTION
// --------------------------------------------------------------------- //
/// Whether to invert the selection specified by the polygons. If this is true, only the areas outside of the polygons will be rasterized.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:invertSelection = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetInvertSelectionAttr() const;
/// See GetInvertSelectionAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateInvertSelectionAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// EXCLUDESELECTEDTILES
// --------------------------------------------------------------------- //
/// Whether tiles that fall entirely within the rasterized selection should be excluded from loading and rendering. For better performance, this should be enabled when this overlay will be used for clipping. But when this overlay is used for other effects, this option should be disabled to avoid missing tiles. Note that if InvertSelection is true, this will cull tiles that are outside of all the polygons. If it is false, this will cull tiles that are completely inside at least one polygon.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:excludeSelectedTiles = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetExcludeSelectedTilesAttr() const;
/// See GetExcludeSelectedTilesAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateExcludeSelectedTilesAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// CESIUMOVERLAYRENDERMETHOD
// --------------------------------------------------------------------- //
///
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform token cesium:overlayRenderMethod = "clip"` |
/// | C++ Type | TfToken |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Token |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetCesiumOverlayRenderMethodAttr() const;
/// See GetCesiumOverlayRenderMethodAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateCesiumOverlayRenderMethodAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// CARTOGRAPHICPOLYGONBINDING
// --------------------------------------------------------------------- //
/// Specifies which Cartographic Polygons to use in the raster overlay
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetCartographicPolygonBindingRel() const;
/// See GetCartographicPolygonBindingRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateCartographicPolygonBindingRel() const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 9,686 | C | 41.117391 | 498 | 0.626574 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/webMapTileServiceRasterOverlay.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_WEBMAPTILESERVICERASTEROVERLAY_H
#define CESIUMUSDSCHEMAS_GENERATED_WEBMAPTILESERVICERASTEROVERLAY_H
/// \file CesiumUsdSchemas/webMapTileServiceRasterOverlay.h
#include "pxr/pxr.h"
#include ".//api.h"
#include ".//rasterOverlay.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMWEBMAPTILESERVICERASTEROVERLAYPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumWebMapTileServiceRasterOverlay
///
/// Adds a prim for representing a Web Map Tile Service (WMTS) raster overlay.
///
class CesiumWebMapTileServiceRasterOverlay : public CesiumRasterOverlay
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumWebMapTileServiceRasterOverlay on UsdPrim \p prim .
/// Equivalent to CesiumWebMapTileServiceRasterOverlay::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumWebMapTileServiceRasterOverlay(const UsdPrim& prim=UsdPrim())
: CesiumRasterOverlay(prim)
{
}
/// Construct a CesiumWebMapTileServiceRasterOverlay on the prim held by \p schemaObj .
/// Should be preferred over CesiumWebMapTileServiceRasterOverlay(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumWebMapTileServiceRasterOverlay(const UsdSchemaBase& schemaObj)
: CesiumRasterOverlay(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumWebMapTileServiceRasterOverlay();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumWebMapTileServiceRasterOverlay holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumWebMapTileServiceRasterOverlay(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumWebMapTileServiceRasterOverlay
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumWebMapTileServiceRasterOverlay
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// URL
// --------------------------------------------------------------------- //
/// The base url of the Web Map Tile Service (WMTS).
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:url = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetUrlAttr() const;
/// See GetUrlAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateUrlAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// LAYER
// --------------------------------------------------------------------- //
/// Layer name.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:layer = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetLayerAttr() const;
/// See GetLayerAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateLayerAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// STYLE
// --------------------------------------------------------------------- //
/// Style.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:style = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetStyleAttr() const;
/// See GetStyleAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateStyleAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// FORMAT
// --------------------------------------------------------------------- //
/// Format.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:format = "image/jpeg"` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetFormatAttr() const;
/// See GetFormatAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateFormatAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// TILEMATRIXSETID
// --------------------------------------------------------------------- //
/// Tile Matrix Set ID
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:tileMatrixSetId = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetTileMatrixSetIdAttr() const;
/// See GetTileMatrixSetIdAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateTileMatrixSetIdAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SPECIFYTILEMATRIXSETLABELS
// --------------------------------------------------------------------- //
/// True to specify tile matrix set labels manually, or false to automatically determine from level and prefix.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:specifyTileMatrixSetLabels = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSpecifyTileMatrixSetLabelsAttr() const;
/// See GetSpecifyTileMatrixSetLabelsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSpecifyTileMatrixSetLabelsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// TILEMATRIXSETLABELPREFIX
// --------------------------------------------------------------------- //
/// Prefix for tile matrix set labels. For instance, setting "EPSG:4326:" as prefix generates label list ["EPSG:4326:0", "EPSG:4326:1", "EPSG:4326:2", ...]
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:tileMatrixSetLabelPrefix = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetTileMatrixSetLabelPrefixAttr() const;
/// See GetTileMatrixSetLabelPrefixAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateTileMatrixSetLabelPrefixAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// TILEMATRIXSETLABELS
// --------------------------------------------------------------------- //
/// Comma-separated tile matrix set labels
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:tileMatrixSetLabels` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetTileMatrixSetLabelsAttr() const;
/// See GetTileMatrixSetLabelsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateTileMatrixSetLabelsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// USEWEBMERCATORPROJECTION
// --------------------------------------------------------------------- //
/// False to use geographic projection, true to use webmercator projection. For instance, EPSG:4326 uses geographic and EPSG:3857 uses webmercator.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:useWebMercatorProjection = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetUseWebMercatorProjectionAttr() const;
/// See GetUseWebMercatorProjectionAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateUseWebMercatorProjectionAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SPECIFYTILINGSCHEME
// --------------------------------------------------------------------- //
/// True to specify quadtree tiling scheme according to projection and bounding rectangle, or false to automatically determine from projection.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:specifyTilingScheme = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSpecifyTilingSchemeAttr() const;
/// See GetSpecifyTilingSchemeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSpecifyTilingSchemeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ROOTTILESX
// --------------------------------------------------------------------- //
/// Tile number corresponding to TileCol, also known as TileMatrixWidth
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:rootTilesX = 1` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetRootTilesXAttr() const;
/// See GetRootTilesXAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateRootTilesXAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ROOTTILESY
// --------------------------------------------------------------------- //
/// Tile number corresponding to TileRow, also known as TileMatrixHeight
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:rootTilesY = 1` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetRootTilesYAttr() const;
/// See GetRootTilesYAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateRootTilesYAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// WEST
// --------------------------------------------------------------------- //
/// The longitude of the west boundary on globe in degrees, in the range [-180, 180]
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:west = -180` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetWestAttr() const;
/// See GetWestAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateWestAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// EAST
// --------------------------------------------------------------------- //
/// The longitude of the east boundary on globe in degrees, in the range [-180, 180]
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:east = 180` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetEastAttr() const;
/// See GetEastAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateEastAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SOUTH
// --------------------------------------------------------------------- //
/// The longitude of the south boundary on globe in degrees, in the range [-90, 90]
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:south = -90` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSouthAttr() const;
/// See GetSouthAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSouthAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// NORTH
// --------------------------------------------------------------------- //
/// The longitude of the north boundary on globe in degrees, in the range [-90, 90]
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:north = 90` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetNorthAttr() const;
/// See GetNorthAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateNorthAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SPECIFYZOOMLEVELS
// --------------------------------------------------------------------- //
/// True to directly specify minum and maximum zoom levels available from the server, or false to automatically determine the minimum and maximum zoom levels from the server's tilemapresource.xml file.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:specifyZoomLevels = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSpecifyZoomLevelsAttr() const;
/// See GetSpecifyZoomLevelsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSpecifyZoomLevelsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MINIMUMZOOMLEVEL
// --------------------------------------------------------------------- //
/// Minimum zoom level
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:minimumZoomLevel = 0` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMinimumZoomLevelAttr() const;
/// See GetMinimumZoomLevelAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMinimumZoomLevelAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMZOOMLEVEL
// --------------------------------------------------------------------- //
/// Maximum zoom level
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:maximumZoomLevel = 25` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumZoomLevelAttr() const;
/// See GetMaximumZoomLevelAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumZoomLevelAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 24,500 | C | 42.596085 | 205 | 0.572571 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapIonServer.cpp | #include ".//ionServer.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateDisplayNameAttr(CesiumIonServer &self,
object defaultVal, bool writeSparsely) {
return self.CreateDisplayNameAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateIonServerUrlAttr(CesiumIonServer &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonServerUrlAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateIonServerApiUrlAttr(CesiumIonServer &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonServerApiUrlAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateIonServerApplicationIdAttr(CesiumIonServer &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonServerApplicationIdAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int64), writeSparsely);
}
static UsdAttribute
_CreateProjectDefaultIonAccessTokenAttr(CesiumIonServer &self,
object defaultVal, bool writeSparsely) {
return self.CreateProjectDefaultIonAccessTokenAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateProjectDefaultIonAccessTokenIdAttr(CesiumIonServer &self,
object defaultVal, bool writeSparsely) {
return self.CreateProjectDefaultIonAccessTokenIdAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static std::string
_Repr(const CesiumIonServer &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.IonServer(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumIonServer()
{
typedef CesiumIonServer This;
class_<This, bases<UsdTyped> >
cls("IonServer");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetDisplayNameAttr",
&This::GetDisplayNameAttr)
.def("CreateDisplayNameAttr",
&_CreateDisplayNameAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonServerUrlAttr",
&This::GetIonServerUrlAttr)
.def("CreateIonServerUrlAttr",
&_CreateIonServerUrlAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonServerApiUrlAttr",
&This::GetIonServerApiUrlAttr)
.def("CreateIonServerApiUrlAttr",
&_CreateIonServerApiUrlAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonServerApplicationIdAttr",
&This::GetIonServerApplicationIdAttr)
.def("CreateIonServerApplicationIdAttr",
&_CreateIonServerApplicationIdAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetProjectDefaultIonAccessTokenAttr",
&This::GetProjectDefaultIonAccessTokenAttr)
.def("CreateProjectDefaultIonAccessTokenAttr",
&_CreateProjectDefaultIonAccessTokenAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetProjectDefaultIonAccessTokenIdAttr",
&This::GetProjectDefaultIonAccessTokenIdAttr)
.def("CreateProjectDefaultIonAccessTokenIdAttr",
&_CreateProjectDefaultIonAccessTokenIdAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 5,889 | C++ | 30.666667 | 82 | 0.614196 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/session.cpp | #include ".//session.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumSession,
TfType::Bases< UsdTyped > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumSessionPrim")
// to find TfType<CesiumSession>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumSession>("CesiumSessionPrim");
}
/* virtual */
CesiumSession::~CesiumSession()
{
}
/* static */
CesiumSession
CesiumSession::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumSession();
}
return CesiumSession(stage->GetPrimAtPath(path));
}
/* static */
CesiumSession
CesiumSession::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumSessionPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumSession();
}
return CesiumSession(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumSession::_GetSchemaKind() const
{
return CesiumSession::schemaKind;
}
/* static */
const TfType &
CesiumSession::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumSession>();
return tfType;
}
/* static */
bool
CesiumSession::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumSession::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumSession::GetEcefToUsdTransformAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumEcefToUsdTransform);
}
UsdAttribute
CesiumSession::CreateEcefToUsdTransformAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumEcefToUsdTransform,
SdfValueTypeNames->Matrix4d,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumSession::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumEcefToUsdTransform,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdTyped::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 3,568 | C++ | 24.492857 | 98 | 0.654989 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/ionServer.cpp | #include ".//ionServer.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumIonServer,
TfType::Bases< UsdTyped > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumIonServerPrim")
// to find TfType<CesiumIonServer>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumIonServer>("CesiumIonServerPrim");
}
/* virtual */
CesiumIonServer::~CesiumIonServer()
{
}
/* static */
CesiumIonServer
CesiumIonServer::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumIonServer();
}
return CesiumIonServer(stage->GetPrimAtPath(path));
}
/* static */
CesiumIonServer
CesiumIonServer::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumIonServerPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumIonServer();
}
return CesiumIonServer(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumIonServer::_GetSchemaKind() const
{
return CesiumIonServer::schemaKind;
}
/* static */
const TfType &
CesiumIonServer::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumIonServer>();
return tfType;
}
/* static */
bool
CesiumIonServer::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumIonServer::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumIonServer::GetDisplayNameAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDisplayName);
}
UsdAttribute
CesiumIonServer::CreateDisplayNameAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDisplayName,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumIonServer::GetIonServerUrlAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonServerUrl);
}
UsdAttribute
CesiumIonServer::CreateIonServerUrlAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonServerUrl,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumIonServer::GetIonServerApiUrlAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonServerApiUrl);
}
UsdAttribute
CesiumIonServer::CreateIonServerApiUrlAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonServerApiUrl,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumIonServer::GetIonServerApplicationIdAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonServerApplicationId);
}
UsdAttribute
CesiumIonServer::CreateIonServerApplicationIdAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonServerApplicationId,
SdfValueTypeNames->Int64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumIonServer::GetProjectDefaultIonAccessTokenAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumProjectDefaultIonAccessToken);
}
UsdAttribute
CesiumIonServer::CreateProjectDefaultIonAccessTokenAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumProjectDefaultIonAccessToken,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumIonServer::GetProjectDefaultIonAccessTokenIdAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumProjectDefaultIonAccessTokenId);
}
UsdAttribute
CesiumIonServer::CreateProjectDefaultIonAccessTokenIdAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumProjectDefaultIonAccessTokenId,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumIonServer::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumDisplayName,
CesiumTokens->cesiumIonServerUrl,
CesiumTokens->cesiumIonServerApiUrl,
CesiumTokens->cesiumIonServerApplicationId,
CesiumTokens->cesiumProjectDefaultIonAccessToken,
CesiumTokens->cesiumProjectDefaultIonAccessTokenId,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdTyped::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 6,697 | C++ | 28.121739 | 112 | 0.662386 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/module.cpp | #include "pxr/pxr.h"
#include "pxr/base/tf/pyModule.h"
PXR_NAMESPACE_USING_DIRECTIVE
TF_WRAP_MODULE
{
TF_WRAP(CesiumData);
TF_WRAP(CesiumGeoreference);
TF_WRAP(CesiumGlobeAnchorAPI);
TF_WRAP(CesiumIonServer);
TF_WRAP(CesiumRasterOverlay);
TF_WRAP(CesiumIonRasterOverlay);
TF_WRAP(CesiumPolygonRasterOverlay);
TF_WRAP(CesiumSession);
TF_WRAP(CesiumTileMapServiceRasterOverlay);
TF_WRAP(CesiumTileset);
TF_WRAP(CesiumTokens);
TF_WRAP(CesiumWebMapServiceRasterOverlay);
TF_WRAP(CesiumWebMapTileServiceRasterOverlay);
}
| 544 | C++ | 23.772726 | 48 | 0.779412 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/webMapServiceRasterOverlay.cpp | #include ".//webMapServiceRasterOverlay.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumWebMapServiceRasterOverlay,
TfType::Bases< CesiumRasterOverlay > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumWebMapServiceRasterOverlayPrim")
// to find TfType<CesiumWebMapServiceRasterOverlay>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumWebMapServiceRasterOverlay>("CesiumWebMapServiceRasterOverlayPrim");
}
/* virtual */
CesiumWebMapServiceRasterOverlay::~CesiumWebMapServiceRasterOverlay()
{
}
/* static */
CesiumWebMapServiceRasterOverlay
CesiumWebMapServiceRasterOverlay::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumWebMapServiceRasterOverlay();
}
return CesiumWebMapServiceRasterOverlay(stage->GetPrimAtPath(path));
}
/* static */
CesiumWebMapServiceRasterOverlay
CesiumWebMapServiceRasterOverlay::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumWebMapServiceRasterOverlayPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumWebMapServiceRasterOverlay();
}
return CesiumWebMapServiceRasterOverlay(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumWebMapServiceRasterOverlay::_GetSchemaKind() const
{
return CesiumWebMapServiceRasterOverlay::schemaKind;
}
/* static */
const TfType &
CesiumWebMapServiceRasterOverlay::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumWebMapServiceRasterOverlay>();
return tfType;
}
/* static */
bool
CesiumWebMapServiceRasterOverlay::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumWebMapServiceRasterOverlay::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::GetBaseUrlAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumBaseUrl);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::CreateBaseUrlAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumBaseUrl,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::GetLayersAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumLayers);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::CreateLayersAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumLayers,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::GetTileWidthAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumTileWidth);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::CreateTileWidthAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumTileWidth,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::GetTileHeightAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumTileHeight);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::CreateTileHeightAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumTileHeight,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::GetMinimumLevelAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMinimumLevel);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::CreateMinimumLevelAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMinimumLevel,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::GetMaximumLevelAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumLevel);
}
UsdAttribute
CesiumWebMapServiceRasterOverlay::CreateMaximumLevelAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumLevel,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumWebMapServiceRasterOverlay::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumBaseUrl,
CesiumTokens->cesiumLayers,
CesiumTokens->cesiumTileWidth,
CesiumTokens->cesiumTileHeight,
CesiumTokens->cesiumMinimumLevel,
CesiumTokens->cesiumMaximumLevel,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
CesiumRasterOverlay::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 7,010 | C++ | 29.482609 | 111 | 0.677461 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/georeference.cpp | #include ".//georeference.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumGeoreference,
TfType::Bases< UsdTyped > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumGeoreferencePrim")
// to find TfType<CesiumGeoreference>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumGeoreference>("CesiumGeoreferencePrim");
}
/* virtual */
CesiumGeoreference::~CesiumGeoreference()
{
}
/* static */
CesiumGeoreference
CesiumGeoreference::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumGeoreference();
}
return CesiumGeoreference(stage->GetPrimAtPath(path));
}
/* static */
CesiumGeoreference
CesiumGeoreference::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumGeoreferencePrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumGeoreference();
}
return CesiumGeoreference(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumGeoreference::_GetSchemaKind() const
{
return CesiumGeoreference::schemaKind;
}
/* static */
const TfType &
CesiumGeoreference::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumGeoreference>();
return tfType;
}
/* static */
bool
CesiumGeoreference::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumGeoreference::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumGeoreference::GetGeoreferenceOriginLongitudeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumGeoreferenceOriginLongitude);
}
UsdAttribute
CesiumGeoreference::CreateGeoreferenceOriginLongitudeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumGeoreferenceOriginLongitude,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGeoreference::GetGeoreferenceOriginLatitudeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumGeoreferenceOriginLatitude);
}
UsdAttribute
CesiumGeoreference::CreateGeoreferenceOriginLatitudeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumGeoreferenceOriginLatitude,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGeoreference::GetGeoreferenceOriginHeightAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumGeoreferenceOriginHeight);
}
UsdAttribute
CesiumGeoreference::CreateGeoreferenceOriginHeightAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumGeoreferenceOriginHeight,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumGeoreference::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumGeoreferenceOriginLongitude,
CesiumTokens->cesiumGeoreferenceOriginLatitude,
CesiumTokens->cesiumGeoreferenceOriginHeight,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdTyped::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 5,035 | C++ | 27.613636 | 112 | 0.673684 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/webMapTileServiceRasterOverlay.cpp | #include ".//webMapTileServiceRasterOverlay.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumWebMapTileServiceRasterOverlay,
TfType::Bases< CesiumRasterOverlay > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumWebMapTileServiceRasterOverlayPrim")
// to find TfType<CesiumWebMapTileServiceRasterOverlay>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumWebMapTileServiceRasterOverlay>("CesiumWebMapTileServiceRasterOverlayPrim");
}
/* virtual */
CesiumWebMapTileServiceRasterOverlay::~CesiumWebMapTileServiceRasterOverlay()
{
}
/* static */
CesiumWebMapTileServiceRasterOverlay
CesiumWebMapTileServiceRasterOverlay::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumWebMapTileServiceRasterOverlay();
}
return CesiumWebMapTileServiceRasterOverlay(stage->GetPrimAtPath(path));
}
/* static */
CesiumWebMapTileServiceRasterOverlay
CesiumWebMapTileServiceRasterOverlay::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumWebMapTileServiceRasterOverlayPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumWebMapTileServiceRasterOverlay();
}
return CesiumWebMapTileServiceRasterOverlay(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumWebMapTileServiceRasterOverlay::_GetSchemaKind() const
{
return CesiumWebMapTileServiceRasterOverlay::schemaKind;
}
/* static */
const TfType &
CesiumWebMapTileServiceRasterOverlay::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumWebMapTileServiceRasterOverlay>();
return tfType;
}
/* static */
bool
CesiumWebMapTileServiceRasterOverlay::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumWebMapTileServiceRasterOverlay::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetUrlAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumUrl);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateUrlAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumUrl,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetLayerAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumLayer);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateLayerAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumLayer,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetStyleAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumStyle);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateStyleAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumStyle,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetFormatAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumFormat);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateFormatAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumFormat,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetTileMatrixSetIdAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumTileMatrixSetId);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateTileMatrixSetIdAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumTileMatrixSetId,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetSpecifyTileMatrixSetLabelsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSpecifyTileMatrixSetLabels);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateSpecifyTileMatrixSetLabelsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSpecifyTileMatrixSetLabels,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetTileMatrixSetLabelPrefixAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumTileMatrixSetLabelPrefix);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateTileMatrixSetLabelPrefixAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumTileMatrixSetLabelPrefix,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetTileMatrixSetLabelsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumTileMatrixSetLabels);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateTileMatrixSetLabelsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumTileMatrixSetLabels,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetUseWebMercatorProjectionAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumUseWebMercatorProjection);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateUseWebMercatorProjectionAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumUseWebMercatorProjection,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetSpecifyTilingSchemeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSpecifyTilingScheme);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateSpecifyTilingSchemeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSpecifyTilingScheme,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetRootTilesXAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumRootTilesX);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateRootTilesXAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumRootTilesX,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetRootTilesYAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumRootTilesY);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateRootTilesYAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumRootTilesY,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetWestAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumWest);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateWestAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumWest,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetEastAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumEast);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateEastAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumEast,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetSouthAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSouth);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateSouthAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSouth,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetNorthAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumNorth);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateNorthAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumNorth,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetSpecifyZoomLevelsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSpecifyZoomLevels);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateSpecifyZoomLevelsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSpecifyZoomLevels,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetMinimumZoomLevelAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMinimumZoomLevel);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateMinimumZoomLevelAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMinimumZoomLevel,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::GetMaximumZoomLevelAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumZoomLevel);
}
UsdAttribute
CesiumWebMapTileServiceRasterOverlay::CreateMaximumZoomLevelAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumZoomLevel,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumWebMapTileServiceRasterOverlay::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumUrl,
CesiumTokens->cesiumLayer,
CesiumTokens->cesiumStyle,
CesiumTokens->cesiumFormat,
CesiumTokens->cesiumTileMatrixSetId,
CesiumTokens->cesiumSpecifyTileMatrixSetLabels,
CesiumTokens->cesiumTileMatrixSetLabelPrefix,
CesiumTokens->cesiumTileMatrixSetLabels,
CesiumTokens->cesiumUseWebMercatorProjection,
CesiumTokens->cesiumSpecifyTilingScheme,
CesiumTokens->cesiumRootTilesX,
CesiumTokens->cesiumRootTilesY,
CesiumTokens->cesiumWest,
CesiumTokens->cesiumEast,
CesiumTokens->cesiumSouth,
CesiumTokens->cesiumNorth,
CesiumTokens->cesiumSpecifyZoomLevels,
CesiumTokens->cesiumMinimumZoomLevel,
CesiumTokens->cesiumMaximumZoomLevel,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
CesiumRasterOverlay::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 15,285 | C++ | 31.943965 | 129 | 0.676873 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapTileMapServiceRasterOverlay.cpp | #include ".//tileMapServiceRasterOverlay.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateUrlAttr(CesiumTileMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateUrlAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateSpecifyZoomLevelsAttr(CesiumTileMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateSpecifyZoomLevelsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateMinimumZoomLevelAttr(CesiumTileMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMinimumZoomLevelAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateMaximumZoomLevelAttr(CesiumTileMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumZoomLevelAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static std::string
_Repr(const CesiumTileMapServiceRasterOverlay &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.TileMapServiceRasterOverlay(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumTileMapServiceRasterOverlay()
{
typedef CesiumTileMapServiceRasterOverlay This;
class_<This, bases<CesiumRasterOverlay> >
cls("TileMapServiceRasterOverlay");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetUrlAttr",
&This::GetUrlAttr)
.def("CreateUrlAttr",
&_CreateUrlAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSpecifyZoomLevelsAttr",
&This::GetSpecifyZoomLevelsAttr)
.def("CreateSpecifyZoomLevelsAttr",
&_CreateSpecifyZoomLevelsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMinimumZoomLevelAttr",
&This::GetMinimumZoomLevelAttr)
.def("CreateMinimumZoomLevelAttr",
&_CreateMinimumZoomLevelAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumZoomLevelAttr",
&This::GetMaximumZoomLevelAttr)
.def("CreateMaximumZoomLevelAttr",
&_CreateMaximumZoomLevelAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 4,759 | C++ | 29.126582 | 82 | 0.610422 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/globeAnchorAPI.cpp | #include ".//globeAnchorAPI.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/usd/tokens.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumGlobeAnchorAPI,
TfType::Bases< UsdAPISchemaBase > >();
}
TF_DEFINE_PRIVATE_TOKENS(
_schemaTokens,
(CesiumGlobeAnchorSchemaAPI)
);
/* virtual */
CesiumGlobeAnchorAPI::~CesiumGlobeAnchorAPI()
{
}
/* static */
CesiumGlobeAnchorAPI
CesiumGlobeAnchorAPI::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumGlobeAnchorAPI();
}
return CesiumGlobeAnchorAPI(stage->GetPrimAtPath(path));
}
/* virtual */
UsdSchemaKind CesiumGlobeAnchorAPI::_GetSchemaKind() const
{
return CesiumGlobeAnchorAPI::schemaKind;
}
/* static */
bool
CesiumGlobeAnchorAPI::CanApply(
const UsdPrim &prim, std::string *whyNot)
{
return prim.CanApplyAPI<CesiumGlobeAnchorAPI>(whyNot);
}
/* static */
CesiumGlobeAnchorAPI
CesiumGlobeAnchorAPI::Apply(const UsdPrim &prim)
{
if (prim.ApplyAPI<CesiumGlobeAnchorAPI>()) {
return CesiumGlobeAnchorAPI(prim);
}
return CesiumGlobeAnchorAPI();
}
/* static */
const TfType &
CesiumGlobeAnchorAPI::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumGlobeAnchorAPI>();
return tfType;
}
/* static */
bool
CesiumGlobeAnchorAPI::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumGlobeAnchorAPI::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumGlobeAnchorAPI::GetAdjustOrientationForGlobeWhenMovingAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAnchorAdjustOrientationForGlobeWhenMoving);
}
UsdAttribute
CesiumGlobeAnchorAPI::CreateAdjustOrientationForGlobeWhenMovingAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAnchorAdjustOrientationForGlobeWhenMoving,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGlobeAnchorAPI::GetDetectTransformChangesAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAnchorDetectTransformChanges);
}
UsdAttribute
CesiumGlobeAnchorAPI::CreateDetectTransformChangesAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAnchorDetectTransformChanges,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGlobeAnchorAPI::GetAnchorLongitudeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAnchorLongitude);
}
UsdAttribute
CesiumGlobeAnchorAPI::CreateAnchorLongitudeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAnchorLongitude,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGlobeAnchorAPI::GetAnchorLatitudeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAnchorLatitude);
}
UsdAttribute
CesiumGlobeAnchorAPI::CreateAnchorLatitudeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAnchorLatitude,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGlobeAnchorAPI::GetAnchorHeightAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAnchorHeight);
}
UsdAttribute
CesiumGlobeAnchorAPI::CreateAnchorHeightAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAnchorHeight,
SdfValueTypeNames->Double,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumGlobeAnchorAPI::GetPositionAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAnchorPosition);
}
UsdAttribute
CesiumGlobeAnchorAPI::CreatePositionAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAnchorPosition,
SdfValueTypeNames->Double3,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdRelationship
CesiumGlobeAnchorAPI::GetGeoreferenceBindingRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumAnchorGeoreferenceBinding);
}
UsdRelationship
CesiumGlobeAnchorAPI::CreateGeoreferenceBindingRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumAnchorGeoreferenceBinding,
/* custom = */ false);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumGlobeAnchorAPI::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumAnchorAdjustOrientationForGlobeWhenMoving,
CesiumTokens->cesiumAnchorDetectTransformChanges,
CesiumTokens->cesiumAnchorLongitude,
CesiumTokens->cesiumAnchorLatitude,
CesiumTokens->cesiumAnchorHeight,
CesiumTokens->cesiumAnchorPosition,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdAPISchemaBase::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 7,019 | C++ | 27.306452 | 122 | 0.675025 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/georeference.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_GEOREFERENCE_H
#define CESIUMUSDSCHEMAS_GENERATED_GEOREFERENCE_H
/// \file CesiumUsdSchemas/georeference.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMGEOREFERENCEPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumGeoreference
///
/// Stores Georeference data for Cesium for Omniverse. Every stage should have at least one of these.
///
class CesiumGeoreference : public UsdTyped
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumGeoreference on UsdPrim \p prim .
/// Equivalent to CesiumGeoreference::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumGeoreference(const UsdPrim& prim=UsdPrim())
: UsdTyped(prim)
{
}
/// Construct a CesiumGeoreference on the prim held by \p schemaObj .
/// Should be preferred over CesiumGeoreference(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumGeoreference(const UsdSchemaBase& schemaObj)
: UsdTyped(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumGeoreference();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumGeoreference holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumGeoreference(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumGeoreference
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumGeoreference
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// GEOREFERENCEORIGINLONGITUDE
// --------------------------------------------------------------------- //
/// The longitude of the origin in degrees, in the range [-180, 180].
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:georeferenceOrigin:longitude = -105.25737` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetGeoreferenceOriginLongitudeAttr() const;
/// See GetGeoreferenceOriginLongitudeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateGeoreferenceOriginLongitudeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// GEOREFERENCEORIGINLATITUDE
// --------------------------------------------------------------------- //
/// The latitude of the origin in degrees, in the range [-90, 90].
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:georeferenceOrigin:latitude = 39.736401` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetGeoreferenceOriginLatitudeAttr() const;
/// See GetGeoreferenceOriginLatitudeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateGeoreferenceOriginLatitudeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// GEOREFERENCEORIGINHEIGHT
// --------------------------------------------------------------------- //
/// The height of the origin in meters above the WGS84 ellipsoid. Do not confuse this with a geoid height or height above mean sea level, which can be tens of meters higher or lower depending on where in the world the origin is located.
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:georeferenceOrigin:height = 2250` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetGeoreferenceOriginHeightAttr() const;
/// See GetGeoreferenceOriginHeightAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateGeoreferenceOriginHeightAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 8,471 | C | 39.342857 | 240 | 0.617991 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapGlobeAnchorAPI.cpp | #include ".//globeAnchorAPI.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyAnnotatedBoolResult.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateAdjustOrientationForGlobeWhenMovingAttr(CesiumGlobeAnchorAPI &self,
object defaultVal, bool writeSparsely) {
return self.CreateAdjustOrientationForGlobeWhenMovingAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDetectTransformChangesAttr(CesiumGlobeAnchorAPI &self,
object defaultVal, bool writeSparsely) {
return self.CreateDetectTransformChangesAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateAnchorLongitudeAttr(CesiumGlobeAnchorAPI &self,
object defaultVal, bool writeSparsely) {
return self.CreateAnchorLongitudeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateAnchorLatitudeAttr(CesiumGlobeAnchorAPI &self,
object defaultVal, bool writeSparsely) {
return self.CreateAnchorLatitudeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateAnchorHeightAttr(CesiumGlobeAnchorAPI &self,
object defaultVal, bool writeSparsely) {
return self.CreateAnchorHeightAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreatePositionAttr(CesiumGlobeAnchorAPI &self,
object defaultVal, bool writeSparsely) {
return self.CreatePositionAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double3), writeSparsely);
}
static std::string
_Repr(const CesiumGlobeAnchorAPI &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.GlobeAnchorAPI(%s)",
primRepr.c_str());
}
struct CesiumGlobeAnchorAPI_CanApplyResult :
public TfPyAnnotatedBoolResult<std::string>
{
CesiumGlobeAnchorAPI_CanApplyResult(bool val, std::string const &msg) :
TfPyAnnotatedBoolResult<std::string>(val, msg) {}
};
static CesiumGlobeAnchorAPI_CanApplyResult
_WrapCanApply(const UsdPrim& prim)
{
std::string whyNot;
bool result = CesiumGlobeAnchorAPI::CanApply(prim, &whyNot);
return CesiumGlobeAnchorAPI_CanApplyResult(result, whyNot);
}
} // anonymous namespace
void wrapCesiumGlobeAnchorAPI()
{
typedef CesiumGlobeAnchorAPI This;
CesiumGlobeAnchorAPI_CanApplyResult::Wrap<CesiumGlobeAnchorAPI_CanApplyResult>(
"_CanApplyResult", "whyNot");
class_<This, bases<UsdAPISchemaBase> >
cls("GlobeAnchorAPI");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("CanApply", &_WrapCanApply, (arg("prim")))
.staticmethod("CanApply")
.def("Apply", &This::Apply, (arg("prim")))
.staticmethod("Apply")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetAdjustOrientationForGlobeWhenMovingAttr",
&This::GetAdjustOrientationForGlobeWhenMovingAttr)
.def("CreateAdjustOrientationForGlobeWhenMovingAttr",
&_CreateAdjustOrientationForGlobeWhenMovingAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDetectTransformChangesAttr",
&This::GetDetectTransformChangesAttr)
.def("CreateDetectTransformChangesAttr",
&_CreateDetectTransformChangesAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetAnchorLongitudeAttr",
&This::GetAnchorLongitudeAttr)
.def("CreateAnchorLongitudeAttr",
&_CreateAnchorLongitudeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetAnchorLatitudeAttr",
&This::GetAnchorLatitudeAttr)
.def("CreateAnchorLatitudeAttr",
&_CreateAnchorLatitudeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetAnchorHeightAttr",
&This::GetAnchorHeightAttr)
.def("CreateAnchorHeightAttr",
&_CreateAnchorHeightAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetPositionAttr",
&This::GetPositionAttr)
.def("CreatePositionAttr",
&_CreatePositionAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetGeoreferenceBindingRel",
&This::GetGeoreferenceBindingRel)
.def("CreateGeoreferenceBindingRel",
&This::CreateGeoreferenceBindingRel)
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 6,790 | C++ | 30.882629 | 83 | 0.626951 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/rasterOverlay.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_RASTEROVERLAY_H
#define CESIUMUSDSCHEMAS_GENERATED_RASTEROVERLAY_H
/// \file CesiumUsdSchemas/rasterOverlay.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMRASTEROVERLAYPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumRasterOverlay
///
/// Abstract base class for prims that represent a raster overlay.
///
/// For any described attribute \em Fallback \em Value or \em Allowed \em Values below
/// that are text/tokens, the actual token is published and defined in \ref CesiumTokens.
/// So to set an attribute to the value "rightHanded", use CesiumTokens->rightHanded
/// as the value.
///
class CesiumRasterOverlay : public UsdTyped
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::AbstractTyped;
/// Construct a CesiumRasterOverlay on UsdPrim \p prim .
/// Equivalent to CesiumRasterOverlay::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumRasterOverlay(const UsdPrim& prim=UsdPrim())
: UsdTyped(prim)
{
}
/// Construct a CesiumRasterOverlay on the prim held by \p schemaObj .
/// Should be preferred over CesiumRasterOverlay(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumRasterOverlay(const UsdSchemaBase& schemaObj)
: UsdTyped(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumRasterOverlay();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumRasterOverlay holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumRasterOverlay(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumRasterOverlay
Get(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// SHOWCREDITSONSCREEN
// --------------------------------------------------------------------- //
/// Whether or not to show this raster overlay's credits on screen.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform bool cesium:showCreditsOnScreen = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetShowCreditsOnScreenAttr() const;
/// See GetShowCreditsOnScreenAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateShowCreditsOnScreenAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ALPHA
// --------------------------------------------------------------------- //
/// The alpha blending value, from 0.0 to 1.0, where 1.0 is fully opaque.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform float cesium:alpha = 1` |
/// | C++ Type | float |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Float |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetAlphaAttr() const;
/// See GetAlphaAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateAlphaAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// OVERLAYRENDERMETHOD
// --------------------------------------------------------------------- //
/// The Cesium default material will give the raster overlay a different rendering treatment based on this selection.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform token cesium:overlayRenderMethod = "overlay"` |
/// | C++ Type | TfToken |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Token |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
/// | \ref CesiumTokens "Allowed Values" | overlay, clip |
CESIUMUSDSCHEMAS_API
UsdAttribute GetOverlayRenderMethodAttr() const;
/// See GetOverlayRenderMethodAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateOverlayRenderMethodAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMSCREENSPACEERROR
// --------------------------------------------------------------------- //
/// The maximum number of pixels of error when rendering this overlay. This is used to select an appropriate level-of-detail. When this property has its default value, 2.0, it means that raster overlay images will be sized so that, when zoomed in closest, a single pixel in the raster overlay maps to approximately 2x2 pixels on the screen.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform float cesium:maximumScreenSpaceError = 2` |
/// | C++ Type | float |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Float |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumScreenSpaceErrorAttr() const;
/// See GetMaximumScreenSpaceErrorAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumScreenSpaceErrorAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMTEXTURESIZE
// --------------------------------------------------------------------- //
/// The maximum texel size of raster overlay textures, in either direction. Images created by this overlay will be no more than this number of texels in either direction. This may result in reduced raster overlay detail in some cases.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform int cesium:maximumTextureSize = 2048` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumTextureSizeAttr() const;
/// See GetMaximumTextureSizeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumTextureSizeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMSIMULTANEOUSTILELOADS
// --------------------------------------------------------------------- //
/// The maximum number of overlay tiles that may simultaneously be in the process of loading.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform int cesium:maximumSimultaneousTileLoads = 20` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumSimultaneousTileLoadsAttr() const;
/// See GetMaximumSimultaneousTileLoadsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumSimultaneousTileLoadsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SUBTILECACHEBYTES
// --------------------------------------------------------------------- //
/// The maximum number of bytes to use to cache sub-tiles in memory. This is used by provider types, that have an underlying tiling scheme that may not align with the tiling scheme of the geometry tiles on which the raster overlay tiles are draped. Because a single sub-tile may overlap multiple geometry tiles, it is useful to cache loaded sub-tiles in memory in case they're needed again soon. This property controls the maximum size of that cache.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform int cesium:subTileCacheBytes = 16777216` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSubTileCacheBytesAttr() const;
/// See GetSubTileCacheBytesAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSubTileCacheBytesAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 12,723 | C | 43.48951 | 454 | 0.607247 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapWebMapTileServiceRasterOverlay.cpp | #include ".//webMapTileServiceRasterOverlay.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateUrlAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateUrlAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateLayerAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateLayerAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateStyleAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateStyleAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateFormatAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateFormatAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateTileMatrixSetIdAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateTileMatrixSetIdAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateSpecifyTileMatrixSetLabelsAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateSpecifyTileMatrixSetLabelsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateTileMatrixSetLabelPrefixAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateTileMatrixSetLabelPrefixAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateTileMatrixSetLabelsAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateTileMatrixSetLabelsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateUseWebMercatorProjectionAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateUseWebMercatorProjectionAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateSpecifyTilingSchemeAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateSpecifyTilingSchemeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateRootTilesXAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateRootTilesXAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateRootTilesYAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateRootTilesYAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateWestAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateWestAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateEastAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateEastAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateSouthAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateSouthAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateNorthAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateNorthAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateSpecifyZoomLevelsAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateSpecifyZoomLevelsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateMinimumZoomLevelAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMinimumZoomLevelAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateMaximumZoomLevelAttr(CesiumWebMapTileServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumZoomLevelAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static std::string
_Repr(const CesiumWebMapTileServiceRasterOverlay &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.WebMapTileServiceRasterOverlay(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumWebMapTileServiceRasterOverlay()
{
typedef CesiumWebMapTileServiceRasterOverlay This;
class_<This, bases<CesiumRasterOverlay> >
cls("WebMapTileServiceRasterOverlay");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetUrlAttr",
&This::GetUrlAttr)
.def("CreateUrlAttr",
&_CreateUrlAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetLayerAttr",
&This::GetLayerAttr)
.def("CreateLayerAttr",
&_CreateLayerAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetStyleAttr",
&This::GetStyleAttr)
.def("CreateStyleAttr",
&_CreateStyleAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetFormatAttr",
&This::GetFormatAttr)
.def("CreateFormatAttr",
&_CreateFormatAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetTileMatrixSetIdAttr",
&This::GetTileMatrixSetIdAttr)
.def("CreateTileMatrixSetIdAttr",
&_CreateTileMatrixSetIdAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSpecifyTileMatrixSetLabelsAttr",
&This::GetSpecifyTileMatrixSetLabelsAttr)
.def("CreateSpecifyTileMatrixSetLabelsAttr",
&_CreateSpecifyTileMatrixSetLabelsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetTileMatrixSetLabelPrefixAttr",
&This::GetTileMatrixSetLabelPrefixAttr)
.def("CreateTileMatrixSetLabelPrefixAttr",
&_CreateTileMatrixSetLabelPrefixAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetTileMatrixSetLabelsAttr",
&This::GetTileMatrixSetLabelsAttr)
.def("CreateTileMatrixSetLabelsAttr",
&_CreateTileMatrixSetLabelsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetUseWebMercatorProjectionAttr",
&This::GetUseWebMercatorProjectionAttr)
.def("CreateUseWebMercatorProjectionAttr",
&_CreateUseWebMercatorProjectionAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSpecifyTilingSchemeAttr",
&This::GetSpecifyTilingSchemeAttr)
.def("CreateSpecifyTilingSchemeAttr",
&_CreateSpecifyTilingSchemeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetRootTilesXAttr",
&This::GetRootTilesXAttr)
.def("CreateRootTilesXAttr",
&_CreateRootTilesXAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetRootTilesYAttr",
&This::GetRootTilesYAttr)
.def("CreateRootTilesYAttr",
&_CreateRootTilesYAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetWestAttr",
&This::GetWestAttr)
.def("CreateWestAttr",
&_CreateWestAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetEastAttr",
&This::GetEastAttr)
.def("CreateEastAttr",
&_CreateEastAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSouthAttr",
&This::GetSouthAttr)
.def("CreateSouthAttr",
&_CreateSouthAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetNorthAttr",
&This::GetNorthAttr)
.def("CreateNorthAttr",
&_CreateNorthAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSpecifyZoomLevelsAttr",
&This::GetSpecifyZoomLevelsAttr)
.def("CreateSpecifyZoomLevelsAttr",
&_CreateSpecifyZoomLevelsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMinimumZoomLevelAttr",
&This::GetMinimumZoomLevelAttr)
.def("CreateMinimumZoomLevelAttr",
&_CreateMinimumZoomLevelAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumZoomLevelAttr",
&This::GetMaximumZoomLevelAttr)
.def("CreateMaximumZoomLevelAttr",
&_CreateMaximumZoomLevelAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 13,063 | C++ | 34.5 | 82 | 0.618082 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/tileMapServiceRasterOverlay.cpp | #include ".//tileMapServiceRasterOverlay.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumTileMapServiceRasterOverlay,
TfType::Bases< CesiumRasterOverlay > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumTileMapServiceRasterOverlayPrim")
// to find TfType<CesiumTileMapServiceRasterOverlay>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumTileMapServiceRasterOverlay>("CesiumTileMapServiceRasterOverlayPrim");
}
/* virtual */
CesiumTileMapServiceRasterOverlay::~CesiumTileMapServiceRasterOverlay()
{
}
/* static */
CesiumTileMapServiceRasterOverlay
CesiumTileMapServiceRasterOverlay::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumTileMapServiceRasterOverlay();
}
return CesiumTileMapServiceRasterOverlay(stage->GetPrimAtPath(path));
}
/* static */
CesiumTileMapServiceRasterOverlay
CesiumTileMapServiceRasterOverlay::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumTileMapServiceRasterOverlayPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumTileMapServiceRasterOverlay();
}
return CesiumTileMapServiceRasterOverlay(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumTileMapServiceRasterOverlay::_GetSchemaKind() const
{
return CesiumTileMapServiceRasterOverlay::schemaKind;
}
/* static */
const TfType &
CesiumTileMapServiceRasterOverlay::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumTileMapServiceRasterOverlay>();
return tfType;
}
/* static */
bool
CesiumTileMapServiceRasterOverlay::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumTileMapServiceRasterOverlay::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::GetUrlAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumUrl);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::CreateUrlAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumUrl,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::GetSpecifyZoomLevelsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSpecifyZoomLevels);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::CreateSpecifyZoomLevelsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSpecifyZoomLevels,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::GetMinimumZoomLevelAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMinimumZoomLevel);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::CreateMinimumZoomLevelAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMinimumZoomLevel,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::GetMaximumZoomLevelAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumZoomLevel);
}
UsdAttribute
CesiumTileMapServiceRasterOverlay::CreateMaximumZoomLevelAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumZoomLevel,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumTileMapServiceRasterOverlay::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumUrl,
CesiumTokens->cesiumSpecifyZoomLevels,
CesiumTokens->cesiumMinimumZoomLevel,
CesiumTokens->cesiumMaximumZoomLevel,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
CesiumRasterOverlay::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 5,926 | C++ | 29.551546 | 117 | 0.687985 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/ionRasterOverlay.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_IONRASTEROVERLAY_H
#define CESIUMUSDSCHEMAS_GENERATED_IONRASTEROVERLAY_H
/// \file CesiumUsdSchemas/ionRasterOverlay.h
#include "pxr/pxr.h"
#include ".//api.h"
#include ".//rasterOverlay.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMIONRASTEROVERLAYPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumIonRasterOverlay
///
/// Adds a prim for representing an ion raster overlay.
///
class CesiumIonRasterOverlay : public CesiumRasterOverlay
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumIonRasterOverlay on UsdPrim \p prim .
/// Equivalent to CesiumIonRasterOverlay::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumIonRasterOverlay(const UsdPrim& prim=UsdPrim())
: CesiumRasterOverlay(prim)
{
}
/// Construct a CesiumIonRasterOverlay on the prim held by \p schemaObj .
/// Should be preferred over CesiumIonRasterOverlay(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumIonRasterOverlay(const UsdSchemaBase& schemaObj)
: CesiumRasterOverlay(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumIonRasterOverlay();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumIonRasterOverlay holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumIonRasterOverlay(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumIonRasterOverlay
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumIonRasterOverlay
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// IONASSETID
// --------------------------------------------------------------------- //
/// The ID of the Cesium ion asset to use.
///
/// | ||
/// | -- | -- |
/// | Declaration | `int64 cesium:ionAssetId = 0` |
/// | C++ Type | int64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonAssetIdAttr() const;
/// See GetIonAssetIdAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonAssetIdAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONACCESSTOKEN
// --------------------------------------------------------------------- //
/// The access token to use to access the Cesium ion resource. Overrides the default token. Blank if using URL.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:ionAccessToken = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonAccessTokenAttr() const;
/// See GetIonAccessTokenAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonAccessTokenAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONSERVERBINDING
// --------------------------------------------------------------------- //
/// Specifies which Cesium ion Server prim to use for this tileset.
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetIonServerBindingRel() const;
/// See GetIonServerBindingRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateIonServerBindingRel() const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 7,700 | C | 37.123762 | 115 | 0.61 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/globeAnchorAPI.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_GLOBEANCHORAPI_H
#define CESIUMUSDSCHEMAS_GENERATED_GLOBEANCHORAPI_H
/// \file CesiumUsdSchemas/globeAnchorAPI.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usd/apiSchemaBase.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMGLOBEANCHORSCHEMAAPI //
// -------------------------------------------------------------------------- //
/// \class CesiumGlobeAnchorAPI
///
/// Adds Globe Anchoring information to a Prim for use with Cesium for Omniverse.
///
class CesiumGlobeAnchorAPI : public UsdAPISchemaBase
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI;
/// Construct a CesiumGlobeAnchorAPI on UsdPrim \p prim .
/// Equivalent to CesiumGlobeAnchorAPI::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumGlobeAnchorAPI(const UsdPrim& prim=UsdPrim())
: UsdAPISchemaBase(prim)
{
}
/// Construct a CesiumGlobeAnchorAPI on the prim held by \p schemaObj .
/// Should be preferred over CesiumGlobeAnchorAPI(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumGlobeAnchorAPI(const UsdSchemaBase& schemaObj)
: UsdAPISchemaBase(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumGlobeAnchorAPI();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumGlobeAnchorAPI holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumGlobeAnchorAPI(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumGlobeAnchorAPI
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Returns true if this <b>single-apply</b> API schema can be applied to
/// the given \p prim. If this schema can not be a applied to the prim,
/// this returns false and, if provided, populates \p whyNot with the
/// reason it can not be applied.
///
/// Note that if CanApply returns false, that does not necessarily imply
/// that calling Apply will fail. Callers are expected to call CanApply
/// before calling Apply if they want to ensure that it is valid to
/// apply a schema.
///
/// \sa UsdPrim::GetAppliedSchemas()
/// \sa UsdPrim::HasAPI()
/// \sa UsdPrim::CanApplyAPI()
/// \sa UsdPrim::ApplyAPI()
/// \sa UsdPrim::RemoveAPI()
///
CESIUMUSDSCHEMAS_API
static bool
CanApply(const UsdPrim &prim, std::string *whyNot=nullptr);
/// Applies this <b>single-apply</b> API schema to the given \p prim.
/// This information is stored by adding "CesiumGlobeAnchorSchemaAPI" to the
/// token-valued, listOp metadata \em apiSchemas on the prim.
///
/// \return A valid CesiumGlobeAnchorAPI object is returned upon success.
/// An invalid (or empty) CesiumGlobeAnchorAPI object is returned upon
/// failure. See \ref UsdPrim::ApplyAPI() for conditions
/// resulting in failure.
///
/// \sa UsdPrim::GetAppliedSchemas()
/// \sa UsdPrim::HasAPI()
/// \sa UsdPrim::CanApplyAPI()
/// \sa UsdPrim::ApplyAPI()
/// \sa UsdPrim::RemoveAPI()
///
CESIUMUSDSCHEMAS_API
static CesiumGlobeAnchorAPI
Apply(const UsdPrim &prim);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// ADJUSTORIENTATIONFORGLOBEWHENMOVING
// --------------------------------------------------------------------- //
/// Gets or sets whether to adjust the Prim's orientation based on globe curvature as the game object moves.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:anchor:adjustOrientationForGlobeWhenMoving = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetAdjustOrientationForGlobeWhenMovingAttr() const;
/// See GetAdjustOrientationForGlobeWhenMovingAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateAdjustOrientationForGlobeWhenMovingAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DETECTTRANSFORMCHANGES
// --------------------------------------------------------------------- //
/// Gets or sets whether to automatically detect changes in the Prim's transform and update the precise globe coordinates accordingly.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:anchor:detectTransformChanges = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDetectTransformChangesAttr() const;
/// See GetDetectTransformChangesAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDetectTransformChangesAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ANCHORLONGITUDE
// --------------------------------------------------------------------- //
/// The longitude in degrees, in the range [-180, 180].
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:anchor:longitude = 0` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetAnchorLongitudeAttr() const;
/// See GetAnchorLongitudeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateAnchorLongitudeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ANCHORLATITUDE
// --------------------------------------------------------------------- //
/// The latitude in degrees, in the range [-90, 90].
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:anchor:latitude = 0` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetAnchorLatitudeAttr() const;
/// See GetAnchorLatitudeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateAnchorLatitudeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ANCHORHEIGHT
// --------------------------------------------------------------------- //
/// The height in meters above the ellipsoid.
///
/// | ||
/// | -- | -- |
/// | Declaration | `double cesium:anchor:height = 0` |
/// | C++ Type | double |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double |
CESIUMUSDSCHEMAS_API
UsdAttribute GetAnchorHeightAttr() const;
/// See GetAnchorHeightAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateAnchorHeightAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// POSITION
// --------------------------------------------------------------------- //
/// The actual position of the globally anchored prim in the ECEF coordinate system.
///
/// | ||
/// | -- | -- |
/// | Declaration | `double3 cesium:anchor:position = (0, 0, 0)` |
/// | C++ Type | GfVec3d |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Double3 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetPositionAttr() const;
/// See GetPositionAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreatePositionAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// GEOREFERENCEBINDING
// --------------------------------------------------------------------- //
/// The Georeference Origin prim used for the globe anchor calculations.
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetGeoreferenceBindingRel() const;
/// See GetGeoreferenceBindingRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateGeoreferenceBindingRel() const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 12,204 | C | 39.148026 | 138 | 0.592101 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/rasterOverlay.cpp | #include ".//rasterOverlay.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumRasterOverlay,
TfType::Bases< UsdTyped > >();
}
/* virtual */
CesiumRasterOverlay::~CesiumRasterOverlay()
{
}
/* static */
CesiumRasterOverlay
CesiumRasterOverlay::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumRasterOverlay();
}
return CesiumRasterOverlay(stage->GetPrimAtPath(path));
}
/* virtual */
UsdSchemaKind CesiumRasterOverlay::_GetSchemaKind() const
{
return CesiumRasterOverlay::schemaKind;
}
/* static */
const TfType &
CesiumRasterOverlay::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumRasterOverlay>();
return tfType;
}
/* static */
bool
CesiumRasterOverlay::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumRasterOverlay::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumRasterOverlay::GetShowCreditsOnScreenAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumShowCreditsOnScreen);
}
UsdAttribute
CesiumRasterOverlay::CreateShowCreditsOnScreenAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumShowCreditsOnScreen,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumRasterOverlay::GetAlphaAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumAlpha);
}
UsdAttribute
CesiumRasterOverlay::CreateAlphaAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumAlpha,
SdfValueTypeNames->Float,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumRasterOverlay::GetOverlayRenderMethodAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumOverlayRenderMethod);
}
UsdAttribute
CesiumRasterOverlay::CreateOverlayRenderMethodAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumOverlayRenderMethod,
SdfValueTypeNames->Token,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumRasterOverlay::GetMaximumScreenSpaceErrorAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumScreenSpaceError);
}
UsdAttribute
CesiumRasterOverlay::CreateMaximumScreenSpaceErrorAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumScreenSpaceError,
SdfValueTypeNames->Float,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumRasterOverlay::GetMaximumTextureSizeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumTextureSize);
}
UsdAttribute
CesiumRasterOverlay::CreateMaximumTextureSizeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumTextureSize,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumRasterOverlay::GetMaximumSimultaneousTileLoadsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumSimultaneousTileLoads);
}
UsdAttribute
CesiumRasterOverlay::CreateMaximumSimultaneousTileLoadsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumSimultaneousTileLoads,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumRasterOverlay::GetSubTileCacheBytesAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSubTileCacheBytes);
}
UsdAttribute
CesiumRasterOverlay::CreateSubTileCacheBytesAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSubTileCacheBytes,
SdfValueTypeNames->Int,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumRasterOverlay::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumShowCreditsOnScreen,
CesiumTokens->cesiumAlpha,
CesiumTokens->cesiumOverlayRenderMethod,
CesiumTokens->cesiumMaximumScreenSpaceError,
CesiumTokens->cesiumMaximumTextureSize,
CesiumTokens->cesiumMaximumSimultaneousTileLoads,
CesiumTokens->cesiumSubTileCacheBytes,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdTyped::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 6,680 | C++ | 28.174672 | 114 | 0.661527 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/data.cpp | #include ".//data.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumData,
TfType::Bases< UsdTyped > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumDataPrim")
// to find TfType<CesiumData>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumData>("CesiumDataPrim");
}
/* virtual */
CesiumData::~CesiumData()
{
}
/* static */
CesiumData
CesiumData::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumData();
}
return CesiumData(stage->GetPrimAtPath(path));
}
/* static */
CesiumData
CesiumData::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumDataPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumData();
}
return CesiumData(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumData::_GetSchemaKind() const
{
return CesiumData::schemaKind;
}
/* static */
const TfType &
CesiumData::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumData>();
return tfType;
}
/* static */
bool
CesiumData::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumData::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumData::GetDebugDisableMaterialsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugDisableMaterials);
}
UsdAttribute
CesiumData::CreateDebugDisableMaterialsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugDisableMaterials,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugDisableTexturesAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugDisableTextures);
}
UsdAttribute
CesiumData::CreateDebugDisableTexturesAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugDisableTextures,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugDisableGeometryPoolAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugDisableGeometryPool);
}
UsdAttribute
CesiumData::CreateDebugDisableGeometryPoolAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugDisableGeometryPool,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugDisableMaterialPoolAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugDisableMaterialPool);
}
UsdAttribute
CesiumData::CreateDebugDisableMaterialPoolAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugDisableMaterialPool,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugDisableTexturePoolAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugDisableTexturePool);
}
UsdAttribute
CesiumData::CreateDebugDisableTexturePoolAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugDisableTexturePool,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugGeometryPoolInitialCapacityAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugGeometryPoolInitialCapacity);
}
UsdAttribute
CesiumData::CreateDebugGeometryPoolInitialCapacityAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugGeometryPoolInitialCapacity,
SdfValueTypeNames->UInt64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugMaterialPoolInitialCapacityAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugMaterialPoolInitialCapacity);
}
UsdAttribute
CesiumData::CreateDebugMaterialPoolInitialCapacityAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugMaterialPoolInitialCapacity,
SdfValueTypeNames->UInt64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugTexturePoolInitialCapacityAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugTexturePoolInitialCapacity);
}
UsdAttribute
CesiumData::CreateDebugTexturePoolInitialCapacityAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugTexturePoolInitialCapacity,
SdfValueTypeNames->UInt64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugRandomColorsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugRandomColors);
}
UsdAttribute
CesiumData::CreateDebugRandomColorsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugRandomColors,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumData::GetDebugDisableGeoreferencingAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumDebugDisableGeoreferencing);
}
UsdAttribute
CesiumData::CreateDebugDisableGeoreferencingAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumDebugDisableGeoreferencing,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdRelationship
CesiumData::GetSelectedIonServerRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumSelectedIonServer);
}
UsdRelationship
CesiumData::CreateSelectedIonServerRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumSelectedIonServer,
/* custom = */ false);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumData::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumDebugDisableMaterials,
CesiumTokens->cesiumDebugDisableTextures,
CesiumTokens->cesiumDebugDisableGeometryPool,
CesiumTokens->cesiumDebugDisableMaterialPool,
CesiumTokens->cesiumDebugDisableTexturePool,
CesiumTokens->cesiumDebugGeometryPoolInitialCapacity,
CesiumTokens->cesiumDebugMaterialPoolInitialCapacity,
CesiumTokens->cesiumDebugTexturePoolInitialCapacity,
CesiumTokens->cesiumDebugRandomColors,
CesiumTokens->cesiumDebugDisableGeoreferencing,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdTyped::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 9,523 | C++ | 29.234921 | 109 | 0.667017 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/data.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_DATA_H
#define CESIUMUSDSCHEMAS_GENERATED_DATA_H
/// \file CesiumUsdSchemas/data.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMDATAPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumData
///
/// Stores stage level data for Cesium for Omniverse/USD.
///
class CesiumData : public UsdTyped
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumData on UsdPrim \p prim .
/// Equivalent to CesiumData::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumData(const UsdPrim& prim=UsdPrim())
: UsdTyped(prim)
{
}
/// Construct a CesiumData on the prim held by \p schemaObj .
/// Should be preferred over CesiumData(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumData(const UsdSchemaBase& schemaObj)
: UsdTyped(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumData();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumData holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumData(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumData
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumData
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// DEBUGDISABLEMATERIALS
// --------------------------------------------------------------------- //
/// Debug option that renders tilesets with materials disabled.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:disableMaterials = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugDisableMaterialsAttr() const;
/// See GetDebugDisableMaterialsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugDisableMaterialsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGDISABLETEXTURES
// --------------------------------------------------------------------- //
/// Debug option that renders tilesets with textures disabled.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:disableTextures = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugDisableTexturesAttr() const;
/// See GetDebugDisableTexturesAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugDisableTexturesAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGDISABLEGEOMETRYPOOL
// --------------------------------------------------------------------- //
/// Debug option that disables geometry pooling.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:disableGeometryPool = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugDisableGeometryPoolAttr() const;
/// See GetDebugDisableGeometryPoolAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugDisableGeometryPoolAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGDISABLEMATERIALPOOL
// --------------------------------------------------------------------- //
/// Debug option that disables material pooling.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:disableMaterialPool = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugDisableMaterialPoolAttr() const;
/// See GetDebugDisableMaterialPoolAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugDisableMaterialPoolAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGDISABLETEXTUREPOOL
// --------------------------------------------------------------------- //
/// Debug option that disables texture pooling.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:disableTexturePool = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugDisableTexturePoolAttr() const;
/// See GetDebugDisableTexturePoolAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugDisableTexturePoolAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGGEOMETRYPOOLINITIALCAPACITY
// --------------------------------------------------------------------- //
/// Debug option that controls the initial capacity of the geometry pool.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uint64 cesium:debug:geometryPoolInitialCapacity = 2048` |
/// | C++ Type | uint64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->UInt64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugGeometryPoolInitialCapacityAttr() const;
/// See GetDebugGeometryPoolInitialCapacityAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugGeometryPoolInitialCapacityAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGMATERIALPOOLINITIALCAPACITY
// --------------------------------------------------------------------- //
/// Debug option that controls the initial capacity of the material pool.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uint64 cesium:debug:materialPoolInitialCapacity = 2048` |
/// | C++ Type | uint64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->UInt64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugMaterialPoolInitialCapacityAttr() const;
/// See GetDebugMaterialPoolInitialCapacityAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugMaterialPoolInitialCapacityAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGTEXTUREPOOLINITIALCAPACITY
// --------------------------------------------------------------------- //
/// Debug option that controls the initial capacity of the texture pool.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uint64 cesium:debug:texturePoolInitialCapacity = 2048` |
/// | C++ Type | uint64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->UInt64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugTexturePoolInitialCapacityAttr() const;
/// See GetDebugTexturePoolInitialCapacityAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugTexturePoolInitialCapacityAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGRANDOMCOLORS
// --------------------------------------------------------------------- //
/// Debug option that renders tiles with random colors.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:randomColors = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugRandomColorsAttr() const;
/// See GetDebugRandomColorsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugRandomColorsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// DEBUGDISABLEGEOREFERENCING
// --------------------------------------------------------------------- //
/// Debug option to disable georeferencing. Tiles will be rendered in EPSG:4978 (ECEF) coordinates where (0, 0, 0) is the center of the globe, the X axis points towards the prime meridian, the Y axis points towards the 90th meridian east, and the Z axis points towards the North Pole.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:debug:disableGeoreferencing = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDebugDisableGeoreferencingAttr() const;
/// See GetDebugDisableGeoreferencingAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDebugDisableGeoreferencingAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SELECTEDIONSERVER
// --------------------------------------------------------------------- //
/// The current ion Server prim used in the Cesium for Omniverse UI.
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetSelectedIonServerRel() const;
/// See GetSelectedIonServerRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateSelectedIonServerRel() const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 16,223 | C | 41.920635 | 288 | 0.589657 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/tileset.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_TILESET_H
#define CESIUMUSDSCHEMAS_GENERATED_TILESET_H
/// \file CesiumUsdSchemas/tileset.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usdGeom/gprim.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMTILESETPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumTileset
///
/// A prim representing a tileset.
///
/// For any described attribute \em Fallback \em Value or \em Allowed \em Values below
/// that are text/tokens, the actual token is published and defined in \ref CesiumTokens.
/// So to set an attribute to the value "rightHanded", use CesiumTokens->rightHanded
/// as the value.
///
class CesiumTileset : public UsdGeomGprim
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumTileset on UsdPrim \p prim .
/// Equivalent to CesiumTileset::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumTileset(const UsdPrim& prim=UsdPrim())
: UsdGeomGprim(prim)
{
}
/// Construct a CesiumTileset on the prim held by \p schemaObj .
/// Should be preferred over CesiumTileset(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumTileset(const UsdSchemaBase& schemaObj)
: UsdGeomGprim(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumTileset();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumTileset holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumTileset(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumTileset
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumTileset
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// SOURCETYPE
// --------------------------------------------------------------------- //
/// Selects whether to use the Cesium ion Asset ID or the provided URL for this tileset.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uniform token cesium:sourceType = "ion"` |
/// | C++ Type | TfToken |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Token |
/// | \ref SdfVariability "Variability" | SdfVariabilityUniform |
/// | \ref CesiumTokens "Allowed Values" | ion, url |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSourceTypeAttr() const;
/// See GetSourceTypeAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSourceTypeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// URL
// --------------------------------------------------------------------- //
/// The URL of this tileset's tileset.json file. Usually blank if this is an ion asset.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:url = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetUrlAttr() const;
/// See GetUrlAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateUrlAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONASSETID
// --------------------------------------------------------------------- //
/// The ID of the Cesium ion asset to use. Usually blank if using URL.
///
/// | ||
/// | -- | -- |
/// | Declaration | `int64 cesium:ionAssetId = 0` |
/// | C++ Type | int64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonAssetIdAttr() const;
/// See GetIonAssetIdAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonAssetIdAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONACCESSTOKEN
// --------------------------------------------------------------------- //
/// The access token to use to access the Cesium ion resource. Overrides the default token. Usually blank if using URL.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:ionAccessToken = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonAccessTokenAttr() const;
/// See GetIonAccessTokenAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonAccessTokenAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMSCREENSPACEERROR
// --------------------------------------------------------------------- //
/// The maximum number of pixels of error when rendering this tileset. This is used to select an appropriate level-of-detail: A low value will cause many tiles with a high level of detail to be loaded, causing a finer visual representation of the tiles, but with a higher performance cost for loading and rendering. A higher value will cause a coarser visual representation, with lower performance requirements. When a tileset uses the older layer.json / quantized-mesh format rather than 3D Tiles, this value is effectively divided by 8.0. So the default value of 16.0 corresponds to the standard value for quantized-mesh terrain of 2.0.
///
/// | ||
/// | -- | -- |
/// | Declaration | `float cesium:maximumScreenSpaceError = 16` |
/// | C++ Type | float |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Float |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumScreenSpaceErrorAttr() const;
/// See GetMaximumScreenSpaceErrorAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumScreenSpaceErrorAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// PRELOADANCESTORS
// --------------------------------------------------------------------- //
/// Whether to preload ancestor tiles. Setting this to true optimizes the zoom-out experience and provides more detail in newly-exposed areas when panning. The down side is that it requires loading more tiles.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:preloadAncestors = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetPreloadAncestorsAttr() const;
/// See GetPreloadAncestorsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreatePreloadAncestorsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// PRELOADSIBLINGS
// --------------------------------------------------------------------- //
/// Whether to preload sibling tiles. Setting this to true causes tiles with the same parent as a rendered tile to be loaded, even if they are culled. Setting this to true may provide a better panning experience at the cost of loading more tiles.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:preloadSiblings = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetPreloadSiblingsAttr() const;
/// See GetPreloadSiblingsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreatePreloadSiblingsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// FORBIDHOLES
// --------------------------------------------------------------------- //
/// Whether to prevent refinement of a parent tile when a child isn't done loading. When this is set to true, the tileset will guarantee that the tileset will never be rendered with holes in place of tiles that are not yet loaded, even though the tile that is rendered instead may have low resolution. When false, overall loading will be faster, but newly-visible parts of the tileset may initially be blank.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:forbidHoles = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetForbidHolesAttr() const;
/// See GetForbidHolesAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateForbidHolesAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMSIMULTANEOUSTILELOADS
// --------------------------------------------------------------------- //
/// The maximum number of tiles that may be loaded at once. When new parts of the tileset become visible, the tasks to load the corresponding tiles are put into a queue. This value determines how many of these tasks are processed at the same time. A higher value may cause the tiles to be loaded and rendered more quickly, at the cost of a higher network and processing load.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uint cesium:maximumSimultaneousTileLoads = 20` |
/// | C++ Type | unsigned int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->UInt |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumSimultaneousTileLoadsAttr() const;
/// See GetMaximumSimultaneousTileLoadsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumSimultaneousTileLoadsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMCACHEDBYTES
// --------------------------------------------------------------------- //
/// The maximum number of bytes that may be cached. Note that this value, even if 0, will never cause tiles that are needed for rendering to be unloaded. However, if the total number of loaded bytes is greater than this value, tiles will be unloaded until the total is under this number or until only required tiles remain, whichever comes first.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uint64 cesium:maximumCachedBytes = 536870912` |
/// | C++ Type | uint64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->UInt64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumCachedBytesAttr() const;
/// See GetMaximumCachedBytesAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumCachedBytesAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// LOADINGDESCENDANTLIMIT
// --------------------------------------------------------------------- //
/// The number of loading descendants a tile should allow before deciding to render itself instead of waiting. Setting this to 0 will cause each level of detail to be loaded successively. This will increase the overall loading time, but cause additional detail to appear more gradually. Setting this to a high value like 1000 will decrease the overall time until the desired level of detail is achieved, but this high-detail representation will appear at once, as soon as it is loaded completely.
///
/// | ||
/// | -- | -- |
/// | Declaration | `uint cesium:loadingDescendantLimit = 20` |
/// | C++ Type | unsigned int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->UInt |
CESIUMUSDSCHEMAS_API
UsdAttribute GetLoadingDescendantLimitAttr() const;
/// See GetLoadingDescendantLimitAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateLoadingDescendantLimitAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ENABLEFRUSTUMCULLING
// --------------------------------------------------------------------- //
/// Whether to cull tiles that are outside the frustum. By default this is true, meaning that tiles that are not visible with the current camera configuration will be ignored. It can be set to false, so that these tiles are still considered for loading, refinement and rendering. This will cause more tiles to be loaded, but helps to avoid holes and provides a more consistent mesh, which may be helpful for physics and shadows. Note that this will always be disabled if Use Lod Transitions is set to true.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:enableFrustumCulling = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetEnableFrustumCullingAttr() const;
/// See GetEnableFrustumCullingAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateEnableFrustumCullingAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ENABLEFOGCULLING
// --------------------------------------------------------------------- //
/// Whether to cull tiles that are occluded by fog. This does not refer to the atmospheric fog rendered by Unity, but to an internal representation of fog: Depending on the height of the camera above the ground, tiles that are far away (close to the horizon) will be culled when this flag is enabled. Note that this will always be disabled if Use Lod Transitions is set to true.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:enableFogCulling = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetEnableFogCullingAttr() const;
/// See GetEnableFogCullingAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateEnableFogCullingAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// ENFORCECULLEDSCREENSPACEERROR
// --------------------------------------------------------------------- //
/// Whether a specified screen-space error should be enforced for tiles that are outside the frustum or hidden in fog. When Enable Frustum Culling and Enable Fog Culling are both true, tiles outside the view frustum or hidden in fog are effectively ignored, and so their level-of-detail doesn't matter. And in this scenario, this property is ignored. However, when either of those flags are false, these would-be-culled tiles continue to be processed, and the question arises of how to handle their level-of-detail. When this property is false, refinement terminates at these tiles, no matter what their current screen-space error. The tiles are available for physics, shadows, etc., but their level-of-detail may be very low. When set to true, these tiles are refined until they achieve the specified Culled Screen Space Error. This allows control over the minimum quality of these would-be-culled tiles.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:enforceCulledScreenSpaceError = 1` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetEnforceCulledScreenSpaceErrorAttr() const;
/// See GetEnforceCulledScreenSpaceErrorAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateEnforceCulledScreenSpaceErrorAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// CULLEDSCREENSPACEERROR
// --------------------------------------------------------------------- //
/// The screen-space error to be enforced for tiles that are outside the frustum or hidden in fog. When Enable Frustum Culling and Enable Fog Culling are both true, tiles outside the view frustum or hidden in fog are effectively ignored, and so their level-of-detail doesn't matter. And in this scenario, this property is ignored. However, when either of those flags are false, these would-be-culled tiles continue to be processed, and the question arises of how to handle their level-of-detail. When this property is false, refinement terminates at these tiles, no matter what their current screen-space error. The tiles are available for physics, shadows, etc., but their level-of-detail may be very low. When set to true, these tiles are refined until they achieve the specified Culled Screen Space Error. This allows control over the minimum quality of these would-be-culled tiles.
///
/// | ||
/// | -- | -- |
/// | Declaration | `float cesium:culledScreenSpaceError = 64` |
/// | C++ Type | float |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Float |
CESIUMUSDSCHEMAS_API
UsdAttribute GetCulledScreenSpaceErrorAttr() const;
/// See GetCulledScreenSpaceErrorAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateCulledScreenSpaceErrorAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SUSPENDUPDATE
// --------------------------------------------------------------------- //
/// Pauses level-of-detail and culling updates of this tileset.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:suspendUpdate = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSuspendUpdateAttr() const;
/// See GetSuspendUpdateAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSuspendUpdateAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SMOOTHNORMALS
// --------------------------------------------------------------------- //
/// Generate smooth normals instead of flat normals when normals are missing.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:smoothNormals = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSmoothNormalsAttr() const;
/// See GetSmoothNormalsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSmoothNormalsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SHOWCREDITSONSCREEN
// --------------------------------------------------------------------- //
/// Whether or not to show this tileset's credits on screen.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:showCreditsOnScreen = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetShowCreditsOnScreenAttr() const;
/// See GetShowCreditsOnScreenAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateShowCreditsOnScreenAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAINTHREADLOADINGTIMELIMIT
// --------------------------------------------------------------------- //
/// A soft limit on how long (in milliseconds) to spend on the main-thread part of tile loading each frame. A value of 0.0 indicates that all pending main-thread loads should be completed each tick.
///
/// | ||
/// | -- | -- |
/// | Declaration | `float cesium:mainThreadLoadingTimeLimit = 0` |
/// | C++ Type | float |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Float |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMainThreadLoadingTimeLimitAttr() const;
/// See GetMainThreadLoadingTimeLimitAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMainThreadLoadingTimeLimitAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// GEOREFERENCEBINDING
// --------------------------------------------------------------------- //
/// Specifies which Cesium Georeference object to use for this tileset.
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetGeoreferenceBindingRel() const;
/// See GetGeoreferenceBindingRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateGeoreferenceBindingRel() const;
public:
// --------------------------------------------------------------------- //
// IONSERVERBINDING
// --------------------------------------------------------------------- //
/// Specifies which Cesium ion Server prim to use for this tileset.
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetIonServerBindingRel() const;
/// See GetIonServerBindingRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateIonServerBindingRel() const;
public:
// --------------------------------------------------------------------- //
// RASTEROVERLAYBINDING
// --------------------------------------------------------------------- //
/// Specifies which raster overlays to use for this tileset.
///
CESIUMUSDSCHEMAS_API
UsdRelationship GetRasterOverlayBindingRel() const;
/// See GetRasterOverlayBindingRel(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create
CESIUMUSDSCHEMAS_API
UsdRelationship CreateRasterOverlayBindingRel() const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 31,339 | C | 50.292962 | 909 | 0.606848 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/tokens.h | #ifndef CESIUM_TOKENS_H
#define CESIUM_TOKENS_H
/// \file CesiumUsdSchemas/tokens.h
// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
//
// This is an automatically generated file (by usdGenSchema.py).
// Do not hand-edit!
//
// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/base/tf/staticData.h"
#include "pxr/base/tf/token.h"
#include <vector>
PXR_NAMESPACE_OPEN_SCOPE
/// \class CesiumTokensType
///
/// \link CesiumTokens \endlink provides static, efficient
/// \link TfToken TfTokens\endlink for use in all public USD API.
///
/// These tokens are auto-generated from the module's schema, representing
/// property names, for when you need to fetch an attribute or relationship
/// directly by name, e.g. UsdPrim::GetAttribute(), in the most efficient
/// manner, and allow the compiler to verify that you spelled the name
/// correctly.
///
/// CesiumTokens also contains all of the \em allowedTokens values
/// declared for schema builtin attributes of 'token' scene description type.
/// Use CesiumTokens like so:
///
/// \code
/// gprim.GetMyTokenValuedAttr().Set(CesiumTokens->cesiumAlpha);
/// \endcode
struct CesiumTokensType {
CESIUMUSDSCHEMAS_API CesiumTokensType();
/// \brief "cesium:alpha"
///
/// CesiumRasterOverlay
const TfToken cesiumAlpha;
/// \brief "cesium:anchor:adjustOrientationForGlobeWhenMoving"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorAdjustOrientationForGlobeWhenMoving;
/// \brief "cesium:anchor:detectTransformChanges"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorDetectTransformChanges;
/// \brief "cesium:anchor:georeferenceBinding"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorGeoreferenceBinding;
/// \brief "cesium:anchor:height"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorHeight;
/// \brief "cesium:anchor:latitude"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorLatitude;
/// \brief "cesium:anchor:longitude"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorLongitude;
/// \brief "cesium:anchor:position"
///
/// CesiumGlobeAnchorAPI
const TfToken cesiumAnchorPosition;
/// \brief "cesium:baseUrl"
///
/// CesiumWebMapServiceRasterOverlay
const TfToken cesiumBaseUrl;
/// \brief "cesium:cartographicPolygonBinding"
///
/// CesiumPolygonRasterOverlay
const TfToken cesiumCartographicPolygonBinding;
/// \brief "cesium:culledScreenSpaceError"
///
/// CesiumTileset
const TfToken cesiumCulledScreenSpaceError;
/// \brief "cesium:debug:disableGeometryPool"
///
/// CesiumData
const TfToken cesiumDebugDisableGeometryPool;
/// \brief "cesium:debug:disableGeoreferencing"
///
/// CesiumData
const TfToken cesiumDebugDisableGeoreferencing;
/// \brief "cesium:debug:disableMaterialPool"
///
/// CesiumData
const TfToken cesiumDebugDisableMaterialPool;
/// \brief "cesium:debug:disableMaterials"
///
/// CesiumData
const TfToken cesiumDebugDisableMaterials;
/// \brief "cesium:debug:disableTexturePool"
///
/// CesiumData
const TfToken cesiumDebugDisableTexturePool;
/// \brief "cesium:debug:disableTextures"
///
/// CesiumData
const TfToken cesiumDebugDisableTextures;
/// \brief "cesium:debug:geometryPoolInitialCapacity"
///
/// CesiumData
const TfToken cesiumDebugGeometryPoolInitialCapacity;
/// \brief "cesium:debug:materialPoolInitialCapacity"
///
/// CesiumData
const TfToken cesiumDebugMaterialPoolInitialCapacity;
/// \brief "cesium:debug:randomColors"
///
/// CesiumData
const TfToken cesiumDebugRandomColors;
/// \brief "cesium:debug:texturePoolInitialCapacity"
///
/// CesiumData
const TfToken cesiumDebugTexturePoolInitialCapacity;
/// \brief "cesium:displayName"
///
/// CesiumIonServer
const TfToken cesiumDisplayName;
/// \brief "cesium:east"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumEast;
/// \brief "cesium:ecefToUsdTransform"
///
/// CesiumSession
const TfToken cesiumEcefToUsdTransform;
/// \brief "cesium:enableFogCulling"
///
/// CesiumTileset
const TfToken cesiumEnableFogCulling;
/// \brief "cesium:enableFrustumCulling"
///
/// CesiumTileset
const TfToken cesiumEnableFrustumCulling;
/// \brief "cesium:enforceCulledScreenSpaceError"
///
/// CesiumTileset
const TfToken cesiumEnforceCulledScreenSpaceError;
/// \brief "cesium:excludeSelectedTiles"
///
/// CesiumPolygonRasterOverlay
const TfToken cesiumExcludeSelectedTiles;
/// \brief "cesium:forbidHoles"
///
/// CesiumTileset
const TfToken cesiumForbidHoles;
/// \brief "cesium:format"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumFormat;
/// \brief "cesium:georeferenceBinding"
///
/// CesiumTileset
const TfToken cesiumGeoreferenceBinding;
/// \brief "cesium:georeferenceOrigin:height"
///
/// CesiumGeoreference
const TfToken cesiumGeoreferenceOriginHeight;
/// \brief "cesium:georeferenceOrigin:latitude"
///
/// CesiumGeoreference
const TfToken cesiumGeoreferenceOriginLatitude;
/// \brief "cesium:georeferenceOrigin:longitude"
///
/// CesiumGeoreference
const TfToken cesiumGeoreferenceOriginLongitude;
/// \brief "cesium:invertSelection"
///
/// CesiumPolygonRasterOverlay
const TfToken cesiumInvertSelection;
/// \brief "cesium:ionAccessToken"
///
/// CesiumIonRasterOverlay, CesiumTileset
const TfToken cesiumIonAccessToken;
/// \brief "cesium:ionAssetId"
///
/// CesiumIonRasterOverlay, CesiumTileset
const TfToken cesiumIonAssetId;
/// \brief "cesium:ionServerApiUrl"
///
/// CesiumIonServer
const TfToken cesiumIonServerApiUrl;
/// \brief "cesium:ionServerApplicationId"
///
/// CesiumIonServer
const TfToken cesiumIonServerApplicationId;
/// \brief "cesium:ionServerBinding"
///
/// CesiumIonRasterOverlay, CesiumTileset
const TfToken cesiumIonServerBinding;
/// \brief "cesium:ionServerUrl"
///
/// CesiumIonServer
const TfToken cesiumIonServerUrl;
/// \brief "cesium:layer"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumLayer;
/// \brief "cesium:layers"
///
/// CesiumWebMapServiceRasterOverlay
const TfToken cesiumLayers;
/// \brief "cesium:loadingDescendantLimit"
///
/// CesiumTileset
const TfToken cesiumLoadingDescendantLimit;
/// \brief "cesium:mainThreadLoadingTimeLimit"
///
/// CesiumTileset
const TfToken cesiumMainThreadLoadingTimeLimit;
/// \brief "cesium:maximumCachedBytes"
///
/// CesiumTileset
const TfToken cesiumMaximumCachedBytes;
/// \brief "cesium:maximumLevel"
///
/// CesiumWebMapServiceRasterOverlay
const TfToken cesiumMaximumLevel;
/// \brief "cesium:maximumScreenSpaceError"
///
/// CesiumRasterOverlay, CesiumTileset
const TfToken cesiumMaximumScreenSpaceError;
/// \brief "cesium:maximumSimultaneousTileLoads"
///
/// CesiumRasterOverlay, CesiumTileset
const TfToken cesiumMaximumSimultaneousTileLoads;
/// \brief "cesium:maximumTextureSize"
///
/// CesiumRasterOverlay
const TfToken cesiumMaximumTextureSize;
/// \brief "cesium:maximumZoomLevel"
///
/// CesiumWebMapTileServiceRasterOverlay, CesiumTileMapServiceRasterOverlay
const TfToken cesiumMaximumZoomLevel;
/// \brief "cesium:minimumLevel"
///
/// CesiumWebMapServiceRasterOverlay
const TfToken cesiumMinimumLevel;
/// \brief "cesium:minimumZoomLevel"
///
/// CesiumWebMapTileServiceRasterOverlay, CesiumTileMapServiceRasterOverlay
const TfToken cesiumMinimumZoomLevel;
/// \brief "cesium:north"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumNorth;
/// \brief "cesium:overlayRenderMethod"
///
/// CesiumPolygonRasterOverlay, CesiumRasterOverlay
const TfToken cesiumOverlayRenderMethod;
/// \brief "cesium:preloadAncestors"
///
/// CesiumTileset
const TfToken cesiumPreloadAncestors;
/// \brief "cesium:preloadSiblings"
///
/// CesiumTileset
const TfToken cesiumPreloadSiblings;
/// \brief "cesium:projectDefaultIonAccessToken"
///
/// CesiumIonServer
const TfToken cesiumProjectDefaultIonAccessToken;
/// \brief "cesium:projectDefaultIonAccessTokenId"
///
/// CesiumIonServer
const TfToken cesiumProjectDefaultIonAccessTokenId;
/// \brief "cesium:rasterOverlayBinding"
///
/// CesiumTileset
const TfToken cesiumRasterOverlayBinding;
/// \brief "cesium:rootTilesX"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumRootTilesX;
/// \brief "cesium:rootTilesY"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumRootTilesY;
/// \brief "cesium:selectedIonServer"
///
/// CesiumData
const TfToken cesiumSelectedIonServer;
/// \brief "cesium:showCreditsOnScreen"
///
/// CesiumRasterOverlay, CesiumTileset
const TfToken cesiumShowCreditsOnScreen;
/// \brief "cesium:smoothNormals"
///
/// CesiumTileset
const TfToken cesiumSmoothNormals;
/// \brief "cesium:sourceType"
///
/// CesiumTileset
const TfToken cesiumSourceType;
/// \brief "cesium:south"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumSouth;
/// \brief "cesium:specifyTileMatrixSetLabels"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumSpecifyTileMatrixSetLabels;
/// \brief "cesium:specifyTilingScheme"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumSpecifyTilingScheme;
/// \brief "cesium:specifyZoomLevels"
///
/// CesiumWebMapTileServiceRasterOverlay, CesiumTileMapServiceRasterOverlay
const TfToken cesiumSpecifyZoomLevels;
/// \brief "cesium:style"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumStyle;
/// \brief "cesium:subTileCacheBytes"
///
/// CesiumRasterOverlay
const TfToken cesiumSubTileCacheBytes;
/// \brief "cesium:suspendUpdate"
///
/// CesiumTileset
const TfToken cesiumSuspendUpdate;
/// \brief "cesium:tileHeight"
///
/// CesiumWebMapServiceRasterOverlay
const TfToken cesiumTileHeight;
/// \brief "cesium:tileMatrixSetId"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumTileMatrixSetId;
/// \brief "cesium:tileMatrixSetLabelPrefix"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumTileMatrixSetLabelPrefix;
/// \brief "cesium:tileMatrixSetLabels"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumTileMatrixSetLabels;
/// \brief "cesium:tileWidth"
///
/// CesiumWebMapServiceRasterOverlay
const TfToken cesiumTileWidth;
/// \brief "cesium:url"
///
/// CesiumWebMapTileServiceRasterOverlay, CesiumTileMapServiceRasterOverlay, CesiumTileset
const TfToken cesiumUrl;
/// \brief "cesium:useWebMercatorProjection"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumUseWebMercatorProjection;
/// \brief "cesium:west"
///
/// CesiumWebMapTileServiceRasterOverlay
const TfToken cesiumWest;
/// \brief "clip"
///
/// Default value for CesiumPolygonRasterOverlay::GetCesiumOverlayRenderMethodAttr(), Possible value for CesiumRasterOverlay::GetOverlayRenderMethodAttr()
const TfToken clip;
/// \brief "ion"
///
/// Possible value for CesiumTileset::GetSourceTypeAttr(), Default value for CesiumTileset::GetSourceTypeAttr()
const TfToken ion;
/// \brief "overlay"
///
/// Possible value for CesiumRasterOverlay::GetOverlayRenderMethodAttr(), Default value for CesiumRasterOverlay::GetOverlayRenderMethodAttr()
const TfToken overlay;
/// \brief "url"
///
/// Possible value for CesiumTileset::GetSourceTypeAttr()
const TfToken url;
/// A vector of all of the tokens listed above.
const std::vector<TfToken> allTokens;
};
/// \var CesiumTokens
///
/// A global variable with static, efficient \link TfToken TfTokens\endlink
/// for use in all public USD API. \sa CesiumTokensType
extern CESIUMUSDSCHEMAS_API TfStaticData<CesiumTokensType> CesiumTokens;
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 12,816 | C | 31.448101 | 158 | 0.694991 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/tileset.cpp | #include ".//tileset.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumTileset,
TfType::Bases< UsdGeomGprim > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumTilesetPrim")
// to find TfType<CesiumTileset>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumTileset>("CesiumTilesetPrim");
}
/* virtual */
CesiumTileset::~CesiumTileset()
{
}
/* static */
CesiumTileset
CesiumTileset::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumTileset();
}
return CesiumTileset(stage->GetPrimAtPath(path));
}
/* static */
CesiumTileset
CesiumTileset::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumTilesetPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumTileset();
}
return CesiumTileset(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumTileset::_GetSchemaKind() const
{
return CesiumTileset::schemaKind;
}
/* static */
const TfType &
CesiumTileset::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumTileset>();
return tfType;
}
/* static */
bool
CesiumTileset::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumTileset::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumTileset::GetSourceTypeAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSourceType);
}
UsdAttribute
CesiumTileset::CreateSourceTypeAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSourceType,
SdfValueTypeNames->Token,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetUrlAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumUrl);
}
UsdAttribute
CesiumTileset::CreateUrlAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumUrl,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetIonAssetIdAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonAssetId);
}
UsdAttribute
CesiumTileset::CreateIonAssetIdAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonAssetId,
SdfValueTypeNames->Int64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetIonAccessTokenAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonAccessToken);
}
UsdAttribute
CesiumTileset::CreateIonAccessTokenAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonAccessToken,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetMaximumScreenSpaceErrorAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumScreenSpaceError);
}
UsdAttribute
CesiumTileset::CreateMaximumScreenSpaceErrorAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumScreenSpaceError,
SdfValueTypeNames->Float,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetPreloadAncestorsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumPreloadAncestors);
}
UsdAttribute
CesiumTileset::CreatePreloadAncestorsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumPreloadAncestors,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetPreloadSiblingsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumPreloadSiblings);
}
UsdAttribute
CesiumTileset::CreatePreloadSiblingsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumPreloadSiblings,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetForbidHolesAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumForbidHoles);
}
UsdAttribute
CesiumTileset::CreateForbidHolesAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumForbidHoles,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetMaximumSimultaneousTileLoadsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumSimultaneousTileLoads);
}
UsdAttribute
CesiumTileset::CreateMaximumSimultaneousTileLoadsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumSimultaneousTileLoads,
SdfValueTypeNames->UInt,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetMaximumCachedBytesAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMaximumCachedBytes);
}
UsdAttribute
CesiumTileset::CreateMaximumCachedBytesAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMaximumCachedBytes,
SdfValueTypeNames->UInt64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetLoadingDescendantLimitAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumLoadingDescendantLimit);
}
UsdAttribute
CesiumTileset::CreateLoadingDescendantLimitAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumLoadingDescendantLimit,
SdfValueTypeNames->UInt,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetEnableFrustumCullingAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumEnableFrustumCulling);
}
UsdAttribute
CesiumTileset::CreateEnableFrustumCullingAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumEnableFrustumCulling,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetEnableFogCullingAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumEnableFogCulling);
}
UsdAttribute
CesiumTileset::CreateEnableFogCullingAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumEnableFogCulling,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetEnforceCulledScreenSpaceErrorAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumEnforceCulledScreenSpaceError);
}
UsdAttribute
CesiumTileset::CreateEnforceCulledScreenSpaceErrorAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumEnforceCulledScreenSpaceError,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetCulledScreenSpaceErrorAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumCulledScreenSpaceError);
}
UsdAttribute
CesiumTileset::CreateCulledScreenSpaceErrorAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumCulledScreenSpaceError,
SdfValueTypeNames->Float,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetSuspendUpdateAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSuspendUpdate);
}
UsdAttribute
CesiumTileset::CreateSuspendUpdateAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSuspendUpdate,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetSmoothNormalsAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumSmoothNormals);
}
UsdAttribute
CesiumTileset::CreateSmoothNormalsAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumSmoothNormals,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetShowCreditsOnScreenAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumShowCreditsOnScreen);
}
UsdAttribute
CesiumTileset::CreateShowCreditsOnScreenAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumShowCreditsOnScreen,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumTileset::GetMainThreadLoadingTimeLimitAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumMainThreadLoadingTimeLimit);
}
UsdAttribute
CesiumTileset::CreateMainThreadLoadingTimeLimitAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumMainThreadLoadingTimeLimit,
SdfValueTypeNames->Float,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdRelationship
CesiumTileset::GetGeoreferenceBindingRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumGeoreferenceBinding);
}
UsdRelationship
CesiumTileset::CreateGeoreferenceBindingRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumGeoreferenceBinding,
/* custom = */ false);
}
UsdRelationship
CesiumTileset::GetIonServerBindingRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumIonServerBinding);
}
UsdRelationship
CesiumTileset::CreateIonServerBindingRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumIonServerBinding,
/* custom = */ false);
}
UsdRelationship
CesiumTileset::GetRasterOverlayBindingRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumRasterOverlayBinding);
}
UsdRelationship
CesiumTileset::CreateRasterOverlayBindingRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumRasterOverlayBinding,
/* custom = */ false);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumTileset::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumSourceType,
CesiumTokens->cesiumUrl,
CesiumTokens->cesiumIonAssetId,
CesiumTokens->cesiumIonAccessToken,
CesiumTokens->cesiumMaximumScreenSpaceError,
CesiumTokens->cesiumPreloadAncestors,
CesiumTokens->cesiumPreloadSiblings,
CesiumTokens->cesiumForbidHoles,
CesiumTokens->cesiumMaximumSimultaneousTileLoads,
CesiumTokens->cesiumMaximumCachedBytes,
CesiumTokens->cesiumLoadingDescendantLimit,
CesiumTokens->cesiumEnableFrustumCulling,
CesiumTokens->cesiumEnableFogCulling,
CesiumTokens->cesiumEnforceCulledScreenSpaceError,
CesiumTokens->cesiumCulledScreenSpaceError,
CesiumTokens->cesiumSuspendUpdate,
CesiumTokens->cesiumSmoothNormals,
CesiumTokens->cesiumShowCreditsOnScreen,
CesiumTokens->cesiumMainThreadLoadingTimeLimit,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
UsdGeomGprim::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 15,352 | C++ | 29.522863 | 109 | 0.661477 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapIonRasterOverlay.cpp | #include ".//ionRasterOverlay.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateIonAssetIdAttr(CesiumIonRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonAssetIdAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int64), writeSparsely);
}
static UsdAttribute
_CreateIonAccessTokenAttr(CesiumIonRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateIonAccessTokenAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static std::string
_Repr(const CesiumIonRasterOverlay &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.IonRasterOverlay(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumIonRasterOverlay()
{
typedef CesiumIonRasterOverlay This;
class_<This, bases<CesiumRasterOverlay> >
cls("IonRasterOverlay");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetIonAssetIdAttr",
&This::GetIonAssetIdAttr)
.def("CreateIonAssetIdAttr",
&_CreateIonAssetIdAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonAccessTokenAttr",
&This::GetIonAccessTokenAttr)
.def("CreateIonAccessTokenAttr",
&_CreateIonAccessTokenAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetIonServerBindingRel",
&This::GetIonServerBindingRel)
.def("CreateIonServerBindingRel",
&This::CreateIonServerBindingRel)
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 3,737 | C++ | 26.688889 | 82 | 0.5962 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapWebMapServiceRasterOverlay.cpp | #include ".//webMapServiceRasterOverlay.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateBaseUrlAttr(CesiumWebMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateBaseUrlAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateLayersAttr(CesiumWebMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateLayersAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->String), writeSparsely);
}
static UsdAttribute
_CreateTileWidthAttr(CesiumWebMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateTileWidthAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateTileHeightAttr(CesiumWebMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateTileHeightAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateMinimumLevelAttr(CesiumWebMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMinimumLevelAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateMaximumLevelAttr(CesiumWebMapServiceRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumLevelAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static std::string
_Repr(const CesiumWebMapServiceRasterOverlay &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.WebMapServiceRasterOverlay(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumWebMapServiceRasterOverlay()
{
typedef CesiumWebMapServiceRasterOverlay This;
class_<This, bases<CesiumRasterOverlay> >
cls("WebMapServiceRasterOverlay");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetBaseUrlAttr",
&This::GetBaseUrlAttr)
.def("CreateBaseUrlAttr",
&_CreateBaseUrlAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetLayersAttr",
&This::GetLayersAttr)
.def("CreateLayersAttr",
&_CreateLayersAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetTileWidthAttr",
&This::GetTileWidthAttr)
.def("CreateTileWidthAttr",
&_CreateTileWidthAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetTileHeightAttr",
&This::GetTileHeightAttr)
.def("CreateTileHeightAttr",
&_CreateTileHeightAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMinimumLevelAttr",
&This::GetMinimumLevelAttr)
.def("CreateMinimumLevelAttr",
&_CreateMinimumLevelAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumLevelAttr",
&This::GetMaximumLevelAttr)
.def("CreateMaximumLevelAttr",
&_CreateMaximumLevelAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 5,721 | C++ | 29.763441 | 82 | 0.602867 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapPolygonRasterOverlay.cpp | #include ".//polygonRasterOverlay.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateInvertSelectionAttr(CesiumPolygonRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateInvertSelectionAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateExcludeSelectedTilesAttr(CesiumPolygonRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateExcludeSelectedTilesAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateCesiumOverlayRenderMethodAttr(CesiumPolygonRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateCesiumOverlayRenderMethodAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Token), writeSparsely);
}
static std::string
_Repr(const CesiumPolygonRasterOverlay &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.PolygonRasterOverlay(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumPolygonRasterOverlay()
{
typedef CesiumPolygonRasterOverlay This;
class_<This, bases<CesiumRasterOverlay> >
cls("PolygonRasterOverlay");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetInvertSelectionAttr",
&This::GetInvertSelectionAttr)
.def("CreateInvertSelectionAttr",
&_CreateInvertSelectionAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetExcludeSelectedTilesAttr",
&This::GetExcludeSelectedTilesAttr)
.def("CreateExcludeSelectedTilesAttr",
&_CreateExcludeSelectedTilesAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetCesiumOverlayRenderMethodAttr",
&This::GetCesiumOverlayRenderMethodAttr)
.def("CreateCesiumOverlayRenderMethodAttr",
&_CreateCesiumOverlayRenderMethodAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetCartographicPolygonBindingRel",
&This::GetCartographicPolygonBindingRel)
.def("CreateCartographicPolygonBindingRel",
&This::CreateCartographicPolygonBindingRel)
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 4,491 | C++ | 29.147651 | 81 | 0.617457 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/tileMapServiceRasterOverlay.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_TILEMAPSERVICERASTEROVERLAY_H
#define CESIUMUSDSCHEMAS_GENERATED_TILEMAPSERVICERASTEROVERLAY_H
/// \file CesiumUsdSchemas/tileMapServiceRasterOverlay.h
#include "pxr/pxr.h"
#include ".//api.h"
#include ".//rasterOverlay.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMTILEMAPSERVICERASTEROVERLAYPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumTileMapServiceRasterOverlay
///
/// Adds a prim for representing a Tile Map Service (TMS) raster overlay.
///
class CesiumTileMapServiceRasterOverlay : public CesiumRasterOverlay
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumTileMapServiceRasterOverlay on UsdPrim \p prim .
/// Equivalent to CesiumTileMapServiceRasterOverlay::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumTileMapServiceRasterOverlay(const UsdPrim& prim=UsdPrim())
: CesiumRasterOverlay(prim)
{
}
/// Construct a CesiumTileMapServiceRasterOverlay on the prim held by \p schemaObj .
/// Should be preferred over CesiumTileMapServiceRasterOverlay(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumTileMapServiceRasterOverlay(const UsdSchemaBase& schemaObj)
: CesiumRasterOverlay(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumTileMapServiceRasterOverlay();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumTileMapServiceRasterOverlay holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumTileMapServiceRasterOverlay(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumTileMapServiceRasterOverlay
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumTileMapServiceRasterOverlay
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// URL
// --------------------------------------------------------------------- //
/// The base url of the Tile Map Service (TMS).
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:url = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetUrlAttr() const;
/// See GetUrlAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateUrlAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// SPECIFYZOOMLEVELS
// --------------------------------------------------------------------- //
/// True to directly specify minum and maximum zoom levels available from the server, or false to automatically determine the minimum and maximum zoom levels from the server's tilemapresource.xml file.
///
/// | ||
/// | -- | -- |
/// | Declaration | `bool cesium:specifyZoomLevels = 0` |
/// | C++ Type | bool |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Bool |
CESIUMUSDSCHEMAS_API
UsdAttribute GetSpecifyZoomLevelsAttr() const;
/// See GetSpecifyZoomLevelsAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateSpecifyZoomLevelsAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MINIMUMZOOMLEVEL
// --------------------------------------------------------------------- //
/// Minimum zoom level
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:minimumZoomLevel = 0` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMinimumZoomLevelAttr() const;
/// See GetMinimumZoomLevelAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMinimumZoomLevelAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMZOOMLEVEL
// --------------------------------------------------------------------- //
/// Maximum zoom level
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:maximumZoomLevel = 10` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumZoomLevelAttr() const;
/// See GetMaximumZoomLevelAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumZoomLevelAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 9,341 | C | 39.267241 | 205 | 0.612033 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapTokens.cpp | // GENERATED FILE. DO NOT EDIT.
#include <boost/python/class.hpp>
#include ".//tokens.h"
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
// Helper to return a static token as a string. We wrap tokens as Python
// strings and for some reason simply wrapping the token using def_readonly
// bypasses to-Python conversion, leading to the error that there's no
// Python type for the C++ TfToken type. So we wrap this functor instead.
class _WrapStaticToken {
public:
_WrapStaticToken(const TfToken* token) : _token(token) { }
std::string operator()() const
{
return _token->GetString();
}
private:
const TfToken* _token;
};
template <typename T>
void
_AddToken(T& cls, const char* name, const TfToken& token)
{
cls.add_static_property(name,
boost::python::make_function(
_WrapStaticToken(&token),
boost::python::return_value_policy<
boost::python::return_by_value>(),
boost::mpl::vector1<std::string>()));
}
} // anonymous
void wrapCesiumTokens()
{
boost::python::class_<CesiumTokensType, boost::noncopyable>
cls("Tokens", boost::python::no_init);
_AddToken(cls, "cesiumAlpha", CesiumTokens->cesiumAlpha);
_AddToken(cls, "cesiumAnchorAdjustOrientationForGlobeWhenMoving", CesiumTokens->cesiumAnchorAdjustOrientationForGlobeWhenMoving);
_AddToken(cls, "cesiumAnchorDetectTransformChanges", CesiumTokens->cesiumAnchorDetectTransformChanges);
_AddToken(cls, "cesiumAnchorGeoreferenceBinding", CesiumTokens->cesiumAnchorGeoreferenceBinding);
_AddToken(cls, "cesiumAnchorHeight", CesiumTokens->cesiumAnchorHeight);
_AddToken(cls, "cesiumAnchorLatitude", CesiumTokens->cesiumAnchorLatitude);
_AddToken(cls, "cesiumAnchorLongitude", CesiumTokens->cesiumAnchorLongitude);
_AddToken(cls, "cesiumAnchorPosition", CesiumTokens->cesiumAnchorPosition);
_AddToken(cls, "cesiumBaseUrl", CesiumTokens->cesiumBaseUrl);
_AddToken(cls, "cesiumCartographicPolygonBinding", CesiumTokens->cesiumCartographicPolygonBinding);
_AddToken(cls, "cesiumCulledScreenSpaceError", CesiumTokens->cesiumCulledScreenSpaceError);
_AddToken(cls, "cesiumDebugDisableGeometryPool", CesiumTokens->cesiumDebugDisableGeometryPool);
_AddToken(cls, "cesiumDebugDisableGeoreferencing", CesiumTokens->cesiumDebugDisableGeoreferencing);
_AddToken(cls, "cesiumDebugDisableMaterialPool", CesiumTokens->cesiumDebugDisableMaterialPool);
_AddToken(cls, "cesiumDebugDisableMaterials", CesiumTokens->cesiumDebugDisableMaterials);
_AddToken(cls, "cesiumDebugDisableTexturePool", CesiumTokens->cesiumDebugDisableTexturePool);
_AddToken(cls, "cesiumDebugDisableTextures", CesiumTokens->cesiumDebugDisableTextures);
_AddToken(cls, "cesiumDebugGeometryPoolInitialCapacity", CesiumTokens->cesiumDebugGeometryPoolInitialCapacity);
_AddToken(cls, "cesiumDebugMaterialPoolInitialCapacity", CesiumTokens->cesiumDebugMaterialPoolInitialCapacity);
_AddToken(cls, "cesiumDebugRandomColors", CesiumTokens->cesiumDebugRandomColors);
_AddToken(cls, "cesiumDebugTexturePoolInitialCapacity", CesiumTokens->cesiumDebugTexturePoolInitialCapacity);
_AddToken(cls, "cesiumDisplayName", CesiumTokens->cesiumDisplayName);
_AddToken(cls, "cesiumEast", CesiumTokens->cesiumEast);
_AddToken(cls, "cesiumEcefToUsdTransform", CesiumTokens->cesiumEcefToUsdTransform);
_AddToken(cls, "cesiumEnableFogCulling", CesiumTokens->cesiumEnableFogCulling);
_AddToken(cls, "cesiumEnableFrustumCulling", CesiumTokens->cesiumEnableFrustumCulling);
_AddToken(cls, "cesiumEnforceCulledScreenSpaceError", CesiumTokens->cesiumEnforceCulledScreenSpaceError);
_AddToken(cls, "cesiumExcludeSelectedTiles", CesiumTokens->cesiumExcludeSelectedTiles);
_AddToken(cls, "cesiumForbidHoles", CesiumTokens->cesiumForbidHoles);
_AddToken(cls, "cesiumFormat", CesiumTokens->cesiumFormat);
_AddToken(cls, "cesiumGeoreferenceBinding", CesiumTokens->cesiumGeoreferenceBinding);
_AddToken(cls, "cesiumGeoreferenceOriginHeight", CesiumTokens->cesiumGeoreferenceOriginHeight);
_AddToken(cls, "cesiumGeoreferenceOriginLatitude", CesiumTokens->cesiumGeoreferenceOriginLatitude);
_AddToken(cls, "cesiumGeoreferenceOriginLongitude", CesiumTokens->cesiumGeoreferenceOriginLongitude);
_AddToken(cls, "cesiumInvertSelection", CesiumTokens->cesiumInvertSelection);
_AddToken(cls, "cesiumIonAccessToken", CesiumTokens->cesiumIonAccessToken);
_AddToken(cls, "cesiumIonAssetId", CesiumTokens->cesiumIonAssetId);
_AddToken(cls, "cesiumIonServerApiUrl", CesiumTokens->cesiumIonServerApiUrl);
_AddToken(cls, "cesiumIonServerApplicationId", CesiumTokens->cesiumIonServerApplicationId);
_AddToken(cls, "cesiumIonServerBinding", CesiumTokens->cesiumIonServerBinding);
_AddToken(cls, "cesiumIonServerUrl", CesiumTokens->cesiumIonServerUrl);
_AddToken(cls, "cesiumLayer", CesiumTokens->cesiumLayer);
_AddToken(cls, "cesiumLayers", CesiumTokens->cesiumLayers);
_AddToken(cls, "cesiumLoadingDescendantLimit", CesiumTokens->cesiumLoadingDescendantLimit);
_AddToken(cls, "cesiumMainThreadLoadingTimeLimit", CesiumTokens->cesiumMainThreadLoadingTimeLimit);
_AddToken(cls, "cesiumMaximumCachedBytes", CesiumTokens->cesiumMaximumCachedBytes);
_AddToken(cls, "cesiumMaximumLevel", CesiumTokens->cesiumMaximumLevel);
_AddToken(cls, "cesiumMaximumScreenSpaceError", CesiumTokens->cesiumMaximumScreenSpaceError);
_AddToken(cls, "cesiumMaximumSimultaneousTileLoads", CesiumTokens->cesiumMaximumSimultaneousTileLoads);
_AddToken(cls, "cesiumMaximumTextureSize", CesiumTokens->cesiumMaximumTextureSize);
_AddToken(cls, "cesiumMaximumZoomLevel", CesiumTokens->cesiumMaximumZoomLevel);
_AddToken(cls, "cesiumMinimumLevel", CesiumTokens->cesiumMinimumLevel);
_AddToken(cls, "cesiumMinimumZoomLevel", CesiumTokens->cesiumMinimumZoomLevel);
_AddToken(cls, "cesiumNorth", CesiumTokens->cesiumNorth);
_AddToken(cls, "cesiumOverlayRenderMethod", CesiumTokens->cesiumOverlayRenderMethod);
_AddToken(cls, "cesiumPreloadAncestors", CesiumTokens->cesiumPreloadAncestors);
_AddToken(cls, "cesiumPreloadSiblings", CesiumTokens->cesiumPreloadSiblings);
_AddToken(cls, "cesiumProjectDefaultIonAccessToken", CesiumTokens->cesiumProjectDefaultIonAccessToken);
_AddToken(cls, "cesiumProjectDefaultIonAccessTokenId", CesiumTokens->cesiumProjectDefaultIonAccessTokenId);
_AddToken(cls, "cesiumRasterOverlayBinding", CesiumTokens->cesiumRasterOverlayBinding);
_AddToken(cls, "cesiumRootTilesX", CesiumTokens->cesiumRootTilesX);
_AddToken(cls, "cesiumRootTilesY", CesiumTokens->cesiumRootTilesY);
_AddToken(cls, "cesiumSelectedIonServer", CesiumTokens->cesiumSelectedIonServer);
_AddToken(cls, "cesiumShowCreditsOnScreen", CesiumTokens->cesiumShowCreditsOnScreen);
_AddToken(cls, "cesiumSmoothNormals", CesiumTokens->cesiumSmoothNormals);
_AddToken(cls, "cesiumSourceType", CesiumTokens->cesiumSourceType);
_AddToken(cls, "cesiumSouth", CesiumTokens->cesiumSouth);
_AddToken(cls, "cesiumSpecifyTileMatrixSetLabels", CesiumTokens->cesiumSpecifyTileMatrixSetLabels);
_AddToken(cls, "cesiumSpecifyTilingScheme", CesiumTokens->cesiumSpecifyTilingScheme);
_AddToken(cls, "cesiumSpecifyZoomLevels", CesiumTokens->cesiumSpecifyZoomLevels);
_AddToken(cls, "cesiumStyle", CesiumTokens->cesiumStyle);
_AddToken(cls, "cesiumSubTileCacheBytes", CesiumTokens->cesiumSubTileCacheBytes);
_AddToken(cls, "cesiumSuspendUpdate", CesiumTokens->cesiumSuspendUpdate);
_AddToken(cls, "cesiumTileHeight", CesiumTokens->cesiumTileHeight);
_AddToken(cls, "cesiumTileMatrixSetId", CesiumTokens->cesiumTileMatrixSetId);
_AddToken(cls, "cesiumTileMatrixSetLabelPrefix", CesiumTokens->cesiumTileMatrixSetLabelPrefix);
_AddToken(cls, "cesiumTileMatrixSetLabels", CesiumTokens->cesiumTileMatrixSetLabels);
_AddToken(cls, "cesiumTileWidth", CesiumTokens->cesiumTileWidth);
_AddToken(cls, "cesiumUrl", CesiumTokens->cesiumUrl);
_AddToken(cls, "cesiumUseWebMercatorProjection", CesiumTokens->cesiumUseWebMercatorProjection);
_AddToken(cls, "cesiumWest", CesiumTokens->cesiumWest);
_AddToken(cls, "clip", CesiumTokens->clip);
_AddToken(cls, "ion", CesiumTokens->ion);
_AddToken(cls, "overlay", CesiumTokens->overlay);
_AddToken(cls, "url", CesiumTokens->url);
}
| 8,498 | C++ | 64.376923 | 133 | 0.772182 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/ionServer.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_IONSERVER_H
#define CESIUMUSDSCHEMAS_GENERATED_IONSERVER_H
/// \file CesiumUsdSchemas/ionServer.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMIONSERVERPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumIonServer
///
/// Stores metadata related to Cesium ion server connections for tilesets.
///
class CesiumIonServer : public UsdTyped
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumIonServer on UsdPrim \p prim .
/// Equivalent to CesiumIonServer::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumIonServer(const UsdPrim& prim=UsdPrim())
: UsdTyped(prim)
{
}
/// Construct a CesiumIonServer on the prim held by \p schemaObj .
/// Should be preferred over CesiumIonServer(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumIonServer(const UsdSchemaBase& schemaObj)
: UsdTyped(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumIonServer();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumIonServer holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumIonServer(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumIonServer
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumIonServer
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// DISPLAYNAME
// --------------------------------------------------------------------- //
/// The name to display for this server.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:displayName` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetDisplayNameAttr() const;
/// See GetDisplayNameAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateDisplayNameAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONSERVERURL
// --------------------------------------------------------------------- //
/// The base URL for the Cesium ion Server.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:ionServerUrl` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonServerUrlAttr() const;
/// See GetIonServerUrlAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonServerUrlAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONSERVERAPIURL
// --------------------------------------------------------------------- //
/// The base URL for the Cesium ion Server API.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:ionServerApiUrl` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonServerApiUrlAttr() const;
/// See GetIonServerApiUrlAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonServerApiUrlAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// IONSERVERAPPLICATIONID
// --------------------------------------------------------------------- //
/// The application ID for the Cesium ion Server connection.
///
/// | ||
/// | -- | -- |
/// | Declaration | `int64 cesium:ionServerApplicationId` |
/// | C++ Type | int64_t |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int64 |
CESIUMUSDSCHEMAS_API
UsdAttribute GetIonServerApplicationIdAttr() const;
/// See GetIonServerApplicationIdAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateIonServerApplicationIdAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// PROJECTDEFAULTIONACCESSTOKEN
// --------------------------------------------------------------------- //
/// A string representing the token for accessing Cesium ion assets.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:projectDefaultIonAccessToken = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetProjectDefaultIonAccessTokenAttr() const;
/// See GetProjectDefaultIonAccessTokenAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateProjectDefaultIonAccessTokenAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// PROJECTDEFAULTIONACCESSTOKENID
// --------------------------------------------------------------------- //
/// A string representing the token ID for accessing Cesium ion assets.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:projectDefaultIonAccessTokenId = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetProjectDefaultIonAccessTokenIdAttr() const;
/// See GetProjectDefaultIonAccessTokenIdAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateProjectDefaultIonAccessTokenIdAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 11,156 | C | 39.423913 | 131 | 0.594299 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapData.cpp | #include ".//data.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateDebugDisableMaterialsAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugDisableMaterialsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDebugDisableTexturesAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugDisableTexturesAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDebugDisableGeometryPoolAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugDisableGeometryPoolAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDebugDisableMaterialPoolAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugDisableMaterialPoolAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDebugDisableTexturePoolAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugDisableTexturePoolAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDebugGeometryPoolInitialCapacityAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugGeometryPoolInitialCapacityAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->UInt64), writeSparsely);
}
static UsdAttribute
_CreateDebugMaterialPoolInitialCapacityAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugMaterialPoolInitialCapacityAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->UInt64), writeSparsely);
}
static UsdAttribute
_CreateDebugTexturePoolInitialCapacityAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugTexturePoolInitialCapacityAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->UInt64), writeSparsely);
}
static UsdAttribute
_CreateDebugRandomColorsAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugRandomColorsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateDebugDisableGeoreferencingAttr(CesiumData &self,
object defaultVal, bool writeSparsely) {
return self.CreateDebugDisableGeoreferencingAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static std::string
_Repr(const CesiumData &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.Data(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumData()
{
typedef CesiumData This;
class_<This, bases<UsdTyped> >
cls("Data");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetDebugDisableMaterialsAttr",
&This::GetDebugDisableMaterialsAttr)
.def("CreateDebugDisableMaterialsAttr",
&_CreateDebugDisableMaterialsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugDisableTexturesAttr",
&This::GetDebugDisableTexturesAttr)
.def("CreateDebugDisableTexturesAttr",
&_CreateDebugDisableTexturesAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugDisableGeometryPoolAttr",
&This::GetDebugDisableGeometryPoolAttr)
.def("CreateDebugDisableGeometryPoolAttr",
&_CreateDebugDisableGeometryPoolAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugDisableMaterialPoolAttr",
&This::GetDebugDisableMaterialPoolAttr)
.def("CreateDebugDisableMaterialPoolAttr",
&_CreateDebugDisableMaterialPoolAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugDisableTexturePoolAttr",
&This::GetDebugDisableTexturePoolAttr)
.def("CreateDebugDisableTexturePoolAttr",
&_CreateDebugDisableTexturePoolAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugGeometryPoolInitialCapacityAttr",
&This::GetDebugGeometryPoolInitialCapacityAttr)
.def("CreateDebugGeometryPoolInitialCapacityAttr",
&_CreateDebugGeometryPoolInitialCapacityAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugMaterialPoolInitialCapacityAttr",
&This::GetDebugMaterialPoolInitialCapacityAttr)
.def("CreateDebugMaterialPoolInitialCapacityAttr",
&_CreateDebugMaterialPoolInitialCapacityAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugTexturePoolInitialCapacityAttr",
&This::GetDebugTexturePoolInitialCapacityAttr)
.def("CreateDebugTexturePoolInitialCapacityAttr",
&_CreateDebugTexturePoolInitialCapacityAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugRandomColorsAttr",
&This::GetDebugRandomColorsAttr)
.def("CreateDebugRandomColorsAttr",
&_CreateDebugRandomColorsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetDebugDisableGeoreferencingAttr",
&This::GetDebugDisableGeoreferencingAttr)
.def("CreateDebugDisableGeoreferencingAttr",
&_CreateDebugDisableGeoreferencingAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSelectedIonServerRel",
&This::GetSelectedIonServerRel)
.def("CreateSelectedIonServerRel",
&This::CreateSelectedIonServerRel)
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 8,609 | C++ | 33.858299 | 82 | 0.630503 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapGeoreference.cpp | #include ".//georeference.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateGeoreferenceOriginLongitudeAttr(CesiumGeoreference &self,
object defaultVal, bool writeSparsely) {
return self.CreateGeoreferenceOriginLongitudeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateGeoreferenceOriginLatitudeAttr(CesiumGeoreference &self,
object defaultVal, bool writeSparsely) {
return self.CreateGeoreferenceOriginLatitudeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static UsdAttribute
_CreateGeoreferenceOriginHeightAttr(CesiumGeoreference &self,
object defaultVal, bool writeSparsely) {
return self.CreateGeoreferenceOriginHeightAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Double), writeSparsely);
}
static std::string
_Repr(const CesiumGeoreference &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.Georeference(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumGeoreference()
{
typedef CesiumGeoreference This;
class_<This, bases<UsdTyped> >
cls("Georeference");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("Define", &This::Define, (arg("stage"), arg("path")))
.staticmethod("Define")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetGeoreferenceOriginLongitudeAttr",
&This::GetGeoreferenceOriginLongitudeAttr)
.def("CreateGeoreferenceOriginLongitudeAttr",
&_CreateGeoreferenceOriginLongitudeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetGeoreferenceOriginLatitudeAttr",
&This::GetGeoreferenceOriginLatitudeAttr)
.def("CreateGeoreferenceOriginLatitudeAttr",
&_CreateGeoreferenceOriginLatitudeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetGeoreferenceOriginHeightAttr",
&This::GetGeoreferenceOriginHeightAttr)
.def("CreateGeoreferenceOriginHeightAttr",
&_CreateGeoreferenceOriginHeightAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 4,294 | C++ | 28.826389 | 82 | 0.616907 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/polygonRasterOverlay.cpp | #include ".//polygonRasterOverlay.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumPolygonRasterOverlay,
TfType::Bases< CesiumRasterOverlay > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumPolygonRasterOverlayPrim")
// to find TfType<CesiumPolygonRasterOverlay>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumPolygonRasterOverlay>("CesiumPolygonRasterOverlayPrim");
}
/* virtual */
CesiumPolygonRasterOverlay::~CesiumPolygonRasterOverlay()
{
}
/* static */
CesiumPolygonRasterOverlay
CesiumPolygonRasterOverlay::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumPolygonRasterOverlay();
}
return CesiumPolygonRasterOverlay(stage->GetPrimAtPath(path));
}
/* static */
CesiumPolygonRasterOverlay
CesiumPolygonRasterOverlay::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumPolygonRasterOverlayPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumPolygonRasterOverlay();
}
return CesiumPolygonRasterOverlay(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumPolygonRasterOverlay::_GetSchemaKind() const
{
return CesiumPolygonRasterOverlay::schemaKind;
}
/* static */
const TfType &
CesiumPolygonRasterOverlay::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumPolygonRasterOverlay>();
return tfType;
}
/* static */
bool
CesiumPolygonRasterOverlay::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumPolygonRasterOverlay::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumPolygonRasterOverlay::GetInvertSelectionAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumInvertSelection);
}
UsdAttribute
CesiumPolygonRasterOverlay::CreateInvertSelectionAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumInvertSelection,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumPolygonRasterOverlay::GetExcludeSelectedTilesAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumExcludeSelectedTiles);
}
UsdAttribute
CesiumPolygonRasterOverlay::CreateExcludeSelectedTilesAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumExcludeSelectedTiles,
SdfValueTypeNames->Bool,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumPolygonRasterOverlay::GetCesiumOverlayRenderMethodAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumOverlayRenderMethod);
}
UsdAttribute
CesiumPolygonRasterOverlay::CreateCesiumOverlayRenderMethodAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumOverlayRenderMethod,
SdfValueTypeNames->Token,
/* custom = */ false,
SdfVariabilityUniform,
defaultValue,
writeSparsely);
}
UsdRelationship
CesiumPolygonRasterOverlay::GetCartographicPolygonBindingRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumCartographicPolygonBinding);
}
UsdRelationship
CesiumPolygonRasterOverlay::CreateCartographicPolygonBindingRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumCartographicPolygonBinding,
/* custom = */ false);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumPolygonRasterOverlay::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumInvertSelection,
CesiumTokens->cesiumExcludeSelectedTiles,
CesiumTokens->cesiumOverlayRenderMethod,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
CesiumRasterOverlay::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 5,592 | C++ | 28.592592 | 118 | 0.690808 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/webMapServiceRasterOverlay.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_WEBMAPSERVICERASTEROVERLAY_H
#define CESIUMUSDSCHEMAS_GENERATED_WEBMAPSERVICERASTEROVERLAY_H
/// \file CesiumUsdSchemas/webMapServiceRasterOverlay.h
#include "pxr/pxr.h"
#include ".//api.h"
#include ".//rasterOverlay.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMWEBMAPSERVICERASTEROVERLAYPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumWebMapServiceRasterOverlay
///
/// Adds a prim for representing a Web Map Service raster overlay.
///
class CesiumWebMapServiceRasterOverlay : public CesiumRasterOverlay
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumWebMapServiceRasterOverlay on UsdPrim \p prim .
/// Equivalent to CesiumWebMapServiceRasterOverlay::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumWebMapServiceRasterOverlay(const UsdPrim& prim=UsdPrim())
: CesiumRasterOverlay(prim)
{
}
/// Construct a CesiumWebMapServiceRasterOverlay on the prim held by \p schemaObj .
/// Should be preferred over CesiumWebMapServiceRasterOverlay(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumWebMapServiceRasterOverlay(const UsdSchemaBase& schemaObj)
: CesiumRasterOverlay(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumWebMapServiceRasterOverlay();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumWebMapServiceRasterOverlay holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumWebMapServiceRasterOverlay(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumWebMapServiceRasterOverlay
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumWebMapServiceRasterOverlay
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// BASEURL
// --------------------------------------------------------------------- //
/// The base url of the Web Map Service (WMS). e.g. https://services.ga.gov.au/gis/services/NM_Culture_and_Infrastructure/MapServer/WMSServer
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:baseUrl = ""` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetBaseUrlAttr() const;
/// See GetBaseUrlAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateBaseUrlAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// LAYERS
// --------------------------------------------------------------------- //
/// Comma-separated layer names to request from the server.
///
/// | ||
/// | -- | -- |
/// | Declaration | `string cesium:layers = "1"` |
/// | C++ Type | std::string |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->String |
CESIUMUSDSCHEMAS_API
UsdAttribute GetLayersAttr() const;
/// See GetLayersAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateLayersAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// TILEWIDTH
// --------------------------------------------------------------------- //
/// Image width
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:tileWidth = 256` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetTileWidthAttr() const;
/// See GetTileWidthAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateTileWidthAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// TILEHEIGHT
// --------------------------------------------------------------------- //
/// Image height
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:tileHeight = 256` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetTileHeightAttr() const;
/// See GetTileHeightAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateTileHeightAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MINIMUMLEVEL
// --------------------------------------------------------------------- //
/// Take care when specifying this that the number of tiles at the minimum level is small, such as four or less. A larger number is likely to result in rendering problems.
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:minimumLevel = 0` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMinimumLevelAttr() const;
/// See GetMinimumLevelAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMinimumLevelAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// --------------------------------------------------------------------- //
// MAXIMUMLEVEL
// --------------------------------------------------------------------- //
/// Maximum zoom level.
///
/// | ||
/// | -- | -- |
/// | Declaration | `int cesium:maximumLevel = 14` |
/// | C++ Type | int |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
CESIUMUSDSCHEMAS_API
UsdAttribute GetMaximumLevelAttr() const;
/// See GetMaximumLevelAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateMaximumLevelAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 11,210 | C | 39.619565 | 175 | 0.595272 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/tokens.cpp | #include ".//tokens.h"
PXR_NAMESPACE_OPEN_SCOPE
CesiumTokensType::CesiumTokensType() :
cesiumAlpha("cesium:alpha", TfToken::Immortal),
cesiumAnchorAdjustOrientationForGlobeWhenMoving("cesium:anchor:adjustOrientationForGlobeWhenMoving", TfToken::Immortal),
cesiumAnchorDetectTransformChanges("cesium:anchor:detectTransformChanges", TfToken::Immortal),
cesiumAnchorGeoreferenceBinding("cesium:anchor:georeferenceBinding", TfToken::Immortal),
cesiumAnchorHeight("cesium:anchor:height", TfToken::Immortal),
cesiumAnchorLatitude("cesium:anchor:latitude", TfToken::Immortal),
cesiumAnchorLongitude("cesium:anchor:longitude", TfToken::Immortal),
cesiumAnchorPosition("cesium:anchor:position", TfToken::Immortal),
cesiumBaseUrl("cesium:baseUrl", TfToken::Immortal),
cesiumCartographicPolygonBinding("cesium:cartographicPolygonBinding", TfToken::Immortal),
cesiumCulledScreenSpaceError("cesium:culledScreenSpaceError", TfToken::Immortal),
cesiumDebugDisableGeometryPool("cesium:debug:disableGeometryPool", TfToken::Immortal),
cesiumDebugDisableGeoreferencing("cesium:debug:disableGeoreferencing", TfToken::Immortal),
cesiumDebugDisableMaterialPool("cesium:debug:disableMaterialPool", TfToken::Immortal),
cesiumDebugDisableMaterials("cesium:debug:disableMaterials", TfToken::Immortal),
cesiumDebugDisableTexturePool("cesium:debug:disableTexturePool", TfToken::Immortal),
cesiumDebugDisableTextures("cesium:debug:disableTextures", TfToken::Immortal),
cesiumDebugGeometryPoolInitialCapacity("cesium:debug:geometryPoolInitialCapacity", TfToken::Immortal),
cesiumDebugMaterialPoolInitialCapacity("cesium:debug:materialPoolInitialCapacity", TfToken::Immortal),
cesiumDebugRandomColors("cesium:debug:randomColors", TfToken::Immortal),
cesiumDebugTexturePoolInitialCapacity("cesium:debug:texturePoolInitialCapacity", TfToken::Immortal),
cesiumDisplayName("cesium:displayName", TfToken::Immortal),
cesiumEast("cesium:east", TfToken::Immortal),
cesiumEcefToUsdTransform("cesium:ecefToUsdTransform", TfToken::Immortal),
cesiumEnableFogCulling("cesium:enableFogCulling", TfToken::Immortal),
cesiumEnableFrustumCulling("cesium:enableFrustumCulling", TfToken::Immortal),
cesiumEnforceCulledScreenSpaceError("cesium:enforceCulledScreenSpaceError", TfToken::Immortal),
cesiumExcludeSelectedTiles("cesium:excludeSelectedTiles", TfToken::Immortal),
cesiumForbidHoles("cesium:forbidHoles", TfToken::Immortal),
cesiumFormat("cesium:format", TfToken::Immortal),
cesiumGeoreferenceBinding("cesium:georeferenceBinding", TfToken::Immortal),
cesiumGeoreferenceOriginHeight("cesium:georeferenceOrigin:height", TfToken::Immortal),
cesiumGeoreferenceOriginLatitude("cesium:georeferenceOrigin:latitude", TfToken::Immortal),
cesiumGeoreferenceOriginLongitude("cesium:georeferenceOrigin:longitude", TfToken::Immortal),
cesiumInvertSelection("cesium:invertSelection", TfToken::Immortal),
cesiumIonAccessToken("cesium:ionAccessToken", TfToken::Immortal),
cesiumIonAssetId("cesium:ionAssetId", TfToken::Immortal),
cesiumIonServerApiUrl("cesium:ionServerApiUrl", TfToken::Immortal),
cesiumIonServerApplicationId("cesium:ionServerApplicationId", TfToken::Immortal),
cesiumIonServerBinding("cesium:ionServerBinding", TfToken::Immortal),
cesiumIonServerUrl("cesium:ionServerUrl", TfToken::Immortal),
cesiumLayer("cesium:layer", TfToken::Immortal),
cesiumLayers("cesium:layers", TfToken::Immortal),
cesiumLoadingDescendantLimit("cesium:loadingDescendantLimit", TfToken::Immortal),
cesiumMainThreadLoadingTimeLimit("cesium:mainThreadLoadingTimeLimit", TfToken::Immortal),
cesiumMaximumCachedBytes("cesium:maximumCachedBytes", TfToken::Immortal),
cesiumMaximumLevel("cesium:maximumLevel", TfToken::Immortal),
cesiumMaximumScreenSpaceError("cesium:maximumScreenSpaceError", TfToken::Immortal),
cesiumMaximumSimultaneousTileLoads("cesium:maximumSimultaneousTileLoads", TfToken::Immortal),
cesiumMaximumTextureSize("cesium:maximumTextureSize", TfToken::Immortal),
cesiumMaximumZoomLevel("cesium:maximumZoomLevel", TfToken::Immortal),
cesiumMinimumLevel("cesium:minimumLevel", TfToken::Immortal),
cesiumMinimumZoomLevel("cesium:minimumZoomLevel", TfToken::Immortal),
cesiumNorth("cesium:north", TfToken::Immortal),
cesiumOverlayRenderMethod("cesium:overlayRenderMethod", TfToken::Immortal),
cesiumPreloadAncestors("cesium:preloadAncestors", TfToken::Immortal),
cesiumPreloadSiblings("cesium:preloadSiblings", TfToken::Immortal),
cesiumProjectDefaultIonAccessToken("cesium:projectDefaultIonAccessToken", TfToken::Immortal),
cesiumProjectDefaultIonAccessTokenId("cesium:projectDefaultIonAccessTokenId", TfToken::Immortal),
cesiumRasterOverlayBinding("cesium:rasterOverlayBinding", TfToken::Immortal),
cesiumRootTilesX("cesium:rootTilesX", TfToken::Immortal),
cesiumRootTilesY("cesium:rootTilesY", TfToken::Immortal),
cesiumSelectedIonServer("cesium:selectedIonServer", TfToken::Immortal),
cesiumShowCreditsOnScreen("cesium:showCreditsOnScreen", TfToken::Immortal),
cesiumSmoothNormals("cesium:smoothNormals", TfToken::Immortal),
cesiumSourceType("cesium:sourceType", TfToken::Immortal),
cesiumSouth("cesium:south", TfToken::Immortal),
cesiumSpecifyTileMatrixSetLabels("cesium:specifyTileMatrixSetLabels", TfToken::Immortal),
cesiumSpecifyTilingScheme("cesium:specifyTilingScheme", TfToken::Immortal),
cesiumSpecifyZoomLevels("cesium:specifyZoomLevels", TfToken::Immortal),
cesiumStyle("cesium:style", TfToken::Immortal),
cesiumSubTileCacheBytes("cesium:subTileCacheBytes", TfToken::Immortal),
cesiumSuspendUpdate("cesium:suspendUpdate", TfToken::Immortal),
cesiumTileHeight("cesium:tileHeight", TfToken::Immortal),
cesiumTileMatrixSetId("cesium:tileMatrixSetId", TfToken::Immortal),
cesiumTileMatrixSetLabelPrefix("cesium:tileMatrixSetLabelPrefix", TfToken::Immortal),
cesiumTileMatrixSetLabels("cesium:tileMatrixSetLabels", TfToken::Immortal),
cesiumTileWidth("cesium:tileWidth", TfToken::Immortal),
cesiumUrl("cesium:url", TfToken::Immortal),
cesiumUseWebMercatorProjection("cesium:useWebMercatorProjection", TfToken::Immortal),
cesiumWest("cesium:west", TfToken::Immortal),
clip("clip", TfToken::Immortal),
ion("ion", TfToken::Immortal),
overlay("overlay", TfToken::Immortal),
url("url", TfToken::Immortal),
allTokens({
cesiumAlpha,
cesiumAnchorAdjustOrientationForGlobeWhenMoving,
cesiumAnchorDetectTransformChanges,
cesiumAnchorGeoreferenceBinding,
cesiumAnchorHeight,
cesiumAnchorLatitude,
cesiumAnchorLongitude,
cesiumAnchorPosition,
cesiumBaseUrl,
cesiumCartographicPolygonBinding,
cesiumCulledScreenSpaceError,
cesiumDebugDisableGeometryPool,
cesiumDebugDisableGeoreferencing,
cesiumDebugDisableMaterialPool,
cesiumDebugDisableMaterials,
cesiumDebugDisableTexturePool,
cesiumDebugDisableTextures,
cesiumDebugGeometryPoolInitialCapacity,
cesiumDebugMaterialPoolInitialCapacity,
cesiumDebugRandomColors,
cesiumDebugTexturePoolInitialCapacity,
cesiumDisplayName,
cesiumEast,
cesiumEcefToUsdTransform,
cesiumEnableFogCulling,
cesiumEnableFrustumCulling,
cesiumEnforceCulledScreenSpaceError,
cesiumExcludeSelectedTiles,
cesiumForbidHoles,
cesiumFormat,
cesiumGeoreferenceBinding,
cesiumGeoreferenceOriginHeight,
cesiumGeoreferenceOriginLatitude,
cesiumGeoreferenceOriginLongitude,
cesiumInvertSelection,
cesiumIonAccessToken,
cesiumIonAssetId,
cesiumIonServerApiUrl,
cesiumIonServerApplicationId,
cesiumIonServerBinding,
cesiumIonServerUrl,
cesiumLayer,
cesiumLayers,
cesiumLoadingDescendantLimit,
cesiumMainThreadLoadingTimeLimit,
cesiumMaximumCachedBytes,
cesiumMaximumLevel,
cesiumMaximumScreenSpaceError,
cesiumMaximumSimultaneousTileLoads,
cesiumMaximumTextureSize,
cesiumMaximumZoomLevel,
cesiumMinimumLevel,
cesiumMinimumZoomLevel,
cesiumNorth,
cesiumOverlayRenderMethod,
cesiumPreloadAncestors,
cesiumPreloadSiblings,
cesiumProjectDefaultIonAccessToken,
cesiumProjectDefaultIonAccessTokenId,
cesiumRasterOverlayBinding,
cesiumRootTilesX,
cesiumRootTilesY,
cesiumSelectedIonServer,
cesiumShowCreditsOnScreen,
cesiumSmoothNormals,
cesiumSourceType,
cesiumSouth,
cesiumSpecifyTileMatrixSetLabels,
cesiumSpecifyTilingScheme,
cesiumSpecifyZoomLevels,
cesiumStyle,
cesiumSubTileCacheBytes,
cesiumSuspendUpdate,
cesiumTileHeight,
cesiumTileMatrixSetId,
cesiumTileMatrixSetLabelPrefix,
cesiumTileMatrixSetLabels,
cesiumTileWidth,
cesiumUrl,
cesiumUseWebMercatorProjection,
cesiumWest,
clip,
ion,
overlay,
url
})
{
}
TfStaticData<CesiumTokensType> CesiumTokens;
PXR_NAMESPACE_CLOSE_SCOPE
| 9,367 | C++ | 49.913043 | 124 | 0.766094 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/session.h | #ifndef CESIUMUSDSCHEMAS_GENERATED_SESSION_H
#define CESIUMUSDSCHEMAS_GENERATED_SESSION_H
/// \file CesiumUsdSchemas/session.h
#include "pxr/pxr.h"
#include ".//api.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/usd/prim.h"
#include "pxr/usd/usd/stage.h"
#include ".//tokens.h"
#include "pxr/base/vt/value.h"
#include "pxr/base/gf/vec3d.h"
#include "pxr/base/gf/vec3f.h"
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/tf/token.h"
#include "pxr/base/tf/type.h"
PXR_NAMESPACE_OPEN_SCOPE
class SdfAssetPath;
// -------------------------------------------------------------------------- //
// CESIUMSESSIONPRIM //
// -------------------------------------------------------------------------- //
/// \class CesiumSession
///
/// Stores session layer state for Cesium for Omniverse/USD.
///
class CesiumSession : public UsdTyped
{
public:
/// Compile time constant representing what kind of schema this class is.
///
/// \sa UsdSchemaKind
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped;
/// Construct a CesiumSession on UsdPrim \p prim .
/// Equivalent to CesiumSession::Get(prim.GetStage(), prim.GetPath())
/// for a \em valid \p prim, but will not immediately throw an error for
/// an invalid \p prim
explicit CesiumSession(const UsdPrim& prim=UsdPrim())
: UsdTyped(prim)
{
}
/// Construct a CesiumSession on the prim held by \p schemaObj .
/// Should be preferred over CesiumSession(schemaObj.GetPrim()),
/// as it preserves SchemaBase state.
explicit CesiumSession(const UsdSchemaBase& schemaObj)
: UsdTyped(schemaObj)
{
}
/// Destructor.
CESIUMUSDSCHEMAS_API
virtual ~CesiumSession();
/// Return a vector of names of all pre-declared attributes for this schema
/// class and all its ancestor classes. Does not include attributes that
/// may be authored by custom/extended methods of the schemas involved.
CESIUMUSDSCHEMAS_API
static const TfTokenVector &
GetSchemaAttributeNames(bool includeInherited=true);
/// Return a CesiumSession holding the prim adhering to this
/// schema at \p path on \p stage. If no prim exists at \p path on
/// \p stage, or if the prim at that path does not adhere to this schema,
/// return an invalid schema object. This is shorthand for the following:
///
/// \code
/// CesiumSession(stage->GetPrimAtPath(path));
/// \endcode
///
CESIUMUSDSCHEMAS_API
static CesiumSession
Get(const UsdStagePtr &stage, const SdfPath &path);
/// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
/// is defined (according to UsdPrim::IsDefined()) on this stage.
///
/// If a prim adhering to this schema at \p path is already defined on this
/// stage, return that prim. Otherwise author an \a SdfPrimSpec with
/// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
/// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
/// with \p specifier == \a SdfSpecifierDef and empty typeName at the
/// current EditTarget for any nonexistent, or existing but not \a Defined
/// ancestors.
///
/// The given \a path must be an absolute prim path that does not contain
/// any variant selections.
///
/// If it is impossible to author any of the necessary PrimSpecs, (for
/// example, in case \a path cannot map to the current UsdEditTarget's
/// namespace) issue an error and return an invalid \a UsdPrim.
///
/// Note that this method may return a defined prim whose typeName does not
/// specify this schema class, in case a stronger typeName opinion overrides
/// the opinion at the current EditTarget.
///
CESIUMUSDSCHEMAS_API
static CesiumSession
Define(const UsdStagePtr &stage, const SdfPath &path);
protected:
/// Returns the kind of schema this class belongs to.
///
/// \sa UsdSchemaKind
CESIUMUSDSCHEMAS_API
UsdSchemaKind _GetSchemaKind() const override;
private:
// needs to invoke _GetStaticTfType.
friend class UsdSchemaRegistry;
CESIUMUSDSCHEMAS_API
static const TfType &_GetStaticTfType();
static bool _IsTypedSchema();
// override SchemaBase virtuals.
CESIUMUSDSCHEMAS_API
const TfType &_GetTfType() const override;
public:
// --------------------------------------------------------------------- //
// ECEFTOUSDTRANSFORM
// --------------------------------------------------------------------- //
/// The 4x4 transformation matrix (row major) from global ECEF coordinates to USD stage coordinates based on the georeference origin.
///
/// | ||
/// | -- | -- |
/// | Declaration | `matrix4d cesium:ecefToUsdTransform` |
/// | C++ Type | GfMatrix4d |
/// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Matrix4d |
CESIUMUSDSCHEMAS_API
UsdAttribute GetEcefToUsdTransformAttr() const;
/// See GetEcefToUsdTransformAttr(), and also
/// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
/// If specified, author \p defaultValue as the attribute's default,
/// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
/// the default for \p writeSparsely is \c false.
CESIUMUSDSCHEMAS_API
UsdAttribute CreateEcefToUsdTransformAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
public:
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator.
//
// Just remember to:
// - Close the class declaration with };
// - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
// - Close the include guard with #endif
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
};
PXR_NAMESPACE_CLOSE_SCOPE
#endif
| 6,058 | C | 35.5 | 137 | 0.623143 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/moduleDeps.cpp | #include "pxr/pxr.h"
#include "pxr/base/tf/registryManager.h"
#include "pxr/base/tf/scriptModuleLoader.h"
#include "pxr/base/tf/token.h"
#include <vector>
PXR_NAMESPACE_OPEN_SCOPE
TF_REGISTRY_FUNCTION(TfScriptModuleLoader) {
// List of direct dependencies for this library.
const std::vector<TfToken> reqs = {
TfToken("sdf"),
TfToken("tf"),
TfToken("usd"),
TfToken("vt"),
TfToken("usdGeom"),
};
TfScriptModuleLoader::GetInstance().
RegisterLibrary(TfToken("CesiumUsdSchemas"), TfToken("cesium.usd.plugins.CesiumUsdSchemas"), reqs);
}
PXR_NAMESPACE_CLOSE_SCOPE
| 628 | C++ | 25.208332 | 107 | 0.675159 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/ionRasterOverlay.cpp | #include ".//ionRasterOverlay.h"
#include "pxr/usd/usd/schemaRegistry.h"
#include "pxr/usd/usd/typed.h"
#include "pxr/usd/sdf/types.h"
#include "pxr/usd/sdf/assetPath.h"
PXR_NAMESPACE_OPEN_SCOPE
// Register the schema with the TfType system.
TF_REGISTRY_FUNCTION(TfType)
{
TfType::Define<CesiumIonRasterOverlay,
TfType::Bases< CesiumRasterOverlay > >();
// Register the usd prim typename as an alias under UsdSchemaBase. This
// enables one to call
// TfType::Find<UsdSchemaBase>().FindDerivedByName("CesiumIonRasterOverlayPrim")
// to find TfType<CesiumIonRasterOverlay>, which is how IsA queries are
// answered.
TfType::AddAlias<UsdSchemaBase, CesiumIonRasterOverlay>("CesiumIonRasterOverlayPrim");
}
/* virtual */
CesiumIonRasterOverlay::~CesiumIonRasterOverlay()
{
}
/* static */
CesiumIonRasterOverlay
CesiumIonRasterOverlay::Get(const UsdStagePtr &stage, const SdfPath &path)
{
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumIonRasterOverlay();
}
return CesiumIonRasterOverlay(stage->GetPrimAtPath(path));
}
/* static */
CesiumIonRasterOverlay
CesiumIonRasterOverlay::Define(
const UsdStagePtr &stage, const SdfPath &path)
{
static TfToken usdPrimTypeName("CesiumIonRasterOverlayPrim");
if (!stage) {
TF_CODING_ERROR("Invalid stage");
return CesiumIonRasterOverlay();
}
return CesiumIonRasterOverlay(
stage->DefinePrim(path, usdPrimTypeName));
}
/* virtual */
UsdSchemaKind CesiumIonRasterOverlay::_GetSchemaKind() const
{
return CesiumIonRasterOverlay::schemaKind;
}
/* static */
const TfType &
CesiumIonRasterOverlay::_GetStaticTfType()
{
static TfType tfType = TfType::Find<CesiumIonRasterOverlay>();
return tfType;
}
/* static */
bool
CesiumIonRasterOverlay::_IsTypedSchema()
{
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
return isTyped;
}
/* virtual */
const TfType &
CesiumIonRasterOverlay::_GetTfType() const
{
return _GetStaticTfType();
}
UsdAttribute
CesiumIonRasterOverlay::GetIonAssetIdAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonAssetId);
}
UsdAttribute
CesiumIonRasterOverlay::CreateIonAssetIdAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonAssetId,
SdfValueTypeNames->Int64,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdAttribute
CesiumIonRasterOverlay::GetIonAccessTokenAttr() const
{
return GetPrim().GetAttribute(CesiumTokens->cesiumIonAccessToken);
}
UsdAttribute
CesiumIonRasterOverlay::CreateIonAccessTokenAttr(VtValue const &defaultValue, bool writeSparsely) const
{
return UsdSchemaBase::_CreateAttr(CesiumTokens->cesiumIonAccessToken,
SdfValueTypeNames->String,
/* custom = */ false,
SdfVariabilityVarying,
defaultValue,
writeSparsely);
}
UsdRelationship
CesiumIonRasterOverlay::GetIonServerBindingRel() const
{
return GetPrim().GetRelationship(CesiumTokens->cesiumIonServerBinding);
}
UsdRelationship
CesiumIonRasterOverlay::CreateIonServerBindingRel() const
{
return GetPrim().CreateRelationship(CesiumTokens->cesiumIonServerBinding,
/* custom = */ false);
}
namespace {
static inline TfTokenVector
_ConcatenateAttributeNames(const TfTokenVector& left,const TfTokenVector& right)
{
TfTokenVector result;
result.reserve(left.size() + right.size());
result.insert(result.end(), left.begin(), left.end());
result.insert(result.end(), right.begin(), right.end());
return result;
}
}
/*static*/
const TfTokenVector&
CesiumIonRasterOverlay::GetSchemaAttributeNames(bool includeInherited)
{
static TfTokenVector localNames = {
CesiumTokens->cesiumIonAssetId,
CesiumTokens->cesiumIonAccessToken,
};
static TfTokenVector allNames =
_ConcatenateAttributeNames(
CesiumRasterOverlay::GetSchemaAttributeNames(true),
localNames);
if (includeInherited)
return allNames;
else
return localNames;
}
PXR_NAMESPACE_CLOSE_SCOPE
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'PXR_NAMESPACE_OPEN_SCOPE', 'PXR_NAMESPACE_CLOSE_SCOPE'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
| 4,736 | C++ | 26.701754 | 103 | 0.678421 |
CesiumGS/cesium-omniverse/src/plugins/CesiumUsdSchemas/src/CesiumUsdSchemas/wrapRasterOverlay.cpp | #include ".//rasterOverlay.h"
#include "pxr/usd/usd/schemaBase.h"
#include "pxr/usd/sdf/primSpec.h"
#include "pxr/usd/usd/pyConversions.h"
#include "pxr/base/tf/pyContainerConversions.h"
#include "pxr/base/tf/pyResultConversions.h"
#include "pxr/base/tf/pyUtils.h"
#include "pxr/base/tf/wrapTypeHelpers.h"
#include <boost/python.hpp>
#include <string>
using namespace boost::python;
PXR_NAMESPACE_USING_DIRECTIVE
namespace {
#define WRAP_CUSTOM \
template <class Cls> static void _CustomWrapCode(Cls &_class)
// fwd decl.
WRAP_CUSTOM;
static UsdAttribute
_CreateShowCreditsOnScreenAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateShowCreditsOnScreenAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Bool), writeSparsely);
}
static UsdAttribute
_CreateAlphaAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateAlphaAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Float), writeSparsely);
}
static UsdAttribute
_CreateOverlayRenderMethodAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateOverlayRenderMethodAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Token), writeSparsely);
}
static UsdAttribute
_CreateMaximumScreenSpaceErrorAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumScreenSpaceErrorAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Float), writeSparsely);
}
static UsdAttribute
_CreateMaximumTextureSizeAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumTextureSizeAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateMaximumSimultaneousTileLoadsAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateMaximumSimultaneousTileLoadsAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static UsdAttribute
_CreateSubTileCacheBytesAttr(CesiumRasterOverlay &self,
object defaultVal, bool writeSparsely) {
return self.CreateSubTileCacheBytesAttr(
UsdPythonToSdfType(defaultVal, SdfValueTypeNames->Int), writeSparsely);
}
static std::string
_Repr(const CesiumRasterOverlay &self)
{
std::string primRepr = TfPyRepr(self.GetPrim());
return TfStringPrintf(
"CesiumUsdSchemas.RasterOverlay(%s)",
primRepr.c_str());
}
} // anonymous namespace
void wrapCesiumRasterOverlay()
{
typedef CesiumRasterOverlay This;
class_<This, bases<UsdTyped> >
cls("RasterOverlay");
cls
.def(init<UsdPrim>(arg("prim")))
.def(init<UsdSchemaBase const&>(arg("schemaObj")))
.def(TfTypePythonClass())
.def("Get", &This::Get, (arg("stage"), arg("path")))
.staticmethod("Get")
.def("GetSchemaAttributeNames",
&This::GetSchemaAttributeNames,
arg("includeInherited")=true,
return_value_policy<TfPySequenceToList>())
.staticmethod("GetSchemaAttributeNames")
.def("_GetStaticTfType", (TfType const &(*)()) TfType::Find<This>,
return_value_policy<return_by_value>())
.staticmethod("_GetStaticTfType")
.def(!self)
.def("GetShowCreditsOnScreenAttr",
&This::GetShowCreditsOnScreenAttr)
.def("CreateShowCreditsOnScreenAttr",
&_CreateShowCreditsOnScreenAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetAlphaAttr",
&This::GetAlphaAttr)
.def("CreateAlphaAttr",
&_CreateAlphaAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetOverlayRenderMethodAttr",
&This::GetOverlayRenderMethodAttr)
.def("CreateOverlayRenderMethodAttr",
&_CreateOverlayRenderMethodAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumScreenSpaceErrorAttr",
&This::GetMaximumScreenSpaceErrorAttr)
.def("CreateMaximumScreenSpaceErrorAttr",
&_CreateMaximumScreenSpaceErrorAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumTextureSizeAttr",
&This::GetMaximumTextureSizeAttr)
.def("CreateMaximumTextureSizeAttr",
&_CreateMaximumTextureSizeAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetMaximumSimultaneousTileLoadsAttr",
&This::GetMaximumSimultaneousTileLoadsAttr)
.def("CreateMaximumSimultaneousTileLoadsAttr",
&_CreateMaximumSimultaneousTileLoadsAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("GetSubTileCacheBytesAttr",
&This::GetSubTileCacheBytesAttr)
.def("CreateSubTileCacheBytesAttr",
&_CreateSubTileCacheBytesAttr,
(arg("defaultValue")=object(),
arg("writeSparsely")=false))
.def("__repr__", ::_Repr)
;
_CustomWrapCode(cls);
}
// ===================================================================== //
// Feel free to add custom code below this line, it will be preserved by
// the code generator. The entry point for your custom code should look
// minimally like the following:
//
// WRAP_CUSTOM {
// _class
// .def("MyCustomMethod", ...)
// ;
// }
//
// Of course any other ancillary or support code may be provided.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace {', '}'.
//
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--
namespace {
WRAP_CUSTOM {
}
}
| 6,353 | C++ | 31.253807 | 81 | 0.617031 |
CesiumGS/cesium-omniverse/src/public/CesiumOmniverse.cpp | #define CARB_EXPORTS
#include "cesium/omniverse/CesiumOmniverse.h"
#include "cesium/omniverse/AssetRegistry.h"
#include "cesium/omniverse/CesiumIonServerManager.h"
#include "cesium/omniverse/CesiumIonSession.h"
#include "cesium/omniverse/Context.h"
#include "cesium/omniverse/FabricUtil.h"
#include "cesium/omniverse/OmniData.h"
#include "cesium/omniverse/OmniIonServer.h"
#include "cesium/omniverse/OmniTileset.h"
#include "cesium/omniverse/UsdUtil.h"
#include "cesium/omniverse/Viewport.h"
#include <CesiumGeospatial/Cartographic.h>
#include <CesiumUtility/CreditSystem.h>
#include <carb/PluginUtils.h>
#include <omni/fabric/IFabric.h>
#include <omni/kit/IApp.h>
#include <gsl/span>
namespace cesium::omniverse {
class CesiumOmniversePlugin final : public ICesiumOmniverseInterface {
protected:
void onStartup(const char* cesiumExtensionLocation) noexcept override {
_pContext = std::make_unique<Context>(cesiumExtensionLocation);
}
void onShutdown() noexcept override {
_pContext = nullptr;
}
void reloadTileset(const char* tilesetPath) noexcept override {
const auto pTileset = _pContext->getAssetRegistry().getTileset(pxr::SdfPath(tilesetPath));
if (pTileset) {
pTileset->reload();
}
}
void onUpdateFrame(const ViewportApi* viewports, uint64_t count, bool waitForLoadingTiles) noexcept override {
const auto span = gsl::span<const Viewport>(reinterpret_cast<const Viewport*>(viewports), count);
_pContext->onUpdateFrame(span, waitForLoadingTiles);
}
void onUsdStageChanged(long stageId) noexcept override {
_pContext->onUsdStageChanged(stageId);
}
void connectToIon() noexcept override {
_pContext->getCesiumIonServerManager().connectToIon();
}
std::optional<std::shared_ptr<CesiumIonSession>> getSession() noexcept override {
return _pContext->getCesiumIonServerManager().getCurrentIonSession();
}
std::string getServerPath() noexcept override {
const auto pIonServer = _pContext->getCesiumIonServerManager().getCurrentIonServer();
if (!pIonServer) {
return "";
}
return pIonServer->getPath().GetString();
}
std::vector<std::shared_ptr<CesiumIonSession>> getSessions() noexcept override {
const auto& ionServers = _pContext->getAssetRegistry().getIonServers();
std::vector<std::shared_ptr<CesiumIonSession>> result;
result.reserve(ionServers.size());
for (const auto& pIonServer : ionServers) {
result.push_back(pIonServer->getSession());
}
return result;
}
std::vector<std::string> getServerPaths() noexcept override {
const auto& ionServers = _pContext->getAssetRegistry().getIonServers();
std::vector<std::string> result;
result.reserve(ionServers.size());
for (const auto& pIonServer : ionServers) {
result.push_back(pIonServer->getPath().GetString());
}
return result;
}
SetDefaultTokenResult getSetDefaultTokenResult() noexcept override {
return _pContext->getCesiumIonServerManager().getSetDefaultTokenResult();
}
bool isDefaultTokenSet() noexcept override {
return _pContext->getCesiumIonServerManager().isDefaultTokenSet();
}
void createToken(const char* name) noexcept override {
_pContext->getCesiumIonServerManager().createToken(name);
}
void selectToken(const char* id, const char* token) noexcept override {
CesiumIonClient::Token t{id, "", token};
_pContext->getCesiumIonServerManager().selectToken(t);
}
void specifyToken(const char* token) noexcept override {
_pContext->getCesiumIonServerManager().specifyToken(token);
}
std::optional<AssetTroubleshootingDetails> getAssetTroubleshootingDetails() noexcept override {
return _pContext->getCesiumIonServerManager().getAssetTroubleshootingDetails();
}
std::optional<TokenTroubleshootingDetails> getAssetTokenTroubleshootingDetails() noexcept override {
return _pContext->getCesiumIonServerManager().getAssetTokenTroubleshootingDetails();
}
std::optional<TokenTroubleshootingDetails> getDefaultTokenTroubleshootingDetails() noexcept override {
return _pContext->getCesiumIonServerManager().getDefaultTokenTroubleshootingDetails();
}
void updateTroubleshootingDetails(
const char* tilesetPath,
int64_t tilesetIonAssetId,
uint64_t tokenEventId,
uint64_t assetEventId) noexcept override {
return _pContext->getCesiumIonServerManager().updateTroubleshootingDetails(
pxr::SdfPath(tilesetPath), tilesetIonAssetId, tokenEventId, assetEventId);
}
void updateTroubleshootingDetails(
const char* tilesetPath,
int64_t tilesetIonAssetId,
int64_t rasterOverlayIonAssetId,
uint64_t tokenEventId,
uint64_t assetEventId) noexcept override {
return _pContext->getCesiumIonServerManager().updateTroubleshootingDetails(
pxr::SdfPath(tilesetPath), tilesetIonAssetId, rasterOverlayIonAssetId, tokenEventId, assetEventId);
}
std::string printFabricStage() noexcept override {
return FabricUtil::printFabricStage(_pContext->getFabricStage());
}
RenderStatistics getRenderStatistics() noexcept override {
return _pContext->getRenderStatistics();
}
bool creditsAvailable() noexcept override {
return _pContext->getCreditSystem()->getCreditsToShowThisFrame().size() > 0;
}
std::vector<std::pair<std::string, bool>> getCredits() noexcept override {
const auto& pCreditSystem = _pContext->getCreditSystem();
const auto& credits = pCreditSystem->getCreditsToShowThisFrame();
std::vector<std::pair<std::string, bool>> result;
result.reserve(credits.size());
for (const auto& item : credits) {
const auto showOnScreen = pCreditSystem->shouldBeShownOnScreen(item);
result.emplace_back(pCreditSystem->getHtml(item), showOnScreen);
}
return result;
}
void creditsStartNextFrame() noexcept override {
return _pContext->getCreditSystem()->startNextFrame();
}
bool isTracingEnabled() noexcept override {
#if CESIUM_TRACING_ENABLED
return true;
#else
return false;
#endif
}
void clearAccessorCache() override {
_pContext->clearAccessorCache();
}
private:
std::unique_ptr<Context> _pContext;
};
} // namespace cesium::omniverse
const struct carb::PluginImplDesc pluginImplDesc = {
"cesium.omniverse.plugin",
"Cesium Omniverse Carbonite Plugin.",
"Cesium",
carb::PluginHotReload::eDisabled,
"dev"};
#ifdef CESIUM_OMNI_CLANG
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
#endif
CARB_PLUGIN_IMPL(pluginImplDesc, cesium::omniverse::CesiumOmniversePlugin)
CARB_PLUGIN_IMPL_DEPS(omni::fabric::IFabric, omni::kit::IApp, carb::settings::ISettings)
#ifdef CESIUM_OMNI_CLANG
#pragma clang diagnostic pop
#endif
void fillInterface([[maybe_unused]] cesium::omniverse::CesiumOmniversePlugin& iface) {}
| 7,245 | C++ | 32.391705 | 114 | 0.704348 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/extension.py | from functools import partial
import asyncio
from typing import Optional, List
import logging
import omni.ext
import omni.ui as ui
import omni.kit.ui
from .powertools_window import CesiumPowertoolsWindow
from cesium.omniverse.utils import wait_n_frames, dock_window_async
from cesium.omniverse.install import WheelInfo, WheelInstaller
class CesiumPowertoolsExtension(omni.ext.IExt):
def __init__(self):
super().__init__()
self._logger = logging.getLogger(__name__)
self._powertools_window: Optional[CesiumPowertoolsWindow] = None
self._install_py_dependencies()
def on_startup(self):
self._logger.info("Starting Cesium Power Tools...")
self._setup_menus()
self._show_and_dock_startup_windows()
def on_shutdown(self):
self._destroy_powertools_window()
def _setup_menus(self):
ui.Workspace.set_show_window_fn(
CesiumPowertoolsWindow.WINDOW_NAME, partial(self._show_powertools_window, None)
)
editor_menu = omni.kit.ui.get_editor_menu()
if editor_menu:
editor_menu.add_item(
CesiumPowertoolsWindow.MENU_PATH, self._show_powertools_window, toggle=True, value=True
)
def _show_and_dock_startup_windows(self):
ui.Workspace.show_window(CesiumPowertoolsWindow.WINDOW_NAME)
asyncio.ensure_future(dock_window_async(self._powertools_window, target="Property"))
def _destroy_powertools_window(self):
if self._powertools_window is not None:
self._powertools_window.destroy()
self._powertools_window = None
async def _destroy_window_async(self, path):
# Wait one frame, this is due to the one frame defer in Window::_moveToMainOSWindow()
await wait_n_frames(1)
if path is CesiumPowertoolsWindow.MENU_PATH:
self._destroy_powertools_window()
def _visibility_changed_fn(self, path, visible):
editor_menu = omni.kit.ui.get_editor_menu()
if editor_menu:
editor_menu.set_value(path, visible)
if not visible:
asyncio.ensure_future(self._destroy_window_async(path))
def _show_powertools_window(self, _menu, value):
if value:
self._powertools_window = CesiumPowertoolsWindow(width=300, height=400)
self._powertools_window.set_visibility_changed_fn(
partial(self._visibility_changed_fn, CesiumPowertoolsWindow.MENU_PATH)
)
elif self._powertools_window is not None:
self._powertools_window.visible = False
def _install_py_dependencies(self):
vendor_wheels: List[WheelInfo] = [
WheelInfo(
module="pyproj",
windows_whl="pyproj-3.6.0-cp310-cp310-win_amd64.whl",
linux_x64_whl="pyproj-3.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
linux_aarch_whl="pyproj-3.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
)
]
for w in vendor_wheels:
installer = WheelInstaller(w, extension_module="cesium.powertools")
if not installer.install():
self._logger.error(f"Could not install wheel for {w.module}")
| 3,271 | Python | 34.565217 | 108 | 0.646897 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/__init__.py | from .extension import * # noqa: F401 F403
| 44 | Python | 21.499989 | 43 | 0.704545 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/powertools_window.py | import logging
import omni.ui as ui
from typing import Callable, Optional, List
from cesium.omniverse.ui import CesiumOmniverseDebugWindow
from .georefhelper.georef_helper_window import CesiumGeorefHelperWindow
from .utils import (
extend_far_plane,
save_carb_settings,
save_fabric_stage,
set_sunstudy_from_georef,
)
import os
from functools import partial
from .benchmarking.load_timer_window import CesiumLoadTimerWindow
powertools_extension_location = os.path.join(os.path.dirname(__file__), "../../")
class PowertoolsAction:
def __init__(self, title: str, action: Callable):
self._title = title
self._action = action
self._button: Optional[ui.Button] = None
def destroy(self):
if self._button is not None:
self._button.destroy()
self._button = None
def button(self):
if self._button is None:
self._button = ui.Button(self._title, height=0, clicked_fn=self._action)
return self._button
class CesiumPowertoolsWindow(ui.Window):
WINDOW_NAME = "Cesium Power Tools"
MENU_PATH = f"Window/Cesium/{WINDOW_NAME}"
def __init__(self, **kwargs):
super().__init__(CesiumPowertoolsWindow.WINDOW_NAME, **kwargs)
self._logger = logging.getLogger(__name__)
# You do not necessarily need to create an action function in this window class. If you have a function
# in another window or class, you can absolutely call that instead from here.
self._actions: List[PowertoolsAction] = [
PowertoolsAction("Open Cesium Debugging Window", CesiumOmniverseDebugWindow.show_window),
PowertoolsAction("Open Cesium Georeference Helper Window", CesiumGeorefHelperWindow.create_window),
PowertoolsAction("Open Cesium Load Timer Window", CesiumLoadTimerWindow.create_window),
PowertoolsAction("Extend Far Plane", extend_far_plane),
PowertoolsAction("Save Carb Settings", partial(save_carb_settings, powertools_extension_location)),
PowertoolsAction("Save Fabric Stage", partial(save_fabric_stage, powertools_extension_location)),
PowertoolsAction("Set Sun Study from Georef", set_sunstudy_from_georef),
]
self.frame.set_build_fn(self._build_fn)
def destroy(self) -> None:
for action in self._actions:
action.destroy()
self._actions.clear()
super().destroy()
def _build_fn(self):
with ui.ScrollingFrame():
with ui.VStack(spacing=4):
for action in self._actions:
action.button()
| 2,623 | Python | 35.444444 | 111 | 0.666794 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/benchmarking/load_timer_window.py | import logging
import omni.ui as ui
import carb.events
import omni.kit.app as app
from typing import List
from cesium.omniverse.ui.models.space_delimited_number_model import SpaceDelimitedNumberModel
from cesium.omniverse.utils.cesium_interface import CesiumInterfaceManager
from datetime import datetime
from cesium.omniverse.usdUtils import get_tileset_paths
class CesiumLoadTimerWindow(ui.Window):
WINDOW_NAME = "Cesium Load Timer"
_logger: logging.Logger
_last_tiles_loading_worker = 0
def __init__(self, **kwargs):
super().__init__(CesiumLoadTimerWindow.WINDOW_NAME, **kwargs)
self._logger = logging.getLogger(__name__)
self._timer_active = False
self._tiles_loading_worker_model: SpaceDelimitedNumberModel = SpaceDelimitedNumberModel(0)
self._load_time_seconds_model: SpaceDelimitedNumberModel = SpaceDelimitedNumberModel(0)
self._past_results_model: ui.SimpleStringModel = ui.SimpleStringModel("")
self._subscriptions: List[carb.events.ISubscription] = []
self._setup_subscriptions()
# Set the function that is called to build widgets when the window is visible
self.frame.set_build_fn(self._build_fn)
self.set_visibility_changed_fn(self._visibility_changed_fn)
def destroy(self):
self._remove_subscriptions()
super().destroy()
def __del__(self):
self.destroy()
def _visibility_changed_fn(self, visible):
if not visible:
self._remove_subscriptions()
def _setup_subscriptions(self):
update_stream = app.get_app().get_update_event_stream()
self._subscriptions.append(
update_stream.create_subscription_to_pop(self._on_update_frame, name="on_update_frame")
)
def _remove_subscriptions(self):
for subscription in self._subscriptions:
subscription.unsubscribe()
self._subscriptions.clear()
def _on_update_frame(self, _e: carb.events.IEvent):
if not self.visible or not self._timer_active:
return
with CesiumInterfaceManager() as interface:
render_statistics = interface.get_render_statistics()
# Loading worker count has changed from last frame, so update the timer
if render_statistics.tiles_loading_worker != self._last_tiles_loading_worker:
# Register a new end-time and calculate the total elapsed time in seconds
self._end_time = datetime.now()
time_elapsed = self._end_time - self._start_time
self._load_time_seconds_model.set_value(time_elapsed.total_seconds())
# If 30 sucessive frames with zero tiles loading occurs, we assume loading has finished
if render_statistics.tiles_loading_worker == 0:
self._zero_counter += 1
if self._zero_counter >= 30:
self._end_load_timer() # Cancel the timer after 30 successful 0 tile frames
else:
self._zero_counter = 0
# Store the number of tile workers for use in the next update cycle
self._last_tiles_loading_worker = render_statistics.tiles_loading_worker
self._tiles_loading_worker_model.set_value(render_statistics.tiles_loading_worker)
def _start_load_timer(self):
self._start_time = datetime.now()
self._end_time = datetime.now()
self._timer_active = True
self._zero_counter = 0
with CesiumInterfaceManager() as interface:
tileset_paths = get_tileset_paths()
for tileset_path in tileset_paths:
interface.reload_tileset(tileset_path)
def _end_load_timer(self):
self._timer_active = False
result_str = f"{self._load_time_seconds_model}\n" + self._past_results_model.get_value_as_string()
self._past_results_model.set_value(result_str)
@staticmethod
def create_window():
return CesiumLoadTimerWindow(width=300, height=370)
def _build_fn(self):
"""Builds out the UI"""
with ui.VStack(spacing=4):
ui.Label(
"This tool records the amount of time taken to reload all tilesets in the stage",
word_wrap=True,
)
def reload_all_tilesets():
self._start_load_timer()
ui.Button("Reload all Tilesets", height=20, clicked_fn=reload_all_tilesets)
ui.Label(
"The timer automatically completes when no tiles are queued to load for 30 successive frames",
word_wrap=True,
)
for label, model in [
("Tiles loading (worker)", self._tiles_loading_worker_model),
("Load time (s)", self._load_time_seconds_model),
]:
with ui.HStack(height=0):
ui.Label(label, height=0)
ui.StringField(model=model, height=0, read_only=True)
ui.Label("Past results:", height=0)
ui.StringField(model=self._past_results_model, multiline=True, height=150)
| 5,135 | Python | 36.764706 | 110 | 0.627653 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/georefhelper/georef_helper_window.py | import logging
import omni.ui as ui
import omni.usd
from .proj import epsg_to_ecef, epsg_to_wgs84, get_crs_name_from_epsg
import math
from cesium.omniverse.utils.custom_fields import string_field_with_label, int_field_with_label, float_field_with_label
from pxr import Sdf
class CesiumGeorefHelperWindow(ui.Window):
WINDOW_NAME = "Cesium Georeference Helper"
_logger: logging.Logger
def __init__(self, **kwargs):
super().__init__(CesiumGeorefHelperWindow.WINDOW_NAME, **kwargs)
self._logger = logging.getLogger(__name__)
# Set the function that is called to build widgets when the window is visible
self.frame.set_build_fn(self._build_fn)
def destroy(self):
# It will destroy all the children
super().destroy()
def __del__(self):
self.destroy()
@staticmethod
def create_window():
return CesiumGeorefHelperWindow(width=250, height=600)
def _convert_coordinates(self):
# Get the CRS and check if it is valid, adjust UI values accordingly
crs = get_crs_name_from_epsg(self._epsg_model.get_value_as_int())
if crs is None:
self._epsg_name_model.set_value("Invalid EPSG Code")
self._wgs84_latitude_model.set_value(math.nan)
self._wgs84_longitude_model.set_value(math.nan)
self._wgs84_height_model.set_value(math.nan)
self._ecef_x_model.set_value(math.nan)
self._ecef_y_model.set_value(math.nan)
self._ecef_z_model.set_value(math.nan)
return
self._epsg_name_model.set_value(crs)
# Convert coords to WGS84 and set in UI
wgs84_coords = epsg_to_wgs84(
self._epsg_model.as_string,
self._easting_model.as_float,
self._northing_model.as_float,
self._elevation_model.as_float,
)
self._wgs84_latitude_model.set_value(wgs84_coords[0])
self._wgs84_longitude_model.set_value(wgs84_coords[1])
self._wgs84_height_model.set_value(wgs84_coords[2])
# Convert coords to ECEF and set in UI
ecef_coords = epsg_to_ecef(
self._epsg_model.as_string,
self._easting_model.as_float,
self._northing_model.as_float,
self._elevation_model.as_float,
)
self._ecef_x_model.set_value(ecef_coords[0])
self._ecef_y_model.set_value(ecef_coords[1])
self._ecef_z_model.set_value(ecef_coords[2])
def _set_georeference_prim(self):
if math.isnan(self._wgs84_latitude_model.get_value_as_float()):
self._logger.warning("Cannot set CesiumGeoreference to NaN")
return
stage = omni.usd.get_context().get_stage()
cesium_prim = stage.GetPrimAtPath("/CesiumGeoreference")
cesium_prim.GetAttribute("cesium:georeferenceOrigin:latitude").Set(
self._wgs84_latitude_model.get_value_as_float()
)
cesium_prim.GetAttribute("cesium:georeferenceOrigin:longitude").Set(
self._wgs84_longitude_model.get_value_as_float()
)
cesium_prim.GetAttribute("cesium:georeferenceOrigin:height").Set(
self._wgs84_height_model.get_value_as_float()
)
@staticmethod
def set_georef_from_environment():
stage = omni.usd.get_context().get_stage()
environment_prim = stage.GetPrimAtPath("/Environment")
cesium_prim = stage.GetPrimAtPath("/CesiumGeoreference")
lat_attr = environment_prim.GetAttribute("location:latitude")
long_attr = environment_prim.GetAttribute("location:longitude")
if lat_attr and long_attr:
cesium_prim.GetAttribute("cesium:georeferenceOrigin:latitude").Set(lat_attr.Get())
cesium_prim.GetAttribute("cesium:georeferenceOrigin:longitude").Set(long_attr.Get())
cesium_prim.GetAttribute("cesium:georeferenceOrigin:height").Set(0.0)
else:
logger = logging.getLogger(__name__)
logger.warning(
"Cannot set CesiumGeoreference as environment prim does not have latitude or longitude attributes"
)
@staticmethod
def set_georef_from_anchor():
logger = logging.getLogger(__name__)
stage = omni.usd.get_context().get_stage()
cesium_prim = stage.GetPrimAtPath("/CesiumGeoreference")
if not cesium_prim.IsValid():
logger.error("No CesiumGeoreference found")
return
selection = omni.usd.get_context().get_selection().get_selected_prim_paths()
for prim_path in selection:
prim = stage.GetPrimAtPath(prim_path)
latitude = prim.GetAttribute("cesium:anchor:latitude").Get()
longitude = prim.GetAttribute("cesium:anchor:longitude").Get()
height = prim.GetAttribute("cesium:anchor:height").Get()
if latitude is not None and longitude is not None and height is not None:
cesium_prim.GetAttribute("cesium:georeferenceOrigin:latitude").Set(latitude)
cesium_prim.GetAttribute("cesium:georeferenceOrigin:longitude").Set(longitude)
cesium_prim.GetAttribute("cesium:georeferenceOrigin:height").Set(height)
return
logger.error("Please select a prim with a globe anchor")
def _build_fn(self):
"""Builds out the UI buttons and their handlers."""
with ui.VStack(spacing=4):
label_style = {"Label": {"font_size": 16}}
ui.Label(
"Enter coordinates in any EPSG CRS to convert them to ECEF and WGS84",
word_wrap=True,
style=label_style,
)
ui.Spacer(height=10)
ui.Label("Your Project Details:", style=label_style)
# TODO: Precision issues to resolve
def on_coordinate_update(event):
self._convert_coordinates()
# Define the SimpleValueModels for the UI
self._epsg_model = ui.SimpleIntModel(28356)
self._epsg_name_model = ui.SimpleStringModel("")
self._easting_model = ui.SimpleFloatModel(503000.0)
self._northing_model = ui.SimpleFloatModel(6950000.0)
self._elevation_model = ui.SimpleFloatModel(0.0)
# Add the value changed callbacks
self._epsg_model.add_value_changed_fn(on_coordinate_update)
self._easting_model.add_value_changed_fn(on_coordinate_update)
self._northing_model.add_value_changed_fn(on_coordinate_update)
self._elevation_model.add_value_changed_fn(on_coordinate_update)
# TODO: Make EPSG an autocomplete field
int_field_with_label("EPSG Code", model=self._epsg_model)
string_field_with_label("EPSG Name", model=self._epsg_name_model, enabled=False)
float_field_with_label("Easting / X", model=self._easting_model)
float_field_with_label("Northing / Y", model=self._northing_model)
float_field_with_label("Elevation / Z", model=self._elevation_model)
ui.Spacer(height=10)
# TODO: It would be nice to be able to copy these fields, or potentially have two way editing
ui.Label("WGS84 Results:", style=label_style)
self._wgs84_latitude_model = ui.SimpleFloatModel(0.0)
self._wgs84_longitude_model = ui.SimpleFloatModel(0.0)
self._wgs84_height_model = ui.SimpleFloatModel(0.0)
float_field_with_label("Latitude", model=self._wgs84_latitude_model, enabled=False)
float_field_with_label("Longitude", model=self._wgs84_longitude_model, enabled=False)
float_field_with_label("Elevation", model=self._wgs84_height_model, enabled=False)
ui.Spacer(height=10)
ui.Label("ECEF Results:", style=label_style)
self._ecef_x_model = ui.SimpleFloatModel(0.0)
self._ecef_y_model = ui.SimpleFloatModel(0.0)
self._ecef_z_model = ui.SimpleFloatModel(0.0)
float_field_with_label("X", model=self._ecef_x_model, enabled=False)
float_field_with_label("Y", model=self._ecef_y_model, enabled=False)
float_field_with_label("Z", model=self._ecef_z_model, enabled=False)
ui.Button("Set Georeference from EPSG", height=20, clicked_fn=self._set_georeference_prim)
ui.Button(
"Set Georeference from Environment Prim", height=20, clicked_fn=self.set_georef_from_environment
)
ui.Button("Set Georef from Selected Anchor", height=20, clicked_fn=self.set_georef_from_anchor)
# Do the first conversion
self._convert_coordinates()
| 8,726 | Python | 41.15942 | 118 | 0.628467 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/georefhelper/proj.py | ECEF_EPSG = 4978
WGS84_EPSG = 4979
def get_crs_name_from_epsg(epsg_code):
import pyproj
try:
return pyproj.crs.CRS.from_epsg(epsg_code).name
except pyproj.exceptions.CRSError:
return None
def epsg_to_epsg(from_epsg, to_epsg, x, y, z):
import pyproj
from_crs = pyproj.crs.CRS.from_epsg(from_epsg)
to_crs = pyproj.crs.CRS.from_epsg(to_epsg)
# Define the from and to coordinate systems
transformer = pyproj.Transformer.from_crs(from_crs, to_crs)
# Convert ECEF coordinates to longitude, latitude, and height
lat, lon, height = transformer.transform(x, y, z)
return lat, lon, height
def epsg_to_wgs84(from_epsg, x, y, z):
return epsg_to_epsg(from_epsg, WGS84_EPSG, x, y, z)
def epsg_to_ecef(from_epsg, x, y, z):
return epsg_to_epsg(from_epsg, ECEF_EPSG, x, y, z)
def ecef_to_wgs84(x, y, z):
return epsg_to_epsg(ECEF_EPSG, WGS84_EPSG, x, y, z)
def wgs84_to_ecef(x, y, z):
return epsg_to_epsg(WGS84_EPSG, ECEF_EPSG, x, y, z)
| 1,012 | Python | 22.558139 | 65 | 0.658103 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/utils/__init__.py | from .utils import * # noqa: F401 F403
| 40 | Python | 19.49999 | 39 | 0.675 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/cesium/powertools/utils/utils.py | import logging
import omni.usd
from omni.kit.viewport.utility import get_active_viewport
from pxr import Gf, UsdGeom, Sdf
import json
import carb.settings
import os
from cesium.omniverse.utils.cesium_interface import CesiumInterfaceManager
from asyncio import ensure_future
# Modified version of ScopedEdit in _build_viewport_cameras in omni.kit.widget.viewport
class ScopedEdit:
def __init__(self, stage):
self.__stage = stage
edit_target = stage.GetEditTarget()
edit_layer = edit_target.GetLayer()
self.__edit_layer = stage.GetSessionLayer()
self.__was_editable = self.__edit_layer.permissionToEdit
if not self.__was_editable:
self.__edit_layer.SetPermissionToEdit(True)
if self.__edit_layer != edit_layer:
stage.SetEditTarget(self.__edit_layer)
self.__edit_target = edit_target
else:
self.__edit_target = None
def __del__(self):
if self.__edit_layer and not self.__was_editable:
self.__edit_layer.SetPermissionToEdit(False)
self.__edit_layer = None
if self.__edit_target:
self.__stage.SetEditTarget(self.__edit_target)
self.__edit_target = None
def extend_far_plane():
stage = omni.usd.get_context().get_stage()
viewport = get_active_viewport()
camera_path = viewport.get_active_camera()
camera = UsdGeom.Camera.Get(stage, camera_path)
assert camera.GetPrim().IsValid()
scoped_edit = ScopedEdit(stage) # noqa: F841
camera.GetClippingRangeAttr().Set(Gf.Vec2f(1.0, 10000000000.0))
def save_carb_settings(powertools_extension_location: str):
carb_settings_path = os.path.join(powertools_extension_location, "carb_settings.txt")
with open(carb_settings_path, "w") as fh:
fh.write(json.dumps(carb.settings.get_settings().get("/"), indent=2))
def save_fabric_stage(powertools_extension_location: str):
with CesiumInterfaceManager() as interface:
fabric_stage_path = os.path.join(powertools_extension_location, "fabric_stage.txt")
with open(fabric_stage_path, "w") as fh:
fh.write(interface.print_fabric_stage())
# Helper function to search for an attribute on a prim, or create it if not present
def get_or_create_attribute(prim, name, type):
attribute = prim.GetAttribute(name)
if not attribute:
attribute = prim.CreateAttribute(name, type)
return attribute
def set_sunstudy_from_georef():
stage = omni.usd.get_context().get_stage()
environment_prim = stage.GetPrimAtPath("/Environment")
cesium_prim = stage.GetPrimAtPath("/CesiumGeoreference")
lat_attr = get_or_create_attribute(environment_prim, "location:latitude", Sdf.ValueTypeNames.Float)
lat_attr.Set(cesium_prim.GetAttribute("cesium:georeferenceOrigin:latitude").Get())
long_attr = get_or_create_attribute(environment_prim, "location:longitude", Sdf.ValueTypeNames.Float)
long_attr.Set(cesium_prim.GetAttribute("cesium:georeferenceOrigin:longitude").Get())
north_attr = get_or_create_attribute(environment_prim, "location:north_orientation", Sdf.ValueTypeNames.Float)
north_attr.Set(90.0) # Always set to 90, otherwise the sun is at the wrong angle
| 3,243 | Python | 37.164705 | 114 | 0.69411 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/doc/README.md | # Cesium for Omniverse Power Tools
This extension provides supporting features and tools that may be useful while developing apps and stages using Cesium for Omniverse, but are provided **on an entirely your milage may vary** basis. All of these tools are considered experimental. If you like a particular tool in this extension, and would like to see it moved to the main Cesium for Omniverse extension, please [feel free to let us know on the Cesium for Omniverse forums](https://community.cesium.com/c/cesium-for-omniverse/14).
## Current Features
### Open Cesium Debugging Window
Easier and quicker way for opening the Cesium Debugging window.
## License
Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). Cesium for Omniverse is free for both commercial and non-commercial use.
| 800 | Markdown | 56.214282 | 495 | 0.78875 |
CesiumGS/cesium-omniverse/exts/cesium.powertools/config/extension.toml | [package]
version = "0.1.0"
category = "simulation"
feature = false
app = false
title = "Cesium for Omniverse Power Tools"
description = "Additional experimental helper features for Cesium for Omniverse."
authors = "Cesium GS Inc."
repository = "https://github.com/CesiumGS/cesium-omniverse"
keywords = [
"cesium",
"omniverse",
"geospatial",
"3D Tiles",
"glTF",
"globe",
"earth",
"simulation",
]
# Paths are relative to the extension folder
readme = "doc/README.md"
icon = "doc/resources/icon.png"
[dependencies]
"cesium.omniverse" = {}
[[python.module]]
name = "cesium.powertools"
[python.pipapi]
archiveDirs = ["vendor"]
| 659 | TOML | 18.999999 | 81 | 0.681335 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/cesium/usd/__init__.py | from .plugins import * # noqa: F401 F403
| 42 | Python | 20.49999 | 41 | 0.690476 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/cesium/usd/plugins/__init__.py | import os # noqa: F401
from pxr import Plug
pluginsRoot = os.path.join(os.path.dirname(__file__), "../../../plugins")
cesiumUsdSchemasPath = pluginsRoot + "/CesiumUsdSchemas/resources"
Plug.Registry().RegisterPlugins(cesiumUsdSchemasPath)
plugin = Plug.Registry().GetPluginWithName("CesiumUsdSchemas")
if plugin:
plugin.Load()
else:
print("Cannot find plugin")
| 372 | Python | 27.692306 | 73 | 0.739247 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/cesium/usd/plugins/CesiumUsdSchemas/__init__.py | from . import _CesiumUsdSchemas
from pxr import Tf
Tf.PrepareModule(_CesiumUsdSchemas, locals())
del Tf
try:
import __DOC
__DOC.Execute(locals())
del __DOC
except Exception:
try:
import __tmpDoc
__tmpDoc.Execute(locals())
del __tmpDoc
except Exception:
pass
| 314 | Python | 14.749999 | 45 | 0.617834 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/cesium/usd/plugins/CesiumUsdSchemas/__init__.pyi | from typing import Any, ClassVar
import Boost.Python
import pxr.Usd
import pxr.UsdGeom
__MFB_FULL_PACKAGE_NAME: str
class Data(pxr.Usd.Typed):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateDebugDisableGeometryPoolAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugDisableGeoreferencingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugDisableMaterialPoolAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugDisableMaterialsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugDisableTexturePoolAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugDisableTexturesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugGeometryPoolInitialCapacityAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugMaterialPoolInitialCapacityAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugRandomColorsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDebugTexturePoolInitialCapacityAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSelectedIonServerRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugDisableGeometryPoolAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugDisableGeoreferencingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugDisableMaterialPoolAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugDisableMaterialsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugDisableTexturePoolAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugDisableTexturesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugGeometryPoolInitialCapacityAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugMaterialPoolInitialCapacityAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugRandomColorsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDebugTexturePoolInitialCapacityAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSelectedIonServerRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class Georeference(pxr.Usd.Typed):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateGeoreferenceOriginHeightAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateGeoreferenceOriginLatitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateGeoreferenceOriginLongitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetGeoreferenceOriginHeightAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetGeoreferenceOriginLatitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetGeoreferenceOriginLongitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class GlobeAnchorAPI(pxr.Usd.APISchemaBase):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def Apply(cls, *args, **kwargs) -> Any: ...
@classmethod
def CanApply(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateAdjustOrientationForGlobeWhenMovingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateAnchorHeightAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateAnchorLatitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateAnchorLongitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateDetectTransformChangesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateGeoreferenceBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreatePositionAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetAdjustOrientationForGlobeWhenMovingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetAnchorHeightAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetAnchorLatitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetAnchorLongitudeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDetectTransformChangesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetGeoreferenceBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetPositionAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class IonRasterOverlay(RasterOverlay):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateIonAccessTokenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonAssetIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonServerBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonAccessTokenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonAssetIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonServerBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class IonServer(pxr.Usd.Typed):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateDisplayNameAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonServerApiUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonServerApplicationIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonServerUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateProjectDefaultIonAccessTokenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateProjectDefaultIonAccessTokenIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetDisplayNameAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonServerApiUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonServerApplicationIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonServerUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetProjectDefaultIonAccessTokenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetProjectDefaultIonAccessTokenIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class PolygonRasterOverlay(RasterOverlay):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateCartographicPolygonBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateCesiumOverlayRenderMethodAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateInvertSelectionAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetCartographicPolygonBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetCesiumOverlayRenderMethodAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetInvertSelectionAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class RasterOverlay(pxr.Usd.Typed):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateAlphaAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumSimultaneousTileLoadsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumTextureSizeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateOverlayRenderMethodAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateShowCreditsOnScreenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSubTileCacheBytesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetAlphaAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumSimultaneousTileLoadsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumTextureSizeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetOverlayRenderMethodAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetShowCreditsOnScreenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSubTileCacheBytesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class Session(pxr.Usd.Typed):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateEcefToUsdTransformAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetEcefToUsdTransformAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class TileMapServiceRasterOverlay(RasterOverlay):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateMaximumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMinimumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSpecifyZoomLevelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMinimumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSpecifyZoomLevelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class Tileset(pxr.UsdGeom.Gprim):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateCulledScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateEnableFogCullingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateEnableFrustumCullingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateEnforceCulledScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateForbidHolesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateGeoreferenceBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonAccessTokenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonAssetIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateIonServerBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateLoadingDescendantLimitAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMainThreadLoadingTimeLimitAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumCachedBytesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumSimultaneousTileLoadsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreatePreloadAncestorsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreatePreloadSiblingsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateRasterOverlayBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateShowCreditsOnScreenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSmoothNormalsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSourceTypeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSuspendUpdateAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetCulledScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetEnableFogCullingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetEnableFrustumCullingAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetEnforceCulledScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetForbidHolesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetGeoreferenceBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonAccessTokenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonAssetIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetIonServerBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetLoadingDescendantLimitAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMainThreadLoadingTimeLimitAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumCachedBytesAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumScreenSpaceErrorAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumSimultaneousTileLoadsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetPreloadAncestorsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetPreloadSiblingsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetRasterOverlayBindingRel(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetShowCreditsOnScreenAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSmoothNormalsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSourceTypeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSuspendUpdateAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class Tokens(Boost.Python.instance):
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def __reduce__(cls) -> Any: ...
@property
def cesiumAlpha(self) -> Any: ...
@property
def cesiumAnchorAdjustOrientationForGlobeWhenMoving(self) -> Any: ...
@property
def cesiumAnchorDetectTransformChanges(self) -> Any: ...
@property
def cesiumAnchorGeoreferenceBinding(self) -> Any: ...
@property
def cesiumAnchorHeight(self) -> Any: ...
@property
def cesiumAnchorLatitude(self) -> Any: ...
@property
def cesiumAnchorLongitude(self) -> Any: ...
@property
def cesiumAnchorPosition(self) -> Any: ...
@property
def cesiumBaseUrl(self) -> Any: ...
@property
def cesiumCartographicPolygonBinding(self) -> Any: ...
@property
def cesiumCulledScreenSpaceError(self) -> Any: ...
@property
def cesiumDebugDisableGeometryPool(self) -> Any: ...
@property
def cesiumDebugDisableGeoreferencing(self) -> Any: ...
@property
def cesiumDebugDisableMaterialPool(self) -> Any: ...
@property
def cesiumDebugDisableMaterials(self) -> Any: ...
@property
def cesiumDebugDisableTexturePool(self) -> Any: ...
@property
def cesiumDebugDisableTextures(self) -> Any: ...
@property
def cesiumDebugGeometryPoolInitialCapacity(self) -> Any: ...
@property
def cesiumDebugMaterialPoolInitialCapacity(self) -> Any: ...
@property
def cesiumDebugRandomColors(self) -> Any: ...
@property
def cesiumDebugTexturePoolInitialCapacity(self) -> Any: ...
@property
def cesiumDisplayName(self) -> Any: ...
@property
def cesiumEast(self) -> Any: ...
@property
def cesiumEcefToUsdTransform(self) -> Any: ...
@property
def cesiumEnableFogCulling(self) -> Any: ...
@property
def cesiumEnableFrustumCulling(self) -> Any: ...
@property
def cesiumEnforceCulledScreenSpaceError(self) -> Any: ...
@property
def cesiumForbidHoles(self) -> Any: ...
@property
def cesiumFormat(self) -> Any: ...
@property
def cesiumGeoreferenceBinding(self) -> Any: ...
@property
def cesiumGeoreferenceOriginHeight(self) -> Any: ...
@property
def cesiumGeoreferenceOriginLatitude(self) -> Any: ...
@property
def cesiumGeoreferenceOriginLongitude(self) -> Any: ...
@property
def cesiumInvertSelection(self) -> Any: ...
@property
def cesiumIonAccessToken(self) -> Any: ...
@property
def cesiumIonAssetId(self) -> Any: ...
@property
def cesiumIonServerApiUrl(self) -> Any: ...
@property
def cesiumIonServerApplicationId(self) -> Any: ...
@property
def cesiumIonServerBinding(self) -> Any: ...
@property
def cesiumIonServerUrl(self) -> Any: ...
@property
def cesiumLayer(self) -> Any: ...
@property
def cesiumLayers(self) -> Any: ...
@property
def cesiumLoadingDescendantLimit(self) -> Any: ...
@property
def cesiumMainThreadLoadingTimeLimit(self) -> Any: ...
@property
def cesiumMaximumCachedBytes(self) -> Any: ...
@property
def cesiumMaximumLevel(self) -> Any: ...
@property
def cesiumMaximumScreenSpaceError(self) -> Any: ...
@property
def cesiumMaximumSimultaneousTileLoads(self) -> Any: ...
@property
def cesiumMaximumTextureSize(self) -> Any: ...
@property
def cesiumMaximumZoomLevel(self) -> Any: ...
@property
def cesiumMinimumLevel(self) -> Any: ...
@property
def cesiumMinimumZoomLevel(self) -> Any: ...
@property
def cesiumNorth(self) -> Any: ...
@property
def cesiumOverlayRenderMethod(self) -> Any: ...
@property
def cesiumPreloadAncestors(self) -> Any: ...
@property
def cesiumPreloadSiblings(self) -> Any: ...
@property
def cesiumProjectDefaultIonAccessToken(self) -> Any: ...
@property
def cesiumProjectDefaultIonAccessTokenId(self) -> Any: ...
@property
def cesiumRasterOverlayBinding(self) -> Any: ...
@property
def cesiumRootTilesX(self) -> Any: ...
@property
def cesiumRootTilesY(self) -> Any: ...
@property
def cesiumSelectedIonServer(self) -> Any: ...
@property
def cesiumShowCreditsOnScreen(self) -> Any: ...
@property
def cesiumSmoothNormals(self) -> Any: ...
@property
def cesiumSourceType(self) -> Any: ...
@property
def cesiumSouth(self) -> Any: ...
@property
def cesiumSpecifyTileMatrixSetLabels(self) -> Any: ...
@property
def cesiumSpecifyTilingScheme(self) -> Any: ...
@property
def cesiumSpecifyZoomLevels(self) -> Any: ...
@property
def cesiumStyle(self) -> Any: ...
@property
def cesiumSubTileCacheBytes(self) -> Any: ...
@property
def cesiumSuspendUpdate(self) -> Any: ...
@property
def cesiumTileHeight(self) -> Any: ...
@property
def cesiumTileMatrixSetId(self) -> Any: ...
@property
def cesiumTileMatrixSetLabelPrefix(self) -> Any: ...
@property
def cesiumTileMatrixSetLabels(self) -> Any: ...
@property
def cesiumTileWidth(self) -> Any: ...
@property
def cesiumUrl(self) -> Any: ...
@property
def cesiumUseWebMercatorProjection(self) -> Any: ...
@property
def cesiumWest(self) -> Any: ...
@property
def clip(self) -> Any: ...
@property
def ion(self) -> Any: ...
@property
def overlay(self) -> Any: ...
@property
def url(self) -> Any: ...
class WebMapServiceRasterOverlay(RasterOverlay):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateBaseUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateLayersAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMinimumLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateTileHeightAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateTileWidthAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetBaseUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetLayersAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMinimumLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetTileHeightAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetTileWidthAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class WebMapTileServiceRasterOverlay(RasterOverlay):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def CreateEastAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateFormatAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateLayerAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMaximumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateMinimumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateNorthAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateRootTilesXAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateRootTilesYAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSouthAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSpecifyTileMatrixSetLabelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSpecifyTilingSchemeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateSpecifyZoomLevelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateStyleAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateTileMatrixSetIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateTileMatrixSetLabelPrefixAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateTileMatrixSetLabelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateUseWebMercatorProjectionAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def CreateWestAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def Define(cls, *args, **kwargs) -> Any: ...
@classmethod
def Get(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetEastAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetFormatAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetLayerAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMaximumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetMinimumZoomLevelAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetNorthAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetRootTilesXAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetRootTilesYAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSchemaAttributeNames(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSouthAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSpecifyTileMatrixSetLabelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSpecifyTilingSchemeAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetSpecifyZoomLevelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetStyleAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetTileMatrixSetIdAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetTileMatrixSetLabelPrefixAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetTileMatrixSetLabelsAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetUrlAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetUseWebMercatorProjectionAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def GetWestAttr(cls, *args, **kwargs) -> Any: ...
@classmethod
def _GetStaticTfType(cls, *args, **kwargs) -> Any: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
class _CanApplyResult(Boost.Python.instance):
__instance_size__: ClassVar[int] = ...
@classmethod
def __init__(cls, *args, **kwargs) -> None: ...
@classmethod
def __bool__(cls) -> bool: ...
@classmethod
def __eq__(cls, other) -> bool: ...
@classmethod
def __getitem__(cls, index) -> Any: ...
@classmethod
def __ne__(cls, other) -> bool: ...
@classmethod
def __reduce__(cls) -> Any: ...
@property
def whyNot(self) -> Any: ...
| 28,367 | unknown | 35.793774 | 87 | 0.62608 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/doc/CHANGES.md | # Change Log
### v0.1.0 - 2023-03-20
- Split the Cesium USD plugins into a separate extension.
| 97 | Markdown | 15.333331 | 57 | 0.690722 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/doc/README.md | # Cesium for Omniverse USD Plugins
Supporting package for Cesium for Omniverse containing Cesium's USD plugins and schemas.
| 125 | Markdown | 30.499992 | 88 | 0.824 |
CesiumGS/cesium-omniverse/exts/cesium.usd.plugins/config/extension.toml | [core]
# Load after omni.usd.libs (-1000) and before omni.usd (0)
# See https://docs.omniverse.nvidia.com/py/kit/docs/guide/usd_schema.html
order = -100
[package]
version = "0.4.0"
category = "simulation"
feature = false
app = false
title = "Cesium for Omniverse USD Plugins"
description = "Supporting USD Plugins for Cesium for Omniverse"
authors = "Cesium GS Inc."
repository = "https://github.com/CesiumGS/cesium-omniverse"
keywords = [
"cesium",
"omniverse",
"geospatial",
"3D Tiles",
"glTF",
"globe",
"earth",
"simulation",
]
toggleable = false
# Paths are relative to the extension folder
changelog = "doc/CHANGES.md"
readme = "doc/README.md"
preview_image = "doc/images/preview.jpg"
icon = "doc/images/icon.png"
[package.target]
kit = ["105.1"]
[package.writeTarget]
kit = true
python = false
# Which extensions this extension depends on
[dependencies]
"omni.usd.libs" = {}
# Main python module this extension provides, it will be publicly available as "import cesium.usd.plugins"
[[python.module]]
name = "cesium.usd.plugins"
[[native.library]]
path = "bin/${lib_prefix}CesiumUsdSchemas${lib_ext}"
| 1,145 | TOML | 21.92 | 106 | 0.702183 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse.cpp.tests/cesium/omniverse/cpp/tests/extension.py | import os
import omni.ext
import omni.usd
import omni.kit.ui
import omni.kit.app
from .bindings import acquire_cesium_omniverse_tests_interface, release_cesium_omniverse_tests_interface
class CesiumOmniverseCppTestsExtension(omni.ext.IExt):
def __init__(self):
super().__init__()
self.tests_set_up = False
self.frames_since_stage_opened = 0
self.frame_count_delta = 0
self.frames_between_setup_and_tests = 15
def on_startup(self):
print("Starting Cesium Tests Extension...")
global tests_interface
tests_interface = acquire_cesium_omniverse_tests_interface()
tests_interface.on_startup(os.path.join(os.path.dirname(__file__), "../../../../../cesium.omniverse"))
update_stream = omni.kit.app.get_app().get_update_event_stream()
# To ensure the tests only run after the stage has been opened, we
# attach a handler to an event that occurs every frame. That handler
# checks if the stage has opened, runs once, then detaches itself
self._run_once_sub = update_stream.create_subscription_to_pop(
self.run_once_after_stage_opens, name="Run once after stage opens"
)
print("Started Cesium Tests Extension.")
def run_once_after_stage_opens(self, _):
# wait until the USD stage is fully set up
if omni.usd.get_context().get_stage_state() == omni.usd.StageState.OPENED:
# set up tests on one frame, then run the tests on the next frame
# note we can't use wait_n_frames here as this is a subscribed function
# so it cannot be async
if not self.tests_set_up:
self.tests_set_up = True
print("Beginning Cesium Tests Extension tests")
stageId = omni.usd.get_context().get_stage_id()
tests_interface.set_up_tests(stageId)
self.frame_count_delta = 1
elif self.frames_since_stage_opened >= self.frames_between_setup_and_tests:
# unsubscribe so there's no way the next frame triggers another run
self._run_once_sub.unsubscribe()
tests_interface.run_all_tests()
print("Cesium Tests Extension tests complete")
self.frames_since_stage_opened += self.frame_count_delta
def on_shutdown(self):
print("Stopping Cesium Tests Extension...")
tests_interface.on_shutdown()
release_cesium_omniverse_tests_interface(tests_interface)
print("Stopped Cesium Tests Extension.")
| 2,571 | Python | 41.163934 | 110 | 0.639051 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse.cpp.tests/cesium/omniverse/cpp/tests/__init__.py | from .extension import * # noqa: F401 F403
| 44 | Python | 21.499989 | 43 | 0.704545 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse.cpp.tests/cesium/omniverse/cpp/tests/bindings/__init__.py | from .CesiumOmniverseCppTestsPythonBindings import * # noqa: F401 F403
| 72 | Python | 35.499982 | 71 | 0.819444 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse.cpp.tests/cesium/omniverse/cpp/tests/bindings/CesiumOmniverseCppTestsPythonBindings.pyi | class ICesiumOmniverseCppTestsInterface:
def __init__(self, *args, **kwargs) -> None: ...
def on_shutdown(self) -> None: ...
def on_startup(self, arg0: str) -> None: ...
def run_all_tests(self) -> None: ...
def set_up_tests(self, arg0: int) -> None: ...
def acquire_cesium_omniverse_tests_interface(
plugin_name: str = ..., library_path: str = ...
) -> ICesiumOmniverseCppTestsInterface: ...
def release_cesium_omniverse_tests_interface(arg0: ICesiumOmniverseCppTestsInterface) -> None: ...
| 516 | unknown | 42.08333 | 98 | 0.658915 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse.cpp.tests/doc/README.md | # Cesium for Omniverse Tests Extension
This extension is designed to run tests against the Cesium for Omniverse Extension.
## License
Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). Cesium for Omniverse is free for both commercial and non-commercial use.
| 272 | Markdown | 33.124996 | 134 | 0.786765 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse.cpp.tests/config/extension.toml | [package]
version = "0.1.0"
category = "simulation"
feature = false
app = false
title = "Cesium for Omniverse Tests"
description = "An extention to run tests against Cesium for Omniverse."
authors = "Cesium GS Inc."
repository = "https://github.com/CesiumGS/cesium-omniverse"
keywords = [
"cesium",
"omniverse",
"geospatial",
"3D Tiles",
"glTF",
"globe",
"earth",
"simulation",
"test",
]
# Paths are relative to the extension folder
readme = "doc/README.md"
preview_image = "doc/resources/icon.png"
icon = "doc/resources/icon.png"
[package.target]
kit = ["105.*"]
# Which extensions this extension depends on
[dependencies]
"cesium.usd.plugins" = {}
"usdrt.scenegraph" = {}
# Main python module this extension provides, it will be publicly available as "import cesium.omniverse"
[[python.module]]
name = "cesium.omniverse.cpp.tests"
[[native.plugin]]
path = "bin/cesium.omniverse.cpp.tests.plugin"
| 939 | TOML | 21.926829 | 104 | 0.693291 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/extension.py | from .bindings import acquire_cesium_omniverse_interface, release_cesium_omniverse_interface, Viewport
from .ui.add_menu_controller import CesiumAddMenuController
from .install import perform_vendor_install
from .utils import wait_n_frames, dock_window_async, perform_action_after_n_frames_async
from .usdUtils import (
add_tileset_ion,
add_raster_overlay_ion,
add_cartographic_polygon,
get_or_create_cesium_data,
get_or_create_cesium_georeference,
)
from .ui.asset_window import CesiumOmniverseAssetWindow
from .ui.debug_window import CesiumOmniverseDebugWindow
from .ui.main_window import CesiumOmniverseMainWindow
from .ui.settings_window import CesiumOmniverseSettingsWindow
from .ui.credits_viewport_frame import CesiumCreditsViewportFrame
from .ui.fabric_modal import CesiumFabricModal
from .models import AssetToAdd, RasterOverlayToAdd
from .ui import CesiumAttributesWidgetController
import asyncio
from functools import partial
import logging
import carb.events
import carb.settings as omni_settings
import omni.ext
import omni.kit.app as omni_app
import omni.kit.ui
import omni.kit.pipapi
from omni.kit.viewport.window import get_viewport_window_instances
import omni.ui as ui
import omni.usd
import os
from typing import List, Optional, Callable
from .ui.credits_viewport_controller import CreditsViewportController
from cesium.usd.plugins.CesiumUsdSchemas import Data as CesiumData, IonServer as CesiumIonServer
from omni.kit.capture.viewport import CaptureExtension
CESIUM_DATA_PRIM_PATH = "/Cesium"
cesium_extension_location = os.path.join(os.path.dirname(__file__), "../../")
class CesiumOmniverseExtension(omni.ext.IExt):
@staticmethod
def _set_menu(path, value):
# Set the menu to create this window on and off
editor_menu = omni.kit.ui.get_editor_menu()
if editor_menu:
editor_menu.set_value(path, value)
def __init__(self) -> None:
super().__init__()
self._main_window: Optional[CesiumOmniverseMainWindow] = None
self._asset_window: Optional[CesiumOmniverseAssetWindow] = None
self._debug_window: Optional[CesiumOmniverseDebugWindow] = None
self._settings_window: Optional[CesiumOmniverseSettingsWindow] = None
self._credits_viewport_frames: List[CesiumCreditsViewportFrame] = []
self._on_stage_subscription: Optional[carb.events.ISubscription] = None
self._on_update_subscription: Optional[carb.events.ISubscription] = None
self._show_asset_window_subscription: Optional[carb.events.ISubscription] = None
self._token_set_subscription: Optional[carb.events.ISubscription] = None
self._add_ion_asset_subscription: Optional[carb.events.ISubscription] = None
self._add_blank_asset_subscription: Optional[carb.events.ISubscription] = None
self._add_raster_overlay_subscription: Optional[carb.events.ISubscription] = None
self._add_cartographic_polygon_subscription: Optional[carb.events.ISubscription] = None
self._assets_to_add_after_token_set: List[AssetToAdd] = []
self._raster_overlay_to_add_after_token_set: List[RasterOverlayToAdd] = []
self._adding_assets = False
self._attributes_widget_controller: Optional[CesiumAttributesWidgetController] = None
self._credits_viewport_controller: Optional[CreditsViewportController] = None
self._add_menu_controller: Optional[CesiumAddMenuController] = None
self._logger: logging.Logger = logging.getLogger(__name__)
self._menus = []
self._num_credits_viewport_frames: int = 0
self._capture_instance = None
perform_vendor_install()
def on_startup(self):
# The ability to show up the window if the system requires it. We use it in QuickLayout.
ui.Workspace.set_show_window_fn(CesiumOmniverseMainWindow.WINDOW_NAME, partial(self.show_main_window, None))
ui.Workspace.set_show_window_fn(
CesiumOmniverseAssetWindow.WINDOW_NAME, partial(self.show_assets_window, None)
)
ui.Workspace.set_show_window_fn(CesiumOmniverseDebugWindow.WINDOW_NAME, partial(self.show_debug_window, None))
ui.Workspace.set_show_window_fn(
CesiumOmniverseSettingsWindow.WINDOW_NAME, partial(self.show_settings_window, None)
)
settings = omni_settings.get_settings()
show_on_startup = settings.get_as_bool("/exts/cesium.omniverse/showOnStartup")
self._add_to_menu(CesiumOmniverseMainWindow.MENU_PATH, self.show_main_window, show_on_startup)
self._add_to_menu(CesiumOmniverseAssetWindow.MENU_PATH, self.show_assets_window, False)
self._add_to_menu(CesiumOmniverseDebugWindow.MENU_PATH, self.show_debug_window, False)
self._add_to_menu(CesiumOmniverseSettingsWindow.MENU_PATH, self.show_settings_window, False)
self._logger.info("CesiumOmniverse startup")
# Acquire the Cesium Omniverse interface.
global _cesium_omniverse_interface
_cesium_omniverse_interface = acquire_cesium_omniverse_interface()
_cesium_omniverse_interface.on_startup(cesium_extension_location)
settings.set("/rtx/hydra/TBNFrameMode", 1)
# Allow material graph to find cesium mdl exports
mdl_custom_paths_name = "materialConfig/searchPaths/custom"
mdl_user_allow_list_name = "materialConfig/materialGraph/userAllowList"
mdl_renderer_custom_paths_name = "/renderer/mdl/searchPaths/custom"
cesium_mdl_search_path = os.path.join(cesium_extension_location, "mdl")
cesium_mdl_name = "cesium.mdl"
mdl_custom_paths = settings.get(mdl_custom_paths_name) or []
mdl_user_allow_list = settings.get(mdl_user_allow_list_name) or []
mdl_custom_paths.append(cesium_mdl_search_path)
mdl_user_allow_list.append(cesium_mdl_name)
mdl_renderer_custom_paths = settings.get_as_string(mdl_renderer_custom_paths_name)
mdl_renderer_custom_paths_sep = "" if mdl_renderer_custom_paths == "" else ";"
mdl_renderer_custom_paths = mdl_renderer_custom_paths + mdl_renderer_custom_paths_sep + cesium_mdl_search_path
settings.set_string_array(mdl_custom_paths_name, mdl_custom_paths)
settings.set_string_array(mdl_user_allow_list_name, mdl_user_allow_list)
settings.set_string(mdl_renderer_custom_paths_name, mdl_renderer_custom_paths)
# Show the window. It will call `self.show_window`
if show_on_startup:
asyncio.ensure_future(perform_action_after_n_frames_async(15, CesiumOmniverseExtension._open_window))
self._credits_viewport_controller = CreditsViewportController(_cesium_omniverse_interface)
self._add_menu_controller = CesiumAddMenuController(_cesium_omniverse_interface)
# Subscribe to stage event stream
usd_context = omni.usd.get_context()
if usd_context.get_stage_state() == omni.usd.StageState.OPENED:
_cesium_omniverse_interface.on_stage_change(usd_context.get_stage_id())
self._on_stage_subscription = usd_context.get_stage_event_stream().create_subscription_to_pop(
self._on_stage_event, name="cesium.omniverse.ON_STAGE_EVENT"
)
self._on_update_subscription = (
omni_app.get_app()
.get_update_event_stream()
.create_subscription_to_pop(self._on_update_frame, name="cesium.omniverse.extension.ON_UPDATE_FRAME")
)
bus = omni_app.get_app().get_message_bus_event_stream()
show_asset_window_event = carb.events.type_from_string("cesium.omniverse.SHOW_ASSET_WINDOW")
self._show_asset_window_subscription = bus.create_subscription_to_pop_by_type(
show_asset_window_event, self._on_show_asset_window_event
)
token_set_event = carb.events.type_from_string("cesium.omniverse.SET_DEFAULT_TOKEN_SUCCESS")
self._token_set_subscription = bus.create_subscription_to_pop_by_type(token_set_event, self._on_token_set)
add_ion_asset_event = carb.events.type_from_string("cesium.omniverse.ADD_ION_ASSET")
self._add_ion_asset_subscription = bus.create_subscription_to_pop_by_type(
add_ion_asset_event, self._on_add_ion_asset_event
)
add_blank_asset_event = carb.events.type_from_string("cesium.omniverse.ADD_BLANK_ASSET")
self._add_blank_asset_subscription = bus.create_subscription_to_pop_by_type(
add_blank_asset_event, self._on_add_blank_asset_event
)
add_cartographic_polygon_event = carb.events.type_from_string("cesium.omniverse.ADD_CARTOGRAPHIC_POLYGON")
self._add_cartographic_polygon_subscription = bus.create_subscription_to_pop_by_type(
add_cartographic_polygon_event, self._on_add_cartographic_polygon_event
)
add_raster_overlay_event = carb.events.type_from_string("cesium.omniverse.ADD_RASTER_OVERLAY")
self._add_raster_overlay_subscription = bus.create_subscription_to_pop_by_type(
add_raster_overlay_event, self._on_add_raster_overlay_to_tileset
)
self._capture_instance = CaptureExtension.get_instance()
def on_shutdown(self):
self._menus.clear()
if self._main_window is not None:
self._main_window.destroy()
self._main_window = None
if self._asset_window is not None:
self._asset_window.destroy()
self._asset_window = None
if self._debug_window is not None:
self._debug_window.destroy()
self._debug_window = None
if self._settings_window is not None:
self._settings_window.destroy()
self._settings_window = None
if self._credits_viewport_controller is not None:
self._credits_viewport_controller.destroy()
self._credits_viewport_controller = None
# Deregister the function that shows the window from omni.ui
ui.Workspace.set_show_window_fn(CesiumOmniverseMainWindow.WINDOW_NAME, None)
ui.Workspace.set_show_window_fn(CesiumOmniverseAssetWindow.WINDOW_NAME, None)
ui.Workspace.set_show_window_fn(CesiumOmniverseDebugWindow.WINDOW_NAME, None)
ui.Workspace.set_show_window_fn(CesiumOmniverseSettingsWindow.WINDOW_NAME, None)
if self._on_stage_subscription is not None:
self._on_stage_subscription.unsubscribe()
self._on_stage_subscription = None
if self._on_update_subscription is not None:
self._on_update_subscription.unsubscribe()
self._on_update_subscription = None
if self._token_set_subscription is not None:
self._token_set_subscription.unsubscribe()
self._token_set_subscription = None
if self._add_ion_asset_subscription is not None:
self._add_ion_asset_subscription.unsubscribe()
self._add_ion_asset_subscription = None
if self._add_blank_asset_subscription is not None:
self._add_blank_asset_subscription.unsubscribe()
self._add_blank_asset_subscription = None
if self._add_raster_overlay_subscription is not None:
self._add_raster_overlay_subscription.unsubscribe()
self._add_raster_overlay_subscription = None
if self._add_cartographic_polygon_subscription is not None:
self._add_cartographic_polygon_subscription.unsubscribe()
self._add_cartographic_polygon_subscription = None
if self._show_asset_window_subscription is not None:
self._show_asset_window_subscription.unsubscribe()
self._show_asset_window_subscription = None
if self._attributes_widget_controller is not None:
self._attributes_widget_controller.destroy()
self._attributes_widget_controller = None
if self._add_menu_controller is not None:
self._add_menu_controller.destroy()
self._add_menu_controller = None
self._capture_instance = None
self._destroy_credits_viewport_frames()
self._logger.info("CesiumOmniverse shutdown")
# Release the Cesium Omniverse interface.
_cesium_omniverse_interface.on_shutdown()
release_cesium_omniverse_interface(_cesium_omniverse_interface)
def _on_update_frame(self, _):
if omni.usd.get_context().get_stage_state() != omni.usd.StageState.OPENED:
return
viewports = []
for instance in get_viewport_window_instances():
viewport_api = instance.viewport_api
viewport = Viewport()
viewport.viewMatrix = viewport_api.view
viewport.projMatrix = viewport_api.projection
viewport.width = float(viewport_api.resolution[0])
viewport.height = float(viewport_api.resolution[1])
viewports.append(viewport)
if len(viewports) != self._num_credits_viewport_frames:
self._setup_credits_viewport_frames()
self._num_credits_viewport_frames = len(viewports)
wait_for_loading_tiles = (
self._capture_instance.progress.capture_status == omni.kit.capture.viewport.CaptureStatus.CAPTURING
)
_cesium_omniverse_interface.on_update_frame(viewports, wait_for_loading_tiles)
def _on_stage_event(self, event):
if _cesium_omniverse_interface is None:
return
if event.type == int(omni.usd.StageEventType.OPENED):
_cesium_omniverse_interface.on_stage_change(omni.usd.get_context().get_stage_id())
self._attributes_widget_controller = CesiumAttributesWidgetController(_cesium_omniverse_interface)
# Show Fabric modal if Fabric is disabled.
fabric_enabled = omni_settings.get_settings().get_as_bool("/app/useFabricSceneDelegate")
if not fabric_enabled:
asyncio.ensure_future(perform_action_after_n_frames_async(15, CesiumOmniverseExtension._open_modal))
get_or_create_cesium_data()
get_or_create_cesium_georeference()
self._setup_ion_server_prims()
elif event.type == int(omni.usd.StageEventType.CLOSED):
_cesium_omniverse_interface.on_stage_change(0)
if self._attributes_widget_controller is not None:
self._attributes_widget_controller.destroy()
self._attributes_widget_controller = None
def _on_show_asset_window_event(self, _):
self.do_show_assets_window()
def _on_token_set(self, _: carb.events.IEvent):
if self._adding_assets:
return
self._adding_assets = True
for asset in self._assets_to_add_after_token_set:
self._add_ion_assets(asset)
self._assets_to_add_after_token_set.clear()
for raster_overlay in self._raster_overlay_to_add_after_token_set:
self._add_raster_overlay_to_tileset(raster_overlay)
self._raster_overlay_to_add_after_token_set.clear()
self._adding_assets = False
def _on_add_ion_asset_event(self, event: carb.events.IEvent):
asset_to_add = AssetToAdd.from_event(event)
self._add_ion_assets(asset_to_add)
def _on_add_blank_asset_event(self, event: carb.events.IEvent):
asset_to_add = AssetToAdd.from_event(event)
self._add_ion_assets(asset_to_add, skip_ion_checks=True)
def _on_add_cartographic_polygon_event(self, event: carb.events.IEvent):
self._add_cartographic_polygon_assets()
def _add_ion_assets(self, asset_to_add: Optional[AssetToAdd], skip_ion_checks=False):
if asset_to_add is None:
self._logger.warning("Insufficient information to add asset.")
return
if not skip_ion_checks:
session = _cesium_omniverse_interface.get_session()
if not session.is_connected():
self._logger.warning("Must be logged in to add ion asset.")
return
if not _cesium_omniverse_interface.is_default_token_set():
bus = omni_app.get_app().get_message_bus_event_stream()
show_token_window_event = carb.events.type_from_string("cesium.omniverse.SHOW_TOKEN_WINDOW")
bus.push(show_token_window_event)
self._assets_to_add_after_token_set.append(asset_to_add)
return
if asset_to_add.raster_overlay_name is not None and asset_to_add.raster_overlay_ion_asset_id is not None:
tileset_path = add_tileset_ion(asset_to_add.tileset_name, asset_to_add.tileset_ion_asset_id)
add_raster_overlay_ion(
tileset_path, asset_to_add.raster_overlay_name, asset_to_add.raster_overlay_ion_asset_id
)
else:
tileset_path = add_tileset_ion(asset_to_add.tileset_name, asset_to_add.tileset_ion_asset_id)
if tileset_path == "":
self._logger.warning("Error adding tileset and raster overlay to stage")
def _add_cartographic_polygon_assets(self):
add_cartographic_polygon()
def _on_add_raster_overlay_to_tileset(self, event: carb.events.IEvent):
raster_overlay_to_add = RasterOverlayToAdd.from_event(event)
if raster_overlay_to_add is None:
self._logger.warning("Insufficient information to add raster overlay.")
self._add_raster_overlay_to_tileset(raster_overlay_to_add)
def _add_raster_overlay_to_tileset(self, raster_overlay_to_add: RasterOverlayToAdd):
session = _cesium_omniverse_interface.get_session()
if not session.is_connected():
self._logger.warning("Must be logged in to add ion asset.")
return
if not _cesium_omniverse_interface.is_default_token_set():
bus = omni_app.get_app().get_message_bus_event_stream()
show_token_window_event = carb.events.type_from_string("cesium.omniverse.SHOW_TOKEN_WINDOW")
bus.push(show_token_window_event)
self._raster_overlay_to_add_after_token_set.append(raster_overlay_to_add)
return
add_raster_overlay_ion(
raster_overlay_to_add.tileset_path,
raster_overlay_to_add.raster_overlay_name,
raster_overlay_to_add.raster_overlay_ion_asset_id,
)
_cesium_omniverse_interface.reload_tileset(raster_overlay_to_add.tileset_path)
def _add_to_menu(self, path, callback: Callable[[bool], None], show_on_startup):
editor_menu = omni.kit.ui.get_editor_menu()
if editor_menu:
self._menus.append(editor_menu.add_item(path, callback, toggle=True, value=show_on_startup))
async def _destroy_window_async(self, path):
# Wait one frame, this is due to the one frame defer in Window::_moveToMainOSWindow()
await wait_n_frames(1)
if path is CesiumOmniverseMainWindow.MENU_PATH:
if self._main_window is not None:
self._main_window.destroy()
self._main_window = None
elif path is CesiumOmniverseAssetWindow.MENU_PATH:
if self._asset_window is not None:
self._asset_window.destroy()
self._asset_window = None
elif path is CesiumOmniverseDebugWindow.MENU_PATH:
if self._debug_window is not None:
self._debug_window.destroy()
self._debug_window = None
elif path is CesiumOmniverseSettingsWindow.MENU_PATH:
if self._settings_window is not None:
self._settings_window.destroy()
self._settings_window = None
def _visibility_changed_fn(self, path, visible):
# Called when the user pressed "X"
self._set_menu(path, visible)
if not visible:
# Destroy the window, since we are creating new window in show_window
asyncio.ensure_future(self._destroy_window_async(path))
def show_main_window(self, _menu, value):
if _cesium_omniverse_interface is None:
logging.error("Cesium Omniverse Interface is not set.")
return
if value:
self._main_window = CesiumOmniverseMainWindow(_cesium_omniverse_interface, width=300, height=400)
self._main_window.set_visibility_changed_fn(
partial(self._visibility_changed_fn, CesiumOmniverseMainWindow.MENU_PATH)
)
asyncio.ensure_future(dock_window_async(self._main_window))
elif self._main_window is not None:
self._main_window.visible = False
def do_show_assets_window(self):
if self._asset_window:
self._asset_window.focus()
return
self._asset_window = CesiumOmniverseAssetWindow(_cesium_omniverse_interface, width=700, height=300)
self._asset_window.set_visibility_changed_fn(
partial(self._visibility_changed_fn, CesiumOmniverseAssetWindow.MENU_PATH)
)
asyncio.ensure_future(dock_window_async(self._asset_window, "Content"))
def show_assets_window(self, _menu, value):
if _cesium_omniverse_interface is None:
logging.error("Cesium Omniverse Interface is not set.")
return
if value:
self.do_show_assets_window()
elif self._asset_window is not None:
self._asset_window.visible = False
def show_debug_window(self, _menu, value):
if _cesium_omniverse_interface is None:
logging.error("Cesium Omniverse Interface is not set.")
return
if value:
self._debug_window = CesiumOmniverseDebugWindow(
_cesium_omniverse_interface, CesiumOmniverseDebugWindow.WINDOW_NAME, width=300, height=365
)
self._debug_window.set_visibility_changed_fn(
partial(self._visibility_changed_fn, CesiumOmniverseDebugWindow.MENU_PATH)
)
asyncio.ensure_future(dock_window_async(self._debug_window))
elif self._debug_window is not None:
self._debug_window.visible = False
def show_settings_window(self, _menu, value):
if _cesium_omniverse_interface is None:
logging.error("Cesium Omniverse Interface is not set.")
return
if value:
self._settings_window = CesiumOmniverseSettingsWindow(
_cesium_omniverse_interface, CesiumOmniverseSettingsWindow.WINDOW_NAME, width=300, height=365
)
self._settings_window.set_visibility_changed_fn(
partial(self._visibility_changed_fn, CesiumOmniverseSettingsWindow.MENU_PATH)
)
asyncio.ensure_future(dock_window_async(self._settings_window))
elif self._settings_window is not None:
self._settings_window.visible = False
def _setup_credits_viewport_frames(self):
self._destroy_credits_viewport_frames()
self._credits_viewport_frames = [
CesiumCreditsViewportFrame(_cesium_omniverse_interface, i) for i in get_viewport_window_instances()
]
if self._credits_viewport_controller is not None:
self._credits_viewport_controller.broadcast_credits()
def _destroy_credits_viewport_frames(self):
for credits_viewport_frame in self._credits_viewport_frames:
credits_viewport_frame.destroy()
self._credits_viewport_frames.clear()
@staticmethod
def _open_window():
ui.Workspace.show_window(CesiumOmniverseMainWindow.WINDOW_NAME)
@staticmethod
def _open_modal():
CesiumFabricModal()
def _setup_ion_server_prims(self):
# TODO: Move a lot of this to usdUtils.py
stage = omni.usd.get_context().get_stage()
server_prims: List[CesiumIonServer] = [x for x in stage.Traverse() if x.IsA(CesiumIonServer)]
if len(server_prims) < 1:
# If we have no ion server prims, lets add a default one for the official ion servers.
path = "/CesiumServers/IonOfficial"
prim: CesiumIonServer = CesiumIonServer.Define(stage, path)
prim.GetDisplayNameAttr().Set("ion.cesium.com")
prim.GetIonServerUrlAttr().Set("https://ion.cesium.com/")
prim.GetIonServerApiUrlAttr().Set("https://api.cesium.com/")
prim.GetIonServerApplicationIdAttr().Set(413)
data_prim: CesiumData = CesiumData.Get(stage, CESIUM_DATA_PRIM_PATH)
data_prim.GetSelectedIonServerRel().AddTarget(path)
| 24,467 | Python | 44.227357 | 118 | 0.666285 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/__init__.py | from .extension import * # noqa: F401 F403 F405
from .utils import * # noqa: F401 F403 F405
from .usdUtils import * # noqa: F401 F403 F405
from .ui import * # noqa: F401 F403 F405
| 184 | Python | 35.999993 | 48 | 0.695652 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/usdUtils/usdUtils.py | import omni.usd
import re
from pxr import Sdf
from typing import List, Optional
from pxr import UsdGeom
from cesium.usd.plugins.CesiumUsdSchemas import (
Data as CesiumData,
Tileset as CesiumTileset,
IonRasterOverlay as CesiumIonRasterOverlay,
Georeference as CesiumGeoreference,
GlobeAnchorAPI as CesiumGlobeAnchorAPI,
Tokens as CesiumTokens,
)
CESIUM_DATA_PRIM_PATH = "/Cesium"
CESIUM_GEOREFERENCE_PRIM_PATH = "/CesiumGeoreference"
def get_safe_name(name: str) -> str:
return re.sub("[\\W]+", "_", name)
def get_or_create_cesium_data() -> CesiumData:
stage = omni.usd.get_context().get_stage()
path = CESIUM_DATA_PRIM_PATH
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
return CesiumData.Get(stage, path)
return CesiumData.Define(stage, path)
def get_or_create_cesium_georeference() -> CesiumGeoreference:
stage = omni.usd.get_context().get_stage()
georeference_paths = get_georeference_paths()
if len(georeference_paths) < 1:
return CesiumGeoreference.Define(stage, CESIUM_GEOREFERENCE_PRIM_PATH)
return CesiumGeoreference.Get(stage, georeference_paths[0])
def add_tileset_ion(name: str, asset_id: int, token: str = "") -> str:
stage = omni.usd.get_context().get_stage()
safe_name = get_safe_name(name)
if not safe_name.startswith("/"):
safe_name = "/" + safe_name
# get_stage_next_free_path will increment the path name if there is a collision
tileset_path = omni.usd.get_stage_next_free_path(stage, safe_name, False)
tileset = CesiumTileset.Define(stage, tileset_path)
tileset.GetIonAssetIdAttr().Set(asset_id)
tileset.GetIonAccessTokenAttr().Set(token)
tileset.GetSourceTypeAttr().Set(CesiumTokens.ion)
georeference = get_or_create_cesium_georeference()
georeference_path = georeference.GetPath().pathString
tileset.GetGeoreferenceBindingRel().AddTarget(georeference_path)
server_prim_path = get_path_to_current_ion_server()
if server_prim_path != "":
tileset.GetIonServerBindingRel().AddTarget(server_prim_path)
return tileset_path
def add_raster_overlay_ion(tileset_path: str, name: str, asset_id: int, token: str = "") -> str:
stage = omni.usd.get_context().get_stage()
safe_name = get_safe_name(name)
raster_overlay_path = Sdf.Path(tileset_path).AppendPath(safe_name).pathString
# get_stage_next_free_path will increment the path name if there is a collision
raster_overlay_path = omni.usd.get_stage_next_free_path(stage, raster_overlay_path, False)
raster_overlay = CesiumIonRasterOverlay.Define(stage, raster_overlay_path)
tileset_prim = CesiumTileset.Get(stage, tileset_path)
tileset_prim.GetRasterOverlayBindingRel().AddTarget(raster_overlay_path)
raster_overlay.GetIonAssetIdAttr().Set(asset_id)
raster_overlay.GetIonAccessTokenAttr().Set(token)
server_prim_path = get_path_to_current_ion_server()
if server_prim_path != "":
raster_overlay.GetIonServerBindingRel().AddTarget(server_prim_path)
return raster_overlay_path
def add_cartographic_polygon() -> str:
stage = omni.usd.get_context().get_stage()
name = "cartographic_polygon"
cartographic_polygon_path = Sdf.Path("/CesiumCartographicPolygons").AppendPath(name).pathString
cartographic_polygon_path = omni.usd.get_stage_next_free_path(stage, cartographic_polygon_path, False)
basis_curves = UsdGeom.BasisCurves.Define(stage, cartographic_polygon_path)
basis_curves.GetTypeAttr().Set("linear")
basis_curves.GetWrapAttr().Set("periodic")
# Set curve to have 10m edge lengths
curve_size = 10 / UsdGeom.GetStageMetersPerUnit(stage)
basis_curves.GetPointsAttr().Set(
[
(-curve_size, 0, -curve_size),
(-curve_size, 0, curve_size),
(curve_size, 0, curve_size),
(curve_size, 0, -curve_size),
]
)
basis_curves.GetCurveVertexCountsAttr().Set([4])
# Set curve to a 0.5m width
curve_width = 0.5 / UsdGeom.GetStageMetersPerUnit(stage)
basis_curves.GetWidthsAttr().Set([curve_width, curve_width, curve_width, curve_width])
add_globe_anchor_to_prim(cartographic_polygon_path)
return cartographic_polygon_path
def is_tileset(path: str) -> bool:
stage = omni.usd.get_context().get_stage()
prim = stage.GetPrimAtPath(path)
return prim.IsA(CesiumTileset)
def remove_tileset(path: str) -> None:
stage = omni.usd.get_context().get_stage()
stage.RemovePrim(path)
def get_path_to_current_ion_server() -> Optional[str]:
data = get_or_create_cesium_data()
rel = data.GetSelectedIonServerRel()
targets = rel.GetForwardedTargets()
if len(targets) < 1:
return None
return targets[0].pathString
def set_path_to_current_ion_server(path: str) -> None:
data = get_or_create_cesium_data()
rel = data.GetSelectedIonServerRel()
# This check helps avoid sending unnecessary USD notifications
# See https://github.com/CesiumGS/cesium-omniverse/issues/640
if get_path_to_current_ion_server() != path:
rel.SetTargets([path])
def get_tileset_paths() -> List[str]:
stage = omni.usd.get_context().get_stage()
paths = [x.GetPath().pathString for x in stage.Traverse() if x.IsA(CesiumTileset)]
return paths
def get_georeference_paths() -> List[str]:
stage = omni.usd.get_context().get_stage()
paths = [x.GetPath().pathString for x in stage.Traverse() if x.IsA(CesiumGeoreference)]
return paths
def add_globe_anchor_to_prim(path: str) -> CesiumGlobeAnchorAPI:
stage = omni.usd.get_context().get_stage()
prim = stage.GetPrimAtPath(path)
georeference_path = get_or_create_cesium_georeference().GetPath().pathString
globe_anchor = CesiumGlobeAnchorAPI.Apply(prim)
globe_anchor.GetGeoreferenceBindingRel().AddTarget(georeference_path)
return globe_anchor
| 5,914 | Python | 30.972973 | 106 | 0.701048 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/usdUtils/__init__.py | from .usdUtils import * # noqa: F401 F403
| 43 | Python | 20.99999 | 42 | 0.697674 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/install/wheel_installer.py | from dataclasses import dataclass
import logging
from pathlib import Path
import platform
import omni.kit.app as app
import omni.kit.pipapi
from ..utils.utils import str_is_empty_or_none
@dataclass
class WheelInfo:
"""
Data class containing the module and wheel file names for each platform.
"""
module: str
windows_whl: str
linux_x64_whl: str
linux_aarch_whl: str
class WheelInstaller:
"""
Class for installing wheel files bundled with the extension.
"""
def __init__(self, info: WheelInfo, extension_module="cesium.omniverse"):
"""
Creates a new instance of a wheel installer for installing a python package.
:param info: A WheelInfo data class containing the information for wheel installation.
:param extension_module: The full module for the extension, if a different extension is using this class.
:raises ValueError: If any arguments are null or empty strings.
"""
self._logger = logging.getLogger(__name__)
if (
str_is_empty_or_none(info.windows_whl)
or str_is_empty_or_none(info.linux_x64_whl)
or str_is_empty_or_none(info.linux_aarch_whl)
):
raise ValueError(f"One or more wheels is missing for {info.module}.")
self._info = info
manager = app.get_app().get_extension_manager()
ext_id = manager.get_extension_id_by_module(extension_module)
self._vendor_directory_path = Path(manager.get_extension_path(ext_id)).joinpath("vendor")
def install(self) -> bool:
"""
Installs the correct wheel for the current platform.
:return: ``True`` if the installation was successful.
"""
if platform.system() == "Windows":
return self._perform_install(self._info.windows_whl)
else:
machine = platform.machine()
if machine.startswith("arm") or machine.startswith("aarch"):
return self._perform_install(self._info.linux_aarch_whl)
return self._perform_install(self._info.linux_x64_whl)
def _perform_install(self, wheel_file_name: str) -> bool:
"""
Performs the actual installation of the wheel file.
:param wheel_file_name: The file name of the wheel to install.
:return: ``True`` if the installation was successful.
"""
path = self._vendor_directory_path.joinpath(wheel_file_name)
return omni.kit.pipapi.install(
package=str(path),
module=self._info.module,
use_online_index=False,
ignore_cache=True,
ignore_import_check=False,
)
| 2,682 | Python | 30.940476 | 113 | 0.631991 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/install/vendor_install.py | import logging
from typing import List
from .wheel_installer import WheelInfo, WheelInstaller
def perform_vendor_install():
logger = logging.getLogger(__name__)
# Only vendor wheels for the main Cesium Omniverse extension should be placed here.
# This action needs to be mirrored for each extension.
vendor_wheels: List[WheelInfo] = [
WheelInfo(
module="lxml",
windows_whl="lxml-4.9.2-cp310-cp310-win_amd64.whl",
linux_x64_whl=(
"lxml-4.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl"
),
linux_aarch_whl=(
"lxml-4.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl"
),
)
]
for w in vendor_wheels:
installer = WheelInstaller(w)
if not installer.install():
logger.error(f"Could not install wheel for {w.module}")
| 964 | Python | 32.275861 | 112 | 0.623444 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/install/__init__.py | from .wheel_installer import WheelInfo, WheelInstaller # noqa: F401 F403
from .vendor_install import perform_vendor_install # noqa: F401 F403
| 144 | Python | 47.333318 | 73 | 0.791667 |
CesiumGS/cesium-omniverse/exts/cesium.omniverse/cesium/omniverse/ui/asset_details_widget.py | from typing import Optional
import carb.events
import omni.kit.app as app
import omni.ui as ui
import omni.usd as usd
from ..bindings import ICesiumOmniverseInterface
from .models import IonAssetItem
from ..models import AssetToAdd, RasterOverlayToAdd
from .styles import CesiumOmniverseUiStyles
from ..usdUtils import is_tileset, get_tileset_paths
class CesiumAssetDetailsWidget(ui.ScrollingFrame):
def __init__(
self, cesium_omniverse_interface: ICesiumOmniverseInterface, asset: Optional[IonAssetItem] = None, **kwargs
):
super().__init__(**kwargs)
self._cesium_omniverse_interface = cesium_omniverse_interface
self.style = CesiumOmniverseUiStyles.asset_detail_frame
self._name = asset.name.as_string if asset else ""
self._id = asset.id.as_int if asset else 0
self._description = asset.description.as_string if asset else ""
self._attribution = asset.attribution.as_string if asset else ""
self._asset_type = asset.type.as_string if asset else ""
self._name_label: Optional[ui.Label] = None
self._id_label: Optional[ui.Label] = None
self._description_label: Optional[ui.Label] = None
self._attribution_label: Optional[ui.Label] = None
self.set_build_fn(self._build_fn)
def __del__(self):
self.destroy()
def destroy(self) -> None:
if self._name_label is not None:
self._name_label.destroy()
if self._id_label is not None:
self._id_label.destroy()
if self._description_label is not None:
self._description_label.destroy()
if self._attribution_label is not None:
self._attribution_label.destroy()
def update_selection(self, asset: Optional[IonAssetItem]):
self._name = asset.name.as_string if asset else ""
self._id = asset.id.as_int if asset else 0
self._description = asset.description.as_string if asset else ""
self._attribution = asset.attribution.as_string if asset else ""
self._asset_type = asset.type.as_string if asset else ""
self.rebuild()
def _should_be_visible(self):
return self._name != "" or self._id != 0 or self._description != "" or self._attribution != ""
def _add_overlay_with_tileset(self):
asset_to_add = AssetToAdd("Cesium World Terrain", 1, self._name, self._id)
add_asset_event = carb.events.type_from_string("cesium.omniverse.ADD_ION_ASSET")
app.get_app().get_message_bus_event_stream().push(add_asset_event, payload=asset_to_add.to_dict())
def _add_tileset_button_clicked(self):
asset_to_add = AssetToAdd(self._name, self._id)
add_asset_event = carb.events.type_from_string("cesium.omniverse.ADD_ION_ASSET")
app.get_app().get_message_bus_event_stream().push(add_asset_event, payload=asset_to_add.to_dict())
def _add_raster_overlay_button_clicked(self):
context = usd.get_context()
selection = context.get_selection().get_selected_prim_paths()
tileset_path: Optional[str] = None
if len(selection) > 0 and is_tileset(context.get_stage().GetPrimAtPath(selection[0])):
tileset_path = selection[0]
if tileset_path is None:
all_tileset_paths = get_tileset_paths()
if len(all_tileset_paths) > 0:
tileset_path = all_tileset_paths[0]
else:
self._add_overlay_with_tileset()
return
raster_overlay_to_add = RasterOverlayToAdd(tileset_path, self._id, self._name)
add_raster_overlay_event = carb.events.type_from_string("cesium.omniverse.ADD_RASTER_OVERLAY")
app.get_app().get_message_bus_event_stream().push(
add_raster_overlay_event, payload=raster_overlay_to_add.to_dict()
)
def _build_fn(self):
with self:
if self._should_be_visible():
with ui.VStack(spacing=20):
with ui.VStack(spacing=5):
ui.Label(
self._name,
style=CesiumOmniverseUiStyles.asset_detail_name_label,
height=0,
word_wrap=True,
)
ui.Label(
f"(ID: {self._id})",
style=CesiumOmniverseUiStyles.asset_detail_id_label,
height=0,
word_wrap=True,
)
with ui.HStack(spacing=0, height=0):
ui.Spacer(height=0)
if self._asset_type == "3DTILES" or self._asset_type == "TERRAIN":
ui.Button(
"Add to Stage",
width=0,
height=0,
style=CesiumOmniverseUiStyles.blue_button_style,
clicked_fn=self._add_tileset_button_clicked,
)
elif self._asset_type == "RASTER_OVERLAY":
ui.Button(
"Use as Terrain Tileset Base Layer",
width=0,
height=0,
style=CesiumOmniverseUiStyles.blue_button_style,
clicked_fn=self._add_raster_overlay_button_clicked,
)
else:
# Skipping adding a button for things we cannot add for now.
pass
ui.Spacer(height=0)
with ui.VStack(spacing=5):
ui.Label("Description", style=CesiumOmniverseUiStyles.asset_detail_header_label, height=0)
ui.Label(self._description, word_wrap=True, alignment=ui.Alignment.TOP, height=0)
with ui.VStack(spacing=5):
ui.Label("Attribution", style=CesiumOmniverseUiStyles.asset_detail_header_label, height=0)
ui.Label(self._attribution, word_wrap=True, alignment=ui.Alignment.TOP, height=0)
else:
ui.Spacer()
| 6,333 | Python | 42.682758 | 115 | 0.552503 |
Subsets and Splits