HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
gprimAdapter.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 PXR_USD_IMAGING_USD_IMAGING_GPRIM_ADAPTER_H
25 #define PXR_USD_IMAGING_USD_IMAGING_GPRIM_ADAPTER_H
26 
27 /// \file usdImaging/gprimAdapter.h
28 
29 #include "pxr/pxr.h"
32 
34 
36 
37 
38 class UsdGeomGprim;
39 
40 /// \class UsdImagingGprimAdapter
41 ///
42 /// Delegate support for UsdGeomGrims.
43 ///
44 /// This adapter is provided as a base class for all adapters that want basic
45 /// Gprim data support, such as visibility, doubleSided, extent, displayColor,
46 /// displayOpacity, purpose, and transform.
47 ///
49 {
50 public:
52 
55  {}
56 
58  ~UsdImagingGprimAdapter() override;
59 
60 
61  // ---------------------------------------------------------------------- //
62  /// \name Scene Index Support
63  // ---------------------------------------------------------------------- //
64 
67  UsdPrim const& prim,
68  TfToken const& subprim,
69  TfTokenVector const& properties,
70  UsdImagingPropertyInvalidationType invalidationType) override;
71  // ---------------------------------------------------------------------- //
72  /// \name Parallel Setup and Resolve
73  // ---------------------------------------------------------------------- //
74 
75  /// Thread Safe.
77  void TrackVariability(UsdPrim const& prim,
78  SdfPath const& cachePath,
79  HdDirtyBits* timeVaryingBits,
81  instancerContext = nullptr) const override;
82 
83  /// Thread Safe.
85  void UpdateForTime(UsdPrim const& prim,
86  SdfPath const& cachePath,
88  HdDirtyBits requestedBits,
90  instancerContext = nullptr) const override;
91 
92  // ---------------------------------------------------------------------- //
93  /// \name Change Processing
94  // ---------------------------------------------------------------------- //
95 
97  virtual HdDirtyBits ProcessPropertyChange(UsdPrim const& prim,
98  SdfPath const& cachePath,
99  TfToken const& property) override;
100 
102  virtual void MarkDirty(UsdPrim const& prim,
103  SdfPath const& cachePath,
104  HdDirtyBits dirty,
105  UsdImagingIndexProxy* index) override;
106 
108  virtual void MarkRefineLevelDirty(UsdPrim const& prim,
109  SdfPath const& cachePath,
110  UsdImagingIndexProxy* index) override;
111 
113  virtual void MarkReprDirty(UsdPrim const& prim,
114  SdfPath const& cachePath,
115  UsdImagingIndexProxy* index) override;
116 
118  virtual void MarkCullStyleDirty(UsdPrim const& prim,
119  SdfPath const& cachePath,
120  UsdImagingIndexProxy* index) override;
121 
123  virtual void MarkRenderTagDirty(UsdPrim const& prim,
124  SdfPath const& cachePath,
125  UsdImagingIndexProxy* index) override;
126 
128  virtual void MarkTransformDirty(UsdPrim const& prim,
129  SdfPath const& cachePath,
130  UsdImagingIndexProxy* index) override;
131 
133  virtual void MarkVisibilityDirty(UsdPrim const& prim,
134  SdfPath const& cachePath,
135  UsdImagingIndexProxy* index) override;
136 
138  virtual void MarkMaterialDirty(UsdPrim const& prim,
139  SdfPath const& cachePath,
140  UsdImagingIndexProxy* index) override;
141 
143  virtual void MarkCollectionsDirty(UsdPrim const& prim,
144  SdfPath const& cachePath,
145  UsdImagingIndexProxy* index) override;
146 
147  // ---------------------------------------------------------------------- //
148  /// \name Utility methods
149  // ---------------------------------------------------------------------- //
150  /// Give derived classes an opportunity to override how we get points for
151  /// a prim. This is useful for implicit primitives.
153  virtual VtValue GetPoints(UsdPrim const& prim,
154  UsdTimeCode time) const;
155 
156  /// Returns color, Usd interpolation token, and optionally color indices for
157  /// a given prim, taking into account surface shader colors and explicitly
158  /// authored color on the prim. If indices is not nullptr and the color
159  /// value has indices, color will be set to the unflattened color value and
160  /// indices set to the color value's indices.
162  static bool GetColor(UsdPrim const& prim,
164  TfToken *interpolation,
165  VtValue *color,
166  VtIntArray *indices);
167 
168  /// Returns opacity, Usd interpolation token, and optionally opacity indices
169  /// for a given prim, taking into account surface shader opacity and
170  /// explicitly authored opacity on the prim. If indices is not nullptr and
171  /// the opacity value has indices, opacity will be set to the unflattened
172  /// opacity value and indices set to the opacity value's indices.
174  static bool GetOpacity(UsdPrim const& prim,
176  TfToken *interpolation,
177  VtValue *opacity,
178  VtIntArray *indices);
179 
180  // Helper function: add a given type of rprim, potentially with instancer
181  // name mangling, and add any bound shader.
183  SdfPath _AddRprim(TfToken const& primType,
184  UsdPrim const& usdPrim,
186  SdfPath const& materialUsdPath,
187  UsdImagingInstancerContext const* instancerContext);
188 
189  // Helper function: map USD path to UsdImaging cache path,
190  // applying any name-encoding required by the instancerContext.
192  static SdfPath _ResolveCachePath(SdfPath const& usdPath,
193  UsdImagingInstancerContext const* instancerContext);
194 
195  /// Reads the extent from the given prim. If the extent is not authored,
196  /// an empty GfRange3d is returned, the extent will not be computed.
198  GfRange3d GetExtent(UsdPrim const& prim,
199  SdfPath const& cachePath,
200  UsdTimeCode time) const override;
201 
202  /// Reads double-sided from the given prim. If not authored, returns false
204  bool GetDoubleSided(UsdPrim const& prim,
205  SdfPath const& cachePath,
206  UsdTimeCode time) const override;
207 
209  SdfPath GetMaterialId(UsdPrim const& prim,
210  SdfPath const& cachePath,
211  UsdTimeCode time) const override;
212  /// Gets the value of the parameter named key for the given prim (which
213  /// has the given cache path) and given time. If outIndices is not nullptr
214  /// and the value has indices, it will return the unflattened value and set
215  /// outIndices to the value's associated indices.
217  VtValue Get(UsdPrim const& prim,
218  SdfPath const& cachePath,
219  TfToken const& key,
221  VtIntArray *outIndices) const override;
222 
223  // For implicit prims such as capsules, cones, cylinders and planes, the
224  // "spine" axis along or about which the surface is aligned may be
225  // specified. This utility method returns a basis matrix that transforms
226  // points generated using "Z" as the spine axis to the desired axis.
228  static GfMatrix4d GetImplicitBasis(TfToken const &spineAxis);
229 
230 protected:
231 
233  virtual void _RemovePrim(SdfPath const& cachePath,
234  UsdImagingIndexProxy* index) override;
235 
236  // Give derived classes an opportunity to block GprimAdapter processing
237  // of certain primvars.
239  virtual bool _IsBuiltinPrimvar(TfToken const& primvarName) const;
240 
241  // Utility for gathering the names of primvars used by the gprim's
242  // materials, used in primvar filtering.
245  SdfPathVector const& materialUsdPaths,
246  UsdTimeCode time) const;
247 
248  /// Returns the primvar names known to be supported for the rprims
249  /// this adapter produces. These primvar names are excepted from primvar
250  /// filtering.
252  virtual TfTokenVector const& _GetRprimPrimvarNames() const;
253 };
254 
255 
257 
258 #endif //PXR_USD_IMAGING_USD_IMAGING_GPRIM_ADAPTER_H
virtual USDIMAGING_API HdDirtyBits ProcessPropertyChange(UsdPrim const &prim, SdfPath const &cachePath, TfToken const &property) override
GLsizei GLenum const void * indices
Definition: glcorearb.h:406
USDIMAGING_API bool GetDoubleSided(UsdPrim const &prim, SdfPath const &cachePath, UsdTimeCode time) const override
Reads double-sided from the given prim. If not authored, returns false.
static USDIMAGING_API SdfPath _ResolveCachePath(SdfPath const &usdPath, UsdImagingInstancerContext const *instancerContext)
USDIMAGING_API void UpdateForTime(UsdPrim const &prim, SdfPath const &cachePath, UsdTimeCode time, HdDirtyBits requestedBits, UsdImagingInstancerContext const *instancerContext=nullptr) const override
Thread Safe.
#define USDIMAGING_API
Definition: api.h:40
USDIMAGING_API HdDataSourceLocatorSet InvalidateImagingSubprim(UsdPrim const &prim, TfToken const &subprim, TfTokenVector const &properties, UsdImagingPropertyInvalidationType invalidationType) override
GT_API const UT_StringHolder time
static USDIMAGING_API GfMatrix4d GetImplicitBasis(TfToken const &spineAxis)
uint32_t HdDirtyBits
Definition: types.h:158
virtual USDIMAGING_API void MarkDirty(UsdPrim const &prim, SdfPath const &cachePath, HdDirtyBits dirty, UsdImagingIndexProxy *index) override
USDIMAGING_API VtValue Get(UsdPrim const &prim, SdfPath const &cachePath, TfToken const &key, UsdTimeCode time, VtIntArray *outIndices) const override
USDIMAGING_API void TrackVariability(UsdPrim const &prim, SdfPath const &cachePath, HdDirtyBits *timeVaryingBits, UsdImagingInstancerContext const *instancerContext=nullptr) const override
Thread Safe.
virtual USDIMAGING_API TfTokenVector const & _GetRprimPrimvarNames() const
virtual USDIMAGING_API bool _IsBuiltinPrimvar(TfToken const &primvarName) const
virtual USDIMAGING_API void MarkMaterialDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
virtual USDIMAGING_API void MarkRenderTagDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
Definition: token.h:87
virtual USDIMAGING_API void MarkReprDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
virtual USDIMAGING_API void MarkVisibilityDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
USDIMAGING_API SdfPath GetMaterialId(UsdPrim const &prim, SdfPath const &cachePath, UsdTimeCode time) const override
static USDIMAGING_API bool GetColor(UsdPrim const &prim, UsdTimeCode time, TfToken *interpolation, VtValue *color, VtIntArray *indices)
Definition: prim.h:135
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:442
virtual USDIMAGING_API void MarkRefineLevelDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
Definition: path.h:291
std::vector< class SdfPath > SdfPathVector
A vector of SdfPaths.
Definition: path.h:212
virtual USDIMAGING_API void MarkCullStyleDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
USDIMAGING_API GfRange3d GetExtent(UsdPrim const &prim, SdfPath const &cachePath, UsdTimeCode time) const override
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
static USDIMAGING_API bool GetOpacity(UsdPrim const &prim, UsdTimeCode time, TfToken *interpolation, VtValue *opacity, VtIntArray *indices)
GLuint color
Definition: glcorearb.h:1261
GLuint index
Definition: glcorearb.h:786
virtual USDIMAGING_API VtValue GetPoints(UsdPrim const &prim, UsdTimeCode time) const
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
virtual USDIMAGING_API void MarkCollectionsDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
USDIMAGING_API SdfPath _AddRprim(TfToken const &primType, UsdPrim const &usdPrim, UsdImagingIndexProxy *index, SdfPath const &materialUsdPath, UsdImagingInstancerContext const *instancerContext)
virtual USDIMAGING_API void _RemovePrim(SdfPath const &cachePath, UsdImagingIndexProxy *index) override
USDIMAGING_API ~UsdImagingGprimAdapter() override
Definition: value.h:167
virtual USDIMAGING_API void MarkTransformDirty(UsdPrim const &prim, SdfPath const &cachePath, UsdImagingIndexProxy *index) override
virtual USDIMAGING_API TfTokenVector _CollectMaterialPrimvars(SdfPathVector const &materialUsdPaths, UsdTimeCode time) const
UsdImagingPropertyInvalidationType
Definition: types.h:34