// // Copyright 2016 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // #include "pxr/usd/usdVol/volume.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 >(); // Register the usd prim typename as an alias under UsdSchemaBase. This // enables one to call // TfType::Find().FindDerivedByName("Volume") // to find TfType, which is how IsA queries are // answered. TfType::AddAlias("Volume"); } /* virtual */ UsdVolVolume::~UsdVolVolume() { } /* static */ UsdVolVolume UsdVolVolume::Get(const UsdStagePtr &stage, const SdfPath &path) { if (!stage) { TF_CODING_ERROR("Invalid stage"); return UsdVolVolume(); } return UsdVolVolume(stage->GetPrimAtPath(path)); } /* static */ UsdVolVolume UsdVolVolume::Define( const UsdStagePtr &stage, const SdfPath &path) { static TfToken usdPrimTypeName("Volume"); if (!stage) { TF_CODING_ERROR("Invalid stage"); return UsdVolVolume(); } return UsdVolVolume( stage->DefinePrim(path, usdPrimTypeName)); } /* virtual */ UsdSchemaType UsdVolVolume::_GetSchemaType() const { return UsdVolVolume::schemaType; } /* static */ const TfType & UsdVolVolume::_GetStaticTfType() { static TfType tfType = TfType::Find(); return tfType; } /* static */ bool UsdVolVolume::_IsTypedSchema() { static bool isTyped = _GetStaticTfType().IsA(); return isTyped; } /* virtual */ const TfType & UsdVolVolume::_GetTfType() const { return _GetStaticTfType(); } /*static*/ const TfTokenVector& UsdVolVolume::GetSchemaAttributeNames(bool includeInherited) { static TfTokenVector localNames; static TfTokenVector allNames = UsdGeomGprim::GetSchemaAttributeNames(true); 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)-- PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PRIVATE_TOKENS( _tokens, ((fieldPrefix, "field:")) ); TfToken UsdVolVolume::_MakeNamespaced(const TfToken& name) { TfToken result; if (TfStringStartsWith(name, _tokens->fieldPrefix)) { result = name; } else { result = TfToken(_tokens->fieldPrefix.GetString() + name.GetString()); } return result; } UsdVolVolume::FieldMap UsdVolVolume::GetFieldPaths() const { std::map fieldMap; const UsdPrim &prim = GetPrim(); if (prim) { std::vector fieldProps = prim.GetPropertiesInNamespace(_tokens->fieldPrefix); for (const UsdProperty &fieldProp : fieldProps) { UsdRelationship fieldRel = fieldProp.As(); SdfPathVector targets; // All relationships starting with "field:" should point to // UsdVolFieldBase primitives. if (fieldRel && fieldRel.GetForwardedTargets(&targets)) { if (targets.size() == 1 && targets.front().IsPrimPath()) { fieldMap.emplace(fieldRel.GetBaseName(), targets.front()); } } } } return fieldMap; } bool UsdVolVolume::HasFieldRelationship(const TfToken &name) const { return GetPrim().HasRelationship(_MakeNamespaced(name)); } SdfPath UsdVolVolume::GetFieldPath(const TfToken &name) const { UsdRelationship fieldRel = GetPrim().GetRelationship(_MakeNamespaced(name)); SdfPathVector targets; if (fieldRel && fieldRel.GetForwardedTargets(&targets)) { if (targets.size() == 1 && targets.front().IsPrimPath()) { return targets.front(); } } return SdfPath::EmptyPath(); } bool UsdVolVolume::CreateFieldRelationship(const TfToken &name, const SdfPath &fieldPath) const { if (!fieldPath.IsPrimPath() && !fieldPath.IsPrimPropertyPath()){ return false; } UsdRelationship fieldRel = GetPrim().CreateRelationship(_MakeNamespaced(name), /*custom*/true); if (fieldRel) { return fieldRel.SetTargets({fieldPath}); } return false; } bool UsdVolVolume::BlockFieldRelationship(const TfToken &name) const { UsdRelationship fieldRel = GetPrim().GetRelationship(_MakeNamespaced(name)); if (fieldRel){ fieldRel.BlockTargets(); return true; } else { return false; } } PXR_NAMESPACE_CLOSE_SCOPE