TDME2 1.9.121
ParticleSystemEditorTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
6#include <tdme/audio/Audio.h>
7#include <tdme/audio/Sound.h>
19#include <tdme/engine/Engine.h>
23#include <tdme/engine/Timing.h>
29#include <tdme/gui/GUI.h>
48#include <tdme/utilities/Time.h>
49
50using std::string;
51
53
76using tdme::gui::GUI;
96
97ParticleSystemEditorTabView::ParticleSystemEditorTabView(EditorView* editorView, const string& tabId, Prototype* prototype): Gizmo(nullptr, "spsv")
98{
99 this->editorView = editorView;
100 this->tabId = tabId;
101 this->popUps = editorView->getPopUps();
102 this->prototype = prototype;
103 this->audio = Audio::getInstance();
104 this->engine = Engine::createOffScreenInstance(512, 512, true, true, true);
106 this->engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
108 this->audioStarted = -1LL;
109 this->audioOffset = -1LL;
110 Gizmo::setEngine(engine);
113}
114
117}
118
120{
122 for (auto i = 0; i < engine->getGUI()->getKeyboardEvents().size(); i++) {
123 auto& event = engine->getGUI()->getKeyboardEvents()[i];
124 if (event.isProcessed() == true) continue;
125 auto isKeyDown = event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
126 if (Character::toLowerCase(event.getKeyChar()) == '1') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_ALL); updateGizmo(); event.setProcessed(true); }
127 if (Character::toLowerCase(event.getKeyChar()) == '2') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_TRANSLATE); updateGizmo(); event.setProcessed(true); }
128 if (Character::toLowerCase(event.getKeyChar()) == '3') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_ROTATE); updateGizmo(); event.setProcessed(true); }
129 if (Character::toLowerCase(event.getKeyChar()) == '4') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_SCALE); updateGizmo(); event.setProcessed(true); }
130 }
131 for (auto i = 0; i < engine->getGUI()->getMouseEvents().size(); i++) {
132 auto& event = engine->getGUI()->getMouseEvents()[i];
133
134 if (event.isProcessed() == true) continue;
135
136 if (event.getButton() == MOUSE_BUTTON_LEFT) {
137 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
138 auto selectedEntity = engine->getEntity("model");
139 auto psg = dynamic_cast<ParticleSystemGroup*>(selectedEntity);
140 if (psg != nullptr) selectedEntity = psg->getParticleSystems()[particleSystemIdx];
141 if (getGizmoMode() != GIZMOMODE_NONE) {
142 if (selectedEntity != nullptr) applyParticleSystemTransformations(dynamic_cast<ParticleSystemEntity*>(selectedEntity), false);
144 updateGizmo();
145 }
146 totalDeltaScale.set(0.0, 0.0f, 0.0f);
147 event.setProcessed(true);
148 } else
149 if (event.getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
150 Node* selectedEntityNode = nullptr;
151 ParticleSystemEntity* selectedSubParticleSystem = nullptr;
152 Entity* selectedEntity = nullptr;
153 if (getGizmoMode() == GIZMOMODE_NONE) selectedEntity = engine->getEntityByMousePosition(event.getXUnscaled(), event.getYUnscaled(), nullptr, &selectedEntityNode, &selectedSubParticleSystem);
154 if (getGizmoMode() == GIZMOMODE_NONE && selectedEntity == nullptr) {
156 event.setProcessed(true);
157 } else
158 if (determineGizmoMode(selectedEntity, selectedEntityNode) == true) {
159 mouseDownLastX = event.getXUnscaled();
160 mouseDownLastY = event.getYUnscaled();
161 event.setProcessed(true);
162 } else
163 if (selectedEntity != nullptr) {
164 auto psg = dynamic_cast<ParticleSystemGroup*>(selectedEntity);
165 if (psg != nullptr && selectedSubParticleSystem != nullptr) {
166 auto particleSystemIdx = 0;
167 for (auto pse: psg->getParticleSystems()) {
168 if (pse == selectedSubParticleSystem) {
170 break;
171 }
173 }
174 } else {
176 }
177 event.setProcessed(true);
178 }
179 } else
180 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
181 if (getGizmoMode() != GIZMOMODE_NONE) {
182 Vector3 deltaTranslation;
183 Vector3 deltaRotation;
184 Vector3 deltaScale;
185 if (determineGizmoDeltaTransformations(mouseDownLastX, mouseDownLastY, event.getXUnscaled(), event.getYUnscaled(), deltaTranslation, deltaRotation, deltaScale) == true) {
186 totalDeltaScale.add(deltaScale.clone().sub(Vector3(1.0f, 1.0f, 1.0f)));
187 auto gizmoEntity = getGizmoObject3D();
188 auto selectedEntity = engine->getEntity("model");
189 auto psg = dynamic_cast<ParticleSystemGroup*>(selectedEntity);
190 if (psg != nullptr) selectedEntity = psg->getParticleSystems()[particleSystemIdx];
191 if (gizmoEntity != nullptr && selectedEntity != nullptr) {
192 selectedEntity->setTranslation(selectedEntity->getTranslation().clone().add(deltaTranslation));
193 selectedEntity->update();
194 auto localTransformations = dynamic_cast<ParticleSystemEntity*>(selectedEntity)->getLocalTransformations();
195 localTransformations.setScale(localTransformations.getScale().clone().scale(deltaScale));
196 if (localTransformations.getRotationCount() == 0) {
197 localTransformations.addRotation(Rotation::Z_AXIS, 0.0f);
198 localTransformations.addRotation(Rotation::Y_AXIS, 0.0f);
199 localTransformations.addRotation(Rotation::X_AXIS, 0.0f);
200 }
201 localTransformations.setRotationAngle(0, localTransformations.getRotationAngle(0) + deltaRotation[2]);
202 localTransformations.setRotationAngle(1, localTransformations.getRotationAngle(1) + deltaRotation[1]);
203 localTransformations.setRotationAngle(2, localTransformations.getRotationAngle(2) + deltaRotation[0]);
204 localTransformations.update();
205 dynamic_cast<ParticleSystemEntity*>(selectedEntity)->setLocalTransformations(localTransformations);
206 setGizmoRotation(localTransformations);
207 applyParticleSystemTransformations(dynamic_cast<ParticleSystemEntity*>(selectedEntity), true);
208 }
209 if (Math::abs(deltaTranslation.getX()) > Math::EPSILON ||
210 Math::abs(deltaTranslation.getY()) > Math::EPSILON ||
211 Math::abs(deltaTranslation.getZ()) > Math::EPSILON) {
212 updateGizmo();
213 }
214 }
215 mouseDownLastX = event.getXUnscaled();
216 mouseDownLastY = event.getYUnscaled();
217 event.setProcessed(true);
218 }
219 }
220 }
221 }
222 } else {
224 }
226}
227
229{
230 // audio
231 if (audioOffset > 0 && Time::getCurrentMillis() - audioStarted >= audioOffset) {
232 auto sound = audio->getEntity("sound");
233 if (sound != nullptr) sound->play();
234 audioOffset = -1LL;
235 }
236
237 //
239
240 // rendering
243 engine->display();
244}
245
247{
248 try {
254 } catch (Exception& exception) {
255 Console::print(string("ParticleSystemEditorTabView::initialize(): An error occurred: "));
256 Console::println(string(exception.what()));
257 }
258 // TODO: load settings
259}
260
262{
263 engine->reset();
264}
265
267}
268
270 return engine;
271}
272
278}
279
282}
283
287}
288
290}
291
293}
294
295void ParticleSystemEditorTabView::playSound(const string& soundId) {
296 audio->removeEntity("sound");
297 auto soundDefinition = prototype->getSound(soundId);
298 if (soundDefinition != nullptr && soundDefinition->getFileName().length() > 0) {
299 auto pathName = PrototypeReader::getResourcePathName(
300 Tools::getPathName(prototype->getFileName()),
301 soundDefinition->getFileName()
302 );
303 auto fileName = Tools::getFileName(soundDefinition->getFileName());
304 auto sound = new Sound(
305 "sound",
306 pathName,
307 fileName
308 );
309 sound->setGain(soundDefinition->getGain());
310 sound->setPitch(soundDefinition->getPitch());
311 sound->setLooping(soundDefinition->isLooping());
312 sound->setFixed(true);
313 audio->addEntity(sound);
314 audioStarted = Time::getCurrentMillis();
315 audioOffset = -1LL;
316 if (soundDefinition->getOffset() <= 0) {
317 sound->play();
318 } else {
319 audioOffset = soundDefinition->getOffset();
320 }
321 }
322}
323
325 audio->removeEntity("sound");
326}
327
330}
331
333 engine->removeEntity("model");
334}
335
337 return particleSystemIdx;
338}
339
340void ParticleSystemEditorTabView::setParticleSystemIndex(int idx, bool changeOutlinerSelection) {
341 if (particleSystemIdx == idx) return;
342 particleSystemIdx = idx;
343 totalDeltaScale.set(0.0, 0.0f, 0.0f);
344 if (particleSystemIdx == -1) {
345 if (changeOutlinerSelection == true) {
347 editorView->getScreenController()->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("selectbox_outliner")));
348 }
349 removeGizmo();
350 } else {
351 if (changeOutlinerSelection == true) {
352 editorView->getScreenController()->setOutlinerSelection("particlesystems." + to_string(idx));
353 editorView->getScreenController()->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("selectbox_outliner")));
354 }
355 updateGizmo();
356 }
357}
358
360 auto selectedEntity = engine->getEntity("model");
361 auto psg = dynamic_cast<ParticleSystemGroup*>(selectedEntity);
362 if (psg != nullptr) {
363 selectedEntity = particleSystemIdx >= psg->getParticleSystems().size()?nullptr:psg->getParticleSystems()[particleSystemIdx];
364 } else {
365 if (particleSystemIdx > 0) selectedEntity = nullptr;
366 }
367 auto pse = dynamic_cast<ParticleSystemEntity*>(selectedEntity);
368 if (selectedEntity != nullptr) {
369 if (pse != nullptr) {
370 Gizmo::updateGizmo(pse->getEmitter()->getCenter().clone().scale(objectScale).add(selectedEntity->getTranslation()), selectedEntity->getTransformations());
371 } else {
372 Gizmo::updateGizmo(selectedEntity->getBoundingBoxTransformed()->getCenter(), selectedEntity->getTransformations());
373 }
374 } else {
375 removeGizmo();
376 }
377}
378
380 Gizmo::setGizmoRotation(transformations);
381}
382
384 {
385 auto transformations = particleSystemEntity->getTransformations();
386 auto localTransformations = particleSystemEntity->getLocalTransformations();
387 auto objectScaleInverted = Vector3(
388 1.0f / objectScale.getX(),
389 1.0f / objectScale.getY(),
390 1.0f / objectScale.getZ()
391 );
392 transformations.setScale(objectScaleInverted);
393 transformations.update();
394 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
395 auto emitterType = particleSystem->getEmitter();
396 if (emitterType == PrototypeParticleSystem_Emitter::NONE) {
397 // no op
398 } else
399 if (emitterType == PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER) {
400 auto emitter = particleSystem->getPointParticleEmitter();
401 auto position = transformations.getTranslation().clone().scale(objectScaleInverted).add(emitter->getPosition());
402 if (guiOnly == false) {
403 emitter->setPosition(position);
404 } else {
406 }
407 } else
408 if (emitterType == PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER) {
409 auto emitter = particleSystem->getBoundingBoxParticleEmitters();
410 auto center = transformations.getTranslation().clone().scale(objectScaleInverted).add(emitter->getObbCenter());
411 auto axis0 = emitter->getObbAxis0().clone().scale(emitter->getObbHalfextension().getX() * 2.0f);
412 auto axis1 = emitter->getObbAxis1().clone().scale(emitter->getObbHalfextension().getY() * 2.0f);
413 auto axis2 = emitter->getObbAxis2().clone().scale(emitter->getObbHalfextension().getZ() * 2.0f);
414 auto halfExtension = emitter->getObbHalfextension();
415 axis0 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis0);
416 axis1 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis1);
417 axis2 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis2);
418 halfExtension.set(
419 Vector3(
420 Math::clamp(axis0.computeLength() / 2.0f, 0.01f, 1000.0f),
421 Math::clamp(axis1.computeLength() / 2.0f, 0.01f, 1000.0f),
422 Math::clamp(axis2.computeLength() / 2.0f, 0.01f, 1000.0f)
423 )
424 );
425 axis0.normalize();
426 axis1.normalize();
427 axis2.normalize();
428 if (guiOnly == false) {
429 emitter->setObbCenter(center);
430 emitter->setObbAxis0(axis0);
431 emitter->setObbAxis1(axis1);
432 emitter->setObbAxis2(axis2);
433 emitter->setObbHalfextension(halfExtension);
434 } else {
435 particleSystemEditorTabController->updateBoundingBoxParticleSystemEmitter(center, axis0, axis1, axis2, halfExtension);
436 }
437 } else
438 if (emitterType == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER) {
439 auto emitter = particleSystem->getCircleParticleEmitter();
440 auto center = transformations.getTranslation().clone().scale(objectScaleInverted).add(emitter->getCenter());
441 auto axis0 = emitter->getAxis0();
442 auto axis1 = emitter->getAxis1();
443 axis0 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis0).normalize();
444 axis1 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis1).normalize();
445 auto scale = 1.0f;
446 if (Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getY()) &&
447 Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getZ())) {
448 scale+= totalDeltaScale.getX();
449 } else
450 if (Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getX()) &&
451 Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getZ())) {
452 scale+= totalDeltaScale.getY();
453 } else
454 if (Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getX()) &&
455 Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getY())) {
456 scale+= totalDeltaScale.getZ();
457 }
458 auto radius = Math::clamp(emitter->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
459 if (guiOnly == false) {
460 emitter->setCenter(center);
461 emitter->setAxis0(axis0);
462 emitter->setAxis1(axis1);
463 emitter->setRadius(radius);
464 } else {
466 }
467 } else
468 if (emitterType == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY) {
469 auto emitter = particleSystem->getCircleParticleEmitterPlaneVelocity();
470 auto center = transformations.getTranslation().clone().scale(objectScaleInverted).add(emitter->getCenter());
471 auto axis0 = emitter->getAxis0();
472 auto axis1 = emitter->getAxis1();
473 axis0 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis0).normalize();
474 axis1 = localTransformations.getTransformationsMatrix().multiplyNoTranslation(axis1).normalize();
475 auto scale = 1.0f;
476 if (Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getY()) &&
477 Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getZ())) {
478 scale+= totalDeltaScale.getX();
479 } else
480 if (Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getX()) &&
481 Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getZ())) {
482 scale+= totalDeltaScale.getY();
483 } else
484 if (Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getX()) &&
485 Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getY())) {
486 scale+= totalDeltaScale.getZ();
487 }
488 auto radius = Math::clamp(emitter->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
489 if (guiOnly == false) {
490 emitter->setCenter(center);
491 emitter->setAxis0(axis0);
492 emitter->setAxis1(axis1);
493 emitter->setRadius(radius);
494 } else {
496 }
497 } else
498 if (emitterType == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
499 auto emitter = particleSystem->getSphereParticleEmitter();
500 auto center = transformations.getTranslation().clone().scale(objectScaleInverted).add(emitter->getCenter());
501 auto scale = 1.0f;
502 if (Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getY()) &&
503 Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getZ())) {
504 scale+= totalDeltaScale.getX();
505 } else
506 if (Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getX()) &&
507 Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getZ())) {
508 scale+= totalDeltaScale.getY();
509 } else
510 if (Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getX()) &&
511 Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getY())) {
512 scale+= totalDeltaScale.getZ();
513 }
514 auto radius = Math::clamp(emitter->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
515 if (guiOnly == false) {
516 emitter->setCenter(center);
517 emitter->setRadius(radius);
518 } else {
520 }
521 } else {
522 Console::println(
523 string(
524 "SharedParticleSystemView::applyParticleSystemTransformations(): unknown particle system emitter '" +
525 particleSystem->getEmitter()->getName() +
526 "'"
527 )
528 );
529 }
530 }
531 if (guiOnly == false) {
533 auto modelEntity = engine->getEntity("model");
534 if (modelEntity != nullptr) engine->removeEntity("model");
535 Transformations transformations;
536 transformations.setScale(objectScale);
537 transformations.update();
538 modelEntity = SceneConnector::createEntity(prototype, "model", transformations);
539 if (modelEntity != nullptr) {
540 modelEntity->setPickable(true);
541 engine->addEntity(modelEntity);
542 }
543 }
544}
545
546void ParticleSystemEditorTabView::saveFile(const string& pathName, const string& fileName) {
547 PrototypeWriter::write(pathName, fileName, prototype);
548}
#define MOUSE_BUTTON_LEFT
virtual void play()=0
Plays this audio entity.
Interface to audio module.
Definition: Audio.h:30
void addEntity(AudioEntity *entity)
Adds a audio entity.
Definition: Audio.cpp:57
void removeEntity(const string &id)
Removes an audio entity.
Definition: Audio.cpp:76
AudioEntity * getEntity(const string &id)
Returns an audio entity identified by given id.
Definition: Audio.cpp:50
Sound audio entity implementation.
Definition: Sound.h:20
Engine main class.
Definition: Engine.h:122
bool removeEntity(const string &id)
Removes an entity.
Definition: Engine.cpp:451
Timing * getTiming()
Definition: Engine.h:900
void display()
Renders the scene.
Definition: Engine.cpp:1269
Entity * getEntityByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr)
Retrieves entity by mouse position.
Definition: Engine.h:1068
void setShadowMapLightEyeDistanceScale(float shadowMapLightEyeDistanceScale)
Set shadow map light eye distance scale.
Definition: Engine.h:632
void addEntity(Entity *entity)
Adds an entity by id.
Definition: Engine.cpp:364
Entity * getEntity(const string &id)
Returns a entity by given id.
Definition: Engine.h:981
void reset()
Removes all entities and caches.
Definition: Engine.cpp:652
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
TDME engine entity.
Definition: Entity.h:31
virtual void setScale(const Vector3 &scale)=0
Set scale.
virtual const Transformations & getTransformations() const =0
Particle system group, which combines several particle systems into a group, to be used with engine c...
const vector< ParticleSystemEntity * > & getParticleSystems()
Scene engine/physics connector.
Timing class.
Definition: Timing.h:17
float getAvarageFPS()
Definition: Timing.h:100
Transformations which contain scale, rotations and translation.
void setScale(const Vector3 &scale)
Set scale.
virtual void update()
Computes transformation matrix.
Color 4 definition.
Definition: Color4.h:20
Model node.
Definition: Node.h:31
Prototype audio definition.
Prototype definition.
Definition: Prototype.h:49
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
Definition: Prototype.h:488
PrototypeParticleSystem * getParticleSystemAt(int idx)
Get particle system at given index.
Definition: Prototype.h:327
GUI module class.
Definition: GUI.h:66
vector< GUIMouseEvent > & getMouseEvents()
Definition: GUI.h:212
vector< GUIKeyboardEvent > & getKeyboardEvents()
Definition: GUI.h:219
GUI node base class.
Definition: GUINode.h:63
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
void setOutlinerSelection(const string &newSelectionValue)
Set outliner selection.
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void handleInputEvents() override
Handle input events that have not yet been processed.
Gizmo tool for views.
Definition: Gizmo.h:26
void setGizmoMode(GizmoMode gizmoMode)
Set GIZMO mode.
Definition: Gizmo.h:128
bool determineGizmoDeltaTransformations(int mouseLastX, int mouseLastY, int mouseX, int mouseY, Vector3 &deltaTranslation, Vector3 &deltaRotation, Vector3 &deltaScale)
Determine GIZMO delta transformations.
Definition: Gizmo.cpp:254
void removeGizmo()
Remove gizmo.
Definition: Gizmo.cpp:211
void setGizmoType(GizmoType gizmoType)
Set GIZMO type.
Definition: Gizmo.h:112
GizmoMode getGizmoMode() const
Definition: Gizmo.h:120
bool determineGizmoMode(Entity *selectedEntity, Node *selectedEntityNode)
Select GIZMO mode.
Definition: Gizmo.cpp:400
void updateSphereParticleSystemEmitter(const Vector3 &center, float radius)
Update sphere particle system emitter.
void updateCircleParticleSystemEmitter(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update circle particle system emitter.
void updateRadialParticleSystemEmitter(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update radial particle system emitter.
void updatePointParticleSystemEmitter(const Vector3 &position)
Update point particle system emitter.
void updateBoundingBoxParticleSystemEmitter(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Update bounding box particle system emitter.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
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.
void onCameraScale() override
On scale event to be overloaded.
void handleInputEvents(Prototype *prototype, const Vector3 &objectScale)
Handle input events.
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Character class.
Definition: Character.h:15
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
MutableString & append(char c)
Append character.
String tools class.
Definition: StringTools.h:20
Time utility class.
Definition: Time.h:21
std::exception Exception
Exception base class.
Definition: Exception.h:19
Particle system entity interface.
virtual const Transformations & getLocalTransformations()=0
Playable sound view interface, which represents a view that supports playing sounds additionally.