TDME2 1.9.121
PrototypeSoundsSubController.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <string>
5
6#include <tdme/tdme.h>
11#include <tdme/engine/Engine.h>
16#include <tdme/gui/GUI.h>
17#include <tdme/gui/GUIParser.h>
35
36using std::array;
37using std::string;
38using std::to_string;
39
41
68
69PrototypeSoundsSubController::PrototypeSoundsSubController(EditorView* editorView, PlayableSoundView* playableSoundView)
70{
71 this->editorView = editorView;
72 this->playableSoundView = playableSoundView;
73 this->view = new PrototypeSoundsSubView(this, editorView->getPopUps());
74 this->popUps = editorView->getPopUps();
75}
76
78 delete view;
79}
80
82{
83 return view;
84}
85
87 return screenNode;
88}
89
91{
92 this->screenNode = screenNode;
93}
94
95void PrototypeSoundsSubController::onSoundClear(Prototype* prototype, const string& soundId) {
97 prototype->removeSound(soundId);
99}
100
101void PrototypeSoundsSubController::onSoundLoad(Prototype* prototype, const string& soundId) {
102 class LoadSoundAction: public virtual Action
103 {
104 public:
105 LoadSoundAction(PrototypeSoundsSubController* prototypeSoundsSubController, Prototype* prototype, const string& soundId): prototypeSoundsSubController(prototypeSoundsSubController), prototype(prototype), soundId(soundId) {
106 }
107 void performAction() override {
108 auto sound = prototype->getSound(soundId);
109 if (sound == nullptr) return;
110 sound->setFileName(
111 prototypeSoundsSubController->getView()->getPopUps()->getFileDialogScreenController()->getPathName() +
112 "/" +
113 prototypeSoundsSubController->getView()->getPopUps()->getFileDialogScreenController()->getFileName()
114 );
115 prototypeSoundsSubController->playableSoundView->playSound(sound->getId());
116 prototypeSoundsSubController->getView()->getPopUps()->getFileDialogScreenController()->close();
117 }
118 private:
119 PrototypeSoundsSubController* prototypeSoundsSubController;
120 Prototype* prototype;
121 string soundId;
122 };
123
124 auto sound = prototype->getSound(soundId);
125 if (sound == nullptr) return;
126 auto fileName = sound->getFileName();
127
129 fileName.empty() == false?Tools::getPathName(fileName):string(),
130 "Load audio from: ",
131 {{"ogg"}},
132 fileName.empty() == false?Tools::getFileName(fileName):"",
133 true,
134 new LoadSoundAction(this, prototype, soundId)
135 );
136}
137
138void PrototypeSoundsSubController::showErrorPopUp(const string& caption, const string& message)
139{
140 view->getPopUps()->getInfoDialogScreenController()->show(caption, message);
141}
142
144 if (prototype->getSounds().empty() == false) {
145 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Sounds") + "\" value=\"" + GUIParser::escapeQuotes("sounds") + "\">\n";
146 for (auto sound: prototype->getSounds()) {
147 auto soundId = sound->getId();
148 xml+= " <selectbox-option image=\"resources/engine/images/sound.png\" text=\"" + GUIParser::escapeQuotes(soundId) + "\" id=\"" + GUIParser::escapeQuotes("sounds." + soundId) + "\" value=\"" + GUIParser::escapeQuotes("sounds." + soundId) + "\" />\n";
149 }
150 xml+= "</selectbox-parent-option>\n";
151 }
152}
153
154void PrototypeSoundsSubController::updateDetails(Prototype* prototype, Model* model, const string& outlinerNode) {
155 Console::println("PrototypeSoundsSubController::updateDetails(): " + outlinerNode);
156
157 if (StringTools::startsWith(outlinerNode, "sounds.") == false) return;
158
159 auto soundId = StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size());
160 auto sound = prototype->getSound(soundId);
161 if (sound == nullptr) return;
162
164 "<template id=\"details_sound\" src=\"resources/engine/gui/template_details_sound.xml\" />\n"
165 );
166
167 //
168 if (model != nullptr) {
169 auto idx = 0;
170 string animationsDropDownXML;
171 animationsDropDownXML =
172 animationsDropDownXML + "<dropdown-option text=\"" +
173 GUIParser::escapeQuotes("<None>") +
174 "\" value=\"" +
175 GUIParser::escapeQuotes("") +
176 "\" " +
177 (idx == 0 ? "selected=\"true\" " : "") +
178 " />\n";
179 for (auto it: model->getAnimationSetups()) {
180 auto animationSetupId = it.second->getId();
181 animationsDropDownXML =
182 animationsDropDownXML + "<dropdown-option text=\"" +
183 GUIParser::escapeQuotes(animationSetupId) +
184 "\" value=\"" +
185 GUIParser::escapeQuotes(animationSetupId) +
186 "\" " +
187 (idx == 0 ? "selected=\"true\" " : "") +
188 " />\n";
189 idx++;
190 }
191 try {
192 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("sound_animation_scrollarea"))->replaceSubNodes(animationsDropDownXML, true);
193 } catch (Exception& exception) {
194 Console::print(string("PrototypeSoundsSubController::setSoundDetails(): An error occurred: "));
195 Console::println(string(exception.what()));
196 }
197 }
198
199 try {
200 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_sound"))->getActiveConditions().add("open");
201 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_animation"))->getController()->setValue(MutableString(sound->getAnimation()));
202 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_gain"))->getController()->setValue(MutableString(sound->getGain()));
203 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_pitch"))->getController()->setValue(MutableString(sound->getPitch()));
204 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_offset"))->getController()->setValue(MutableString(sound->getOffset()));
205 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_looping"))->getController()->setValue(MutableString(sound->isLooping() == true?"1":""));
206 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_ambient"))->getController()->setValue(MutableString(sound->isFixed() == true?"1":""));
207
208 } catch (Exception& exception) {
209 Console::println(string("PrototypeSoundsSubController::setSoundDetails(): An error occurred: ") + exception.what());;
210 showErrorPopUp("Warning", (string(exception.what())));
211 }
212}
213
214void PrototypeSoundsSubController::applySoundDetails(Prototype* prototype, const string& soundId) {
215 try {
216 auto sound = prototype->getSound(soundId);
217 sound->setAnimation(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_animation"))->getController()->getValue().getString());
218 sound->setGain(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_gain"))->getController()->getValue().getString()));
219 sound->setPitch(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_pitch"))->getController()->getValue().getString()));
220 sound->setOffset(Integer::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_offset"))->getController()->getValue().getString()));
221 sound->setLooping(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_looping"))->getController()->getValue().getString() == "1");
222 sound->setFixed(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_ambient"))->getController()->getValue().getString() == "1");
223 playableSoundView->playSound(sound->getId());
224 } catch (Exception& exception) {
225 Console::println(string("PrototypeSoundsSubController::updateSoundDetails(): An error occurred: ") + exception.what());;
226 showErrorPopUp("Warning", (string(exception.what())));
227 }
228}
229
230const string PrototypeSoundsSubController::applySoundDetailsRename(Prototype* prototype, const string& soundId) {
231 string newSoundId;
232 try {
233 auto sound = prototype->getSound(soundId);
234 if (sound == nullptr) return newSoundId;
235 newSoundId = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_key"))->getController()->getValue().getString();
236 if (sound->getId() != newSoundId) {
237 if (prototype->renameSound(sound->getId(), newSoundId) == false) {
238 throw ExceptionBase("Audio key could not be renamed");
239 }
240 }
241 sound->setId(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("sound_key"))->getController()->getValue().getString());
242 playableSoundView->playSound(sound->getId());
243 } catch (Exception& exception) {
244 Console::println(string("PrototypeSoundsSubController::updateSoundDetailsRename(): An error occurred: ") + exception.what());;
245 showErrorPopUp("Warning", (string(exception.what())));
246 }
247 return newSoundId;
248}
249
251 auto soundCreate = false;
252 auto soundName = string() + "New sound";
253 if (prototype->getSound(soundName) == nullptr) {
254 soundCreate = true;
255 } else {
256 //
257 for (auto i = 1; i < 10001; i++) {
258 soundName = string() + "New sound " + to_string(i);
259 if (prototype->getSound(soundName) == nullptr) {
260 soundCreate = true;
261 //
262 break;
263 }
264 }
265 }
266 try {
267 if (soundCreate == false) {
268 throw ExceptionBase("Could not create sound");
269 }
270 } catch (Exception& exception) {
271 Console::println(string("PrototypeSoundsSubController::createSound(): An error occurred: ") + exception.what());;
272 showErrorPopUp("Warning", (string(exception.what())));
273 }
274
275 if (soundCreate == true) {
276 prototype->addSound(soundName);
277 editorView->reloadTabOutliner(string() + "sounds." + soundName);
279 prototype,
280 soundName
281 );
282 }
283}
284
285void PrototypeSoundsSubController::startRenameSound(Prototype* prototype, const string& soundName) {
286 auto sound = prototype->getSound(soundName);
287 if (sound == nullptr) return;
288 auto selectBoxOptionParentNode = dynamic_cast<GUIParentNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("sounds." + soundName));
289 if (selectBoxOptionParentNode == nullptr) return;
290 renameSoundName = soundName;
291 selectBoxOptionParentNode->replaceSubNodes(
292 "<template id=\"tdme.sounds.rename_input\" hint=\"Sound name\" text=\"" + GUIParser::escapeQuotes(sound->getId()) + "\"src=\"resources/engine/gui/template_outliner_rename.xml\" />\n",
293 true
294 );
295 Engine::getInstance()->getGUI()->setFoccussedNode(dynamic_cast<GUIElementNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("tdme.sounds.rename_input")));
296 editorView->getScreenController()->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("selectbox_outliner")));
297}
298
300 auto newSoundName = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("tdme.sounds.rename_input"))->getController()->getValue().getString();
301 try {
302 if (prototype->renameSound(renameSoundName, newSoundName) == false) {
303 //
304 renameSoundName.clear();
305 throw ExceptionBase("Could not rename sound");
306 }
307 } catch (Exception& exception) {
308 Console::println(string("PrototypeSoundsSubController::renameSound(): An error occurred: ") + exception.what());;
309 showErrorPopUp("Warning", (string(exception.what())));
310 return;
311 }
312
313 //
314 renameSoundName.clear();
315
316 //
317 class ReloadTabOutlinerAction: public Action {
318 private:
320 string outlinerNode;
321 public:
322 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
323 virtual void performAction() {
324 editorView->reloadTabOutliner(outlinerNode);
325 }
326 };
327 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(editorView, string("sounds") + "." + newSoundName));
328}
329
331 if (node->getId() == "dropdown_outliner_add") {
332 auto addOutlinerType = node->getController()->getValue().getString();
333 if (addOutlinerType == "sound") {
334 createSound(prototype);
335 }
336 } else {
337 for (auto& audioChangeNode: applyAudioNodes) {
338 if (node->getId() == audioChangeNode) {
339 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
340 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
341 applySoundDetails(prototype, StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size()));
342 }
343 }
344 }
345 if (node->getId() == "selectbox_outliner") {
346 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
347 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
348 auto soundId = StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size());
349 updateDetails(prototype, model, soundId);
351 } else {
353 }
354 }
355 }
356}
357
359{
360 if (type != GUIActionListenerType::PERFORMED) return;
361 if (StringTools::startsWith(node->getId(), "sound_remove") == true) {
362 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
363 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
364 onSoundClear(prototype, StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size()));
365 }
366 } else
367 if (StringTools::startsWith(node->getId(), "sound_open") == true) {
368 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
369 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
370 onSoundLoad(prototype, StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size()));
371 }
372 } else
373 if (node->getId() == "tdme.sounds.rename_input") {
374 renameSound(prototype);
375 }
376}
377
379}
380
382 if (node->getId() == "tdme.sounds.rename_input") {
383 renameSound(prototype);
384 } else
385 if (node->getId() == "sound_key") {
386 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
387 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
388 auto soundId = StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size());
390 }
391 }
392}
393
395 if (node->getId() == "selectbox_outliner") {
396 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
397 if (outlinerNode == "sounds") {
398 // clear
400 // add
401 class OnAddSoundAction: public virtual Action
402 {
403 public:
404 void performAction() override {
405 prototypeSoundsSubController->createSound(prototype);
406 }
407 OnAddSoundAction(PrototypeSoundsSubController* prototypeSoundsSubController, Prototype* prototype): prototypeSoundsSubController(prototypeSoundsSubController), prototype(prototype) {
408 }
409 private:
410 PrototypeSoundsSubController* prototypeSoundsSubController;
411 Prototype* prototype;
412 };
413 popUps->getContextMenuScreenController()->addMenuItem("Add Sound", "contextmenu_add", new OnAddSoundAction(this, prototype));
414
415 //
416 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
417 } else
418 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
419 // clear
421 // rename
422 class OnRenameAction: public virtual Action
423 {
424 public:
425 void performAction() override {
426 auto outlinerNode = prototypeSoundsSubController->editorView->getScreenController()->getOutlinerSelection();
427 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
428 prototypeSoundsSubController->startRenameSound(
429 prototype,
430 StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size())
431 );
432 }
433 }
434 OnRenameAction(PrototypeSoundsSubController* prototypeSoundsSubController, Prototype* prototype): prototypeSoundsSubController(prototypeSoundsSubController), prototype(prototype) {
435 }
436 private:
437 PrototypeSoundsSubController* prototypeSoundsSubController;
438 Prototype* prototype;
439 };
440 popUps->getContextMenuScreenController()->addMenuItem("Rename", "contextmenu_rename", new OnRenameAction(this, prototype));
441
442 // separator
444
445 // delete
446 class OnDeleteAction: public virtual Action
447 {
448 public:
449 void performAction() override {
450 auto outlinerNode = prototypeSoundsSubController->editorView->getScreenController()->getOutlinerSelection();
451 if (StringTools::startsWith(outlinerNode, "sounds.") == true) {
452 prototypeSoundsSubController->playableSoundView->stopSound();
453 auto selectedSoundId = StringTools::substring(outlinerNode, string("sounds.").size(), outlinerNode.size());
454 prototype->removeSound(selectedSoundId);
455 prototypeSoundsSubController->editorView->reloadTabOutliner("sounds");
456 }
457 }
458 OnDeleteAction(PrototypeSoundsSubController* prototypeSoundsSubController, Prototype* prototype): prototypeSoundsSubController(prototypeSoundsSubController), prototype(prototype) {
459 }
460 private:
461 PrototypeSoundsSubController* prototypeSoundsSubController;
462 Prototype* prototype;
463 };
464 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnDeleteAction(this, prototype));
465
466 //
467 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
468 }
469 }
470}
Engine main class.
Definition: Engine.h:122
Representation of a 3d model.
Definition: Model.h:32
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
Definition: Model.h:274
Prototype audio definition.
void setFileName(const string &fileName)
Set file name.
void setAnimation(const string &animation)
Set animation.
Prototype definition.
Definition: Prototype.h:49
PrototypeAudio * addSound(const string &id)
Add sound with given id.
Definition: Prototype.cpp:137
const vector< PrototypeAudio * > & getSounds()
Definition: Prototype.h:479
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
Definition: Prototype.h:488
void removeSound(const string &id)
Remove sound of given sound id.
Definition: Prototype.h:498
bool renameSound(const string &id, const string &newId)
Renames sound of given sound id with new id.
Definition: Prototype.h:511
GUI parser.
Definition: GUIParser.h:39
GUI node controller base class.
virtual const MutableString & getValue()=0
const string & getId()
Definition: GUINode.h:329
GUINodeController * getController()
Definition: GUINode.h:586
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
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
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void onSoundLoad(Prototype *prototype, const string &soundId)
On sound load.
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.
const string applySoundDetailsRename(Prototype *prototype, const string &soundId)
Apply sound details rename.
void startRenameSound(Prototype *prototype, const string &soundName)
Start rename sound.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void onSoundClear(Prototype *prototype, const string &soundId)
On sound clear.
void onValueChanged(GUIElementNode *node, Prototype *prototype, Model *model)
On value changed.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void applySoundDetails(Prototype *prototype, const string &soundId)
Apply sound details.
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
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
Playable sound view interface, which represents a view that supports playing sounds additionally.
virtual void playSound(const string &soundId)=0
Play sound.
Action Interface.
Definition: Action.h:12