HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
generativeProcedural.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the terms set forth in the LICENSE.txt file available at
5 // https://openusd.org/license.
6 //
7 #ifndef USDPROC_GENERATED_GENERATIVEPROCEDURAL_H
8 #define USDPROC_GENERATED_GENERATIVEPROCEDURAL_H
9 
10 /// \file usdProc/generativeProcedural.h
11 
12 #include "pxr/pxr.h"
13 #include "pxr/usd/usdProc/api.h"
15 #include "pxr/usd/usd/prim.h"
16 #include "pxr/usd/usd/stage.h"
17 #include "pxr/usd/usdProc/tokens.h"
18 
19 #include "pxr/base/vt/value.h"
20 
21 #include "pxr/base/gf/vec3d.h"
22 #include "pxr/base/gf/vec3f.h"
23 #include "pxr/base/gf/matrix4d.h"
24 
25 #include "pxr/base/tf/token.h"
26 #include "pxr/base/tf/type.h"
27 
29 
30 class SdfAssetPath;
31 
32 // -------------------------------------------------------------------------- //
33 // GENERATIVEPROCEDURAL //
34 // -------------------------------------------------------------------------- //
35 
36 /// \class UsdProcGenerativeProcedural
37 ///
38 ///
39 /// Represents an abstract generative procedural prim which delivers its input
40 /// parameters via properties (including relationships) within the "primvars:"
41 /// namespace.
42 ///
43 /// It does not itself have any awareness or participation in the execution of
44 /// the procedural but rather serves as a means of delivering a procedural's
45 /// definition and input parameters.
46 ///
47 /// The value of its "proceduralSystem" property (either authored or provided
48 /// by API schema fallback) indicates to which system the procedural definition
49 /// is meaningful.
50 ///
51 ///
52 /// For any described attribute \em Fallback \em Value or \em Allowed \em Values below
53 /// that are text/tokens, the actual token is published and defined in \ref UsdProcTokens.
54 /// So to set an attribute to the value "rightHanded", use UsdProcTokens->rightHanded
55 /// as the value.
56 ///
58 {
59 public:
60  /// Compile time constant representing what kind of schema this class is.
61  ///
62  /// \sa UsdSchemaKind
64 
65  /// Construct a UsdProcGenerativeProcedural on UsdPrim \p prim .
66  /// Equivalent to UsdProcGenerativeProcedural::Get(prim.GetStage(), prim.GetPath())
67  /// for a \em valid \p prim, but will not immediately throw an error for
68  /// an invalid \p prim
70  : UsdGeomBoundable(prim)
71  {
72  }
73 
74  /// Construct a UsdProcGenerativeProcedural on the prim held by \p schemaObj .
75  /// Should be preferred over UsdProcGenerativeProcedural(schemaObj.GetPrim()),
76  /// as it preserves SchemaBase state.
77  explicit UsdProcGenerativeProcedural(const UsdSchemaBase& schemaObj)
78  : UsdGeomBoundable(schemaObj)
79  {
80  }
81 
82  /// Destructor.
85 
86  /// Return a vector of names of all pre-declared attributes for this schema
87  /// class and all its ancestor classes. Does not include attributes that
88  /// may be authored by custom/extended methods of the schemas involved.
90  static const TfTokenVector &
91  GetSchemaAttributeNames(bool includeInherited=true);
92 
93  /// Return a UsdProcGenerativeProcedural holding the prim adhering to this
94  /// schema at \p path on \p stage. If no prim exists at \p path on
95  /// \p stage, or if the prim at that path does not adhere to this schema,
96  /// return an invalid schema object. This is shorthand for the following:
97  ///
98  /// \code
99  /// UsdProcGenerativeProcedural(stage->GetPrimAtPath(path));
100  /// \endcode
101  ///
104  Get(const UsdStagePtr &stage, const SdfPath &path);
105 
106  /// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
107  /// is defined (according to UsdPrim::IsDefined()) on this stage.
108  ///
109  /// If a prim adhering to this schema at \p path is already defined on this
110  /// stage, return that prim. Otherwise author an \a SdfPrimSpec with
111  /// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
112  /// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
113  /// with \p specifier == \a SdfSpecifierDef and empty typeName at the
114  /// current EditTarget for any nonexistent, or existing but not \a Defined
115  /// ancestors.
116  ///
117  /// The given \a path must be an absolute prim path that does not contain
118  /// any variant selections.
119  ///
120  /// If it is impossible to author any of the necessary PrimSpecs, (for
121  /// example, in case \a path cannot map to the current UsdEditTarget's
122  /// namespace) issue an error and return an invalid \a UsdPrim.
123  ///
124  /// Note that this method may return a defined prim whose typeName does not
125  /// specify this schema class, in case a stronger typeName opinion overrides
126  /// the opinion at the current EditTarget.
127  ///
130  Define(const UsdStagePtr &stage, const SdfPath &path);
131 
132 protected:
133  /// Returns the kind of schema this class belongs to.
134  ///
135  /// \sa UsdSchemaKind
137  UsdSchemaKind _GetSchemaKind() const override;
138 
139 private:
140  // needs to invoke _GetStaticTfType.
141  friend class UsdSchemaRegistry;
143  static const TfType &_GetStaticTfType();
144 
145  static bool _IsTypedSchema();
146 
147  // override SchemaBase virtuals.
149  const TfType &_GetTfType() const override;
150 
151 public:
152  // --------------------------------------------------------------------- //
153  // PROCEDURALSYSTEM
154  // --------------------------------------------------------------------- //
155  /// The name or convention of the system responsible for evaluating
156  /// the procedural.
157  /// NOTE: A fallback value for this is typically set via an API schema.
158  ///
159  /// | ||
160  /// | -- | -- |
161  /// | Declaration | `token proceduralSystem` |
162  /// | C++ Type | TfToken |
163  /// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Token |
166 
167  /// See GetProceduralSystemAttr(), and also
168  /// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
169  /// If specified, author \p defaultValue as the attribute's default,
170  /// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
171  /// the default for \p writeSparsely is \c false.
173  UsdAttribute CreateProceduralSystemAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
174 
175 public:
176  // ===================================================================== //
177  // Feel free to add custom code below this line, it will be preserved by
178  // the code generator.
179  //
180  // Just remember to:
181  // - Close the class declaration with };
182  // - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
183  // - Close the include guard with #endif
184  // ===================================================================== //
185  // --(BEGIN CUSTOM CODE)--
186 };
187 
189 
190 #endif
UsdProcGenerativeProcedural(const UsdPrim &prim=UsdPrim())
UsdProcGenerativeProcedural(const UsdSchemaBase &schemaObj)
GLsizei const GLchar *const * path
Definition: glcorearb.h:3341
static USDPROC_API UsdProcGenerativeProcedural Define(const UsdStagePtr &stage, const SdfPath &path)
virtual USDPROC_API ~UsdProcGenerativeProcedural()
Destructor.
static USDPROC_API UsdProcGenerativeProcedural Get(const UsdStagePtr &stage, const SdfPath &path)
Represents a concrete typed schema.
static USDPROC_API const TfTokenVector & GetSchemaAttributeNames(bool includeInherited=true)
USDPROC_API UsdSchemaKind _GetSchemaKind() const override
#define USDPROC_API
Definition: api.h:23
Definition: prim.h:116
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:440
Definition: path.h:273
USDPROC_API UsdAttribute CreateProceduralSystemAttr(VtValue const &defaultValue=VtValue(), bool writeSparsely=false) const
UsdSchemaKind
Definition: common.h:112
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1425
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:74
USDPROC_API UsdAttribute GetProceduralSystemAttr() const
Definition: type.h:47
static const UsdSchemaKind schemaKind
Definition: value.h:146