3473e4e451
PiperOrigin-RevId: 781945497 Change-Id: I5c409f05e6bae33c181a51c273f260daea6004fc
124 lines
3.7 KiB
C++
124 lines
3.7 KiB
C++
// Copyright 2025 DeepMind Technologies Limited
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <mujoco/experimental/usd/mjcPhysics/siteAPI.h>
|
|
|
|
#include <pxr/usd/sdf/assetPath.h>
|
|
#include <pxr/usd/sdf/types.h>
|
|
#include <pxr/usd/usd/schemaRegistry.h>
|
|
#include <pxr/usd/usd/typed.h>
|
|
|
|
PXR_NAMESPACE_OPEN_SCOPE
|
|
|
|
// Register the schema with the TfType system.
|
|
TF_REGISTRY_FUNCTION(TfType) {
|
|
TfType::Define<MjcPhysicsSiteAPI, TfType::Bases<UsdAPISchemaBase> >();
|
|
}
|
|
|
|
/* virtual */
|
|
MjcPhysicsSiteAPI::~MjcPhysicsSiteAPI() {}
|
|
|
|
/* static */
|
|
MjcPhysicsSiteAPI MjcPhysicsSiteAPI::Get(const UsdStagePtr &stage,
|
|
const SdfPath &path) {
|
|
if (!stage) {
|
|
TF_CODING_ERROR("Invalid stage");
|
|
return MjcPhysicsSiteAPI();
|
|
}
|
|
return MjcPhysicsSiteAPI(stage->GetPrimAtPath(path));
|
|
}
|
|
|
|
/* virtual */
|
|
UsdSchemaKind MjcPhysicsSiteAPI::_GetSchemaKind() const {
|
|
return MjcPhysicsSiteAPI::schemaKind;
|
|
}
|
|
|
|
/* static */
|
|
bool MjcPhysicsSiteAPI::CanApply(const UsdPrim &prim, std::string *whyNot) {
|
|
return prim.CanApplyAPI<MjcPhysicsSiteAPI>(whyNot);
|
|
}
|
|
|
|
/* static */
|
|
MjcPhysicsSiteAPI MjcPhysicsSiteAPI::Apply(const UsdPrim &prim) {
|
|
if (prim.ApplyAPI<MjcPhysicsSiteAPI>()) {
|
|
return MjcPhysicsSiteAPI(prim);
|
|
}
|
|
return MjcPhysicsSiteAPI();
|
|
}
|
|
|
|
/* static */
|
|
const TfType &MjcPhysicsSiteAPI::_GetStaticTfType() {
|
|
static TfType tfType = TfType::Find<MjcPhysicsSiteAPI>();
|
|
return tfType;
|
|
}
|
|
|
|
/* static */
|
|
bool MjcPhysicsSiteAPI::_IsTypedSchema() {
|
|
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>();
|
|
return isTyped;
|
|
}
|
|
|
|
/* virtual */
|
|
const TfType &MjcPhysicsSiteAPI::_GetTfType() const {
|
|
return _GetStaticTfType();
|
|
}
|
|
|
|
UsdAttribute MjcPhysicsSiteAPI::GetGroupAttr() const {
|
|
return GetPrim().GetAttribute(MjcPhysicsTokens->mjcGroup);
|
|
}
|
|
|
|
UsdAttribute MjcPhysicsSiteAPI::CreateGroupAttr(VtValue const &defaultValue,
|
|
bool writeSparsely) const {
|
|
return UsdSchemaBase::_CreateAttr(
|
|
MjcPhysicsTokens->mjcGroup, 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;
|
|
}
|
|
} // namespace
|
|
|
|
/*static*/
|
|
const TfTokenVector &MjcPhysicsSiteAPI::GetSchemaAttributeNames(
|
|
bool includeInherited) {
|
|
static TfTokenVector localNames = {
|
|
MjcPhysicsTokens->mjcGroup,
|
|
};
|
|
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)--
|