Ogre2LensFlarePass.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2022 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 #ifndef GZ_RENDERING_OGRE2_OGRE2LENSFLAREPASS_HH_
18 #define GZ_RENDERING_OGRE2_OGRE2LENSFLAREPASS_HH_
19 
20 #include <memory>
21 
22 #include <gz/utils/ImplPtr.hh>
23 
24 #include "gz/math/Vector3.hh"
25 
27 #include "gz/rendering/ogre2/Export.hh"
29 
30 #ifdef _MSC_VER
31  #pragma warning(push)
32  // Suppress dll-interface warning. This should no longer be needed in
33  // gz-rendering9 as visibility changed hidden by default.
34  #pragma warning(disable:4251)
35 #endif
36 
37 namespace gz
38 {
39  namespace rendering
40  {
41  inline namespace GZ_RENDERING_VERSION_NAMESPACE {
42 
44  class GZ_RENDERING_OGRE2_VISIBLE Ogre2LensFlarePass :
45  public BaseLensFlarePass<Ogre2RenderPass>
46  {
48  public: Ogre2LensFlarePass();
49 
51  public: ~Ogre2LensFlarePass() override;
52 
53  // Documentation inherited
54  public: void Init(ScenePtr _scene) override;
55 
56  // Documentation inherited
57  public: void PreRender(const CameraPtr &_camera) override;
58 
59  // Documentation inherited
60  public: void PostRender() override;
61 
62  // Documentation inherited
63  public: void SetScale(double _scale) override;
64 
65  // Documentation inherited
66  public: double Scale() const override;
67 
68  // Documentation inherited
69  public: void SetColor(const math::Vector3d &_color) override;
70 
71  // Documentation inherited
72  public: const math::Vector3d &Color() const override;
73 
74  // Documentation inherited
75  public: void SetOcclusionSteps(uint32_t _occlusionSteps) override;
76 
77  // Documentation inherited
78  public: uint32_t OcclusionSteps() const override;
79 
80  // Documentation inherited
81  public: void WorkspaceAdded(
82  Ogre::CompositorWorkspace *_workspace) override;
83 
84  // Documentation inherited
85  public: void WorkspaceRemoved(
86  Ogre::CompositorWorkspace *_workspace) override;
87 
88  // Documentation inherited
89  public: virtual void Destroy() override;
90 
98  private: double OcclusionScale(const math::Vector3d &_imgPos,
99  uint32_t _faceIdx);
100 
103  GZ_UTILS_UNIQUE_IMPL_PTR(dataPtr)
105 
106  private: friend class Ogre2LensFlarePassWorkspaceListenerPrivate;
107  };
108  }
109  }
110 }
111 
112 #ifdef _MSC_VER
113  #pragma warning(pop)
114 #endif
115 
116 #endif