TDME2 1.9.121
TriggerEditorTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10#include <tdme/math/Vector3.h>
24
25using std::string;
26
28
45
46TriggerEditorTabView::TriggerEditorTabView(EditorView* editorView, const string& tabId, Prototype* prototype)
47{
48 this->editorView = editorView;
49 this->tabId = tabId;
50 this->popUps = editorView->getPopUps();
51 this->prototype = prototype;
52 engine = Engine::createOffScreenInstance(512, 512, true, true, false);
54 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
58}
59
61 delete prototype;
64 delete engine;
65
66}
67
69{
72}
73
75{
76 //
78
79 //
82 engine->display();
83}
84
86{
87 try {
92 } catch (Exception& exception) {
93 Console::print(string("TriggerEditorTabView::initialize(): An error occurred: "));
94 Console::println(string(exception.what()));
95 }
96 // TODO: load settings
97}
98
100{
101 engine->reset();
102}
103
105}
106
108 return engine;
109}
110
116}
117
120}
121
125}
126
127void TriggerEditorTabView::saveFile(const string& pathName, const string& fileName) {
128 PrototypeWriter::write(pathName, fileName, prototype);
129}
130
133}
134
137}
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.
void handleInputEvents() override
Handle input events that have not yet been processed.
Pop ups controller accessor class.
Definition: PopUps.h:19
void updateInfoText(const MutableString &text)
Update info text line.
void updateDetails(const string &outlinerNode)
Update details panel.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
void onCameraRotation() override
On rotation event to be overloaded.
void handleInputEvents() override
Handle input events that have not yet been processed.
void onCameraScale() override
On scale event to be overloaded.
void handleInputEvents(Prototype *prototype, const Vector3 &objectScale)
Handle input events.
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