forked from PixarAnimationStudios/OpenUSD
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[OGSMOD-1904] Add GenericText and ColumnStyle schema (PixarAnimationS…
…tudios#118) Add GenericText and ColumnStyle schema (cherry picked from commit 7431e27036d138be607c5105f2de3534692b59a9)
- Loading branch information
1 parent
aa998e1
commit 3da9255
Showing
23 changed files
with
2,472 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
// | ||
// 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/usdGeom/genericText.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<UsdGeomGenericText, | ||
TfType::Bases< UsdGeomGprim > >(); | ||
|
||
// Register the usd prim typename as an alias under UsdSchemaBase. This | ||
// enables one to call | ||
// TfType::Find<UsdSchemaBase>().FindDerivedByName("GenericText") | ||
// to find TfType<UsdGeomGenericText>, which is how IsA queries are | ||
// answered. | ||
TfType::AddAlias<UsdSchemaBase, UsdGeomGenericText>("GenericText"); | ||
} | ||
|
||
/* virtual */ | ||
UsdGeomGenericText::~UsdGeomGenericText() | ||
{ | ||
} | ||
|
||
/* static */ | ||
UsdGeomGenericText | ||
UsdGeomGenericText::Get(const UsdStagePtr &stage, const SdfPath &path) | ||
{ | ||
if (!stage) { | ||
TF_CODING_ERROR("Invalid stage"); | ||
return UsdGeomGenericText(); | ||
} | ||
return UsdGeomGenericText(stage->GetPrimAtPath(path)); | ||
} | ||
|
||
/* static */ | ||
UsdGeomGenericText | ||
UsdGeomGenericText::Define( | ||
const UsdStagePtr &stage, const SdfPath &path) | ||
{ | ||
static TfToken usdPrimTypeName("GenericText"); | ||
if (!stage) { | ||
TF_CODING_ERROR("Invalid stage"); | ||
return UsdGeomGenericText(); | ||
} | ||
return UsdGeomGenericText( | ||
stage->DefinePrim(path, usdPrimTypeName)); | ||
} | ||
|
||
/* virtual */ | ||
UsdSchemaKind UsdGeomGenericText::_GetSchemaKind() const | ||
{ | ||
return UsdGeomGenericText::schemaKind; | ||
} | ||
|
||
/* static */ | ||
const TfType & | ||
UsdGeomGenericText::_GetStaticTfType() | ||
{ | ||
static TfType tfType = TfType::Find<UsdGeomGenericText>(); | ||
return tfType; | ||
} | ||
|
||
/* static */ | ||
bool | ||
UsdGeomGenericText::_IsTypedSchema() | ||
{ | ||
static bool isTyped = _GetStaticTfType().IsA<UsdTyped>(); | ||
return isTyped; | ||
} | ||
|
||
/* virtual */ | ||
const TfType & | ||
UsdGeomGenericText::_GetTfType() const | ||
{ | ||
return _GetStaticTfType(); | ||
} | ||
|
||
UsdAttribute | ||
UsdGeomGenericText::GetMarkupStringAttr() const | ||
{ | ||
return GetPrim().GetAttribute(UsdGeomTokens->markupString); | ||
} | ||
|
||
UsdAttribute | ||
UsdGeomGenericText::CreateMarkupStringAttr(VtValue const &defaultValue, bool writeSparsely) const | ||
{ | ||
return UsdSchemaBase::_CreateAttr(UsdGeomTokens->markupString, | ||
SdfValueTypeNames->String, | ||
/* custom = */ false, | ||
SdfVariabilityVarying, | ||
defaultValue, | ||
writeSparsely); | ||
} | ||
|
||
UsdAttribute | ||
UsdGeomGenericText::GetMarkupLanguageAttr() const | ||
{ | ||
return GetPrim().GetAttribute(UsdGeomTokens->markupLanguage); | ||
} | ||
|
||
UsdAttribute | ||
UsdGeomGenericText::CreateMarkupLanguageAttr(VtValue const &defaultValue, bool writeSparsely) const | ||
{ | ||
return UsdSchemaBase::_CreateAttr(UsdGeomTokens->markupLanguage, | ||
SdfValueTypeNames->Token, | ||
/* custom = */ false, | ||
SdfVariabilityUniform, | ||
defaultValue, | ||
writeSparsely); | ||
} | ||
|
||
UsdAttribute | ||
UsdGeomGenericText::GetBackgroundColorAttr() const | ||
{ | ||
return GetPrim().GetAttribute(UsdGeomTokens->primvarsBackgroundColor); | ||
} | ||
|
||
UsdAttribute | ||
UsdGeomGenericText::CreateBackgroundColorAttr(VtValue const &defaultValue, bool writeSparsely) const | ||
{ | ||
return UsdSchemaBase::_CreateAttr(UsdGeomTokens->primvarsBackgroundColor, | ||
SdfValueTypeNames->Color3fArray, | ||
/* 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& | ||
UsdGeomGenericText::GetSchemaAttributeNames(bool includeInherited) | ||
{ | ||
static TfTokenVector localNames = { | ||
UsdGeomTokens->markupString, | ||
UsdGeomTokens->markupLanguage, | ||
UsdGeomTokens->primvarsBackgroundColor, | ||
}; | ||
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)-- |
Oops, something went wrong.