102 class LoadSoundAction:
public virtual Action
105 LoadSoundAction(
PrototypeSoundsSubController* prototypeSoundsSubController,
Prototype* prototype,
const string& soundId): prototypeSoundsSubController(prototypeSoundsSubController), prototype(prototype), soundId(soundId) {
107 void performAction()
override {
108 auto sound = prototype->
getSound(soundId);
109 if (sound ==
nullptr)
return;
124 auto sound = prototype->
getSound(soundId);
125 if (sound ==
nullptr)
return;
129 fileName.empty() ==
false?Tools::getPathName(fileName):
string(),
132 fileName.empty() ==
false?Tools::getFileName(fileName):
"",
134 new LoadSoundAction(
this, prototype, soundId)
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";
150 xml+=
"</selectbox-parent-option>\n";
155 Console::println(
"PrototypeSoundsSubController::updateDetails(): " + outlinerNode);
157 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
false)
return;
159 auto soundId = StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size());
160 auto sound = prototype->
getSound(soundId);
161 if (sound ==
nullptr)
return;
164 "<template id=\"details_sound\" src=\"resources/engine/gui/template_details_sound.xml\" />\n"
168 if (model !=
nullptr) {
170 string animationsDropDownXML;
171 animationsDropDownXML =
172 animationsDropDownXML +
"<dropdown-option text=\"" +
173 GUIParser::escapeQuotes(
"<None>") +
175 GUIParser::escapeQuotes(
"") +
177 (idx == 0 ?
"selected=\"true\" " :
"") +
180 auto animationSetupId = it.second->getId();
181 animationsDropDownXML =
182 animationsDropDownXML +
"<dropdown-option text=\"" +
183 GUIParser::escapeQuotes(animationSetupId) +
185 GUIParser::escapeQuotes(animationSetupId) +
187 (idx == 0 ?
"selected=\"true\" " :
"") +
192 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"sound_animation_scrollarea"))->replaceSubNodes(animationsDropDownXML,
true);
194 Console::print(
string(
"PrototypeSoundsSubController::setSoundDetails(): An error occurred: "));
195 Console::println(
string(exception.what()));
200 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_sound"))->getActiveConditions().add(
"open");
209 Console::println(
string(
"PrototypeSoundsSubController::setSoundDetails(): An error occurred: ") + exception.what());;
216 auto sound = prototype->
getSound(soundId);
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");
225 Console::println(
string(
"PrototypeSoundsSubController::updateSoundDetails(): An error occurred: ") + exception.what());;
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) {
241 sound->setId(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"sound_key"))->getController()->getValue().getString());
244 Console::println(
string(
"PrototypeSoundsSubController::updateSoundDetailsRename(): An error occurred: ") + exception.what());;
251 auto soundCreate =
false;
252 auto soundName = string() +
"New sound";
253 if (prototype->
getSound(soundName) ==
nullptr) {
257 for (
auto i = 1; i < 10001; i++) {
258 soundName = string() +
"New sound " + to_string(i);
259 if (prototype->
getSound(soundName) ==
nullptr) {
267 if (soundCreate ==
false) {
271 Console::println(
string(
"PrototypeSoundsSubController::createSound(): An error occurred: ") + exception.what());;
275 if (soundCreate ==
true) {
286 auto sound = prototype->
getSound(soundName);
287 if (sound ==
nullptr)
return;
289 if (selectBoxOptionParentNode ==
nullptr)
return;
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",
300 auto newSoundName = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"tdme.sounds.rename_input"))->getController()->getValue().getString();
308 Console::println(
string(
"PrototypeSoundsSubController::renameSound(): An error occurred: ") + exception.what());;
317 class ReloadTabOutlinerAction:
public Action {
323 virtual void performAction() {
327 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(
editorView,
string(
"sounds") +
"." + newSoundName));
331 if (node->
getId() ==
"dropdown_outliner_add") {
333 if (addOutlinerType ==
"sound") {
338 if (node->
getId() == audioChangeNode) {
340 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
341 applySoundDetails(prototype, StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size()));
345 if (node->
getId() ==
"selectbox_outliner") {
347 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
348 auto soundId = StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size());
361 if (StringTools::startsWith(node->
getId(),
"sound_remove") ==
true) {
363 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
364 onSoundClear(prototype, StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size()));
367 if (StringTools::startsWith(node->
getId(),
"sound_open") ==
true) {
369 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
370 onSoundLoad(prototype, StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size()));
373 if (node->
getId() ==
"tdme.sounds.rename_input") {
382 if (node->
getId() ==
"tdme.sounds.rename_input") {
385 if (node->
getId() ==
"sound_key") {
387 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
388 auto soundId = StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size());
395 if (node->
getId() ==
"selectbox_outliner") {
397 if (outlinerNode ==
"sounds") {
401 class OnAddSoundAction:
public virtual Action
404 void performAction()
override {
405 prototypeSoundsSubController->createSound(prototype);
407 OnAddSoundAction(
PrototypeSoundsSubController* prototypeSoundsSubController,
Prototype* prototype): prototypeSoundsSubController(prototypeSoundsSubController), prototype(prototype) {
418 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
422 class OnRenameAction:
public virtual Action
425 void performAction()
override {
426 auto outlinerNode = prototypeSoundsSubController->editorView->getScreenController()->getOutlinerSelection();
427 if (StringTools::startsWith(outlinerNode,
"sounds.") ==
true) {
428 prototypeSoundsSubController->startRenameSound(
430 StringTools::substring(outlinerNode,
string(
"sounds.").size(), outlinerNode.size())
446 class OnDeleteAction:
public virtual Action
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());
455 prototypeSoundsSubController->editorView->reloadTabOutliner(
"sounds");
Representation of a 3d model.
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
Prototype audio definition.
const string & getFileName() const
void setFileName(const string &fileName)
Set file name.
void setAnimation(const string &animation)
Set animation.
PrototypeAudio * addSound(const string &id)
Add sound with given id.
const vector< PrototypeAudio * > & getSounds()
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
void removeSound(const string &id)
Remove sound of given sound id.
bool renameSound(const string &id, const string &newId)
Renames sound of given sound id with new id.
GUI node controller base class.
virtual const MutableString & getValue()=0
GUINodeController * getController()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
const string & getString() const
std::exception Exception
Exception base class.