97ParticleSystemEditorTabView::ParticleSystemEditorTabView(
EditorView* editorView,
const string& tabId,
Prototype* prototype):
Gizmo(nullptr,
"spsv")
103 this->
audio = Audio::getInstance();
104 this->
engine = Engine::createOffScreenInstance(512, 512,
true,
true,
true);
122 for (
auto i = 0; i <
engine->
getGUI()->getKeyboardEvents().size(); i++) {
124 if (event.isProcessed() ==
true)
continue;
125 auto isKeyDown =
event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
131 for (
auto i = 0; i <
engine->
getGUI()->getMouseEvents().size(); i++) {
134 if (event.isProcessed() ==
true)
continue;
137 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
147 event.setProcessed(
true);
149 if (event.getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
150 Node* selectedEntityNode =
nullptr;
152 Entity* selectedEntity =
nullptr;
156 event.setProcessed(
true);
161 event.setProcessed(
true);
163 if (selectedEntity !=
nullptr) {
165 if (psg !=
nullptr && selectedSubParticleSystem !=
nullptr) {
167 for (
auto pse: psg->getParticleSystems()) {
168 if (pse == selectedSubParticleSystem) {
177 event.setProcessed(
true);
180 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
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);
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);
209 if (Math::abs(deltaTranslation.
getX()) > Math::EPSILON ||
210 Math::abs(deltaTranslation.
getY()) > Math::EPSILON ||
211 Math::abs(deltaTranslation.
getZ()) > Math::EPSILON) {
217 event.setProcessed(
true);
233 if (sound !=
nullptr) sound->
play();
255 Console::print(
string(
"ParticleSystemEditorTabView::initialize(): An error occurred: "));
256 Console::println(
string(exception.what()));
298 if (soundDefinition !=
nullptr && soundDefinition->getFileName().length() > 0) {
299 auto pathName = PrototypeReader::getResourcePathName(
301 soundDefinition->getFileName()
303 auto fileName = Tools::getFileName(soundDefinition->getFileName());
304 auto sound =
new Sound(
309 sound->setGain(soundDefinition->getGain());
310 sound->setPitch(soundDefinition->getPitch());
311 sound->setLooping(soundDefinition->isLooping());
312 sound->setFixed(
true);
316 if (soundDefinition->getOffset() <= 0) {
345 if (changeOutlinerSelection ==
true) {
351 if (changeOutlinerSelection ==
true) {
362 if (psg !=
nullptr) {
368 if (selectedEntity !=
nullptr) {
369 if (pse !=
nullptr) {
370 Gizmo::updateGizmo(pse->getEmitter()->getCenter().clone().scale(
objectScale).add(selectedEntity->getTranslation()), selectedEntity->getTransformations());
372 Gizmo::updateGizmo(selectedEntity->getBoundingBoxTransformed()->getCenter(), selectedEntity->getTransformations());
380 Gizmo::setGizmoRotation(transformations);
387 auto objectScaleInverted =
Vector3(
392 transformations.setScale(objectScaleInverted);
393 transformations.update();
395 auto emitterType = particleSystem->
getEmitter();
396 if (emitterType == PrototypeParticleSystem_Emitter::NONE) {
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);
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);
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)
428 if (guiOnly ==
false) {
429 emitter->setObbCenter(center);
430 emitter->setObbAxis0(axis0);
431 emitter->setObbAxis1(axis1);
432 emitter->setObbAxis2(axis2);
433 emitter->setObbHalfextension(halfExtension);
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();
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);
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();
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);
498 if (emitterType == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
499 auto emitter = particleSystem->getSphereParticleEmitter();
500 auto center = transformations.getTranslation().clone().scale(objectScaleInverted).add(emitter->getCenter());
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);
524 "SharedParticleSystemView::applyParticleSystemTransformations(): unknown particle system emitter '" +
525 particleSystem->getEmitter()->getName() +
531 if (guiOnly ==
false) {
538 modelEntity = SceneConnector::createEntity(
prototype,
"model", transformations);
539 if (modelEntity !=
nullptr) {
540 modelEntity->setPickable(
true);
547 PrototypeWriter::write(pathName, fileName,
prototype);
virtual void play()=0
Plays this audio entity.
Interface to audio module.
void addEntity(AudioEntity *entity)
Adds a audio entity.
void removeEntity(const string &id)
Removes an audio entity.
AudioEntity * getEntity(const string &id)
Returns an audio entity identified by given id.
Sound audio entity implementation.
bool removeEntity(const string &id)
Removes an entity.
void display()
Renders the scene.
Entity * getEntityByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr)
Retrieves entity by mouse position.
void setShadowMapLightEyeDistanceScale(float shadowMapLightEyeDistanceScale)
Set shadow map light eye distance scale.
void addEntity(Entity *entity)
Adds an entity by id.
Entity * getEntity(const string &id)
Returns a entity by given id.
void reset()
Removes all entities and caches.
void setSceneColor(const Color4 &sceneColor)
Set scene color.
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.
Prototype audio definition.
Prototype bounding box particle emitter definition.
Prototype circle particle emitter plane velocity definition.
Prototype circle particle emitter definition.
Prototype particle system emitter type enum.
Prototype point particle emitter definition.
Prototype sphere particle emitter definition.
PrototypeParticleSystem_Emitter * getEmitter()
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
const string & getFileName()
PrototypeParticleSystem * getParticleSystemAt(int idx)
Get particle system at given index.
vector< GUIMouseEvent > & getMouseEvents()
vector< GUIKeyboardEvent > & getKeyboardEvents()
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Particle system editor tab controller.
void updateInfoText(const MutableString &text)
Update info text line.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void updateSphereParticleSystemEmitter(const Vector3 ¢er, float radius)
Update sphere particle system emitter.
void updateDetails(const string &outlinerNode)
Update details panel.
PrototypePhysicsSubController * getPrototypePhysicsSubController()
void updateCircleParticleSystemEmitter(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update circle particle system emitter.
PrototypeDisplaySubController * getPrototypeDisplaySubController()
void updateRadialParticleSystemEmitter(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update radial particle system emitter.
void initialize(GUIScreenNode *screenNode) override
Init.
void updatePointParticleSystemEmitter(const Vector3 &position)
Update point particle system emitter.
void updateBoundingBoxParticleSystemEmitter(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Update bounding box particle system emitter.
void setOutlinerContent()
Set outliner content.
PrototypeSoundsSubController * getPrototypeSoundsSubController()
Particle system editor tab view.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
void playSound(const string &soundId) override
Play sound.
void dispose() override
Disposes the view.
ParticleSystemEditorTabController * particleSystemEditorTabController
void display() override
Renders the view.
void reloadOutliner() override
Reload outliner.
void onCameraRotation() override
On rotation event to be overloaded.
void initialize() override
Initiates the view.
void deactivate() override
Deactivate.
PrototypeSoundsSubView * prototypeSoundsView
Engine * getEngine() override
void handleInputEvents() override
Handle input events that have not yet been processed.
TabView::OutlinerState outlinerState
void setGizmoRotation(const Transformations &transformations)
Set GIZMO rotation.
CameraRotationInputHandler * cameraRotationInputHandler
void activate() override
Activate.
void updateGizmo()
Update GIZMO.
PrototypePhysicsSubView * prototypePhysicsView
~ParticleSystemEditorTabView()
Destructor.
void stopSound() override
Stop sound.
void setParticleSystemIndex(int idx, bool changeOutlinerSelection=true)
Set particle system index, the particle system to edit.
void updateRendering() override
Update rendering.
void applyParticleSystemTransformations(ParticleSystemEntity *particleSystemEntity, bool guiOnly)
Apply particle system transformations.
void initParticleSystem()
Init particle system.
int getParticleSystemIndex()
PrototypeDisplaySubView * prototypeDisplayView
void onCameraScale() override
On scale event to be overloaded.
void uninitParticleSystem()
Uninit particle system.
MutableString & append(char c)
Append character.
std::exception Exception
Exception base class.
Particle system entity interface.
virtual const Transformations & getLocalTransformations()=0