TDME2
1.9.121
src
tdme
tools
editor
tabcontrollers
subcontrollers
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
>
7
#include <
tdme/engine/model/fwd-tdme.h
>
8
#include <
tdme/engine/prototype/fwd-tdme.h
>
9
#include <
tdme/engine/prototype/Prototype.h
>
10
#include <
tdme/gui/events/fwd-tdme.h
>
11
#include <
tdme/gui/events/GUIActionListener.h
>
12
#include <
tdme/gui/nodes/fwd-tdme.h
>
13
#include <
tdme/tools/editor/misc/fwd-tdme.h
>
14
#include <
tdme/tools/editor/tabcontrollers/subcontrollers/fwd-tdme.h
>
15
#include <
tdme/tools/editor/tabviews/fwd-tdme.h
>
16
#include <
tdme/tools/editor/tabviews/subviews/fwd-tdme.h
>
17
#include <
tdme/tools/editor/views/fwd-tdme.h
>
18
19
using
std::array;
20
using
std::string;
21
22
using
tdme::engine::model::Model
;
23
using
tdme::engine::prototype::Prototype
;
24
using
tdme::gui::events::GUIActionListenerType
;
25
using
tdme::gui::nodes::GUIElementNode
;
26
using
tdme::gui::nodes::GUIScreenNode
;
27
using
tdme::math::Vector3
;
28
using
tdme::tools::editor::misc::PopUps
;
29
using
tdme::tools::editor::tabviews::subviews::PrototypeSoundsSubView
;
30
using
tdme::tools::editor::tabviews::ModelEditorTabView
;
31
using
tdme::tools::editor::views::EditorView
;
32
using
tdme::tools::editor::views::PlayableSoundView
;
33
34
/**
35
* Prototype sounds sub screen controller
36
* @author Andreas Drewke
37
* @version $Id$
38
*/
39
class
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController
final
40
{
41
private
:
42
GUIScreenNode
*
screenNode
{
nullptr
};
43
EditorView
*
editorView
{
nullptr
};
44
PrototypeSoundsSubView
*
view
{
nullptr
};
45
PopUps
*
popUps
{
nullptr
};
46
PlayableSoundView
*
playableSoundView
{
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
};
56
string
renameSoundName
;
57
58
public
:
59
/**
60
* Public constructor
61
* @param editorView editor view
62
* @param playableSoundView view that supports playing sounds
63
*/
64
PrototypeSoundsSubController
(
EditorView
*
editorView
,
PlayableSoundView
*
playableSoundView
);
65
66
/**
67
* Destructor
68
*/
69
~PrototypeSoundsSubController
();
70
71
/**
72
* @return view
73
*/
74
PrototypeSoundsSubView
*
getView
();
75
76
/**
77
* @return screen node
78
*/
79
GUIScreenNode
*
getScreenNode
();
80
81
/**
82
* Init
83
* @param screenNode screen node
84
*/
85
void
initialize
(
GUIScreenNode
*
screenNode
);
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
*/
185
void
onActionPerformed
(
GUIActionListenerType
type,
GUIElementNode
* node,
Prototype
* prototype);
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
};
GUIActionListener.h
Prototype.h
tdme::engine::model::Model
Representation of a 3d model.
Definition:
Model.h:32
tdme::engine::prototype::Prototype
Prototype definition.
Definition:
Prototype.h:49
tdme::gui::nodes::GUIElementNode
GUI element node.
Definition:
GUIElementNode.h:38
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
tdme::math::Vector3
3D vector 3 class
Definition:
Vector3.h:22
tdme::tools::editor::misc::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController
Prototype sounds sub screen controller.
Definition:
PrototypeSoundsSubController.h:40
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::getView
PrototypeSoundsSubView * getView()
Definition:
PrototypeSoundsSubController.cpp:81
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onFocus
void onFocus(GUIElementNode *node, Prototype *prototype)
On focus.
Definition:
PrototypeSoundsSubController.cpp:378
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onSoundLoad
void onSoundLoad(Prototype *prototype, const string &soundId)
On sound load.
Definition:
PrototypeSoundsSubController.cpp:101
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::renameSoundName
string renameSoundName
Definition:
PrototypeSoundsSubController.h:56
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::view
PrototypeSoundsSubView * view
Definition:
PrototypeSoundsSubController.h:44
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::createOutlinerSoundsXML
void createOutlinerSoundsXML(Prototype *prototype, string &xml)
Create sounds XML for outliner.
Definition:
PrototypeSoundsSubController.cpp:143
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::applyAudioNodes
array< string, 7 > applyAudioNodes
Definition:
PrototypeSoundsSubController.h:47
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onContextMenuRequested
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
Definition:
PrototypeSoundsSubController.cpp:394
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::updateDetails
void updateDetails(Prototype *prototype, Model *model, const string &outlinerNode)
Update details.
Definition:
PrototypeSoundsSubController.cpp:154
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::applySoundDetailsRename
const string applySoundDetailsRename(Prototype *prototype, const string &soundId)
Apply sound details rename.
Definition:
PrototypeSoundsSubController.cpp:230
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::startRenameSound
void startRenameSound(Prototype *prototype, const string &soundName)
Start rename sound.
Definition:
PrototypeSoundsSubController.cpp:285
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onActionPerformed
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
Definition:
PrototypeSoundsSubController.cpp:358
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::screenNode
GUIScreenNode * screenNode
Definition:
PrototypeSoundsSubController.h:42
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::renameSound
void renameSound(Prototype *prototype)
Rename sound.
Definition:
PrototypeSoundsSubController.cpp:299
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onSoundClear
void onSoundClear(Prototype *prototype, const string &soundId)
On sound clear.
Definition:
PrototypeSoundsSubController.cpp:95
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onUnfocus
void onUnfocus(GUIElementNode *node, Prototype *prototype)
On unfocus.
Definition:
PrototypeSoundsSubController.cpp:381
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::onValueChanged
void onValueChanged(GUIElementNode *node, Prototype *prototype, Model *model)
On value changed.
Definition:
PrototypeSoundsSubController.cpp:330
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::PrototypeSoundsSubController
PrototypeSoundsSubController(EditorView *editorView, PlayableSoundView *playableSoundView)
Public constructor.
Definition:
PrototypeSoundsSubController.cpp:69
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::playableSoundView
PlayableSoundView * playableSoundView
Definition:
PrototypeSoundsSubController.h:46
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::showErrorPopUp
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
Definition:
PrototypeSoundsSubController.cpp:138
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::createSound
void createSound(Prototype *prototype)
Create sound.
Definition:
PrototypeSoundsSubController.cpp:250
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::popUps
PopUps * popUps
Definition:
PrototypeSoundsSubController.h:45
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::applySoundDetails
void applySoundDetails(Prototype *prototype, const string &soundId)
Apply sound details.
Definition:
PrototypeSoundsSubController.cpp:214
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::initialize
void initialize(GUIScreenNode *screenNode)
Init.
Definition:
PrototypeSoundsSubController.cpp:90
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::getScreenNode
GUIScreenNode * getScreenNode()
Definition:
PrototypeSoundsSubController.cpp:86
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::editorView
EditorView * editorView
Definition:
PrototypeSoundsSubController.h:43
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeSoundsSubController::~PrototypeSoundsSubController
~PrototypeSoundsSubController()
Destructor.
Definition:
PrototypeSoundsSubController.cpp:77
tdme::tools::editor::tabviews::ModelEditorTabView
Model editor tab view.
Definition:
ModelEditorTabView.h:50
tdme::tools::editor::tabviews::subviews::PrototypeSoundsSubView
Prototype sounds view.
Definition:
PrototypeSoundsSubView.h:20
tdme::tools::editor::views::EditorView
Editor View.
Definition:
EditorView.h:30
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
tdme::gui::events::GUIActionListenerType
GUIActionListenerType
Definition:
GUIActionListener.h:12
tdme::tools::editor::views::PlayableSoundView
Playable sound view interface, which represents a view that supports playing sounds additionally.
Definition:
PlayableSoundView.h:16
tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3