HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
generativeProceduralAPI.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef USDHYDRA_GENERATED_GENERATIVEPROCEDURALAPI_H
25 #define USDHYDRA_GENERATED_GENERATIVEPROCEDURALAPI_H
26 
27 /// \file usdHydra/generativeProceduralAPI.h
28 
29 #include "pxr/pxr.h"
30 #include "pxr/usd/usdHydra/api.h"
32 #include "pxr/usd/usd/prim.h"
33 #include "pxr/usd/usd/stage.h"
35 
36 #include "pxr/base/vt/value.h"
37 
38 #include "pxr/base/gf/vec3d.h"
39 #include "pxr/base/gf/vec3f.h"
40 #include "pxr/base/gf/matrix4d.h"
41 
42 #include "pxr/base/tf/token.h"
43 #include "pxr/base/tf/type.h"
44 
46 
47 class SdfAssetPath;
48 
49 // -------------------------------------------------------------------------- //
50 // HYDRAGENERATIVEPROCEDURALAPI //
51 // -------------------------------------------------------------------------- //
52 
53 /// \class UsdHydraGenerativeProceduralAPI
54 ///
55 ///
56 /// This API extends and configures the core UsdProcGenerativeProcedural schema
57 /// defined within usdProc for use with hydra generative procedurals as defined
58 /// within hdGp.
59 ///
60 ///
61 /// For any described attribute \em Fallback \em Value or \em Allowed \em Values below
62 /// that are text/tokens, the actual token is published and defined in \ref UsdHydraTokens.
63 /// So to set an attribute to the value "rightHanded", use UsdHydraTokens->rightHanded
64 /// as the value.
65 ///
67 {
68 public:
69  /// Compile time constant representing what kind of schema this class is.
70  ///
71  /// \sa UsdSchemaKind
73 
74  /// Construct a UsdHydraGenerativeProceduralAPI on UsdPrim \p prim .
75  /// Equivalent to UsdHydraGenerativeProceduralAPI::Get(prim.GetStage(), prim.GetPath())
76  /// for a \em valid \p prim, but will not immediately throw an error for
77  /// an invalid \p prim
79  : UsdAPISchemaBase(prim)
80  {
81  }
82 
83  /// Construct a UsdHydraGenerativeProceduralAPI on the prim held by \p schemaObj .
84  /// Should be preferred over UsdHydraGenerativeProceduralAPI(schemaObj.GetPrim()),
85  /// as it preserves SchemaBase state.
87  : UsdAPISchemaBase(schemaObj)
88  {
89  }
90 
91  /// Destructor.
94 
95  /// Return a vector of names of all pre-declared attributes for this schema
96  /// class and all its ancestor classes. Does not include attributes that
97  /// may be authored by custom/extended methods of the schemas involved.
99  static const TfTokenVector &
100  GetSchemaAttributeNames(bool includeInherited=true);
101 
102  /// Return a UsdHydraGenerativeProceduralAPI holding the prim adhering to this
103  /// schema at \p path on \p stage. If no prim exists at \p path on
104  /// \p stage, or if the prim at that path does not adhere to this schema,
105  /// return an invalid schema object. This is shorthand for the following:
106  ///
107  /// \code
108  /// UsdHydraGenerativeProceduralAPI(stage->GetPrimAtPath(path));
109  /// \endcode
110  ///
113  Get(const UsdStagePtr &stage, const SdfPath &path);
114 
115 
116  /// Returns true if this <b>single-apply</b> API schema can be applied to
117  /// the given \p prim. If this schema can not be a applied to the prim,
118  /// this returns false and, if provided, populates \p whyNot with the
119  /// reason it can not be applied.
120  ///
121  /// Note that if CanApply returns false, that does not necessarily imply
122  /// that calling Apply will fail. Callers are expected to call CanApply
123  /// before calling Apply if they want to ensure that it is valid to
124  /// apply a schema.
125  ///
126  /// \sa UsdPrim::GetAppliedSchemas()
127  /// \sa UsdPrim::HasAPI()
128  /// \sa UsdPrim::CanApplyAPI()
129  /// \sa UsdPrim::ApplyAPI()
130  /// \sa UsdPrim::RemoveAPI()
131  ///
133  static bool
134  CanApply(const UsdPrim &prim, std::string *whyNot=nullptr);
135 
136  /// Applies this <b>single-apply</b> API schema to the given \p prim.
137  /// This information is stored by adding "HydraGenerativeProceduralAPI" to the
138  /// token-valued, listOp metadata \em apiSchemas on the prim.
139  ///
140  /// \return A valid UsdHydraGenerativeProceduralAPI object is returned upon success.
141  /// An invalid (or empty) UsdHydraGenerativeProceduralAPI object is returned upon
142  /// failure. See \ref UsdPrim::ApplyAPI() for conditions
143  /// resulting in failure.
144  ///
145  /// \sa UsdPrim::GetAppliedSchemas()
146  /// \sa UsdPrim::HasAPI()
147  /// \sa UsdPrim::CanApplyAPI()
148  /// \sa UsdPrim::ApplyAPI()
149  /// \sa UsdPrim::RemoveAPI()
150  ///
153  Apply(const UsdPrim &prim);
154 
155 protected:
156  /// Returns the kind of schema this class belongs to.
157  ///
158  /// \sa UsdSchemaKind
160  UsdSchemaKind _GetSchemaKind() const override;
161 
162 private:
163  // needs to invoke _GetStaticTfType.
164  friend class UsdSchemaRegistry;
166  static const TfType &_GetStaticTfType();
167 
168  static bool _IsTypedSchema();
169 
170  // override SchemaBase virtuals.
172  const TfType &_GetTfType() const override;
173 
174 public:
175  // --------------------------------------------------------------------- //
176  // PROCEDURALTYPE
177  // --------------------------------------------------------------------- //
178  /// The registered name of a HdGpGenerativeProceduralPlugin to
179  /// be executed.
180  ///
181  /// | ||
182  /// | -- | -- |
183  /// | Declaration | `token primvars:hdGp:proceduralType` |
184  /// | C++ Type | TfToken |
185  /// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Token |
188 
189  /// See GetProceduralTypeAttr(), and also
190  /// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
191  /// If specified, author \p defaultValue as the attribute's default,
192  /// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
193  /// the default for \p writeSparsely is \c false.
195  UsdAttribute CreateProceduralTypeAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
196 
197 public:
198  // --------------------------------------------------------------------- //
199  // PROCEDURALSYSTEM
200  // --------------------------------------------------------------------- //
201  ///
202  /// This value should correspond to a configured instance of
203  /// HdGpGenerativeProceduralResolvingSceneIndex which will evaluate the
204  /// procedural. The default value of "hydraGenerativeProcedural" matches
205  /// the equivalent default of HdGpGenerativeProceduralResolvingSceneIndex.
206  /// Multiple instances of the scene index can be used to determine where
207  /// within a scene index chain a given procedural will be evaluated.
208  ///
209  ///
210  /// | ||
211  /// | -- | -- |
212  /// | Declaration | `token proceduralSystem = "hydraGenerativeProcedural"` |
213  /// | C++ Type | TfToken |
214  /// | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Token |
217 
218  /// See GetProceduralSystemAttr(), and also
219  /// \ref Usd_Create_Or_Get_Property for when to use Get vs Create.
220  /// If specified, author \p defaultValue as the attribute's default,
221  /// sparsely (when it makes sense to do so) if \p writeSparsely is \c true -
222  /// the default for \p writeSparsely is \c false.
224  UsdAttribute CreateProceduralSystemAttr(VtValue const &defaultValue = VtValue(), bool writeSparsely=false) const;
225 
226 public:
227  // ===================================================================== //
228  // Feel free to add custom code below this line, it will be preserved by
229  // the code generator.
230  //
231  // Just remember to:
232  // - Close the class declaration with };
233  // - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
234  // - Close the include guard with #endif
235  // ===================================================================== //
236  // --(BEGIN CUSTOM CODE)--
237 };
238 
240 
241 #endif
UsdHydraGenerativeProceduralAPI(const UsdSchemaBase &schemaObj)
USDHYDRA_API UsdAttribute GetProceduralSystemAttr() const
Single Apply API schema.
GLsizei const GLchar *const * string
Definition: glcorearb.h:814
GLsizei const GLchar *const * path
Definition: glcorearb.h:3341
USDHYDRA_API UsdAttribute GetProceduralTypeAttr() const
USDHYDRA_API UsdSchemaKind _GetSchemaKind() const override
#define USDHYDRA_API
Definition: api.h:40
static USDHYDRA_API const TfTokenVector & GetSchemaAttributeNames(bool includeInherited=true)
static const UsdSchemaKind schemaKind
static USDHYDRA_API bool CanApply(const UsdPrim &prim, std::string *whyNot=nullptr)
UsdHydraGenerativeProceduralAPI(const UsdPrim &prim=UsdPrim())
USDHYDRA_API UsdAttribute CreateProceduralSystemAttr(VtValue const &defaultValue=VtValue(), bool writeSparsely=false) const
Definition: prim.h:135
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:442
Definition: path.h:291
static USDHYDRA_API UsdHydraGenerativeProceduralAPI Get(const UsdStagePtr &stage, const SdfPath &path)
UsdSchemaKind
Definition: common.h:127
static USDHYDRA_API UsdHydraGenerativeProceduralAPI Apply(const UsdPrim &prim)
USDHYDRA_API UsdAttribute CreateProceduralTypeAttr(VtValue const &defaultValue=VtValue(), bool writeSparsely=false) const
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
Definition: type.h:64
virtual USDHYDRA_API ~UsdHydraGenerativeProceduralAPI()
Destructor.
Definition: value.h:167