Ignition Rendering

API Reference

5.1.0
Ogre2ParticleEmitter.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 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 IGNITION_RENDERING_OGRE2_OGRE2PARTICLEEMITTER_HH_
18 #define IGNITION_RENDERING_OGRE2_OGRE2PARTICLEEMITTER_HH_
19 
20 #include <memory>
21 #include <string>
24 
25 namespace ignition
26 {
27  namespace rendering
28  {
29  inline namespace IGNITION_RENDERING_VERSION_NAMESPACE {
30  //
31  // Forward declaration
32  class Ogre2ParticleEmitterPrivate;
33 
35  class IGNITION_RENDERING_OGRE2_VISIBLE Ogre2ParticleEmitter :
36  public BaseParticleEmitter<Ogre2Visual>
37  {
39  protected: Ogre2ParticleEmitter();
40 
42  public: virtual ~Ogre2ParticleEmitter();
43 
44  // Documentation inherited.
45  public: void Destroy() override;
46 
47  // Documentation inherited.
48  public: virtual void SetType(const EmitterType _type) override;
49 
50  // Documentation inherited.
51  public: virtual void SetEmitterSize(
52  const ignition::math::Vector3d &_size) override;
53 
54  // Documentation inherited.
55  public: virtual void SetRate(double _rate) override;
56 
57  // Documentation inherited.
58  public: virtual void SetDuration(double _duration) override;
59 
60  // Documentation inherited.
61  public: virtual void SetEmitting(bool _enable) override;
62 
63  // Documentation inherited.
64  public: virtual void SetParticleSize(
65  const ignition::math::Vector3d &_size) override;
66 
67  // Documentation inherited.
68  public: virtual void SetLifetime(double _lifetime) override;
69 
70  // Documentation inherited.
71  public: virtual void SetMaterial(const MaterialPtr &_material) override;
72 
73  // Documentation inherited.
74  public: virtual void SetVelocityRange(double _minVelocity,
75  double _maxVelocity) override;
76 
77  // Documentation inherited.
78  public: virtual void SetColorRange(
79  const ignition::math::Color &_colorStart,
80  const ignition::math::Color &_colorEnd) override;
81 
82  // Documentation inherited.
83  public: virtual void SetScaleRate(double _scaleRate) override;
84 
85  // Documentation inherited.
86  public: virtual void SetColorRangeImage(const std::string &_image)
87  override;
88 
90  public: static const uint32_t kParticleVisibilityFlags;
91 
92  // Documentation inherited.
93  protected: virtual void Init() override;
94 
97  private: void PreRenderImpl();
98 
100  private: void CreateParticleSystem();
101 
103  private: friend class Ogre2Scene;
104 
107  };
108  }
109  }
110 }
111 #endif
EmitterType
Enum for emitter types.
Definition: ParticleEmitter.hh:36
Ogre2.x implementation of the scene class.
Definition: Ogre2Scene.hh:56
STL class.
static const uint32_t kParticleVisibilityFlags
Particle system visibility flags.
Definition: Ogre2ParticleEmitter.hh:90
A base implementation of the ParticleEmitter class.
Definition: BaseParticleEmitter.hh:37
Class to manage a particle emitter.
Definition: Ogre2ParticleEmitter.hh:35