159 if (fileName.empty() ==
true)
throw ExceptionBase(
"Could not save file. No filename known");
161 Tools::getPathName(fileName),
162 Tools::getFileName(fileName)
171 class OnParticleSave:
public virtual Action
174 void performAction()
override {
176 particleSystemEditorTabController->view->saveFile(
177 particleSystemEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
178 particleSystemEditorTabController->popUps->getFileDialogScreenController()->getFileName()
181 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
183 particleSystemEditorTabController->popUps->getFileDialogScreenController()->close();
193 fileName.empty() ==
false?Tools::getPathName(fileName):
string(),
196 Tools::getFileName(fileName),
198 new OnParticleSave(
this)
216 if (node->
getId() ==
"dropdown_outliner_add") {
220 if (prototype ==
nullptr)
return;
222 if (particleSystem ==
nullptr)
return;
223 auto particleSystemIdx = prototype->getParticleSystemsCount() - 1;
226 class ReloadTabOutlinerAction:
public Action {
231 ReloadTabOutlinerAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
const string& outlinerNode): particleSystemEditorTabController(particleSystemEditorTabController), outlinerNode(outlinerNode) {}
232 virtual void performAction() {
239 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(
this,
"particlesystems." + to_string(particleSystemIdx)));
242 if (node->
getId() ==
"selectbox_outliner") {
245 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
253 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
254 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
256 if (node->
getId() == applyOPSNode) {
262 if (node->
getId() == applyPPSNode) {
268 if (node->
getId() == applyFPSNode) {
274 if (node->
getId() == applyBaseNode) {
280 if (node->
getId() == applyBBPENode) {
286 if (node->
getId() == applyPPENode) {
292 if (node->
getId() == applySPENode) {
298 if (node->
getId() == applyCPENode) {
304 if (node->
getId() == applyRPENode) {
333 if (node->
getId() ==
"selectbox_outliner") {
335 if (outlinerNode ==
"particlesystems") {
340 class OnAddParticleSystemAction:
public virtual Action
343 void performAction()
override {
344 auto prototype = particleSystemEditorTabController->view->getPrototype();
345 if (prototype ==
nullptr)
return;
346 auto particleSystem = prototype->addParticleSystem();
347 if (particleSystem ==
nullptr)
return;
348 auto particleSystemIdx = prototype->getParticleSystemsCount() - 1;
351 class ReloadTabOutlinerAction:
public Action {
356 ReloadTabOutlinerAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
const string& outlinerNode): particleSystemEditorTabController(particleSystemEditorTabController), outlinerNode(outlinerNode) {}
357 virtual void performAction() {
364 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(particleSystemEditorTabController,
"particlesystems." + to_string(particleSystemIdx)));
366 OnAddParticleSystemAction(
ParticleSystemEditorTabController* particleSystemEditorTabController): particleSystemEditorTabController(particleSystemEditorTabController) {
376 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
377 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
383 class OnRemoveParticleSystemAction:
public virtual Action
386 void performAction()
override {
387 auto prototype = particleSystemEditorTabController->view->getPrototype();
388 if (prototype ==
nullptr)
return;
389 prototype->removeParticleSystemAt(particleSystemIdx);
392 class ReloadTabOutlinerAction:
public Action {
397 ReloadTabOutlinerAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
const string& outlinerNode): particleSystemEditorTabController(particleSystemEditorTabController), outlinerNode(outlinerNode) {}
398 virtual void performAction() {
405 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(particleSystemEditorTabController,
"particlesystems"));
407 OnRemoveParticleSystemAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
411 int particleSystemIdx;
424 if (prototype ==
nullptr)
return;
428 if (node->
getId().compare(
"particleemitter_box_colorstart_edit") == 0) {
430 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
431 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
432 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
433 auto bbpe = particleSystem !=
nullptr?particleSystem->getBoundingBoxParticleEmitters():
nullptr;
434 if (bbpe !=
nullptr) {
436 class OnColorChangeAction:
public virtual Action
439 void performAction()
override {
440 auto prototype = particleSystemEditorTabController->view->getPrototype();
441 if (prototype ==
nullptr)
return;
442 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
443 auto bbpe = particleSystem !=
nullptr?particleSystem->getBoundingBoxParticleEmitters():
nullptr;
444 if (bbpe ==
nullptr)
return;
445 bbpe->setColorStart(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
448 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_box_colorstart"))->setEffectColorMul(bbpe->getColorStart());
450 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
451 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
453 particleSystemEditorTabController->view->initParticleSystem();
455 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
459 int particleSystemIdx;
465 if (node->
getId().compare(
"particleemitter_box_colorend_edit") == 0) {
467 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
468 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
469 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
470 auto bbpe = particleSystem !=
nullptr?particleSystem->getBoundingBoxParticleEmitters():
nullptr;
471 if (bbpe !=
nullptr) {
473 class OnColorChangeAction:
public virtual Action
476 void performAction()
override {
477 auto prototype = particleSystemEditorTabController->view->getPrototype();
478 if (prototype ==
nullptr)
return;
479 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
480 auto bbpe = particleSystem !=
nullptr?particleSystem->getBoundingBoxParticleEmitters():
nullptr;
481 if (bbpe ==
nullptr)
return;
482 bbpe->setColorEnd(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
485 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_box_colorend"))->setEffectColorMul(bbpe->getColorEnd());
487 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
488 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
490 particleSystemEditorTabController->view->initParticleSystem();
492 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
496 int particleSystemIdx;
502 if (node->
getId().compare(
"particleemitter_point_colorstart_edit") == 0) {
504 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
505 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
506 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
507 auto ppe = particleSystem !=
nullptr?particleSystem->getPointParticleEmitter():
nullptr;
508 if (ppe !=
nullptr) {
510 class OnColorChangeAction:
public virtual Action
513 void performAction()
override {
514 auto prototype = particleSystemEditorTabController->view->getPrototype();
515 if (prototype ==
nullptr)
return;
516 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
517 auto ppe = particleSystem !=
nullptr?particleSystem->getPointParticleEmitter():
nullptr;
518 if (ppe ==
nullptr)
return;
519 ppe->setColorStart(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
522 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_point_colorstart"))->setEffectColorMul(ppe->getColorStart());
524 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
525 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
527 particleSystemEditorTabController->view->initParticleSystem();
529 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
533 int particleSystemIdx;
539 if (node->
getId().compare(
"particleemitter_point_colorend_edit") == 0) {
541 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
542 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
543 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
544 auto ppe = particleSystem !=
nullptr?particleSystem->getPointParticleEmitter():
nullptr;
545 if (ppe !=
nullptr) {
547 class OnColorChangeAction:
public virtual Action
550 void performAction()
override {
551 auto prototype = particleSystemEditorTabController->view->getPrototype();
552 if (prototype ==
nullptr)
return;
553 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
554 auto ppe = particleSystem !=
nullptr?particleSystem->getPointParticleEmitter():
nullptr;
555 if (ppe ==
nullptr)
return;
556 ppe->setColorEnd(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
559 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_point_colorend"))->setEffectColorMul(ppe->getColorEnd());
561 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
562 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
564 particleSystemEditorTabController->view->initParticleSystem();
566 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
570 int particleSystemIdx;
576 if (node->
getId().compare(
"particleemitter_sphere_colorstart_edit") == 0) {
578 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
579 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
580 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
581 auto spe = particleSystem !=
nullptr?particleSystem->getSphereParticleEmitter():
nullptr;
582 if (spe !=
nullptr) {
584 class OnColorChangeAction:
public virtual Action
587 void performAction()
override {
588 auto prototype = particleSystemEditorTabController->view->getPrototype();
589 if (prototype ==
nullptr)
return;
590 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
591 auto spe = particleSystem !=
nullptr?particleSystem->getSphereParticleEmitter():
nullptr;
592 if (spe ==
nullptr)
return;
593 spe->setColorStart(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
596 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_sphere_colorstart"))->setEffectColorMul(spe->getColorStart());
598 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
599 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
601 particleSystemEditorTabController->view->initParticleSystem();
603 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
607 int particleSystemIdx;
613 if (node->
getId().compare(
"particleemitter_sphere_colorend_edit") == 0) {
615 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
616 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
617 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
618 auto spe = particleSystem !=
nullptr?particleSystem->getSphereParticleEmitter():
nullptr;
619 if (spe !=
nullptr) {
621 class OnColorChangeAction:
public virtual Action
624 void performAction()
override {
625 auto prototype = particleSystemEditorTabController->view->getPrototype();
626 if (prototype ==
nullptr)
return;
627 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
628 auto spe = particleSystem !=
nullptr?particleSystem->getSphereParticleEmitter():
nullptr;
629 if (spe ==
nullptr)
return;
630 spe->setColorEnd(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
633 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_sphere_colorend"))->setEffectColorMul(spe->getColorEnd());
635 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
636 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
638 particleSystemEditorTabController->view->initParticleSystem();
640 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
644 int particleSystemIdx;
650 if (node->
getId().compare(
"particleemitter_circle_colorstart_edit") == 0) {
652 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
653 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
654 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
655 auto cpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitter():
nullptr;
656 if (cpe !=
nullptr) {
658 class OnColorChangeAction:
public virtual Action
661 void performAction()
override {
662 auto prototype = particleSystemEditorTabController->view->getPrototype();
663 if (prototype ==
nullptr)
return;
664 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
665 auto cpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitter():
nullptr;
666 if (cpe ==
nullptr)
return;
667 cpe->setColorStart(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
670 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_circle_colorstart"))->setEffectColorMul(cpe->getColorStart());
672 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
673 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
675 particleSystemEditorTabController->view->initParticleSystem();
677 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
681 int particleSystemIdx;
687 if (node->
getId().compare(
"particleemitter_circle_colorend_edit") == 0) {
689 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
690 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
691 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
692 auto cpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitter():
nullptr;
693 if (cpe !=
nullptr) {
695 class OnColorChangeAction:
public virtual Action
698 void performAction()
override {
699 auto prototype = particleSystemEditorTabController->view->getPrototype();
700 if (prototype ==
nullptr)
return;
701 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
702 auto cpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitter():
nullptr;
703 if (cpe ==
nullptr)
return;
704 cpe->setColorEnd(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
707 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_circle_colorend"))->setEffectColorMul(cpe->getColorEnd());
709 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
710 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
712 particleSystemEditorTabController->view->initParticleSystem();
714 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
718 int particleSystemIdx;
724 if (node->
getId().compare(
"particleemitter_radial_colorstart_edit") == 0) {
726 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
727 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
728 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
729 auto rpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitterPlaneVelocity():
nullptr;
730 if (rpe !=
nullptr) {
732 class OnColorChangeAction:
public virtual Action
735 void performAction()
override {
736 auto prototype = particleSystemEditorTabController->view->getPrototype();
737 if (prototype ==
nullptr)
return;
738 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
739 auto rpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitterPlaneVelocity():
nullptr;
740 if (rpe ==
nullptr)
return;
741 rpe->setColorStart(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
744 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_radial_colorstart"))->setEffectColorMul(rpe->getColorStart());
746 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
747 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
749 particleSystemEditorTabController->view->initParticleSystem();
751 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
755 int particleSystemIdx;
761 if (node->
getId().compare(
"particleemitter_radial_colorend_edit") == 0) {
763 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
764 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
765 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
766 auto rpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitterPlaneVelocity():
nullptr;
767 if (rpe !=
nullptr) {
769 class OnColorChangeAction:
public virtual Action
772 void performAction()
override {
773 auto prototype = particleSystemEditorTabController->view->getPrototype();
774 if (prototype ==
nullptr)
return;
775 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
776 auto rpe = particleSystem !=
nullptr?particleSystem->getCircleParticleEmitterPlaneVelocity():
nullptr;
777 if (rpe ==
nullptr)
return;
778 rpe->setColorEnd(
Color4(particleSystemEditorTabController->popUps->getColorPickerScreenController()->getColor()));
781 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particleemitter_radial_colorend"))->setEffectColorMul(rpe->getColorEnd());
783 Console::println(
string(
"OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
784 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
786 particleSystemEditorTabController->view->initParticleSystem();
788 OnColorChangeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
792 int particleSystemIdx;
798 if (node->
getId().compare(
"particletype_point_texture_open") == 0) {
800 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
801 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
802 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
803 auto pps = particleSystem !=
nullptr?particleSystem->getPointParticleSystem():
nullptr;
804 if (pps !=
nullptr) {
805 class OnPointParticleSystemLoadTexture:
public virtual Action
808 void performAction()
override {
809 auto prototype = particleSystemEditorTabController->view->getPrototype();
810 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
811 auto pps = particleSystem !=
nullptr?particleSystem->getPointParticleSystem():
nullptr;
812 if (pps ==
nullptr)
return;
813 particleSystemEditorTabController->view->uninitParticleSystem();
815 pps->setTextureFileName(
816 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
"/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName(),
817 pps->getTransparencyTextureFileName()
820 Console::println(
string(
"OnPointParticleSystemLoadTexture::performAction(): An error occurred: ") + exception.what());;
821 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
823 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particletype_point_texture"))->setSource(pps->getTextureFileName());
824 particleSystemEditorTabController->view->initParticleSystem();
825 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
829 : particleSystemEditorTabController(particleSystemEditorTabController)
830 , particleSystemIdx(particleSystemIdx) {
834 int particleSystemIdx;
838 pps->getTextureFileName().empty() ==
false?Tools::getPathName(pps->getTextureFileName()):
string(),
839 "Load point particle system texture from: ",
840 TextureReader::getTextureExtensions(),
841 Tools::getFileName(pps->getTextureFileName()),
843 new OnPointParticleSystemLoadTexture(
this, particleSystemIdx)
848 if (node->
getId().compare(
"particletype_point_texture_remove") == 0) {
850 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
851 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
852 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
853 auto pps = particleSystem !=
nullptr?particleSystem->getPointParticleSystem():
nullptr;
854 if (pps !=
nullptr) {
857 pps->setTextureFileName(
string(), pps->getTransparencyTextureFileName());
858 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_point_texture"))->setSource(pps->getTextureFileName());
860 Console::println(
string(
"ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
867 if (node->
getId().compare(
"particletype_point_transparency_open") == 0) {
869 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
870 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
871 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
872 auto pps = particleSystem !=
nullptr?particleSystem->getPointParticleSystem():
nullptr;
873 if (pps !=
nullptr) {
874 class OnPointParticleSystemLoadTransparencyTexture:
public virtual Action
877 void performAction()
override {
878 auto prototype = particleSystemEditorTabController->view->getPrototype();
879 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
880 auto pps = particleSystem !=
nullptr?particleSystem->getPointParticleSystem():
nullptr;
881 if (pps ==
nullptr)
return;
882 particleSystemEditorTabController->view->uninitParticleSystem();
884 pps->setTextureFileName(
885 pps->getTextureFileName(),
886 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
"/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
889 Console::println(
string(
"OnPointParticleSystemLoadTransparencyTexture::performAction(): An error occurred: ") + exception.what());;
890 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
892 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particletype_point_transparency"))->setSource(pps->getTextureFileName());
893 particleSystemEditorTabController->view->initParticleSystem();
894 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
898 : particleSystemEditorTabController(particleSystemEditorTabController)
899 , particleSystemIdx(particleSystemIdx) {
903 int particleSystemIdx;
907 pps->getTextureFileName().empty() ==
false?Tools::getPathName(pps->getTextureFileName()):
string(),
908 "Load point particle system texture from: ",
909 TextureReader::getTextureExtensions(),
910 Tools::getFileName(pps->getTextureFileName()),
912 new OnPointParticleSystemLoadTransparencyTexture(
this, particleSystemIdx)
917 if (node->
getId().compare(
"particletype_point_transparency_remove") == 0) {
919 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
920 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
921 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
922 auto pps = particleSystem !=
nullptr?particleSystem->getPointParticleSystem():
nullptr;
923 if (pps !=
nullptr) {
926 pps->setTextureFileName(pps->getTextureFileName(),
string());
927 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_point_transparency"))->setSource(pps->getTransparencyTextureFileName());
929 Console::println(
string(
"ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
936 if (node->
getId().compare(
"particletype_fog_texture_open") == 0) {
938 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
939 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
940 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
941 auto fps = particleSystem !=
nullptr?particleSystem->getFogParticleSystem():
nullptr;
942 if (fps !=
nullptr) {
943 class OnFogParticleSystemLoadTexture:
public virtual Action
946 void performAction()
override {
947 auto prototype = particleSystemEditorTabController->view->getPrototype();
948 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
949 auto fps = particleSystem !=
nullptr?particleSystem->getFogParticleSystem():
nullptr;
950 if (fps ==
nullptr)
return;
951 particleSystemEditorTabController->view->uninitParticleSystem();
953 fps->setTextureFileName(
954 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
"/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName(),
955 fps->getTransparencyTextureFileName()
958 Console::println(
string(
"OnFogParticleSystemLoadTexture::performAction(): An error occurred: ") + exception.what());;
959 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
961 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particletype_fog_texture"))->setSource(fps->getTextureFileName());
962 particleSystemEditorTabController->view->initParticleSystem();
963 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
967 : particleSystemEditorTabController(particleSystemEditorTabController)
968 , particleSystemIdx(particleSystemIdx) {
972 int particleSystemIdx;
976 fps->getTextureFileName().empty() ==
false?Tools::getPathName(fps->getTextureFileName()):
string(),
977 "Load point particle system texture from: ",
978 TextureReader::getTextureExtensions(),
979 Tools::getFileName(fps->getTextureFileName()),
981 new OnFogParticleSystemLoadTexture(
this, particleSystemIdx)
986 if (node->
getId().compare(
"particletype_fog_texture_remove") == 0) {
988 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
989 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
990 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
991 auto fps = particleSystem !=
nullptr?particleSystem->getFogParticleSystem():
nullptr;
992 if (fps !=
nullptr) {
995 fps->setTextureFileName(
string(), fps->getTransparencyTextureFileName());
996 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_fog_texture"))->setSource(fps->getTextureFileName());
998 Console::println(
string(
"ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
1005 if (node->
getId().compare(
"particletype_fog_transparency_open") == 0) {
1007 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
1008 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
1009 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1010 auto fps = particleSystem !=
nullptr?particleSystem->getFogParticleSystem():
nullptr;
1011 if (fps !=
nullptr) {
1012 class OnFogParticleSystemLoadTransparencyTexture:
public virtual Action
1015 void performAction()
override {
1016 auto prototype = particleSystemEditorTabController->view->getPrototype();
1017 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1018 auto fps = particleSystem !=
nullptr?particleSystem->getFogParticleSystem():
nullptr;
1019 if (fps ==
nullptr)
return;
1020 particleSystemEditorTabController->view->uninitParticleSystem();
1022 fps->setTextureFileName(
1023 fps->getTextureFileName(),
1024 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
"/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1027 Console::println(
string(
"OnFogParticleSystemLoadTransparencyTexture::performAction(): An error occurred: ") + exception.what());;
1028 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
1030 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particletype_fog_transparency"))->setSource(fps->getTextureFileName());
1031 particleSystemEditorTabController->view->initParticleSystem();
1032 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1036 : particleSystemEditorTabController(particleSystemEditorTabController)
1037 , particleSystemIdx(particleSystemIdx) {
1041 int particleSystemIdx;
1045 fps->getTextureFileName().empty() ==
false?Tools::getPathName(fps->getTextureFileName()):
string(),
1046 "Load point particle system texture from: ",
1047 TextureReader::getTextureExtensions(),
1048 Tools::getFileName(fps->getTextureFileName()),
1050 new OnFogParticleSystemLoadTransparencyTexture(
this, particleSystemIdx)
1055 if (node->
getId().compare(
"particletype_fog_transparency_remove") == 0) {
1057 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
1058 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
1059 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1060 auto fps = particleSystem !=
nullptr?particleSystem->getFogParticleSystem():
nullptr;
1061 if (fps !=
nullptr) {
1064 fps->setTextureFileName(fps->getTextureFileName(),
string());
1065 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_fog_transparency"))->setSource(fps->getTransparencyTextureFileName());
1067 Console::println(
string(
"ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
1074 if (node->
getId() ==
"particletype_object_open") {
1076 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
1077 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
1078 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1079 auto ops = particleSystem !=
nullptr?particleSystem->getObjectParticleSystem():
nullptr;
1080 if (ops !=
nullptr) {
1082 class OnObjectParticleSystemLoadModel:
public virtual Action
1085 void performAction()
override {
1086 auto prototype = particleSystemEditorTabController->view->getPrototype();
1087 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1088 auto ops = particleSystem !=
nullptr?particleSystem->getObjectParticleSystem():
nullptr;
1089 if (ops ==
nullptr)
return;
1090 particleSystemEditorTabController->view->uninitParticleSystem();
1093 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
1095 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1097 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById(
"particletype_object"))->setSource(ops->getModelFileName());
1099 Console::println(
string(
"OnObjectParticleSystemLoadModel::performAction(): An error occurred: ") + exception.what());;
1100 particleSystemEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
1102 particleSystemEditorTabController->view->initParticleSystem();
1103 particleSystemEditorTabController->view->getEditorView()->reloadTabOutliner();
1104 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1108 : particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
1114 int particleSystemIdx;
1119 ops->getModelFileName().empty() ==
false?Tools::getPathName(ops->getModelFileName()):
string(),
1120 "Load object particle system model from: ",
1121 ModelReader::getModelExtensions(),
1124 new OnObjectParticleSystemLoadModel(
this, particleSystemIdx)
1129 if (node->
getId() ==
"particletype_object_remove") {
1131 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
1132 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
1133 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1134 auto ops = particleSystem !=
nullptr?particleSystem->getObjectParticleSystem():
nullptr;
1135 if (ops ==
nullptr)
return;
1138 ops->setModelFile(
string());
1139 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_object"))->setSource(ops->getModelFileName());
1141 Console::println(
string(
"ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
1156 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Prototype") +
"\" value=\"" + GUIParser::escapeQuotes(
"prototype") +
"\">\n";
1158 if (prototype !=
nullptr) {
1163 if (prototype->getParticleSystemsCount() == 0) {
1164 xml+=
"<selectbox-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Particle Systems") +
"\" value=\"" + GUIParser::escapeQuotes(
"particlesystems") +
"\" />\n";
1166 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Particle Systems") +
"\" value=\"" + GUIParser::escapeQuotes(
"particlesystems") +
"\">\n";
1167 for (
auto i = 0; i < prototype->getParticleSystemsCount(); i++) {
1168 auto particleSystem = prototype->getParticleSystemAt(i);
1169 xml+=
" <selectbox-option image=\"resources/engine/images/particle.png\" text=\"" + GUIParser::escapeQuotes(
"Particle System " + to_string(i)) +
"\" id=\"" + GUIParser::escapeQuotes(
"particlesystems." + to_string(i)) +
"\" value=\"" + GUIParser::escapeQuotes(
"particlesystems." + to_string(i)) +
"\" />\n";
1171 xml+=
"</selectbox-parent-option>\n";
1174 xml+=
"</selectbox-parent-option>\n";
1180 string(
"<dropdown-option text=\"Property\" value=\"property\" />\n") +
1181 string(
"<dropdown-option text=\"BV\" value=\"boundingvolume\" />\n") +
1182 string(
"<dropdown-option text=\"PS\" value=\"particlesystem\" />\n") +
1183 string(
"<dropdown-option text=\"Sound\" value=\"sound\" />\n")
1189 if (prototype ==
nullptr)
return;
1191 if (particleSystem ==
nullptr)
return;
1194 string(
"<template id=\"details_particletype\" src=\"resources/engine/gui/template_details_particletype.xml\" />\n") +
1195 string(
"<template id=\"details_particleemitter\" src=\"resources/engine/gui/template_details_particleemitter.xml\" />\n")
1201 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_particletype"))->getActiveConditions().add(
"open");
1204 if (particleSystem->getType() == PrototypeParticleSystem_Type::NONE) {
1206 if (particleSystem->getType() == PrototypeParticleSystem_Type::OBJECT_PARTICLE_SYSTEM) {
1207 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): ops");
1208 auto ops = particleSystem->getObjectParticleSystem();
1210 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_type_details"))->getActiveConditions().set(
"object");
1211 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_object"))->setSource(ops->getModelFileName());
1212 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_object_scale"))->getController()->setValue(
MutableString(Math::max(ops->getScale().getX(), Math::max(ops->getScale().getY(), ops->getScale().getZ()))));
1214 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_object_autoemit"))->getController()->setValue(
MutableString(ops->isAutoEmit() ==
true?
"1":
""));
1216 if (particleSystem->getType() == PrototypeParticleSystem_Type::POINT_PARTICLE_SYSTEM) {
1217 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): pps");
1218 auto pps = particleSystem->getPointParticleSystem();
1220 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_type_details"))->getActiveConditions().set(
"point");
1221 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_point_texture"))->setSource(pps->getTextureFileName());
1222 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_point_transparency"))->setSource(pps->getTransparencyTextureFileName());
1225 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_horizontal_sprites"))->getController()->setValue(
MutableString(pps->getTextureHorizontalSprites()));
1226 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_vertical_sprites"))->getController()->setValue(
MutableString(pps->getTextureVerticalSprites()));
1228 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_autoemit"))->getController()->setValue(
MutableString(pps->isAutoEmit() ==
true?
"1":
""));
1230 if (particleSystem->getType() == PrototypeParticleSystem_Type::FOG_PARTICLE_SYSTEM) {
1231 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): fps");
1232 auto fps = particleSystem->getFogParticleSystem();
1234 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_type_details"))->getActiveConditions().set(
"fog");
1235 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_fog_texture"))->setSource(fps->getTextureFileName());
1236 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particletype_fog_transparency"))->setSource(fps->getTransparencyTextureFileName());
1239 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_horizontal_sprites"))->getController()->setValue(
MutableString(fps->getTextureHorizontalSprites()));
1240 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_vertical_sprites"))->getController()->setValue(
MutableString(fps->getTextureVerticalSprites()));
1243 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): Unknown particle system type");
1247 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_particleemitter"))->getActiveConditions().add(
"open");
1250 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER) {
1251 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): ppe");
1252 auto ppse = particleSystem->getPointParticleEmitter();
1254 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().set(
"point");
1255 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_location_x"))->getController()->setValue(
MutableString(ppse->getPosition().getX()));
1256 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_location_y"))->getController()->setValue(
MutableString(ppse->getPosition().getY()));
1257 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_location_z"))->getController()->setValue(
MutableString(ppse->getPosition().getZ()));
1258 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_point_colorstart"))->setEffectColorMul(ppse->getColorStart());
1259 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_point_colorend"))->setEffectColorMul(ppse->getColorEnd());
1261 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_lifetime_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(ppse->getLifeTime())));
1262 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_lifetime_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(ppse->getLifeTime() + ppse->getLifeTimeRnd())));
1263 auto velocityMax = ppse->getVelocity().clone().add(ppse->getVelocityRnd());
1264 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_min_x"))->getController()->setValue(
MutableString(ppse->getVelocity().getX()));
1265 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_min_y"))->getController()->setValue(
MutableString(ppse->getVelocity().getY()));
1266 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_min_z"))->getController()->setValue(
MutableString(ppse->getVelocity().getZ()));
1267 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_max_x"))->getController()->setValue(
MutableString(velocityMax.getX()));
1268 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_max_y"))->getController()->setValue(
MutableString(velocityMax.getY()));
1269 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_max_z"))->getController()->setValue(
MutableString(velocityMax.getZ()));
1270 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_mass_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(ppse->getMass())));
1271 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_mass_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(ppse->getMass() + ppse->getMassRnd())));
1273 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER) {
1274 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): bbpe");
1275 auto bbpe = particleSystem->getBoundingBoxParticleEmitters();
1279 rotationMatrix.
setAxes(bbpe->getObbAxis0(), bbpe->getObbAxis1(), bbpe->getObbAxis2());
1283 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().
set(
"box");
1284 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_location_x"))->getController()->setValue(
MutableString(bbpe->getObbCenter().getX()));
1285 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_location_y"))->getController()->setValue(
MutableString(bbpe->getObbCenter().getY()));
1286 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_location_z"))->getController()->setValue(
MutableString(bbpe->getObbCenter().getZ()));
1290 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_halfsize_x"))->getController()->setValue(
MutableString(bbpe->getObbHalfextension().getX()));
1291 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_halfsize_y"))->getController()->setValue(
MutableString(bbpe->getObbHalfextension().getY()));
1292 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_halfsize_z"))->getController()->setValue(
MutableString(bbpe->getObbHalfextension().getZ()));
1293 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_box_colorstart"))->setEffectColorMul(bbpe->getColorStart());
1294 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_box_colorend"))->setEffectColorMul(bbpe->getColorEnd());
1296 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_lifetime_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(bbpe->getLifeTime())));
1297 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_lifetime_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(bbpe->getLifeTime() + bbpe->getLifeTimeRnd())));
1298 auto velocityMax = bbpe->getVelocity().
clone().
add(bbpe->getVelocityRnd());
1299 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_min_x"))->getController()->setValue(
MutableString(bbpe->getVelocity().getX()));
1300 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_min_y"))->getController()->setValue(
MutableString(bbpe->getVelocity().getY()));
1301 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_min_z"))->getController()->setValue(
MutableString(bbpe->getVelocity().getZ()));
1305 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_mass_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(bbpe->getMass())));
1306 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_mass_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(bbpe->getMass() + bbpe->getMassRnd())));
1308 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER) {
1309 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): cpe");
1310 auto cpse = particleSystem->getCircleParticleEmitter();
1314 rotationMatrix.
setAxes(cpse->getAxis0(), Vector3::computeCrossProduct(cpse->getAxis0(), cpse->getAxis1()), cpse->getAxis1());
1318 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().
set(
"circle");
1319 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_location_x"))->getController()->setValue(
MutableString(cpse->getCenter().getX()));
1320 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_location_y"))->getController()->setValue(
MutableString(cpse->getCenter().getY()));
1321 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_location_z"))->getController()->setValue(
MutableString(cpse->getCenter().getZ()));
1326 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_circle_colorstart"))->setEffectColorMul(cpse->getColorStart());
1327 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_circle_colorend"))->setEffectColorMul(cpse->getColorEnd());
1329 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_lifetime_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(cpse->getLifeTime())));
1330 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_lifetime_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(cpse->getLifeTime() + cpse->getLifeTimeRnd())));
1331 auto velocityMax = cpse->getVelocity().
clone().
add(cpse->getVelocityRnd());
1332 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_min_x"))->getController()->setValue(
MutableString(cpse->getVelocity().getX()));
1333 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_min_y"))->getController()->setValue(
MutableString(cpse->getVelocity().getY()));
1334 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_min_z"))->getController()->setValue(
MutableString(cpse->getVelocity().getZ()));
1335 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_max_x"))->getController()->setValue(
MutableString(velocityMax.getX()));
1336 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_max_y"))->getController()->setValue(
MutableString(velocityMax.getY()));
1337 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_max_z"))->getController()->setValue(
MutableString(velocityMax.getZ()));
1338 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_mass_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(cpse->getMass())));
1339 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_mass_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(cpse->getMass() + cpse->getMassRnd())));
1341 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY) {
1342 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): cpepv");
1343 auto rpse = particleSystem->getCircleParticleEmitterPlaneVelocity();
1347 rotationMatrix.
setAxes(rpse->getAxis0(), Vector3::computeCrossProduct(rpse->getAxis0(), rpse->getAxis1()), rpse->getAxis1());
1351 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().
set(
"radial");
1352 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_location_x"))->getController()->setValue(
MutableString(rpse->getCenter().getX()));
1353 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_location_y"))->getController()->setValue(
MutableString(rpse->getCenter().getY()));
1354 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_location_z"))->getController()->setValue(
MutableString(rpse->getCenter().getZ()));
1359 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_radial_colorstart"))->setEffectColorMul(rpse->getColorStart());
1360 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_radial_colorend"))->setEffectColorMul(rpse->getColorEnd());
1362 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_lifetime_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(rpse->getLifeTime())));
1363 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_lifetime_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(rpse->getLifeTime() + rpse->getLifeTimeRnd())));
1364 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_velocity_min"))->getController()->setValue(
MutableString(rpse->getVelocity()));
1365 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_velocity_max"))->getController()->setValue(
MutableString(rpse->getVelocity() + rpse->getVelocityRnd()));
1366 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_mass_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(rpse->getMass())));
1367 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_mass_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(rpse->getMass() + rpse->getMassRnd())));
1369 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
1370 Console::println(
"ParticleSystemEditorTabController::setParticleSystemDetails(): spe");
1371 auto spse = particleSystem->getSphereParticleEmitter();
1373 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().set(
"sphere");
1374 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_location_x"))->getController()->setValue(
MutableString(spse->getCenter().getX()));
1375 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_location_y"))->getController()->setValue(
MutableString(spse->getCenter().getY()));
1376 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_location_z"))->getController()->setValue(
MutableString(spse->getCenter().getZ()));
1378 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_colorstart"))->setEffectColorMul(spse->getColorStart());
1379 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_colorend"))->setEffectColorMul(spse->getColorEnd());
1381 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_lifetime_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(spse->getLifeTime())));
1382 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_lifetime_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(spse->getLifeTime() + spse->getLifeTimeRnd())));
1383 auto velocityMax = spse->getVelocity().clone().add(spse->getVelocityRnd());
1384 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_min_x"))->getController()->setValue(
MutableString(spse->getVelocity().getX()));
1385 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_min_y"))->getController()->setValue(
MutableString(spse->getVelocity().getY()));
1386 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_min_z"))->getController()->setValue(
MutableString(spse->getVelocity().getZ()));
1387 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_max_x"))->getController()->setValue(
MutableString(velocityMax.getX()));
1388 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_max_y"))->getController()->setValue(
MutableString(velocityMax.getY()));
1389 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_max_z"))->getController()->setValue(
MutableString(velocityMax.getZ()));
1390 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_mass_min"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(spse->getMass())));
1391 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_mass_max"))->getController()->setValue(
MutableString(
static_cast<int32_t
>(spse->getMass() + spse->getMassRnd())));
1393 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): unknown emitter");
1396 Console::println(
string(
"ParticleSystemEditorTabController::setParticleSystemDetails(): An error occurred: ") + exception.what());;
1403 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): " + to_string(particleSystemIdx));
1406 if (prototype ==
nullptr)
return;
1408 if (particleSystem ==
nullptr)
return;
1413 auto newParticleSystemTypeId = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_type"))->getController()->getValue().getString());
1414 auto newParticleSystemType = PrototypeParticleSystem_Type::NONE;
1415 switch (newParticleSystemTypeId) {
1416 case 1: newParticleSystemType = PrototypeParticleSystem_Type::OBJECT_PARTICLE_SYSTEM;
break;
1417 case 2: newParticleSystemType = PrototypeParticleSystem_Type::POINT_PARTICLE_SYSTEM;
break;
1418 case 3: newParticleSystemType = PrototypeParticleSystem_Type::FOG_PARTICLE_SYSTEM;
break;
1420 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails: unknown particle system type");
1425 if (particleSystem->getType() != newParticleSystemType) {
1427 particleSystem->setType(newParticleSystemType);
1429 class ChangeTypeAction:
public Action {
1432 int particleSystemIdx;
1434 ChangeTypeAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): editorView(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {}
1435 virtual void performAction() {
1440 Engine::getInstance()->enqueueAction(
new ChangeTypeAction(
this, particleSystemIdx));
1446 if (particleSystem->getType() == PrototypeParticleSystem_Type::OBJECT_PARTICLE_SYSTEM) {
1447 auto ops = particleSystem->getObjectParticleSystem();
1448 auto scale = Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_object_scale"))->getController()->getValue().getString());
1449 ops->setScale(
Vector3(scale, scale, scale));
1450 ops->setMaxCount(Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_object_maxcount"))->getController()->getValue().getString()));
1451 ops->setAutoEmit(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_object_autoemit"))->getController()->getValue().getString() ==
"1");
1453 if (particleSystem->getType() == PrototypeParticleSystem_Type::POINT_PARTICLE_SYSTEM) {
1454 auto pps = particleSystem->getPointParticleSystem();
1455 pps->setPointSize(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_size"))->getController()->getValue().getString()));
1456 pps->setMaxPoints(Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_maxcount"))->getController()->getValue().getString()));
1457 pps->setTextureHorizontalSprites(Math::max(1, Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_horizontal_sprites"))->getController()->getValue().getString())));
1458 pps->setTextureVerticalSprites(Math::max(1, Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_vertical_sprites"))->getController()->getValue().getString())));
1459 pps->setTextureSpritesFPS(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_fps"))->getController()->getValue().getString()));
1460 pps->setAutoEmit(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_point_autoemit"))->getController()->getValue().getString() ==
"1");
1462 if (particleSystem->getType() == PrototypeParticleSystem_Type::FOG_PARTICLE_SYSTEM) {
1463 auto fps = particleSystem->getFogParticleSystem();
1464 fps->setPointSize(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_size"))->getController()->getValue().getString()));
1465 fps->setMaxPoints(Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_maxcount"))->getController()->getValue().getString()));
1466 fps->setTextureHorizontalSprites(Math::max(1, Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_horizontal_sprites"))->getController()->getValue().getString())));
1467 fps->setTextureVerticalSprites(Math::max(1, Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_vertical_sprites"))->getController()->getValue().getString())));
1468 fps->setTextureSpritesFPS(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particletype_fog_fps"))->getController()->getValue().getString()));
1472 auto newEmitterTypeId = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type"))->getController()->getValue().getString());
1473 auto newEmitterType = PrototypeParticleSystem_Emitter::NONE;
1474 switch (newEmitterTypeId) {
1475 case 1: newEmitterType = PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER;
break;
1476 case 2: newEmitterType = PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER;
break;
1477 case 3: newEmitterType = PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER;
break;
1478 case 4: newEmitterType = PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY;
break;
1479 case 5: newEmitterType = PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER;
break;
1481 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails: unknown emitter");
1486 if (particleSystem->getEmitter() != newEmitterType) {
1488 particleSystem->setEmitter(newEmitterType);
1490 class ChangeEmitterAction:
public Action {
1493 int particleSystemIdx;
1495 ChangeEmitterAction(
ParticleSystemEditorTabController* particleSystemEditorTabController,
int particleSystemIdx): editorView(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {}
1496 virtual void performAction() {
1501 Engine::getInstance()->enqueueAction(
new ChangeEmitterAction(
this, particleSystemIdx));
1506 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_particletype"))->getActiveConditions().add(
"open");
1509 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER) {
1510 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): ppe");
1511 auto ppse = particleSystem->getPointParticleEmitter();
1514 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_location_x"))->getController()->getValue().getString()),
1515 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_location_y"))->getController()->getValue().getString()),
1516 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_location_z"))->getController()->getValue().getString())
1519 ppse->setCount(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_count"))->getController()->getValue().getString()));
1520 ppse->setLifeTime(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_lifetime_min"))->getController()->getValue().getString()));
1521 ppse->setLifeTimeRnd(
1522 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_lifetime_max"))->getController()->getValue().getString()) -
1523 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_lifetime_min"))->getController()->getValue().getString())
1525 ppse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_mass_min"))->getController()->getValue().getString()));
1527 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_mass_max"))->getController()->getValue().getString()) -
1528 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_mass_min"))->getController()->getValue().getString())
1532 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_min_x"))->getController()->getValue().getString()),
1533 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_min_y"))->getController()->getValue().getString()),
1534 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_min_z"))->getController()->getValue().getString())
1538 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_max_x"))->getController()->getValue().getString()),
1539 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_max_y"))->getController()->getValue().getString()),
1540 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_point_velocity_max_z"))->getController()->getValue().getString())
1542 ppse->setVelocity(velocityMin);
1543 ppse->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1545 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER) {
1546 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): bbpe");
1547 auto bbpe = particleSystem->getBoundingBoxParticleEmitters();
1550 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_location_x"))->getController()->getValue().getString()),
1551 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_location_y"))->getController()->getValue().getString()),
1552 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_location_z"))->getController()->getValue().getString())
1556 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_Z, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_rotation_z"))->getController()->getValue().getString()));
1557 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_Y, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_rotation_y"))->getController()->getValue().getString()));
1558 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_X, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_rotation_x"))->getController()->getValue().getString()));
1559 transformations.
update();
1564 bbpe->setObbAxis0(obbAxis0);
1565 bbpe->setObbAxis1(obbAxis1);
1566 bbpe->setObbAxis2(obbAxis2);
1567 bbpe->setObbHalfextension(
1569 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_halfsize_x"))->getController()->getValue().getString()),
1570 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_halfsize_y"))->getController()->getValue().getString()),
1571 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_halfsize_z"))->getController()->getValue().getString())
1574 bbpe->setCount(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_count"))->getController()->getValue().getString()));
1575 bbpe->setLifeTime(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_lifetime_min"))->getController()->getValue().getString()));
1576 bbpe->setLifeTimeRnd(
1577 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_lifetime_max"))->getController()->getValue().getString()) -
1578 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_lifetime_min"))->getController()->getValue().getString())
1580 bbpe->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_mass_min"))->getController()->getValue().getString()));
1582 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_mass_max"))->getController()->getValue().getString()) -
1583 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_mass_min"))->getController()->getValue().getString())
1587 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_min_x"))->getController()->getValue().getString()),
1588 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_min_y"))->getController()->getValue().getString()),
1589 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_min_z"))->getController()->getValue().getString())
1593 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_max_x"))->getController()->getValue().getString()),
1594 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_max_y"))->getController()->getValue().getString()),
1595 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_box_velocity_max_z"))->getController()->getValue().getString())
1597 bbpe->setVelocity(velocityMin);
1598 bbpe->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1600 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER) {
1601 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): cpe");
1602 auto cpse = particleSystem->getCircleParticleEmitter();
1605 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_location_x"))->getController()->getValue().getString()),
1606 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_location_y"))->getController()->getValue().getString()),
1607 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_location_z"))->getController()->getValue().getString())
1612 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_Z, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_rotation_z"))->getController()->getValue().getString()));
1613 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_Y, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_rotation_y"))->getController()->getValue().getString()));
1614 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_X, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_rotation_x"))->getController()->getValue().getString()));
1615 transformations.
update();
1620 cpse->setAxis0(axis0);
1621 cpse->setAxis1(axis1);
1623 cpse->setRadius(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_radius"))->getController()->getValue().getString()));
1624 cpse->setCount(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_count"))->getController()->getValue().getString()));
1625 cpse->setLifeTime(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_lifetime_min"))->getController()->getValue().getString()));
1626 cpse->setLifeTimeRnd(
1627 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_lifetime_max"))->getController()->getValue().getString()) -
1628 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_lifetime_min"))->getController()->getValue().getString())
1630 cpse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_mass_min"))->getController()->getValue().getString()));
1632 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_mass_max"))->getController()->getValue().getString()) -
1633 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_mass_min"))->getController()->getValue().getString())
1637 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_min_x"))->getController()->getValue().getString()),
1638 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_min_y"))->getController()->getValue().getString()),
1639 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_min_z"))->getController()->getValue().getString())
1643 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_max_x"))->getController()->getValue().getString()),
1644 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_max_y"))->getController()->getValue().getString()),
1645 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_circle_velocity_max_z"))->getController()->getValue().getString())
1647 cpse->setVelocity(velocityMin);
1648 cpse->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1650 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY) {
1651 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): cpepv");
1652 auto cpse = particleSystem->getCircleParticleEmitterPlaneVelocity();
1655 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_location_x"))->getController()->getValue().getString()),
1656 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_location_y"))->getController()->getValue().getString()),
1657 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_location_z"))->getController()->getValue().getString())
1662 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_Z, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_rotation_z"))->getController()->getValue().getString()));
1663 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_Y, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_rotation_y"))->getController()->getValue().getString()));
1664 transformations.
addRotation(OrientedBoundingBox::AABB_AXIS_X, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_rotation_x"))->getController()->getValue().getString()));
1665 transformations.
update();
1670 cpse->setAxis0(axis0);
1671 cpse->setAxis1(axis1);
1673 cpse->setRadius(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_radius"))->getController()->getValue().getString()));
1674 cpse->setCount(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_count"))->getController()->getValue().getString()));
1675 cpse->setLifeTime(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_lifetime_min"))->getController()->getValue().getString()));
1676 cpse->setLifeTimeRnd(
1677 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_lifetime_max"))->getController()->getValue().getString()) -
1678 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_lifetime_min"))->getController()->getValue().getString())
1680 cpse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_mass_min"))->getController()->getValue().getString()));
1682 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_mass_max"))->getController()->getValue().getString()) -
1683 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_mass_min"))->getController()->getValue().getString())
1685 cpse->setVelocity(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_velocity_min"))->getController()->getValue().getString()));
1686 cpse->setVelocityRnd(
1687 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_velocity_max"))->getController()->getValue().getString()) -
1688 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_radial_velocity_min"))->getController()->getValue().getString())
1691 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
1692 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): spe");
1693 auto spse = particleSystem->getSphereParticleEmitter();
1696 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_location_x"))->getController()->getValue().getString()),
1697 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_location_y"))->getController()->getValue().getString()),
1698 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_location_z"))->getController()->getValue().getString())
1701 spse->setRadius(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_radius"))->getController()->getValue().getString()));
1702 spse->setCount(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_count"))->getController()->getValue().getString()));
1703 spse->setLifeTime(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_lifetime_min"))->getController()->getValue().getString()));
1704 spse->setLifeTimeRnd(
1705 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_lifetime_max"))->getController()->getValue().getString()) -
1706 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_lifetime_min"))->getController()->getValue().getString())
1708 spse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_mass_min"))->getController()->getValue().getString()));
1710 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_mass_max"))->getController()->getValue().getString()) -
1711 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_mass_min"))->getController()->getValue().getString())
1715 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_min_x"))->getController()->getValue().getString()),
1716 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_min_y"))->getController()->getValue().getString()),
1717 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_min_z"))->getController()->getValue().getString())
1721 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_max_x"))->getController()->getValue().getString()),
1722 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_max_y"))->getController()->getValue().getString()),
1723 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_sphere_velocity_max_z"))->getController()->getValue().getString())
1725 spse->setVelocity(velocityMin);
1726 spse->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1728 Console::println(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): unknown emitter");
1731 Console::println(
string(
"ParticleSystemEditorTabController::applyParticleSystemDetails(): An error occurred: ") + exception.what());;
1740 if (StringTools::startsWith(outlinerNode,
"particlesystems.") ==
true) {
1741 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"particlesystems.").size(), outlinerNode.size()));
1755 Console::println(
string(
"ParticleSystemEditorTabController::updatePointParticleSystemEmitter(): An error occurred: ") + exception.what());;
1765 rotationMatrix.
setAxes(axis0, axis1, axis2);
1769 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().
set(
"box");
1780 Console::println(
string(
"ParticleSystemEditorTabController::updateBoundingBoxParticleSystemEmitter(): An error occurred: ") + exception.what());;
1790 rotationMatrix.
setAxes(axis0, Vector3::computeCrossProduct(axis0, axis1), axis1);
1794 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().
set(
"circle");
1803 Console::println(
string(
"ParticleSystemEditorTabController::updateCircleParticleSystemEmitter(): An error occurred: ") + exception.what());;
1813 rotationMatrix.
setAxes(axis0, Vector3::computeCrossProduct(axis0, axis1), axis1);
1817 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().
set(
"radial");
1826 Console::println(
string(
"ParticleSystemEditorTabController::updateRadialParticleSystemEmitter(): An error occurred: ") + exception.what());;
1835 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"particleemitter_type_details"))->getActiveConditions().set(
"sphere");
1841 Console::println(
string(
"ParticleSystemEditorTabController::updateSphereParticleSystemEmitter(): An error occurred: ") + exception.what());;
Oriented bounding box physics primitive.
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 system definition.
Prototype object particle system definition.
Prototype point particle emitter definition.
Prototype point particle system definition.
Prototype sphere particle emitter definition.
Prototype particle system type enum.
Prototype particle system definition.
PrototypeParticleSystem * addParticleSystem()
Add particle system.
const string & getFileName()
PrototypeParticleSystem * getParticleSystemAt(int idx)
Get particle system at given index.
virtual const MutableString & getValue()=0
GUINodeController * getController()
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 getAxes(Vector3 &xAxis, Vector3 &yAxis, Vector3 &zAxis) const
Get coordinate system axes.
Vector3 computeEulerAngles() const
Compute Euler angles (rotation around x, y, z axes)
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 & setAxes(const Vector3 &xAxis, const Vector3 &yAxis, const Vector3 &zAxis)
Set coordinate system axes.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Particle system editor tab controller.
array< string, 16 > applyRPENodes
array< string, 6 > applyOPSNodes
array< string, 3 > applyBaseNodes
void updateInfoText(const MutableString &text)
Update info text line.
void dispose() override
Dispose.
void applyParticleSystemDetails(int particleSystemIdx)
Apply particle system details.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
array< string, 5 > applyFPSNodes
array< string, 14 > applyPPENodes
BasePropertiesSubController * basePropertiesSubController
array< string, 24 > applyBBPENodes
GUIScreenNode * getScreenNode() override
void updateSphereParticleSystemEmitter(const Vector3 ¢er, float radius)
Update sphere particle system emitter.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onUnfocus(GUIElementNode *node) override
On unfocus.
void onValueChanged(GUIElementNode *node) override
On value changed.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
GUIScreenNode * screenNode
void save() override
Save.
void saveAs() override
Save.
void onFocus(GUIElementNode *node) override
On focus.
void updateCircleParticleSystemEmitter(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update circle particle system emitter.
PrototypePhysicsSubController * prototypePhysicsSubController
void updateRadialParticleSystemEmitter(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update radial particle system emitter.
array< string, 15 > applySPENodes
virtual ~ParticleSystemEditorTabController()
Destructor.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void setParticleSystemDetails(int particleSystemIdx)
Set particle system details.
void initialize(GUIScreenNode *screenNode) override
Init.
array< string, 18 > applyCPENodes
PrototypeSoundsSubController * prototypeSoundsSubController
void updatePointParticleSystemEmitter(const Vector3 &position)
Update point particle system emitter.
PrototypeDisplaySubController * prototypeDisplaySubController
array< string, 6 > applyPPSNodes
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.
ParticleSystemEditorTabView * view
ParticleSystemEditorTabView * getView()
Get view.
Particle system editor tab view.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
const string & getTabId() override
void setParticleSystemIndex(int idx, bool changeOutlinerSelection=true)
Set particle system index, the particle system to edit.
Prototype * getPrototype()
void initParticleSystem()
Init particle system.
EditorView * getEditorView()
void uninitParticleSystem()
Uninit particle system.
const string & getString() const
std::exception Exception
Exception base class.