TDME2 1.9.121
TDMEEditor.cpp
Go to the documentation of this file.
2
3#include <cstdlib>
4#include <string>
5
6#include <tdme/tdme.h>
8
12#include <tdme/engine/Engine.h>
14#include <tdme/engine/Version.h>
15#include <tdme/gui/GUI.h>
21
22using std::string;
23
25
27
34using tdme::gui::GUI;
40
41TDMEEditor* TDMEEditor::instance = nullptr;
42
43TDMEEditor::TDMEEditor()
44{
45 Tools::loadSettings(this);
47 engine = Engine::getInstance();
49 view = nullptr;
50 viewInitialized = false;
51 viewNew = nullptr;
52 popUps = new PopUps();
53 editorView = nullptr;
54 quitRequested = false;
55}
56
58 delete popUps;
59 delete editorView;
60}
61
62void TDMEEditor::main(int argc, char** argv)
63{
64 Console::println(string("TDMEEditor ") + Version::getVersion());
65 Console::println(Version::getCopyright());
66 Console::println();
67
68 auto tdmeEditor = new TDMEEditor();
69 tdmeEditor->run(argc, argv, "TDMEEditor", nullptr, Application::WINDOW_HINT_MAXIMIZED);
70}
71
73{
74 viewNew = view;
75}
76
78{
79 return view;
80}
81
83{
84 quitRequested = true;
85}
86
88{
89 if (viewNew != nullptr) {
90 if (view != nullptr && viewInitialized == true) {
92 view->dispose();
93 viewInitialized = false;
94 }
95 view = viewNew;
96 viewNew = nullptr;
97 }
98 if (view != nullptr) {
99 if (viewInitialized == false) {
100 view->initialize();
101 view->activate();
102 viewInitialized = true;
103 }
104 view->display();
105 }
106 engine->display();
108 engine->getGUI()->render();
109 if (view != nullptr) view->tick();
110 if (quitRequested == true) {
111 if (view != nullptr) {
112 view->deactivate();
113 view->dispose();
114 }
115 Application::exit(0);
116 }
117}
118
120{
121 if (view != nullptr && viewInitialized == true) {
122 view->deactivate();
123 view->dispose();
124 view = nullptr;
125 }
126 engine->dispose();
127 popUps->dispose();
128 Tools::oseDispose();
129}
130
132{
134 // TODO: settings maybe for the next 2
135 Application::setVSyncEnabled(true);
136 Application::setLimitFPS(true);
137 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
139 Tools::oseInit();
142}
143
144void TDMEEditor::reshape(int width, int height)
145{
146 engine->reshape(width, height);
147}
void setInputEventHandler(InputEventHandler *inputEventHandler)
Set input event handler.
Engine main class.
Definition: Engine.h:122
void reshape(int32_t width, int32_t height)
Reshape.
Definition: Engine.cpp:885
void display()
Renders the scene.
Definition: Engine.cpp:1269
void initialize()
Initialize render engine.
Definition: Engine.cpp:668
void setPartition(Partition *partition)
Set partition.
Definition: Engine.cpp:358
void dispose()
Shutdown the engine.
Definition: Engine.cpp:1907
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Bogus/Simple partition implementation.
Color 4 definition.
Definition: Color4.h:20
Prototype definition.
Definition: Prototype.h:49
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 display()
Renders the scene.
Definition: TDMEEditor.cpp:87
void quit()
Request to exit the viewer.
Definition: TDMEEditor.cpp:82
void initialize()
Initialize tdme scene editor.
Definition: TDMEEditor.cpp:131
TDMEEditor()
Public constructor.
Definition: TDMEEditor.cpp:43
void reshape(int width, int height)
Reshape tdme scene editor.
Definition: TDMEEditor.cpp:144
static void main(int argc, char **argv)
Main.
Definition: TDMEEditor.cpp:62
void setView(View *view)
Set up new view.
Definition: TDMEEditor.cpp:72
static TDMEEditor * instance
Definition: TDMEEditor.h:30
void dispose()
Shutdown tdme viewer.
Definition: TDMEEditor.cpp:119
Pop ups controller accessor class.
Definition: PopUps.h:19
Console class.
Definition: Console.h:26
Time utility class.
Definition: Time.h:21
View interface, this combines application logic, regarding a application view, with screen controller...
Definition: View.h:12
virtual void deactivate()=0
Deactivate view.
virtual void activate()=0
Activate view.
virtual void display()=0
Renders the view.
virtual void initialize()=0
Initiates the view.
virtual void dispose()=0
Disposes the view.
virtual void tick()=0
Tick.