NcEngine
ParticleEmitter.h
Go to the documentation of this file.
1
5#pragma once
6
9
10#include "ncmath/Vector.h"
11
12namespace nc
13{
14namespace graphics
15{
16class ParticleSubsystem;
17} // namespace graphics
18
21{
22 unsigned maxParticleCount = 100u;
23 unsigned initialEmissionCount = 0u;
24 unsigned periodicEmissionCount = 0u;
25 float periodicEmissionFrequency = 0.0f;
26};
27
30{
31 float lifetime = 5.0f;
32 Vector3 positionMin = Vector3::Zero();
33 Vector3 positionMax = Vector3::Zero();
34 float rotationMin = 0.0f;
35 float rotationMax = 0.0f;
36 float scaleMin = 1.0f;
37 float scaleMax = 1.0f;
38};
39
42{
43 Vector3 velocityMin = Vector3::Zero();
44 Vector3 velocityMax = Vector3::Zero();
45 float velocityOverTimeFactor = 0.0f;
46 float rotationMin = 0.0f;
47 float rotationMax = 0.0f;
48 float rotationOverTimeFactor = 0.0f;
49 float scaleOverTimeFactor = 0.0f;
50};
51
54{
55 ParticleEmissionInfo emission;
57 ParticleKinematicInfo kinematic;
58};
59
62{
63 public:
65 const asset::TextureView& texture,
66 const ParticleInfo& info = {});
67
68 ParticleEmitter(ParticleEmitter&& other) noexcept
69 : m_self{std::exchange(other.m_self, Entity::Null())},
70 m_texture{other.m_texture},
71 m_info{other.m_info}
72 {
73 }
74
75 ParticleEmitter& operator=(ParticleEmitter&& other) noexcept
76 {
77 if (this != &other)
78 {
79 Release();
80 m_self = std::exchange(other.m_self, Entity::Null());
81 m_texture = other.m_texture;
82 m_info = other.m_info;
83 }
84
85 return *this;
86 }
87
88 ~ParticleEmitter() noexcept
89 {
90 Release();
91 }
92
94 auto GetEntity() const -> Entity { return m_self; }
95
97 auto GetTexture() const noexcept -> const asset::TextureView& { return m_texture; }
98 void SetTexture(const asset::TextureView& texture);
99
101 auto GetInfo() const noexcept -> const ParticleInfo& { return m_info; }
102 void SetInfo(const ParticleInfo& info);
103
105 void Emit(size_t count);
106
108 static void RegisterSubsystem(graphics::ParticleSubsystem* subsystem)
109 {
110 s_subsystem = subsystem;
111 }
114 private:
115 static inline graphics::ParticleSubsystem* s_subsystem = nullptr;
116
117 Entity m_self;
118 asset::TextureView m_texture;
119 ParticleInfo m_info;
120
121 void Release() noexcept;
122};
123} // namespace nc
Identifies an object in the registry.
Definition: Entity.h:18
static constexpr auto Null() noexcept
Construct a null Entity.
Definition: Entity.h:61
Component for creating particle effects.
Definition: ParticleEmitter.h:62
auto GetInfo() const noexcept -> const ParticleInfo &
Definition: ParticleEmitter.h:101
void SetInfo(const ParticleInfo &info)
void Emit(size_t count)
Emit count number of particles, saturating at maxParticleCount.
Describes particle emission behavior for a ParticleEmitter.
Definition: ParticleEmitter.h:21
Settings for a ParticleEmitter.
Definition: ParticleEmitter.h:54
Describes initial particle properties.
Definition: ParticleEmitter.h:30
Describes particle motion over time.
Definition: ParticleEmitter.h:42
A three component vector.
Definition: Vector.h:29
Definition: AssetViews.h:66