// // 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/usdSkel/blendShape.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("BlendShape") // to find TfType, which is how IsA queries are // answered. TfType::AddAlias("BlendShape"); } /* virtual */ UsdSkelBlendShape::~UsdSkelBlendShape() { } /* static */ UsdSkelBlendShape UsdSkelBlendShape::Get(const UsdStagePtr &stage, const SdfPath &path) { if (!stage) { TF_CODING_ERROR("Invalid stage"); return UsdSkelBlendShape(); } return UsdSkelBlendShape(stage->GetPrimAtPath(path)); } /* static */ UsdSkelBlendShape UsdSkelBlendShape::Define( const UsdStagePtr &stage, const SdfPath &path) { static TfToken usdPrimTypeName("BlendShape"); if (!stage) { TF_CODING_ERROR("Invalid stage"); return UsdSkelBlendShape(); } return UsdSkelBlendShape( stage->DefinePrim(path, usdPrimTypeName)); } /* virtual */ UsdSchemaType UsdSkelBlendShape::_GetSchemaType() const { return UsdSkelBlendShape::schemaType; } /* static */ const TfType & UsdSkelBlendShape::_GetStaticTfType() { static TfType tfType = TfType::Find(); return tfType; } /* static */ bool UsdSkelBlendShape::_IsTypedSchema() { static bool isTyped = _GetStaticTfType().IsA(); return isTyped; } /* virtual */ const TfType & UsdSkelBlendShape::_GetTfType() const { return _GetStaticTfType(); } UsdAttribute UsdSkelBlendShape::GetOffsetsAttr() const { return GetPrim().GetAttribute(UsdSkelTokens->offsets); } UsdAttribute UsdSkelBlendShape::CreateOffsetsAttr(VtValue const &defaultValue, bool writeSparsely) const { return UsdSchemaBase::_CreateAttr(UsdSkelTokens->offsets, SdfValueTypeNames->Vector3fArray, /* custom = */ false, SdfVariabilityUniform, defaultValue, writeSparsely); } UsdAttribute UsdSkelBlendShape::GetNormalOffsetsAttr() const { return GetPrim().GetAttribute(UsdSkelTokens->normalOffsets); } UsdAttribute UsdSkelBlendShape::CreateNormalOffsetsAttr(VtValue const &defaultValue, bool writeSparsely) const { return UsdSchemaBase::_CreateAttr(UsdSkelTokens->normalOffsets, SdfValueTypeNames->Vector3fArray, /* custom = */ false, SdfVariabilityUniform, defaultValue, writeSparsely); } UsdAttribute UsdSkelBlendShape::GetPointIndicesAttr() const { return GetPrim().GetAttribute(UsdSkelTokens->pointIndices); } UsdAttribute UsdSkelBlendShape::CreatePointIndicesAttr(VtValue const &defaultValue, bool writeSparsely) const { return UsdSchemaBase::_CreateAttr(UsdSkelTokens->pointIndices, SdfValueTypeNames->IntArray, /* 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& UsdSkelBlendShape::GetSchemaAttributeNames(bool includeInherited) { static TfTokenVector localNames = { UsdSkelTokens->offsets, UsdSkelTokens->normalOffsets, UsdSkelTokens->pointIndices, }; 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)-- PXR_NAMESPACE_OPEN_SCOPE UsdSkelInbetweenShape UsdSkelBlendShape::CreateInbetween(const TfToken& name) const { return UsdSkelInbetweenShape::_Create(GetPrim(), name); } UsdSkelInbetweenShape UsdSkelBlendShape::GetInbetween(const TfToken& name) const { return UsdSkelInbetweenShape( GetPrim().GetAttribute(UsdSkelInbetweenShape::_MakeNamespaced(name))); } bool UsdSkelBlendShape::HasInbetween(const TfToken& name) const { TfToken inbetweenName = UsdSkelInbetweenShape::_MakeNamespaced(name, /*quiet*/ true); return inbetweenName.IsEmpty() ? false : UsdSkelInbetweenShape::IsInbetween( GetPrim().GetAttribute(inbetweenName)); } std::vector UsdSkelBlendShape::_MakeInbetweens(const std::vector& props) const { std::vector shapes; shapes.reserve(props.size()); for(const UsdProperty& prop : props) { const UsdAttribute attr = prop.As(); // The input property list will often include properties within // the namespace of inbetween shapes, such as // 'inbetweens:shape:normalOffsets' Filter out those cases. if (UsdSkelInbetweenShape::IsInbetween(attr)) { shapes.push_back(UsdSkelInbetweenShape(attr)); } } return shapes; } std::vector UsdSkelBlendShape::GetInbetweens() const { const UsdPrim& prim = GetPrim(); return _MakeInbetweens(prim ? prim.GetPropertiesInNamespace( UsdSkelInbetweenShape::_GetNamespacePrefix()) : std::vector()); } std::vector UsdSkelBlendShape::GetAuthoredInbetweens() const { const UsdPrim& prim = GetPrim(); return _MakeInbetweens(prim ? prim.GetAuthoredPropertiesInNamespace( UsdSkelInbetweenShape::_GetNamespacePrefix()) : std::vector()); } bool UsdSkelBlendShape::ValidatePointIndices(TfSpan indices, size_t numPoints, std::string* reason) { for (size_t i = 0; i < indices.size(); ++i) { const int pointIndex = indices[i]; if (pointIndex >= 0) { if (ARCH_UNLIKELY(static_cast(pointIndex) >= numPoints)) { if (reason) { *reason = TfStringPrintf( "Index [%d] at element %td >= numPoints [%zu]", pointIndex, i, numPoints); } return false; } } else { if (reason) { *reason = TfStringPrintf("Index [%d] at element %td < 0", pointIndex, i); } return false; } } return true; } PXR_NAMESPACE_CLOSE_SCOPE