TDME2 1.9.121
PrototypeParticleSystem.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
15
28
29PrototypeParticleSystem::PrototypeParticleSystem()
30{
32 ops = nullptr;
33 pps = nullptr;
34 fps = nullptr;
36 ppe = nullptr;
37 bbpe = nullptr;
38 cpe = nullptr;
39 cpepv = nullptr;
40 spe = nullptr;
41}
42
44 unsetType();
46}
47
49 auto v = this->type;
51 } else
53 delete ops;
54 ops = nullptr;
55 } else
57 delete pps;
58 pps = nullptr;
59 } else
61 delete fps;
62 fps = nullptr;
63 } else {
64 Console::println(string("PrototypeParticleSystem::setType(): unknown type '" + this->type->getName() + "'"));
65 }
66}
67
69{
70 unsetType();
71 this->type = type;
72 {
73 auto v = this->type;
75 // no op
76 } else
79 } else
82 } else
85 } else {
86 Console::println(string("PrototypeParticleSystem::setType(): unknown type '" + this->type->getName() + "'"));
87 }
88 }
89
90}
91
93 auto v = this->emitter;
95 // no op
96 } else
98 delete ppe;
99 ppe = nullptr;
100 } else
102 delete bbpe;
103 bbpe = nullptr;
104 } else
106 delete cpe;
107 cpe = nullptr;
108 } else
110 delete cpepv;
111 cpepv = nullptr;
112 } else
114 delete spe;
115 spe = nullptr;
116 } else {
117 Console::println(string("PrototypeParticleSystem::setEmitter(): unknown emitter '" + this->emitter->getName() + "'"));
118 }
119}
120
122{
123 unsetEmitter();
124 this->emitter = emitter;
125 {
126 auto v = this->emitter;
128 // no op
129 } else
132 } else
135 } else
138 } else
141 } else
144 } else {
145 Console::println(string("PrototypeParticleSystem::setEmitter(): unknown emitter '" + this->emitter->getName() + "'"));
146 }
147 }
148}
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * POINT_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * NONE
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * BOUNDINGBOX_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * SPHERE_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * CIRCLE_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * FOG_PARTICLE_SYSTEM
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * OBJECT_PARTICLE_SYSTEM
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * POINT_PARTICLE_SYSTEM
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * NONE
PrototypeParticleSystem_ObjectParticleSystem * ops
PrototypeParticleSystem_BoundingBoxParticleEmitter * bbpe
PrototypeParticleSystem_PointParticleEmitter * ppe
PrototypeParticleSystem_CircleParticleEmitter * cpe
void setEmitter(PrototypeParticleSystem_Emitter *emitter)
Set emitter.
PrototypeParticleSystem_SphereParticleEmitter * spe
void setType(PrototypeParticleSystem_Type *type)
Set particle system type.
PrototypeParticleSystem_PointParticleSystem * pps
PrototypeParticleSystem_FogParticleSystem * fps
PrototypeParticleSystem_CircleParticleEmitterPlaneVelocity * cpepv
Console class.
Definition: Console.h:26
const string & getName() const
Definition: Enum.h:30