TDME2 1.9.121
EditorView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
6#include <tdme/audio/Audio.h>
14#include <tdme/gui/GUI.h>
15#include <tdme/math/Vector3.h>
29
30using std::string;
31
40using tdme::gui::GUI;
57
58EditorView::EditorView(PopUps* popUps)
59{
60 this->popUps = popUps;
61 editorScreenController = nullptr;
62 engine = Engine::getInstance();
63}
64
67}
68
70{
71 return popUps;
72}
73
75{
76 for (auto& event: Engine::getInstance()->getGUI()->getKeyboardEvents()) {
77 // skip if already processed
78 if (event.isProcessed() == true) return;
79
80 //
81 switch (event.getKeyCode()) {
82 case (GUIKeyboardEvent::KEYCODE_F11):
83 {
84 if (event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
86 }
87 event.setProcessed(true);
88 break;
89 }
90 default:
91 {
92 break;
93 }
94 }
95 }
96
97 //
98 auto tabView = editorScreenController->getSelectedTab();
99 if (tabView != nullptr) {
100 auto xScale = static_cast<float>(engine->getWidth()) / static_cast<float>(editorScreenController->getScreenNode()->getScreenWidth());
101 auto yScale = static_cast<float>(engine->getHeight()) / static_cast<float>(editorScreenController->getScreenNode()->getScreenHeight());
102 int left, top, width, height;
103 getViewPort(tabView->getFrameBufferNode(), left, top, width, height);
104 auto offsetX = tabView->getFrameBufferNode()->computeParentChildrenRenderOffsetXTotal();
105 auto offsetY = tabView->getFrameBufferNode()->computeParentChildrenRenderOffsetYTotal();
106 if (tabView->getId() != lastSelectedTabId) {
107 auto lastTabView = lastSelectedTabId.empty() == true?nullptr:editorScreenController->getTab(lastSelectedTabId);
108 if (lastTabView != nullptr) lastTabView->getTabView()->deactivate();
109 tabView->getTabView()->activate();
111 }
112 for (auto event: Engine::getInstance()->getGUI()->getMouseEvents()) {
113 auto eventX = (event.getXUnscaled() - left + offsetX) / xScale;
114 auto eventY = (event.getYUnscaled() - top + offsetY) / yScale;
115 if (eventX < 0 || eventX >= width || eventY < 0 || eventY >= height) continue;
116 event.setX(eventX);
117 event.setY(eventY);
118 event.setXUnscaled(eventX);
119 event.setYUnscaled(eventY);
120 tabView->getTabView()->getEngine()->getGUI()->getMouseEvents().push_back(event);
121 }
122 for (auto& event: Engine::getInstance()->getGUI()->getKeyboardEvents()) {
123 tabView->getTabView()->getEngine()->getGUI()->getKeyboardEvents().push_back(event);
124 }
125 tabView->getTabView()->handleInputEvents();
126 tabView->getTabView()->getEngine()->getGUI()->getMouseEvents().clear();
127 tabView->getTabView()->getEngine()->getGUI()->getKeyboardEvents().clear();
128 lastSelectedTabId = tabView->getId();
129 } else {
131 if (lastTabView != nullptr) lastTabView->getTabView()->deactivate();
132 lastSelectedTabId.clear();
133 }
134}
135
137{
138 auto tabView = editorScreenController->getSelectedTab();
139 if (tabView != nullptr) {
140 auto xScale = static_cast<float>(engine->getWidth()) / static_cast<float>(editorScreenController->getScreenNode()->getScreenWidth());
141 auto yScale = static_cast<float>(engine->getHeight()) / static_cast<float>(editorScreenController->getScreenNode()->getScreenHeight());
142 int left, top, width, height;
143 getViewPort(tabView->getFrameBufferNode()->getParentNode(), left, top, width, height);
144 width/= xScale;
145 height/= yScale;
146 auto reshaped = false;
147 if (tabView->getTabView()->hasFixedSize() == false &&
148 (tabView->getTabView()->getEngine()->getWidth() != width || tabView->getTabView()->getEngine()->getHeight() != height)) {
149 tabView->getTabView()->getEngine()->reshape(width, height);
150 reshaped = true;
151 }
152 tabView->getFrameBufferNode()->setFrameBuffer(tabView->getTabView()->getEngine()->getFrameBuffer());
153 tabView->getTabView()->display();
154 if (reshaped == true) {
156 }
157 }
158 //
159 Audio::getInstance()->update();
160}
161
163{
164}
165
167{
168 try {
173 } catch (Exception& exception) {
174 Console::print(string("EditorView::initialize(): An error occurred: "));
175 Console::println(string(exception.what()));
176 }
178}
179
181{
182 engine->reset();
192}
193
195{
196}
197
199{
201 Engine::getInstance()->reset();
202}
203
205{
206 //
208}
209
210void EditorView::setOutlinerContent(const string& xml) {
212}
213
216}
217
218void EditorView::setDetailsContent(const string& xml) {
220}
221
222void EditorView::reloadTabOutliner(const string& newSelectionValue) {
223 auto selectedTabId = editorScreenController->getSelectedTabId();
224 auto& tabViews = editorScreenController->getTabViews();
225 auto tabViewIt = tabViews.find(selectedTabId);
226 if (tabViewIt != tabViews.end()){
227 auto& tab = tabViewIt->second;
228 TabView::OutlinerState outlinerState;
230 tab.getTabView()->reloadOutliner();
231 if (newSelectionValue.empty() == false) outlinerState.value = newSelectionValue;
233 }
234 editorScreenController->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(editorScreenController->getScreenNode()->getNodeById("selectbox_outliner")));
235}
236
237void EditorView::getViewPort(GUINode* viewPortNode, int& left, int& top, int& width, int& height) {
238 auto xScale = static_cast<float>(engine->getWidth()) / static_cast<float>(editorScreenController->getScreenNode()->getScreenWidth());
239 auto yScale = static_cast<float>(engine->getHeight()) / static_cast<float>(editorScreenController->getScreenNode()->getScreenHeight());
240 editorScreenController->getViewPort(viewPortNode, left, top, width, height);
241 left = static_cast<int>(static_cast<float>(left) * xScale);
242 top = static_cast<int>(static_cast<float>(top) * yScale);
243 width = static_cast<int>(static_cast<float>(width) * xScale);
244 height = static_cast<int>(static_cast<float>(height) * yScale);
245}
Interface to audio module.
Definition: Audio.h:30
Engine main class.
Definition: Engine.h:122
int32_t getWidth()
Definition: Engine.h:865
void setPartition(Partition *partition)
Set partition.
Definition: Engine.cpp:358
int32_t getHeight()
Definition: Engine.h:872
void reset()
Removes all entities and caches.
Definition: Engine.cpp:652
Frame buffer class.
Definition: FrameBuffer.h:21
Bogus/Simple partition implementation.
GUI module class.
Definition: GUI.h:66
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
void resetRenderScreens()
Reset render screens.
Definition: GUI.cpp:235
GUI node base class.
Definition: GUINode.h:63
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 setInputEventHandler(GUIInputEventHandler *inputEventHandler)
Set input event handler.
void invalidateLayout(GUINode *node)
Mark a node to be invalidated regarding layout.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
3D vector 3 class
Definition: Vector3.h:22
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add content.
void setOutlinerContent(const string &xml)
Set outliner content.
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
EditorTabView * getTab(const string &tabId)
Returns editor tab view by given tab id.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void setDetailsContent(const string &xml)
Set details content.
unordered_map< string, EditorTabView > & getTabViews()
void getViewPort(GUINode *viewPortNode, int &left, int &top, int &width, int &height)
Get engine viewport constraints.
Pop ups controller accessor class.
Definition: PopUps.h:19
AboutDialogScreenController * getAboutDialogScreenController()
Definition: PopUps.h:77
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
ProgressBarScreenController * getProgressBarScreenController()
Definition: PopUps.h:56
ContextMenuScreenController * getContextMenuScreenController()
Definition: PopUps.h:70
ColorPickerScreenController * getColorPickerScreenController()
Definition: PopUps.h:63
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void dispose() override
Disposes the view.
Definition: EditorView.cpp:198
void display() override
Renders the view.
Definition: EditorView.cpp:136
EditorScreenController * editorScreenController
Definition: EditorView.h:34
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void updateGUIElements()
Init GUI elements.
Definition: EditorView.cpp:162
void initialize() override
Initiates the view.
Definition: EditorView.cpp:166
void deactivate() override
Deactivate view.
Definition: EditorView.cpp:194
void handleInputEvents() override
Handle input events that have not yet been processed.
Definition: EditorView.cpp:74
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
void activate() override
Activate view.
Definition: EditorView.cpp:180
void getViewPort(GUINode *viewPortNode, int &left, int &top, int &width, int &height)
Determine viewport screen constraints.
Definition: EditorView.cpp:237
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
Console class.
Definition: Console.h:26
std::exception Exception
Exception base class.
Definition: Exception.h:19
virtual void deactivate()=0
Deactivate.