TDME2 1.9.121
ParticleSystemEditorTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
21#include <tdme/engine/Engine.h>
32#include <tdme/gui/GUI.h>
33#include <tdme/gui/GUIParser.h>
34#include <tdme/math/Math.h>
35#include <tdme/math/Matrix4x4.h>
36#include <tdme/math/Vector3.h>
59
60using std::string;
61
63
114
115ParticleSystemEditorTabController::ParticleSystemEditorTabController(ParticleSystemEditorTabView* view)
116{
117 this->view = view;
118 this->popUps = view->getPopUps();
123}
124
130}
131
133 return view;
134}
135
137{
138 return screenNode;
139}
140
142{
143 this->screenNode = screenNode;
149}
150
152{
153}
154
156{
157 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
158 try {
159 if (fileName.empty() == true) throw ExceptionBase("Could not save file. No filename known");
160 view->saveFile(
161 Tools::getPathName(fileName),
162 Tools::getFileName(fileName)
163 );
164 } catch (Exception& exception) {
165 showErrorPopUp("Warning", (string(exception.what())));
166 }
167}
168
170{
171 class OnParticleSave: public virtual Action
172 {
173 public:
174 void performAction() override {
175 try {
176 particleSystemEditorTabController->view->saveFile(
177 particleSystemEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
178 particleSystemEditorTabController->popUps->getFileDialogScreenController()->getFileName()
179 );
180 } catch (Exception& exception) {
181 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
182 }
183 particleSystemEditorTabController->popUps->getFileDialogScreenController()->close();
184 }
185 OnParticleSave(ParticleSystemEditorTabController* particleSystemEditorTabController): particleSystemEditorTabController(particleSystemEditorTabController) {
186 }
187 private:
188 ParticleSystemEditorTabController* particleSystemEditorTabController;
189 };
190
191 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
193 fileName.empty() == false?Tools::getPathName(fileName):string(),
194 "Save to: ",
195 {{ "tparticle" }},
196 Tools::getFileName(fileName),
197 false,
198 new OnParticleSave(this)
199 );
200}
201
203 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById(view->getTabId() + "_tab_text_info"))->setText(text);
204}
205
206void ParticleSystemEditorTabController::showErrorPopUp(const string& caption, const string& message)
207{
208 popUps->getInfoDialogScreenController()->show(caption, message);
209}
210
212{
213 Console::println("ParticleSystemEditorTabController::onValueChanged(): " + node->getId() + ": " + node->getController()->getValue().getString());
214
215 //
216 if (node->getId() == "dropdown_outliner_add") {
217 if (node->getController()->getValue().getString() == "particlesystem") {
218 // TODO: move me into a method as I am using it also in context menu, too lazy right now :D
219 auto prototype = view->getPrototype();
220 if (prototype == nullptr) return;
221 auto particleSystem = prototype->addParticleSystem();
222 if (particleSystem == nullptr) return;
223 auto particleSystemIdx = prototype->getParticleSystemsCount() - 1;
224
225 //
226 class ReloadTabOutlinerAction: public Action {
227 private:
228 ParticleSystemEditorTabController* particleSystemEditorTabController;
229 string outlinerNode;
230 public:
231 ReloadTabOutlinerAction(ParticleSystemEditorTabController* particleSystemEditorTabController, const string& outlinerNode): particleSystemEditorTabController(particleSystemEditorTabController), outlinerNode(outlinerNode) {}
232 virtual void performAction() {
233 particleSystemEditorTabController->view->uninitParticleSystem();
234 auto editorView = particleSystemEditorTabController->view->getEditorView();
235 editorView->reloadTabOutliner(outlinerNode);
236 particleSystemEditorTabController->view->initParticleSystem();
237 }
238 };
239 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(this, "particlesystems." + to_string(particleSystemIdx)));
240 }
241 } else
242 if (node->getId() == "selectbox_outliner") {
243 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
244 if (StringTools::startsWith(view->getEditorView()->getScreenController()->getOutlinerSelection(), "particlesystems.") == true) {
245 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode, string("particlesystems.").size(), outlinerNode.size()));
246 view->setParticleSystemIndex(particleSystemIdx, false);
247 } else {
248 view->setParticleSystemIndex(-1, false);
249 }
250 updateDetails(outlinerNode);
251 } else {
252 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
253 if (StringTools::startsWith(outlinerNode, "particlesystems.") == true) {
254 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode, string("particlesystems.").size(), outlinerNode.size()));
255 for (auto& applyOPSNode: applyOPSNodes) {
256 if (node->getId() == applyOPSNode) {
257 applyParticleSystemDetails(particleSystemIdx);
258 break;
259 }
260 }
261 for (auto& applyPPSNode: applyPPSNodes) {
262 if (node->getId() == applyPPSNode) {
263 applyParticleSystemDetails(particleSystemIdx);
264 break;
265 }
266 }
267 for (auto& applyFPSNode: applyFPSNodes) {
268 if (node->getId() == applyFPSNode) {
269 applyParticleSystemDetails(particleSystemIdx);
270 break;
271 }
272 }
273 for (auto& applyBaseNode: applyBaseNodes) {
274 if (node->getId() == applyBaseNode) {
275 applyParticleSystemDetails(particleSystemIdx);
276 break;
277 }
278 }
279 for (auto& applyBBPENode: applyBBPENodes) {
280 if (node->getId() == applyBBPENode) {
281 applyParticleSystemDetails(particleSystemIdx);
282 break;
283 }
284 }
285 for (auto& applyPPENode: applyPPENodes) {
286 if (node->getId() == applyPPENode) {
287 applyParticleSystemDetails(particleSystemIdx);
288 break;
289 }
290 }
291 for (auto& applySPENode: applySPENodes) {
292 if (node->getId() == applySPENode) {
293 applyParticleSystemDetails(particleSystemIdx);
294 break;
295 }
296 }
297 for (auto& applyCPENode: applyCPENodes) {
298 if (node->getId() == applyCPENode) {
299 applyParticleSystemDetails(particleSystemIdx);
300 break;
301 }
302 }
303 for (auto& applyRPENode: applyRPENodes) {
304 if (node->getId() == applyRPENode) {
305 applyParticleSystemDetails(particleSystemIdx);
306 break;
307 }
308 }
309 }
310 }
311 //
316}
317
321}
322
326}
327
329
333 if (node->getId() == "selectbox_outliner") {
334 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
335 if (outlinerNode == "particlesystems") {
336 // clear
338
339 // delete
340 class OnAddParticleSystemAction: public virtual Action
341 {
342 public:
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;
349
350 //
351 class ReloadTabOutlinerAction: public Action {
352 private:
353 ParticleSystemEditorTabController* particleSystemEditorTabController;
354 string outlinerNode;
355 public:
356 ReloadTabOutlinerAction(ParticleSystemEditorTabController* particleSystemEditorTabController, const string& outlinerNode): particleSystemEditorTabController(particleSystemEditorTabController), outlinerNode(outlinerNode) {}
357 virtual void performAction() {
358 particleSystemEditorTabController->view->uninitParticleSystem();
359 auto editorView = particleSystemEditorTabController->view->getEditorView();
360 editorView->reloadTabOutliner(outlinerNode);
361 particleSystemEditorTabController->view->initParticleSystem();
362 }
363 };
364 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(particleSystemEditorTabController, "particlesystems." + to_string(particleSystemIdx)));
365 }
366 OnAddParticleSystemAction(ParticleSystemEditorTabController* particleSystemEditorTabController): particleSystemEditorTabController(particleSystemEditorTabController) {
367 }
368 private:
369 ParticleSystemEditorTabController* particleSystemEditorTabController;
370 };
371 popUps->getContextMenuScreenController()->addMenuItem("Add Particle System", "contextmenu_add", new OnAddParticleSystemAction(this));
372
373 //
374 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
375 } else
376 if (StringTools::startsWith(outlinerNode, "particlesystems.") == true) {
377 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode, string("particlesystems.").size(), outlinerNode.size()));
378
379 // clear
381
382 // delete
383 class OnRemoveParticleSystemAction: public virtual Action
384 {
385 public:
386 void performAction() override {
387 auto prototype = particleSystemEditorTabController->view->getPrototype();
388 if (prototype == nullptr) return;
389 prototype->removeParticleSystemAt(particleSystemIdx);
390
391 //
392 class ReloadTabOutlinerAction: public Action {
393 private:
394 ParticleSystemEditorTabController* particleSystemEditorTabController;
395 string outlinerNode;
396 public:
397 ReloadTabOutlinerAction(ParticleSystemEditorTabController* particleSystemEditorTabController, const string& outlinerNode): particleSystemEditorTabController(particleSystemEditorTabController), outlinerNode(outlinerNode) {}
398 virtual void performAction() {
399 particleSystemEditorTabController->view->uninitParticleSystem();
400 auto editorView = particleSystemEditorTabController->view->getEditorView();
401 editorView->reloadTabOutliner(outlinerNode);
402 particleSystemEditorTabController->view->initParticleSystem();
403 }
404 };
405 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(particleSystemEditorTabController, "particlesystems"));
406 }
407 OnRemoveParticleSystemAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
408 }
409 private:
410 ParticleSystemEditorTabController* particleSystemEditorTabController;
411 int particleSystemIdx;
412 };
413 popUps->getContextMenuScreenController()->addMenuItem("Remove Particle System", "contextmenu_remove", new OnRemoveParticleSystemAction(this, particleSystemIdx));
414
415 //
416 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
417 }
418 }
419}
420
422{
423 auto prototype = view->getPrototype();
424 if (prototype == nullptr) return;
425
426 //
428 if (node->getId().compare("particleemitter_box_colorstart_edit") == 0) {
429 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
435 //
436 class OnColorChangeAction: public virtual Action
437 {
438 public:
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()));
446 //
447 try {
448 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_box_colorstart"))->setEffectColorMul(bbpe->getColorStart());
449 } catch (Exception& exception) {
450 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
451 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
452 }
453 particleSystemEditorTabController->view->initParticleSystem();
454 }
455 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
456 }
457 private:
458 ParticleSystemEditorTabController* particleSystemEditorTabController;
459 int particleSystemIdx;
460 };
461 popUps->getColorPickerScreenController()->show(bbpe->getColorStart(), new OnColorChangeAction(this, particleSystemIdx));
462 }
463 }
464 } else
465 if (node->getId().compare("particleemitter_box_colorend_edit") == 0) {
466 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
472 //
473 class OnColorChangeAction: public virtual Action
474 {
475 public:
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()));
483 //
484 try {
485 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_box_colorend"))->setEffectColorMul(bbpe->getColorEnd());
486 } catch (Exception& exception) {
487 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
488 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
489 }
490 particleSystemEditorTabController->view->initParticleSystem();
491 }
492 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
493 }
494 private:
495 ParticleSystemEditorTabController* particleSystemEditorTabController;
496 int particleSystemIdx;
497 };
498 popUps->getColorPickerScreenController()->show(bbpe->getColorEnd(), new OnColorChangeAction(this, particleSystemIdx));
499 }
500 }
501 } else
502 if (node->getId().compare("particleemitter_point_colorstart_edit") == 0) {
503 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
509 //
510 class OnColorChangeAction: public virtual Action
511 {
512 public:
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()));
520 //
521 try {
522 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_point_colorstart"))->setEffectColorMul(ppe->getColorStart());
523 } catch (Exception& exception) {
524 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
525 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
526 }
527 particleSystemEditorTabController->view->initParticleSystem();
528 }
529 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
530 }
531 private:
532 ParticleSystemEditorTabController* particleSystemEditorTabController;
533 int particleSystemIdx;
534 };
535 popUps->getColorPickerScreenController()->show(ppe->getColorStart(), new OnColorChangeAction(this, particleSystemIdx));
536 }
537 }
538 } else
539 if (node->getId().compare("particleemitter_point_colorend_edit") == 0) {
540 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
546 //
547 class OnColorChangeAction: public virtual Action
548 {
549 public:
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()));
557 //
558 try {
559 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_point_colorend"))->setEffectColorMul(ppe->getColorEnd());
560 } catch (Exception& exception) {
561 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
562 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
563 }
564 particleSystemEditorTabController->view->initParticleSystem();
565 }
566 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
567 }
568 private:
569 ParticleSystemEditorTabController* particleSystemEditorTabController;
570 int particleSystemIdx;
571 };
572 popUps->getColorPickerScreenController()->show(ppe->getColorEnd(), new OnColorChangeAction(this, particleSystemIdx));
573 }
574 }
575 } else
576 if (node->getId().compare("particleemitter_sphere_colorstart_edit") == 0) {
577 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
583 //
584 class OnColorChangeAction: public virtual Action
585 {
586 public:
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()));
594 //
595 try {
596 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_sphere_colorstart"))->setEffectColorMul(spe->getColorStart());
597 } catch (Exception& exception) {
598 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
599 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
600 }
601 particleSystemEditorTabController->view->initParticleSystem();
602 }
603 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
604 }
605 private:
606 ParticleSystemEditorTabController* particleSystemEditorTabController;
607 int particleSystemIdx;
608 };
609 popUps->getColorPickerScreenController()->show(spe->getColorStart(), new OnColorChangeAction(this, particleSystemIdx));
610 }
611 }
612 } else
613 if (node->getId().compare("particleemitter_sphere_colorend_edit") == 0) {
614 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
620 //
621 class OnColorChangeAction: public virtual Action
622 {
623 public:
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()));
631 //
632 try {
633 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_sphere_colorend"))->setEffectColorMul(spe->getColorEnd());
634 } catch (Exception& exception) {
635 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
636 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
637 }
638 particleSystemEditorTabController->view->initParticleSystem();
639 }
640 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
641 }
642 private:
643 ParticleSystemEditorTabController* particleSystemEditorTabController;
644 int particleSystemIdx;
645 };
646 popUps->getColorPickerScreenController()->show(spe->getColorEnd(), new OnColorChangeAction(this, particleSystemIdx));
647 }
648 }
649 }
650 if (node->getId().compare("particleemitter_circle_colorstart_edit") == 0) {
651 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
657 //
658 class OnColorChangeAction: public virtual Action
659 {
660 public:
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()));
668 //
669 try {
670 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_circle_colorstart"))->setEffectColorMul(cpe->getColorStart());
671 } catch (Exception& exception) {
672 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
673 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
674 }
675 particleSystemEditorTabController->view->initParticleSystem();
676 }
677 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
678 }
679 private:
680 ParticleSystemEditorTabController* particleSystemEditorTabController;
681 int particleSystemIdx;
682 };
683 popUps->getColorPickerScreenController()->show(cpe->getColorStart(), new OnColorChangeAction(this, particleSystemIdx));
684 }
685 }
686 } else
687 if (node->getId().compare("particleemitter_circle_colorend_edit") == 0) {
688 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
694 //
695 class OnColorChangeAction: public virtual Action
696 {
697 public:
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()));
705 //
706 try {
707 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_circle_colorend"))->setEffectColorMul(cpe->getColorEnd());
708 } catch (Exception& exception) {
709 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
710 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
711 }
712 particleSystemEditorTabController->view->initParticleSystem();
713 }
714 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
715 }
716 private:
717 ParticleSystemEditorTabController* particleSystemEditorTabController;
718 int particleSystemIdx;
719 };
720 popUps->getColorPickerScreenController()->show(cpe->getColorEnd(), new OnColorChangeAction(this, particleSystemIdx));
721 }
722 }
723 } else
724 if (node->getId().compare("particleemitter_radial_colorstart_edit") == 0) {
725 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
731 //
732 class OnColorChangeAction: public virtual Action
733 {
734 public:
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()));
742 //
743 try {
744 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_radial_colorstart"))->setEffectColorMul(rpe->getColorStart());
745 } catch (Exception& exception) {
746 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
747 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
748 }
749 particleSystemEditorTabController->view->initParticleSystem();
750 }
751 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
752 }
753 private:
754 ParticleSystemEditorTabController* particleSystemEditorTabController;
755 int particleSystemIdx;
756 };
757 popUps->getColorPickerScreenController()->show(rpe->getColorStart(), new OnColorChangeAction(this, particleSystemIdx));
758 }
759 }
760 } else
761 if (node->getId().compare("particleemitter_radial_colorend_edit") == 0) {
762 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
768 //
769 class OnColorChangeAction: public virtual Action
770 {
771 public:
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()));
779 //
780 try {
781 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particleemitter_radial_colorend"))->setEffectColorMul(rpe->getColorEnd());
782 } catch (Exception& exception) {
783 Console::println(string("OnColorChangeAction::performAction(): An error occurred: ") + exception.what());;
784 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
785 }
786 particleSystemEditorTabController->view->initParticleSystem();
787 }
788 OnColorChangeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
789 }
790 private:
791 ParticleSystemEditorTabController* particleSystemEditorTabController;
792 int particleSystemIdx;
793 };
794 popUps->getColorPickerScreenController()->show(rpe->getColorEnd(), new OnColorChangeAction(this, particleSystemIdx));
795 }
796 }
797 } else
798 if (node->getId().compare("particletype_point_texture_open") == 0) {
799 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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
806 {
807 public:
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();
814 try {
815 pps->setTextureFileName(
816 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() + "/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName(),
817 pps->getTransparencyTextureFileName()
818 );
819 } catch (Exception& exception) {
820 Console::println(string("OnPointParticleSystemLoadTexture::performAction(): An error occurred: ") + exception.what());;
821 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
822 }
823 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particletype_point_texture"))->setSource(pps->getTextureFileName());
824 particleSystemEditorTabController->view->initParticleSystem();
825 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
826 }
827
828 OnPointParticleSystemLoadTexture(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx)
829 : particleSystemEditorTabController(particleSystemEditorTabController)
830 , particleSystemIdx(particleSystemIdx) {
831 }
832 private:
833 ParticleSystemEditorTabController* particleSystemEditorTabController;
834 int particleSystemIdx;
835 };
836
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()),
842 true,
843 new OnPointParticleSystemLoadTexture(this, particleSystemIdx)
844 );
845 }
846 }
847 } else
848 if (node->getId().compare("particletype_point_texture_remove") == 0) {
849 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
856 try {
857 pps->setTextureFileName(string(), pps->getTransparencyTextureFileName());
858 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("particletype_point_texture"))->setSource(pps->getTextureFileName());
859 } catch (Exception& exception) {
860 Console::println(string("ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
861 showErrorPopUp("Warning", (string(exception.what())));
862 }
864 }
865 }
866 } else
867 if (node->getId().compare("particletype_point_transparency_open") == 0) {
868 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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
875 {
876 public:
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();
883 try {
884 pps->setTextureFileName(
885 pps->getTextureFileName(),
886 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() + "/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
887 );
888 } catch (Exception& exception) {
889 Console::println(string("OnPointParticleSystemLoadTransparencyTexture::performAction(): An error occurred: ") + exception.what());;
890 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
891 }
892 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particletype_point_transparency"))->setSource(pps->getTextureFileName());
893 particleSystemEditorTabController->view->initParticleSystem();
894 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
895 }
896
897 OnPointParticleSystemLoadTransparencyTexture(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx)
898 : particleSystemEditorTabController(particleSystemEditorTabController)
899 , particleSystemIdx(particleSystemIdx) {
900 }
901 private:
902 ParticleSystemEditorTabController* particleSystemEditorTabController;
903 int particleSystemIdx;
904 };
905
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()),
911 true,
912 new OnPointParticleSystemLoadTransparencyTexture(this, particleSystemIdx)
913 );
914 }
915 }
916 } else
917 if (node->getId().compare("particletype_point_transparency_remove") == 0) {
918 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
925 try {
926 pps->setTextureFileName(pps->getTextureFileName(), string());
927 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("particletype_point_transparency"))->setSource(pps->getTransparencyTextureFileName());
928 } catch (Exception& exception) {
929 Console::println(string("ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
930 showErrorPopUp("Warning", (string(exception.what())));
931 }
933 }
934 }
935 } else
936 if (node->getId().compare("particletype_fog_texture_open") == 0) {
937 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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
944 {
945 public:
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();
952 try {
953 fps->setTextureFileName(
954 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() + "/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName(),
955 fps->getTransparencyTextureFileName()
956 );
957 } catch (Exception& exception) {
958 Console::println(string("OnFogParticleSystemLoadTexture::performAction(): An error occurred: ") + exception.what());;
959 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
960 }
961 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particletype_fog_texture"))->setSource(fps->getTextureFileName());
962 particleSystemEditorTabController->view->initParticleSystem();
963 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
964 }
965
966 OnFogParticleSystemLoadTexture(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx)
967 : particleSystemEditorTabController(particleSystemEditorTabController)
968 , particleSystemIdx(particleSystemIdx) {
969 }
970 private:
971 ParticleSystemEditorTabController* particleSystemEditorTabController;
972 int particleSystemIdx;
973 };
974
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()),
980 true,
981 new OnFogParticleSystemLoadTexture(this, particleSystemIdx)
982 );
983 }
984 }
985 } else
986 if (node->getId().compare("particletype_fog_texture_remove") == 0) {
987 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
994 try {
995 fps->setTextureFileName(string(), fps->getTransparencyTextureFileName());
996 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("particletype_fog_texture"))->setSource(fps->getTextureFileName());
997 } catch (Exception& exception) {
998 Console::println(string("ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
999 showErrorPopUp("Warning", (string(exception.what())));
1000 }
1002 }
1003 }
1004 } else
1005 if (node->getId().compare("particletype_fog_transparency_open") == 0) {
1006 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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
1013 {
1014 public:
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();
1021 try {
1022 fps->setTextureFileName(
1023 fps->getTextureFileName(),
1024 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() + "/" + particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1025 );
1026 } catch (Exception& exception) {
1027 Console::println(string("OnFogParticleSystemLoadTransparencyTexture::performAction(): An error occurred: ") + exception.what());;
1028 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
1029 }
1030 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particletype_fog_transparency"))->setSource(fps->getTextureFileName());
1031 particleSystemEditorTabController->view->initParticleSystem();
1032 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1033 }
1034
1035 OnFogParticleSystemLoadTransparencyTexture(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx)
1036 : particleSystemEditorTabController(particleSystemEditorTabController)
1037 , particleSystemIdx(particleSystemIdx) {
1038 }
1039 private:
1040 ParticleSystemEditorTabController* particleSystemEditorTabController;
1041 int particleSystemIdx;
1042 };
1043
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()),
1049 true,
1050 new OnFogParticleSystemLoadTransparencyTexture(this, particleSystemIdx)
1051 );
1052 }
1053 }
1054 } else
1055 if (node->getId().compare("particletype_fog_transparency_remove") == 0) {
1056 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
1063 try {
1064 fps->setTextureFileName(fps->getTextureFileName(), string());
1065 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("particletype_fog_transparency"))->setSource(fps->getTransparencyTextureFileName());
1066 } catch (Exception& exception) {
1067 Console::println(string("ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
1068 showErrorPopUp("Warning", (string(exception.what())));
1069 }
1071 }
1072 }
1073 } else
1074 if (node->getId() == "particletype_object_open") {
1075 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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) {
1081 //
1082 class OnObjectParticleSystemLoadModel: public virtual Action
1083 {
1084 public:
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();
1091 try {
1092 ops->setModelFile(
1093 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
1094 "/" +
1095 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1096 );
1097 required_dynamic_cast<GUIImageNode*>(particleSystemEditorTabController->screenNode->getNodeById("particletype_object"))->setSource(ops->getModelFileName());
1098 } catch (Exception& exception) {
1099 Console::println(string("OnObjectParticleSystemLoadModel::performAction(): An error occurred: ") + exception.what());;
1100 particleSystemEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
1101 }
1102 particleSystemEditorTabController->view->initParticleSystem();
1103 particleSystemEditorTabController->view->getEditorView()->reloadTabOutliner();
1104 particleSystemEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1105 }
1106
1107 OnObjectParticleSystemLoadModel(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx)
1108 : particleSystemEditorTabController(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {
1109 //
1110 }
1111
1112 private:
1113 ParticleSystemEditorTabController* particleSystemEditorTabController;
1114 int particleSystemIdx;
1115 };
1116
1117 //
1119 ops->getModelFileName().empty() == false?Tools::getPathName(ops->getModelFileName()):string(),
1120 "Load object particle system model from: ",
1121 ModelReader::getModelExtensions(),
1122 string(),
1123 true,
1124 new OnObjectParticleSystemLoadModel(this, particleSystemIdx)
1125 );
1126 }
1127 }
1128 } else
1129 if (node->getId() == "particletype_object_remove") {
1130 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
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;
1137 try {
1138 ops->setModelFile(string());
1139 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("particletype_object"))->setSource(ops->getModelFileName());
1140 } catch (Exception& exception) {
1141 Console::println(string("ParticleSystemEditorTabController::onActionPerformed(): An error occurred: ") + exception.what());;
1142 showErrorPopUp("Warning", (string(exception.what())));
1143 }
1145 }
1146 }
1147 }
1148
1149 basePropertiesSubController->onActionPerformed(type, node, prototype);
1150 prototypePhysicsSubController->onActionPerformed(type, node, prototype);
1151 prototypeSoundsSubController->onActionPerformed(type, node, prototype);
1152}
1153
1155 string xml;
1156 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Prototype") + "\" value=\"" + GUIParser::escapeQuotes("prototype") + "\">\n";
1157 auto prototype = view->getPrototype();
1158 if (prototype != nullptr) {
1162 //
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";
1165 } else {
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";
1170 }
1171 xml+= "</selectbox-parent-option>\n";
1172 }
1173 }
1174 xml+= "</selectbox-parent-option>\n";
1176}
1177
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")
1184 );
1185}
1186
1188 auto prototype = view->getPrototype();
1189 if (prototype == nullptr) return;
1190 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1191 if (particleSystem == nullptr) return;
1192
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")
1196 );
1197
1198 //
1199 try {
1200 //
1201 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_particletype"))->getActiveConditions().add("open");
1202
1203 //
1204 if (particleSystem->getType() == PrototypeParticleSystem_Type::NONE) {
1205 } else
1206 if (particleSystem->getType() == PrototypeParticleSystem_Type::OBJECT_PARTICLE_SYSTEM) {
1207 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): ops");
1208 auto ops = particleSystem->getObjectParticleSystem();
1209 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_type"))->getController()->setValue(MutableString(1));
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()))));
1213 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_object_maxcount"))->getController()->setValue(MutableString(ops->getMaxCount()));
1214 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_object_autoemit"))->getController()->setValue(MutableString(ops->isAutoEmit() == true?"1":""));
1215 } else
1216 if (particleSystem->getType() == PrototypeParticleSystem_Type::POINT_PARTICLE_SYSTEM) {
1217 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): pps");
1218 auto pps = particleSystem->getPointParticleSystem();
1219 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_type"))->getController()->setValue(MutableString(2));
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());
1223 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_point_size"))->getController()->setValue(MutableString(pps->getPointSize()));
1224 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_point_maxcount"))->getController()->setValue(MutableString(pps->getMaxPoints()));
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()));
1227 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_point_fps"))->getController()->setValue(MutableString(pps->getTextureSpritesFPS()));
1228 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_point_autoemit"))->getController()->setValue(MutableString(pps->isAutoEmit() == true?"1":""));
1229 } else
1230 if (particleSystem->getType() == PrototypeParticleSystem_Type::FOG_PARTICLE_SYSTEM) {
1231 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): fps");
1232 auto fps = particleSystem->getFogParticleSystem();
1233 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_type"))->getController()->setValue(MutableString(3));
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());
1237 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_fog_size"))->getController()->setValue(MutableString(fps->getPointSize()));
1238 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_fog_maxcount"))->getController()->setValue(MutableString(fps->getMaxPoints()));
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()));
1241 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particletype_fog_fps"))->getController()->setValue(MutableString(fps->getTextureSpritesFPS()));
1242 } else {
1243 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): Unknown particle system type");
1244 }
1245
1246 //
1247 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_particleemitter"))->getActiveConditions().add("open");
1248
1249 //
1250 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER) {
1251 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): ppe");
1252 auto ppse = particleSystem->getPointParticleEmitter();
1253 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(1));
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());
1260 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_point_count"))->getController()->setValue(MutableString(ppse->getCount()));
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())));
1272 } else
1273 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER) {
1274 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): bbpe");
1275 auto bbpe = particleSystem->getBoundingBoxParticleEmitters();
1276
1277 Matrix4x4 rotationMatrix;
1278 rotationMatrix.identity();
1279 rotationMatrix.setAxes(bbpe->getObbAxis0(), bbpe->getObbAxis1(), bbpe->getObbAxis2());
1280 auto rotation = rotationMatrix.computeEulerAngles();
1281
1282 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(2));
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()));
1287 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
1288 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
1289 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_rotation_z"))->getController()->setValue(MutableString(rotation.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());
1295 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_count"))->getController()->setValue(MutableString(bbpe->getCount()));
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()));
1302 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_velocity_max_x"))->getController()->setValue(MutableString(velocityMax.getX()));
1303 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_velocity_max_y"))->getController()->setValue(MutableString(velocityMax.getY()));
1304 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_velocity_max_z"))->getController()->setValue(MutableString(velocityMax.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())));
1307 } else
1308 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER) {
1309 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): cpe");
1310 auto cpse = particleSystem->getCircleParticleEmitter();
1311
1312 Matrix4x4 rotationMatrix;
1313 rotationMatrix.identity();
1314 rotationMatrix.setAxes(cpse->getAxis0(), Vector3::computeCrossProduct(cpse->getAxis0(), cpse->getAxis1()), cpse->getAxis1());
1315 auto rotation = rotationMatrix.computeEulerAngles();
1316
1317 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(3));
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()));
1322 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
1323 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
1324 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_rotation_z"))->getController()->setValue(MutableString(rotation.getZ()));
1325 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_radius"))->getController()->setValue(MutableString(cpse->getRadius()));
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());
1328 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_count"))->getController()->setValue(MutableString(cpse->getCount()));
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())));
1340 } else
1341 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY) {
1342 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): cpepv");
1343 auto rpse = particleSystem->getCircleParticleEmitterPlaneVelocity();
1344
1345 Matrix4x4 rotationMatrix;
1346 rotationMatrix.identity();
1347 rotationMatrix.setAxes(rpse->getAxis0(), Vector3::computeCrossProduct(rpse->getAxis0(), rpse->getAxis1()), rpse->getAxis1());
1348 auto rotation = rotationMatrix.computeEulerAngles();
1349
1350 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(4));
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()));
1355 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
1356 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
1357 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_rotation_z"))->getController()->setValue(MutableString(rotation.getZ()));
1358 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_radius"))->getController()->setValue(MutableString(rpse->getRadius()));
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());
1361 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_count"))->getController()->setValue(MutableString(rpse->getCount()));
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())));
1368 } else
1369 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
1370 Console::println("ParticleSystemEditorTabController::setParticleSystemDetails(): spe");
1371 auto spse = particleSystem->getSphereParticleEmitter();
1372 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(5));
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()));
1377 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_radius"))->getController()->setValue(MutableString(spse->getRadius()));
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());
1380 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_count"))->getController()->setValue(MutableString(spse->getCount()));
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())));
1392 } else {
1393 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): unknown emitter");
1394 }
1395 } catch (Exception& exception) {
1396 Console::println(string("ParticleSystemEditorTabController::setParticleSystemDetails(): An error occurred: ") + exception.what());;
1397 showErrorPopUp("Warning", (string(exception.what())));
1398 }
1399}
1400
1402
1403 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): " + to_string(particleSystemIdx));
1404
1405 auto prototype = view->getPrototype();
1406 if (prototype == nullptr) return;
1407 auto particleSystem = prototype->getParticleSystemAt(particleSystemIdx);
1408 if (particleSystem == nullptr) return;
1409
1410 //
1411 try {
1412 {
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;
1419 default:
1420 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails: unknown particle system type");
1421 break;
1422 }
1423
1424 // check if to change particle system emitter
1425 if (particleSystem->getType() != newParticleSystemType) {
1427 particleSystem->setType(newParticleSystemType);
1428 //
1429 class ChangeTypeAction: public Action {
1430 private:
1432 int particleSystemIdx;
1433 public:
1434 ChangeTypeAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): editorView(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {}
1435 virtual void performAction() {
1436 editorView->setParticleSystemDetails(particleSystemIdx);
1437 editorView->view->initParticleSystem();
1438 }
1439 };
1440 Engine::getInstance()->enqueueAction(new ChangeTypeAction(this, particleSystemIdx));
1441 return;
1442 }
1443 }
1444
1445 //
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");
1452 } else
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");
1461 } else
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()));
1469 }
1470
1471 //
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;
1480 default:
1481 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails: unknown emitter");
1482 break;
1483 }
1484
1485 // check if to change particle system emitter
1486 if (particleSystem->getEmitter() != newEmitterType) {
1488 particleSystem->setEmitter(newEmitterType);
1489 //
1490 class ChangeEmitterAction: public Action {
1491 private:
1493 int particleSystemIdx;
1494 public:
1495 ChangeEmitterAction(ParticleSystemEditorTabController* particleSystemEditorTabController, int particleSystemIdx): editorView(particleSystemEditorTabController), particleSystemIdx(particleSystemIdx) {}
1496 virtual void performAction() {
1497 editorView->setParticleSystemDetails(particleSystemIdx);
1498 editorView->view->initParticleSystem();
1499 }
1500 };
1501 Engine::getInstance()->enqueueAction(new ChangeEmitterAction(this, particleSystemIdx));
1502 return;
1503 }
1504
1505 //
1506 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_particletype"))->getActiveConditions().add("open");
1507
1508 //
1509 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER) {
1510 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): ppe");
1511 auto ppse = particleSystem->getPointParticleEmitter();
1512 ppse->setPosition(
1513 Vector3(
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())
1517 )
1518 );
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())
1524 );
1525 ppse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_point_mass_min"))->getController()->getValue().getString()));
1526 ppse->setMassRnd(
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())
1529 );
1530 auto velocityMin =
1531 Vector3(
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())
1535 );
1536 auto velocityMax =
1537 Vector3(
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())
1541 );
1542 ppse->setVelocity(velocityMin);
1543 ppse->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1544 } else
1545 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER) {
1546 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): bbpe");
1547 auto bbpe = particleSystem->getBoundingBoxParticleEmitters();
1548 bbpe->setObbCenter(
1549 Vector3(
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())
1553 )
1554 );
1555 Transformations transformations;
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();
1560 Vector3 obbAxis0;
1561 Vector3 obbAxis1;
1562 Vector3 obbAxis2;
1563 transformations.getTransformationsMatrix().getAxes(obbAxis0, obbAxis1, obbAxis2);
1564 bbpe->setObbAxis0(obbAxis0);
1565 bbpe->setObbAxis1(obbAxis1);
1566 bbpe->setObbAxis2(obbAxis2);
1567 bbpe->setObbHalfextension(
1568 Vector3(
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())
1572 )
1573 );
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())
1579 );
1580 bbpe->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_mass_min"))->getController()->getValue().getString()));
1581 bbpe->setMassRnd(
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())
1584 );
1585 auto velocityMin =
1586 Vector3(
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())
1590 );
1591 auto velocityMax =
1592 Vector3(
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())
1596 );
1597 bbpe->setVelocity(velocityMin);
1598 bbpe->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1599 } else
1600 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER) {
1601 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): cpe");
1602 auto cpse = particleSystem->getCircleParticleEmitter();
1603 cpse->setCenter(
1604 Vector3(
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())
1608 )
1609 );
1610
1611 Transformations transformations;
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();
1616 Vector3 unusedAxis;
1617 Vector3 axis0;
1618 Vector3 axis1;
1619 transformations.getTransformationsMatrix().getAxes(axis0, unusedAxis, axis1);
1620 cpse->setAxis0(axis0);
1621 cpse->setAxis1(axis1);
1622
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())
1629 );
1630 cpse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_mass_min"))->getController()->getValue().getString()));
1631 cpse->setMassRnd(
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())
1634 );
1635 auto velocityMin =
1636 Vector3(
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())
1640 );
1641 auto velocityMax =
1642 Vector3(
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())
1646 );
1647 cpse->setVelocity(velocityMin);
1648 cpse->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1649 } else
1650 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY) {
1651 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): cpepv");
1652 auto cpse = particleSystem->getCircleParticleEmitterPlaneVelocity();
1653 cpse->setCenter(
1654 Vector3(
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())
1658 )
1659 );
1660
1661 Transformations transformations;
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();
1666 Vector3 unusedAxis;
1667 Vector3 axis0;
1668 Vector3 axis1;
1669 transformations.getTransformationsMatrix().getAxes(axis0, unusedAxis, axis1);
1670 cpse->setAxis0(axis0);
1671 cpse->setAxis1(axis1);
1672
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())
1679 );
1680 cpse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_mass_min"))->getController()->getValue().getString()));
1681 cpse->setMassRnd(
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())
1684 );
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())
1689 );
1690 } else
1691 if (particleSystem->getEmitter() == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
1692 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): spe");
1693 auto spse = particleSystem->getSphereParticleEmitter();
1694 spse->setCenter(
1695 Vector3(
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())
1699 )
1700 );
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())
1707 );
1708 spse->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_mass_min"))->getController()->getValue().getString()));
1709 spse->setMassRnd(
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())
1712 );
1713 auto velocityMin =
1714 Vector3(
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())
1718 );
1719 auto velocityMax =
1720 Vector3(
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())
1724 );
1725 spse->setVelocity(velocityMin);
1726 spse->setVelocityRnd(velocityMax.clone().sub(velocityMin));
1727 } else {
1728 Console::println("ParticleSystemEditorTabController::applyParticleSystemDetails(): unknown emitter");
1729 }
1730 } catch (Exception& exception) {
1731 Console::println(string("ParticleSystemEditorTabController::applyParticleSystemDetails(): An error occurred: ") + exception.what());;
1732 showErrorPopUp("Warning", (string(exception.what())));
1733 }
1734 //
1736}
1737
1739 view->getEditorView()->setDetailsContent(string());
1740 if (StringTools::startsWith(outlinerNode, "particlesystems.") == true) {
1741 auto particleSystemIdx = Integer::parse(StringTools::substring(outlinerNode, string("particlesystems.").size(), outlinerNode.size()));
1742 setParticleSystemDetails(particleSystemIdx);
1743 }
1745 prototypeSoundsSubController->updateDetails(view->getPrototype(), nullptr, outlinerNode);
1746}
1747
1749 //
1750 try {
1751 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_point_location_x"))->getController()->setValue(MutableString(position.getX()));
1752 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_point_location_y"))->getController()->setValue(MutableString(position.getY()));
1753 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_point_location_z"))->getController()->setValue(MutableString(position.getZ()));
1754 } catch (Exception& exception) {
1755 Console::println(string("ParticleSystemEditorTabController::updatePointParticleSystemEmitter(): An error occurred: ") + exception.what());;
1756 showErrorPopUp("Warning", (string(exception.what())));
1757 }
1758}
1759
1760void ParticleSystemEditorTabController::updateBoundingBoxParticleSystemEmitter(const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension) {
1761 //
1762 try {
1763 Matrix4x4 rotationMatrix;
1764 rotationMatrix.identity();
1765 rotationMatrix.setAxes(axis0, axis1, axis2);
1766 auto rotation = rotationMatrix.computeEulerAngles();
1767
1768 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(2));
1769 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type_details"))->getActiveConditions().set("box");
1770 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_location_x"))->getController()->setValue(MutableString(center.getX()));
1771 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_location_y"))->getController()->setValue(MutableString(center.getY()));
1772 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_location_z"))->getController()->setValue(MutableString(center.getZ()));
1773 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
1774 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
1775 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_rotation_z"))->getController()->setValue(MutableString(rotation.getZ()));
1776 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_halfsize_x"))->getController()->setValue(MutableString(halfExtension.getX()));
1777 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_halfsize_y"))->getController()->setValue(MutableString(halfExtension.getY()));
1778 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_box_halfsize_z"))->getController()->setValue(MutableString(halfExtension.getZ()));
1779 } catch (Exception& exception) {
1780 Console::println(string("ParticleSystemEditorTabController::updateBoundingBoxParticleSystemEmitter(): An error occurred: ") + exception.what());;
1781 showErrorPopUp("Warning", (string(exception.what())));
1782 }
1783}
1784
1785void ParticleSystemEditorTabController::updateCircleParticleSystemEmitter(const Vector3& center, const Vector3& axis0, const Vector3& axis1, float radius) {
1786 //
1787 try {
1788 Matrix4x4 rotationMatrix;
1789 rotationMatrix.identity();
1790 rotationMatrix.setAxes(axis0, Vector3::computeCrossProduct(axis0, axis1), axis1);
1791 auto rotation = rotationMatrix.computeEulerAngles();
1792
1793 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(3));
1794 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type_details"))->getActiveConditions().set("circle");
1795 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_location_x"))->getController()->setValue(MutableString(center.getX()));
1796 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_location_y"))->getController()->setValue(MutableString(center.getY()));
1797 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_location_z"))->getController()->setValue(MutableString(center.getZ()));
1798 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
1799 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
1800 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_rotation_z"))->getController()->setValue(MutableString(rotation.getZ()));
1801 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_circle_radius"))->getController()->setValue(MutableString(radius));
1802 } catch (Exception& exception) {
1803 Console::println(string("ParticleSystemEditorTabController::updateCircleParticleSystemEmitter(): An error occurred: ") + exception.what());;
1804 showErrorPopUp("Warning", (string(exception.what())));
1805 }
1806}
1807
1808void ParticleSystemEditorTabController::updateRadialParticleSystemEmitter(const Vector3& center, const Vector3& axis0, const Vector3& axis1, float radius) {
1809 //
1810 try {
1811 Matrix4x4 rotationMatrix;
1812 rotationMatrix.identity();
1813 rotationMatrix.setAxes(axis0, Vector3::computeCrossProduct(axis0, axis1), axis1);
1814 auto rotation = rotationMatrix.computeEulerAngles();
1815
1816 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(4));
1817 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type_details"))->getActiveConditions().set("radial");
1818 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_location_x"))->getController()->setValue(MutableString(center.getX()));
1819 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_location_y"))->getController()->setValue(MutableString(center.getY()));
1820 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_location_z"))->getController()->setValue(MutableString(center.getZ()));
1821 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
1822 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
1823 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_rotation_z"))->getController()->setValue(MutableString(rotation.getZ()));
1824 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_radial_radius"))->getController()->setValue(MutableString(radius));
1825 } catch (Exception& exception) {
1826 Console::println(string("ParticleSystemEditorTabController::updateRadialParticleSystemEmitter(): An error occurred: ") + exception.what());;
1827 showErrorPopUp("Warning", (string(exception.what())));
1828 }
1829}
1830
1832 //
1833 try {
1834 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type"))->getController()->setValue(MutableString(5));
1835 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_type_details"))->getActiveConditions().set("sphere");
1836 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_location_x"))->getController()->setValue(MutableString(center.getX()));
1837 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_location_y"))->getController()->setValue(MutableString(center.getY()));
1838 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_location_z"))->getController()->setValue(MutableString(center.getZ()));
1839 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("particleemitter_sphere_radius"))->getController()->setValue(MutableString(radius));
1840 } catch (Exception& exception) {
1841 Console::println(string("ParticleSystemEditorTabController::updateSphereParticleSystemEmitter(): An error occurred: ") + exception.what());;
1842 showErrorPopUp("Warning", (string(exception.what())));
1843 }
1844}
Engine main class.
Definition: Engine.h:122
Rotation representation.
Definition: Rotation.h:18
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
virtual void update()
Computes transformation matrix.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
Color 4 definition.
Definition: Color4.h:20
Oriented bounding box physics primitive.
Prototype definition.
Definition: Prototype.h:49
PrototypeParticleSystem * addParticleSystem()
Add particle system.
Definition: Prototype.h:303
PrototypeParticleSystem * getParticleSystemAt(int idx)
Get particle system at given index.
Definition: Prototype.h:327
GUI parser.
Definition: GUIParser.h:39
virtual const MutableString & getValue()=0
const string & getId()
Definition: GUINode.h:329
GUINodeController * getController()
Definition: GUINode.h:586
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
void getAxes(Vector3 &xAxis, Vector3 &yAxis, Vector3 &zAxis) const
Get coordinate system axes.
Definition: Matrix4x4.h:227
Vector3 computeEulerAngles() const
Compute Euler angles (rotation around x, y, z axes)
Definition: Matrix4x4.h:661
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
Matrix4x4 & setAxes(const Vector3 &xAxis, const Vector3 &yAxis, const Vector3 &zAxis)
Set coordinate system axes.
Definition: Matrix4x4.h:240
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
void show(const Color4Base &color, Action *onColorChangeAction)
Shows the pop up.
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
void show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void show(const string &caption, const string &message)
Shows the pop up.
Pop ups controller accessor class.
Definition: PopUps.h:19
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
ContextMenuScreenController * getContextMenuScreenController()
Definition: PopUps.h:70
ColorPickerScreenController * getColorPickerScreenController()
Definition: PopUps.h:63
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void applyParticleSystemDetails(int particleSystemIdx)
Apply particle system details.
void updateSphereParticleSystemEmitter(const Vector3 &center, float radius)
Update sphere particle system emitter.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void updateCircleParticleSystemEmitter(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update circle particle system emitter.
void updateRadialParticleSystemEmitter(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, float radius)
Update radial particle system emitter.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void setParticleSystemDetails(int particleSystemIdx)
Set particle system details.
void updatePointParticleSystemEmitter(const Vector3 &position)
Update point particle system emitter.
void updateBoundingBoxParticleSystemEmitter(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Update bounding box particle system emitter.
void onValueChanged(GUIElementNode *node, BaseProperties *baseProperties)
On value changed.
void onFocus(GUIElementNode *node, BaseProperties *baseProperties)
On focus.
void onUnfocus(GUIElementNode *node, BaseProperties *baseProperties)
On unfocus.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, BaseProperties *baseProperties)
On action performed.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, BaseProperties *baseProperties)
On context menu requested.
void createBasePropertiesXML(BaseProperties *baseProperties, string &xml)
Create base properties XML for outliner.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void createOutlinerPhysicsXML(Prototype *prototype, string &xml)
Create physics XML for outliner.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void createOutlinerSoundsXML(Prototype *prototype, string &xml)
Create sounds XML for outliner.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void updateDetails(Prototype *prototype, Model *model, const string &outlinerNode)
Update details.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void onValueChanged(GUIElementNode *node, Prototype *prototype, Model *model)
On value changed.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
void setParticleSystemIndex(int idx, bool changeOutlinerSelection=true)
Set particle system index, the particle system to edit.
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
EditorScreenController * getScreenController()
Definition: EditorView.h:57
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
const string & getString() const
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Action Interface.
Definition: Action.h:12