TDME2 1.9.121
PrototypeParticleSystem_PointParticleSystem.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9using std::string;
10
21
22/**
23 * Prototype point particle system definition
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
30 int maxPoints{ 4000 };
31 float pointSize{ 0.1f };
34 Texture* texture { nullptr };
37 bool autoEmit{ true };
38 float textureSpritesFPS { 10.0f };
39
40public:
41 /**
42 * Public constructor
43 */
45
46 /**
47 * Public destructor
48 */
50
51 /**
52 * @return max points
53 */
54 inline int getMaxPoints() {
55 return maxPoints;
56 }
57
58 /**
59 * Set max points
60 * @param maxPoints max points
61 */
62 inline void setMaxPoints(int maxPoints) {
63 this->maxPoints = maxPoints;
64 }
65
66 /**
67 * @return point size
68 */
69 inline float getPointSize() {
70 return pointSize;
71 }
72
73 /**
74 * Set point size
75 * @param pointSize point size
76 */
77 inline void setPointSize(float pointSize) {
78 this->pointSize = pointSize;
79 }
80
81 /**
82 * @return texture
83 */
84 inline Texture* getTexture() {
85 return texture;
86 }
87
88 /**
89 * @return texture file name
90 */
91 inline const string& getTextureFileName() {
92 return textureFileName;
93 }
94
95 /**
96 * @return transparency texture file name
97 */
98 inline const string& getTransparencyTextureFileName() {
100 }
101
102 /**
103 * Set texture file name with optional transparency texture
104 * @param textureFileName texture file name
105 * @param transparencyTextureFileName transparency texture file name
106 */
107 void setTextureFileName(const string& textureFileName, const string& transparencyTextureFileName = string());
108
109 /**
110 * @return horizontal number of sprites in texture
111 */
114 }
115
116 /**
117 * Set texture horizontal number of sprites
118 * @param textureHorizontalSprites horizontal number of sprites
119 */
121 this->textureHorizontalSprites = textureHorizontalSprites;
122 }
123
124 /**
125 * @return vertical number of sprites in texture
126 */
129 }
130
131 /**
132 * Set texture vertical number of sprites
133 * @param textureVerticalSprites vertical number of sprites
134 */
136 this->textureVerticalSprites = textureVerticalSprites;
137 }
138
139 /**
140 * @return texture sprites frames per second
141 */
142 inline float getTextureSpritesFPS() {
143 return textureSpritesFPS;
144 }
145
146 /**
147 * Set texture sprites frames per second
148 * @param textureSpritesFPS frames per second
149 */
151 this->textureSpritesFPS = textureSpritesFPS;
152 }
153
154 /**
155 * @return is auto emit
156 */
157 inline bool isAutoEmit() {
158 return autoEmit;
159 }
160
161 /**
162 * Set auto emit
163 * @param autoEmit auto emit
164 */
165 inline void setAutoEmit(bool autoEmit) {
166 this->autoEmit = autoEmit;
167 }
168
169};
void setTextureVerticalSprites(int textureVerticalSprites)
Set texture vertical number of sprites.
void setTextureSpritesFPS(float textureSpritesFPS)
Set texture sprites frames per second.
void setTextureHorizontalSprites(int textureHorizontalSprites)
Set texture horizontal number of sprites.
void setTextureFileName(const string &textureFileName, const string &transparencyTextureFileName=string())
Set texture file name with optional transparency texture.