All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
volume.h
1 //
2 // Copyright 2019 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 EXT_RMANPKG_24_0_PLUGIN_RENDERMAN_PLUGIN_HD_PRMAN_VOLUME_H
25 #define EXT_RMANPKG_24_0_PLUGIN_RENDERMAN_PLUGIN_HD_PRMAN_VOLUME_H
26 
27 #include "pxr/pxr.h"
28 #include "hdPrman/gprim.h"
29 #include "pxr/imaging/hd/field.h"
30 #include "pxr/imaging/hd/volume.h"
31 #include "pxr/imaging/hd/enums.h"
32 #include "pxr/imaging/hd/vertexAdjacency.h"
33 #include "pxr/base/gf/matrix4f.h"
34 
35 #include "Riley.h"
36 
37 PXR_NAMESPACE_OPEN_SCOPE
38 
39 class HdPrman_Field final : public HdField {
40 public:
41  HdPrman_Field(TfToken const& typeId, SdfPath const& id);
42  virtual void Sync(HdSceneDelegate *sceneDelegate,
43  HdRenderParam *renderParam,
44  HdDirtyBits *dirtyBits) override;
45  virtual void Finalize(HdRenderParam *renderParam) override;
46  virtual HdDirtyBits GetInitialDirtyBitsMask() const override;
47 private:
48  TfToken const _typeId;
49 };
50 
51 class HdPrman_Volume final : public HdPrman_Gprim<HdVolume> {
52 public:
53  typedef HdPrman_Gprim<HdVolume> BASE;
54 public:
55  HF_MALLOC_TAG_NEW("new HdPrman_Volume");
56  HdPrman_Volume(SdfPath const& id);
57  virtual HdDirtyBits GetInitialDirtyBitsMask() const override;
58 
76  using HdPrman_VolumeTypeEmitter =
77  void (*)(HdSceneDelegate *sceneDelegate,
78  SdfPath const& id,
79  HdVolumeFieldDescriptorVector const& fields,
80  RtPrimVarList* primvars);
81 
85  static bool AddVolumeTypeEmitter(TfToken const& fieldPrimType,
86  HdPrman_VolumeTypeEmitter emitterFunc,
87  bool overrideExisting = false);
88 
90  enum FieldType {
91  FloatType = 0,
92  IntType,
93  Float2Type,
94  Int2Type,
95  Float3Type,
96  Int3Type,
97  ColorType,
98  PointType,
99  NormalType,
100  VectorType,
101  Float4Type,
102  MatrixType,
103  StringType
104  };
105 
107  static void DeclareFieldPrimvar(RtPrimVarList* primvars,
108  RtUString const& fieldName,
109  FieldType type);
110 
111 protected:
112  virtual RtPrimVarList
113  _ConvertGeometry(HdPrman_Context *context,
114  HdSceneDelegate *sceneDelegate,
115  const SdfPath &id,
116  RtUString *primType,
117  std::vector<HdGeomSubset> *geomSubsets) override;
118 
119  virtual riley::MaterialId
120  _GetFallbackMaterial(HdPrman_Context *context) override {
121  return context->fallbackVolumeMaterial;
122  }
123 
124  using _VolumeEmitterMap = std::map<TfToken, HdPrman_VolumeTypeEmitter>;
125  static _VolumeEmitterMap& _GetVolumeEmitterMap();
126 };
127 
128 PXR_NAMESPACE_CLOSE_SCOPE
129 
130 #endif // EXT_RMANPKG_24_0_PLUGIN_RENDERMAN_PLUGIN_HD_PRMAN_VOLUME_H
virtual HdDirtyBits GetInitialDirtyBitsMask() const =0
Returns the minimal set of dirty bits to place in the change tracker for use in the first sync of thi...
The HdRenderParam is an opaque (to core Hydra) handle, to an object that is obtained from the render ...
virtual void Sync(HdSceneDelegate *sceneDelegate, HdRenderParam *renderParam, HdDirtyBits *dirtyBits)=0
Synchronizes state from the delegate to this object.
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:87
Hydra schema for a USD field primitive.
Definition: field.h:50
Adapter class providing data exchange with the client scene graph.
A mix-in template that adds shared gprim behavior to support various HdRprim types.
Definition: gprim.h:49
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:288
virtual HD_API void Finalize(HdRenderParam *renderParam)
Finalizes object resources.