TDME2 1.9.121
ParticleSystemEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
20
21using std::string;
22
41
42/**
43 * Particle system editor tab view
44 * @author Andreas Drewke
45 * @version $Id$
46 */
48 : public TabView
49 , public PlayableSoundView
51 , protected Gizmo
52{
53protected:
54 Audio* audio { nullptr };
55 Engine* engine { nullptr };
56
57private:
58 EditorView* editorView { nullptr };
59 string tabId;
60 PopUps* popUps { nullptr };
61 Prototype* prototype { nullptr };
68
70
71 int64_t audioStarted;
72 int64_t audioOffset;
73
76 int mouseDownLastX { -1 };
77 int mouseDownLastY { -1 };
78
79protected:
80 /**
81 * On rotation event to be overloaded
82 */
83 void onCameraRotation() override;
84
85 /**
86 * On scale event to be overloaded
87 */
88 void onCameraScale() override;
89
90public:
91 /**
92 * Public constructor
93 * @param editorView editor view
94 * @param tabId tab id
95 */
97
98 /**
99 * Destructor
100 */
102
103 /**
104 * @return editor view
105 */
107 return editorView;
108 }
109
110 /**
111 * @return associated tab controller
112 */
113 inline TabController* getTabController() override {
115 }
116
117 /**
118 * @return pop up views
119 */
120 inline PopUps* getPopUps() {
121 return popUps;
122 }
123
124 /**
125 * @return prototype
126 */
128 return prototype;
129 }
130
131 // overridden methods
132 void handleInputEvents() override;
133 void display() override;
134 inline const string& getTabId() override {
135 return tabId;
136 }
137 void initialize() override;
138 void dispose() override;
139 Engine* getEngine() override;
140 void activate() override;
141 void deactivate() override;
142 void reloadOutliner() override;
143 inline bool hasFixedSize() override{ return false; };
144 void updateRendering() override;
145
146 // overridden methods
147 void playSound(const string& soundId) override;
148 void stopSound() override;
149
150 /**
151 * Init particle system
152 */
153 void initParticleSystem();
154
155 /**
156 * Uninit particle system
157 */
159
160 /**
161 * @return particle system index
162 */
164
165 /**
166 * Set particle system index, the particle system to edit
167 * @param idx index
168 * @param changeOutlinerSelection change outliner selection
169 */
170 void setParticleSystemIndex(int idx, bool changeOutlinerSelection = true);
171
172 /**
173 * Update GIZMO
174 */
175 void updateGizmo();
176
177 /**
178 * Set GIZMO rotation
179 * @param transformations transformations
180 */
181 void setGizmoRotation(const Transformations& transformations);
182
183 /**
184 * Apply particle system transformations
185 * @param particleSystemEntity particle system entity
186 * @param guiOnly GUI only
187 */
188 void applyParticleSystemTransformations(ParticleSystemEntity* particleSystemEntity, bool guiOnly);
189
190 /**
191 * Saving prototype as tempty prototype
192 * @param pathName path name
193 * @param fileName file name
194 */
195 void saveFile(const string& pathName, const string& fileName);
196
197};
Interface to audio module.
Definition: Audio.h:30
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Transformations which contain scale, rotations and translation.
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22
Gizmo tool for views.
Definition: Gizmo.h:26
Pop ups controller accessor class.
Definition: PopUps.h:19
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
void onCameraRotation() override
On rotation event to be overloaded.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setGizmoRotation(const Transformations &transformations)
Set GIZMO rotation.
void setParticleSystemIndex(int idx, bool changeOutlinerSelection=true)
Set particle system index, the particle system to edit.
void applyParticleSystemTransformations(ParticleSystemEntity *particleSystemEntity, bool guiOnly)
Apply particle system transformations.
ParticleSystemEditorTabView(EditorView *editorView, const string &tabId, Prototype *prototype)
Public constructor.
void onCameraScale() override
On scale event to be overloaded.
Particle system entity interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Playable sound view interface, which represents a view that supports playing sounds additionally.