TDME2 1.9.121
PrototypeSoundsSubController.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5
6#include <tdme/tdme.h>
18
19using std::array;
20using std::string;
21
33
34/**
35 * Prototype sounds sub screen controller
36 * @author Andreas Drewke
37 * @version $Id$
38 */
40{
41private:
43 EditorView* editorView { nullptr };
45 PopUps* popUps { nullptr };
47 array<string, 7> applyAudioNodes = {
48 "sound_key",
49 "sound_animation",
50 "sound_gain",
51 "sound_pitch",
52 "sound_offset",
53 "sound_looping",
54 "sound_ambient",
55 };
57
58public:
59 /**
60 * Public constructor
61 * @param editorView editor view
62 * @param playableSoundView view that supports playing sounds
63 */
65
66 /**
67 * Destructor
68 */
70
71 /**
72 * @return view
73 */
75
76 /**
77 * @return screen node
78 */
80
81 /**
82 * Init
83 * @param screenNode screen node
84 */
86
87 /**
88 * On sound clear
89 * @param prototype prototype
90 * @param soundId sound id
91 */
92 void onSoundClear(Prototype* prototype, const string& soundId);
93
94 /**
95 * On sound load
96 * @param protoype prototype
97 * @param soundId sound id
98 */
99 void onSoundLoad(Prototype* prototype, const string& soundId);
100
101 /**
102 * Shows the error pop up
103 * @param caption caption
104 * @param message message
105 */
106 void showErrorPopUp(const string& caption, const string& message);
107
108 /**
109 * Create sounds XML for outliner
110 * @param prototype prototype
111 * @param xml xml
112 */
113 void createOutlinerSoundsXML(Prototype* prototype, string& xml);
114
115 /**
116 * Update details
117 * @param prototype prototype
118 * @param model model
119 * @param outlinerNode outliner node
120 */
121 void updateDetails(Prototype* prototype, Model* model, const string& outlinerNode);
122
123 /**
124 * Apply sound details
125 * @param prototype prototype
126 * @param soundId sound Id
127 */
128 void applySoundDetails(Prototype* prototype, const string& soundId);
129
130 /**
131 * Apply sound details rename
132 * @param prototype prototype
133 * @param soundId sound Id
134 * @return new sound id
135 */
136 const string applySoundDetailsRename(Prototype* prototype, const string& soundId);
137
138 /**
139 * Create sound
140 * @param prototype prototype
141 */
142 void createSound(Prototype* prototype);
143
144 /**
145 * Start rename sound
146 * @param property property
147 * @param soundName sound name
148 */
149 void startRenameSound(Prototype* prototype, const string& soundName);
150
151 /**
152 * Rename sound
153 * @param prototype prototype
154 */
155 void renameSound(Prototype* prototype);
156
157 /**
158 * On value changed
159 * @param node node
160 * @param prototype prototype
161 * @param model model
162 */
163 void onValueChanged(GUIElementNode* node, Prototype* prototype, Model* model);
164
165 /**
166 * On focus
167 * @param node node
168 * @param prototype prototype
169 */
170 void onFocus(GUIElementNode* node, Prototype* prototype);
171
172 /**
173 * On unfocus
174 * @param node node
175 * @param prototype prototype
176 */
177 void onUnfocus(GUIElementNode* node, Prototype* prototype);
178
179 /**
180 * On action performed
181 * @param type type
182 * @param node node
183 * @param prototype prototype
184 */
186
187 /**
188 * On context menu requested
189 * @param node node
190 * @param mouseX unscaled mouse X position
191 * @param mouseY unscaled mouse Y position
192 * @param prototype prototype
193 */
194 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY, Prototype* prototype);
195
196};
Representation of a 3d model.
Definition: Model.h:32
Prototype definition.
Definition: Prototype.h:49
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
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.
PrototypeSoundsSubController(EditorView *editorView, PlayableSoundView *playableSoundView)
Public constructor.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void applySoundDetails(Prototype *prototype, const string &soundId)
Apply sound details.
Playable sound view interface, which represents a view that supports playing sounds additionally.