TDME2 1.9.121
PrototypeParticleSystem_FogParticleSystem.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
12
13/**
14 * Prototype point particle system definition
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19{
20private:
21 int maxPoints { 4000 };
22 float pointSize{ 0.1f };
25 Texture* texture { nullptr };
28 float textureSpritesFPS { 10.0f };
29
30public:
31 /**
32 * Public constructor
33 */
35
36 /**
37 * Public destructor
38 */
40
41 /**
42 * @return max points
43 */
44 inline int getMaxPoints() {
45 return maxPoints;
46 }
47
48 /**
49 * Set max points
50 * @param maxPoints max points
51 */
52 inline void setMaxPoints(int maxPoints) {
53 this->maxPoints = maxPoints;
54 }
55
56 /**
57 * @return point size
58 */
59 inline float getPointSize() {
60 return pointSize;
61 }
62
63 /**
64 * Set point size
65 * @param pointSize point size
66 */
67 inline void setPointSize(float pointSize) {
68 this->pointSize = pointSize;
69 }
70
71 /**
72 * @return texture
73 */
74 inline Texture* getTexture() {
75 return texture;
76 }
77
78 /**
79 * @return texture file name
80 */
81 inline const string& getTextureFileName() {
82 return textureFileName;
83 }
84
85 /**
86 * @return transparency texture file name
87 */
88 inline const string& getTransparencyTextureFileName() {
90 }
91
92 /**
93 * Set texture file name with optional transparency texture
94 * @param textureFileName texture file name
95 * @param transparencyTextureFileName transparency texture file name
96 */
97 void setTextureFileName(const string& textureFileName, const string& transparencyTextureFileName = string());
98
99 /**
100 * @return horizontal number of sprites in texture
101 */
104 }
105
106 /**
107 * Set texture horizontal number of sprites
108 * @param textureHorizontalSprites horizontal number of sprites
109 */
111 this->textureHorizontalSprites = textureHorizontalSprites;
112 }
113
114 /**
115 * @return vertical number of sprites in texture
116 */
119 }
120
121 /**
122 * Set texture vertical number of sprites
123 * @param textureVerticalSprites vertical number of sprites
124 */
126 this->textureVerticalSprites = textureVerticalSprites;
127 }
128
129 /**
130 * @return texture sprites frames per second
131 */
132 inline float getTextureSpritesFPS() {
133 return textureSpritesFPS;
134 }
135
136 /**
137 * Set texture sprites frames per second
138 * @param textureSpritesFPS frames per second
139 */
141 this->textureSpritesFPS = textureSpritesFPS;
142 }
143
144};
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.