TDME2 1.9.121
SoundTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
6#include <tdme/audio/Audio.h>
10#include <tdme/gui/GUI.h>
17
18using std::string;
19
21
26using tdme::gui::GUI;
32
33SoundTabView::SoundTabView(EditorView* editorView, const string& tabId, GUIScreenNode* screenNode, AudioEntity* audioEntity)
34{
35 this->editorView = editorView;
36 this->tabId = tabId;
37 this->popUps = editorView->getPopUps();
38 engine = Engine::createOffScreenInstance(512, 512, false, false, false);
39 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
40 engine->getGUI()->addScreen(screenNode->getId(), screenNode);
41 engine->getGUI()->addRenderScreen(screenNode->getId());
42 this->uiScreenNode = screenNode;
43 this->audio = Audio::getInstance();
44 this->audioEntity = audioEntity;
45 this->audioEntity->setFixed(true);
46}
47
49 delete soundTabController;
50 delete engine;
51}
52
54{
56}
57
59{
60 engine->display();
61 engine->getGUI()->render();
62}
63
65{
66 try {
70 } catch (Exception& exception) {
71 Console::print(string("SoundTabView::initialize(): An error occurred: "));
72 Console::println(string(exception.what()));
73 }
74 // TODO: load settings
75}
76
78{
79 engine->dispose();
81}
82
84}
85
87 return engine;
88}
89
96}
97
100}
101
105}
106
109 audioEntity->play();
110}
111
113 audioEntity->stop();
114}
Audio entity base class.
Definition: AudioEntity.h:20
virtual void stop()=0
Stops this audio entity.
virtual void play()=0
Plays this audio entity.
virtual void rewind()=0
Rewinds this audio entity.
virtual const string & getId() const
Definition: AudioEntity.h:64
virtual void setFixed(bool fixed)
Set this entity fixed, means the sound will always played no matter where the position and listener i...
Definition: AudioEntity.h:94
Interface to audio module.
Definition: Audio.h:30
void addEntity(AudioEntity *entity)
Adds a audio entity.
Definition: Audio.cpp:57
void removeEntity(const string &id)
Removes an audio entity.
Definition: Audio.cpp:76
AudioEntity * getEntity(const string &id)
Returns an audio entity identified by given id.
Definition: Audio.cpp:50
Engine main class.
Definition: Engine.h:122
void display()
Renders the scene.
Definition: Engine.cpp:1269
void dispose()
Shutdown the engine.
Definition: Engine.cpp:1907
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Color 4 definition.
Definition: Color4.h:20
GUI module class.
Definition: GUI.h:66
void handleEvents()
Handle screen events.
Definition: GUI.cpp:588
void render()
Render GUIs.
Definition: GUI.cpp:414
void addRenderScreen(const string &screenId)
Add render screen.
Definition: GUI.cpp:254
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
Definition: GUI.cpp:186
const string & getId()
Definition: GUINode.h:329
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void addActionListener(GUIActionListener *listener)
Add action listener.
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void setDetailsContent(const string &xml)
Set details content.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void initialize(GUIScreenNode *screenNode) override
Init.
void dispose() override
Disposes the view.
void display() override
Renders the view.
void reloadOutliner() override
Reload outliner.
void initialize() override
Initiates the view.
void handleInputEvents() override
Handle input events that have not yet been processed.
void updateRendering() override
Update rendering.
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Console class.
Definition: Console.h:26
std::exception Exception
Exception base class.
Definition: Exception.h:19