TDME2 1.9.121
EmptyEditorTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10#include <tdme/math/Vector3.h>
20
21using std::string;
22
24
37
38EmptyEditorTabView::EmptyEditorTabView(EditorView* editorView, const string& tabId, Prototype* prototype)
39{
40 this->editorView = editorView;
41 this->tabId = tabId;
42 this->popUps = editorView->getPopUps();
43 this->prototype = prototype;
44 engine = Engine::createOffScreenInstance(512, 512, true, true, false);
46 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
47 Vector3 objectScale;
51}
52
54 delete prototype;
57 delete engine;
58
59}
60
62{
63}
64
66{
68 engine->display();
69}
70
72{
73 try {
76 } catch (Exception& exception) {
77 Console::print(string("EmptyEditorTabView::initialize(): An error occurred: "));
78 Console::println(string(exception.what()));
79 }
80 // TODO: load settings
81}
82
84{
85 engine->reset();
86}
87
89}
90
92 return engine;
93}
94
100}
101
104}
105
109}
110
111void EmptyEditorTabView::saveFile(const string& pathName, const string& fileName) {
112 PrototypeWriter::write(pathName, fileName, prototype);
113}
Engine main class.
Definition: Engine.h:122
Timing * getTiming()
Definition: Engine.h:900
void display()
Renders the scene.
Definition: Engine.cpp:1269
void setShadowMapLightEyeDistanceScale(float shadowMapLightEyeDistanceScale)
Set shadow map light eye distance scale.
Definition: Engine.h:632
void reset()
Removes all entities and caches.
Definition: Engine.cpp:652
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Timing class.
Definition: Timing.h:17
float getAvarageFPS()
Definition: Timing.h:100
Color 4 definition.
Definition: Color4.h:20
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
Pop ups controller accessor class.
Definition: PopUps.h:19
void updateInfoText(const MutableString &text)
Update info text line.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void updateDetails(const string &outlinerNode)
Update details panel.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
void handleInputEvents() override
Handle input events that have not yet been processed.
CameraRotationInputHandler * cameraRotationInputHandler
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
MutableString & append(char c)
Append character.
std::exception Exception
Exception base class.
Definition: Exception.h:19