HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
simpleLightTask.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_IMAGING_HDX_SIMPLE_LIGHT_TASK_H
25 #define PXR_IMAGING_HDX_SIMPLE_LIGHT_TASK_H
26 
27 #include "pxr/pxr.h"
28 #include "pxr/imaging/hdx/api.h"
30 
31 #include "pxr/imaging/hd/task.h"
32 
35 
37 
38 #include "pxr/base/gf/vec3f.h"
40 
41 #include <memory>
42 
44 
45 class HdRenderIndex;
46 class HdSceneDelegate;
47 class HdCamera;
48 
49 using HdRenderPassSharedPtr = std::shared_ptr<class HdRenderPass>;
51  std::shared_ptr<class HdStSimpleLightingShader>;
53  std::shared_ptr<class HdxShadowMatrixComputation>;
54 
56 
57 
58 class HdxSimpleLightTask : public HdTask
59 {
60 public:
61  HDX_API
62  HdxSimpleLightTask(HdSceneDelegate* delegate, SdfPath const& id);
63 
64  HDX_API
65  ~HdxSimpleLightTask() override;
66 
67  /// Sync the render pass resources
68  HDX_API
69  void Sync(HdSceneDelegate* delegate,
70  HdTaskContext* ctx,
71  HdDirtyBits* dirtyBits) override;
72 
73  /// Prepare the tasks resources
74  HDX_API
75  void Prepare(HdTaskContext* ctx,
76  HdRenderIndex* renderIndex) override;
77 
78  /// Execute render pass task
79  HDX_API
80  void Execute(HdTaskContext* ctx) override;
81 
82 private:
83  std::vector<GfMatrix4d> _ComputeShadowMatrices(
84  const HdCamera * camera,
85  HdxShadowMatrixComputationSharedPtr const &computation) const;
86 
87  SdfPath _cameraId;
88  std::map<TfToken, SdfPathVector> _lightIds;
89  SdfPathVector _lightIncludePaths;
90  SdfPathVector _lightExcludePaths;
91  size_t _numLightIds;
92  size_t _maxLights;
93  unsigned _sprimIndexVersion;
94  unsigned _settingsVersion;
95 
96  // Should be weak ptrs
97  HdStSimpleLightingShaderSharedPtr _lightingShader;
98  bool _enableShadows;
99  GfVec4f _viewport;
100  CameraUtilFraming _framing;
101  std::pair<bool, CameraUtilConformWindowPolicy> _overrideWindowPolicy;
102 
103  // XXX: compatibility hack for passing some unit tests until we have
104  // more formal material plumbing.
105  GlfSimpleMaterial _material;
106  GfVec4f _sceneAmbient;
107 
108  // For now these are only valid for the lifetime of a single pass of
109  // the render graph. Maybe long-term these could be change-tracked.
110  GlfSimpleLightVector _glfSimpleLights;
111 
112  HdBufferArrayRangeSharedPtr _lightingBar;
113  HdBufferArrayRangeSharedPtr _lightSourcesBar;
114  HdBufferArrayRangeSharedPtr _shadowsBar;
115  HdBufferArrayRangeSharedPtr _materialBar;
116 
117  bool _rebuildLightingBufferSources;
118  bool _rebuildLightAndShadowBufferSources;
119  bool _rebuildMaterialBufferSources;
120 
121  size_t _AppendLightsOfType(HdRenderIndex &renderIndex,
122  TfTokenVector const &lightTypes,
123  SdfPathVector const &lightIncludePaths,
124  SdfPathVector const &lightExcludePaths,
125  std::map<TfToken, SdfPathVector> *lights);
126 
127  HdxSimpleLightTask() = delete;
128  HdxSimpleLightTask(const HdxSimpleLightTask &) = delete;
129  HdxSimpleLightTask &operator =(const HdxSimpleLightTask &) = delete;
130 };
131 
134  : cameraPath()
135  , lightIncludePaths(1, SdfPath::AbsoluteRootPath())
137  , enableShadows(false)
138  , viewport(0.0f)
140  , material()
141  , sceneAmbient(0)
142  {}
143 
150  std::pair<bool, CameraUtilConformWindowPolicy> overrideWindowPolicy;
151 
152  // XXX: compatibility hack for passing some unit tests until we have
153  // more formal material plumbing.
156 };
157 
158 // VtValue requirements
159 HDX_API
160 std::ostream& operator<<(std::ostream& out, const HdxSimpleLightTaskParams& pv);
161 HDX_API
162 bool operator==(
163  const HdxSimpleLightTaskParams& lhs,
164  const HdxSimpleLightTaskParams& rhs);
165 HDX_API
166 bool operator!=(
167  const HdxSimpleLightTaskParams& lhs,
168  const HdxSimpleLightTaskParams& rhs);
169 
172  : shadowMatrix()
173  , bias(0.0)
174  , blur(0.0)
175  , resolution(0)
176  , enabled(false)
177  {}
178 
180  double bias;
181  double blur;
183  bool enabled;
184 };
185 
186 // VtValue requirements
187 HDX_API
188 std::ostream& operator<<(std::ostream& out, const HdxShadowParams& pv);
189 HDX_API
190 bool operator==(const HdxShadowParams& lhs, const HdxShadowParams& rhs);
191 HDX_API
192 bool operator!=(const HdxShadowParams& lhs, const HdxShadowParams& rhs);
193 
194 
196 
197 #endif //PXR_IMAGING_HDX_SIMPLE_LIGHT_TASK_H
TF_DECLARE_REF_PTRS(GlfSimpleShadowArray)
std::shared_ptr< class HdRenderPass > HdRenderPassSharedPtr
Definition: engine.h:41
uint32_t HdDirtyBits
Definition: types.h:158
HDX_API std::ostream & operator<<(std::ostream &out, const HdxSimpleLightTaskParams &pv)
std::shared_ptr< class HdxShadowMatrixComputation > HdxShadowMatrixComputationSharedPtr
GLenum GLenum GLsizei const GLuint GLboolean enabled
Definition: glcorearb.h:2539
#define HDX_API
Definition: api.h:40
HDX_API void Sync(HdSceneDelegate *delegate, HdTaskContext *ctx, HdDirtyBits *dirtyBits) override
Sync the render pass resources.
GLfloat f
Definition: glcorearb.h:1926
std::pair< bool, CameraUtilConformWindowPolicy > overrideWindowPolicy
bool operator!=(const Mat3< T0 > &m0, const Mat3< T1 > &m1)
Inequality operator, does exact floating point comparisons.
Definition: Mat3.h:556
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:457
GlfSimpleMaterial material
Definition: task.h:54
Definition: path.h:290
std::vector< class SdfPath > SdfPathVector
A vector of SdfPaths.
Definition: path.h:211
HDX_API void Execute(HdTaskContext *ctx) override
Execute render pass task.
std::unordered_map< TfToken, VtValue, TfToken::HashFunctor > HdTaskContext
Definition: renderIndex.h:77
std::shared_ptr< class HdStSimpleLightingShader > HdStSimpleLightingShaderSharedPtr
Definition: vec4f.h:62
HDX_API void Prepare(HdTaskContext *ctx, HdRenderIndex *renderIndex) override
Prepare the tasks resources.
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1432
CameraUtilFraming framing
HDX_API ~HdxSimpleLightTask() override
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
std::shared_ptr< HdBufferArrayRange > HdBufferArrayRangeSharedPtr
Definition: bufferArray.h:44
SdfPathVector lightExcludePaths
SdfPathVector lightIncludePaths
HdxShadowMatrixComputationSharedPtr shadowMatrix
bool operator==(const Mat3< T0 > &m0, const Mat3< T1 > &m1)
Equality operator, does exact floating point comparisons.
Definition: Mat3.h:542
std::vector< class GlfSimpleLight > GlfSimpleLightVector
Definition: simpleLight.h:268
Increase width or height.
Definition: conformWindow.h:50