TDME2
1.9.121
src
tdme
tools
editor
tabviews
UIEditorTabView.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <array>
4
#include <string>
5
#include <vector>
6
7
#include <
tdme/tdme.h
>
8
#include <
tdme/engine/fwd-tdme.h
>
9
#include <
tdme/engine/prototype/fwd-tdme.h
>
10
#include <
tdme/gui/nodes/fwd-tdme.h
>
11
#include <
tdme/math/Matrix4x4.h
>
12
#include <
tdme/tools/editor/misc/CameraRotationInputHandlerEventHandler.h
>
13
#include <
tdme/tools/editor/misc/PopUps.h
>
14
#include <
tdme/tools/editor/tabcontrollers/fwd-tdme.h
>
15
#include <
tdme/tools/editor/tabcontrollers/TabController.h
>
16
#include <
tdme/tools/editor/tabcontrollers/UIEditorTabController.h
>
17
#include <
tdme/tools/editor/tabviews/fwd-tdme.h
>
18
#include <
tdme/tools/editor/tabviews/TabView.h
>
19
#include <
tdme/tools/editor/views/fwd-tdme.h
>
20
#include <
tdme/utilities/Float.h
>
21
22
using
std::array;
23
using
std::string;
24
25
using
tdme::engine::prototype::Prototype
;
26
using
tdme::engine::Engine
;
27
using
tdme::engine::FrameBuffer
;
28
using
tdme::gui::nodes::GUIScreenNode
;
29
using
tdme::math::Matrix4x4
;
30
using
tdme::tools::editor::misc::CameraRotationInputHandler
;
31
using
tdme::tools::editor::misc::CameraRotationInputHandlerEventHandler
;
32
using
tdme::tools::editor::misc::PopUps
;
33
using
tdme::tools::editor::tabcontrollers::TabController
;
34
using
tdme::tools::editor::tabcontrollers::UIEditorTabController
;
35
using
tdme::tools::editor::tabviews::TabView
;
36
using
tdme::tools::editor::views::EditorView
;
37
using
tdme::utilities::Float
;
38
39
/**
40
* UI editor tab view
41
* @author Andreas Drewke
42
* @version $Id$
43
*/
44
class
tdme::tools::editor::tabviews::UIEditorTabView
final:
public
TabView
,
protected
CameraRotationInputHandlerEventHandler
45
{
46
protected
:
47
Engine
*
guiEngine
{
nullptr
};
48
Engine
*
engine
{
nullptr
};
49
bool
projectedUi
{
false
};
50
Prototype
*
prototype
{
nullptr
};
51
string
modelMeshNode
;
52
float
projectedUiMinX
{ Float::MAX_VALUE };
53
float
projectedUiMinZ
{ Float::MAX_VALUE };
54
float
projectedUiMaxX
{ Float::MIN_VALUE };
55
float
projectedUiMaxZ
{ Float::MIN_VALUE };
56
57
private
:
58
EditorView
*
editorView
{
nullptr
};
59
string
tabId
;
60
PopUps
*
popUps
{
nullptr
};
61
UIEditorTabController
*
uiTabController
{
nullptr
};
62
TabView::OutlinerState
outlinerState
;
63
vector<GUIScreenNode*>
screenNodes
;
64
vector<array<int, 2>>
screenDimensions
;
65
CameraRotationInputHandler
*
cameraRotationInputHandler
{
nullptr
};
66
67
// overridden methods
68
void
onCameraRotation
()
override
;
69
void
onCameraScale
()
override
;
70
71
public
:
72
/**
73
* Public constructor
74
* @param editorView editor view
75
* @param tabId tab id
76
* @param screenNode screenNode
77
*/
78
UIEditorTabView
(
EditorView
*
editorView
,
const
string
&
tabId
,
GUIScreenNode
* screenNode);
79
80
/**
81
* Destructor
82
*/
83
~UIEditorTabView
();
84
85
/**
86
* @return editor view
87
*/
88
inline
EditorView
*
getEditorView
() {
89
return
editorView
;
90
}
91
92
/**
93
* @return associated tab controller
94
*/
95
inline
TabController
*
getTabController
()
override
{
96
return
uiTabController
;
97
}
98
99
/**
100
* @return pop up views
101
*/
102
inline
PopUps
*
getPopUps
() {
103
return
popUps
;
104
}
105
106
/**
107
* @return screen nodes
108
*/
109
inline
const
vector<GUIScreenNode*>&
getScreenNodes
() {
110
return
screenNodes
;
111
}
112
113
/**
114
* Add screen
115
*/
116
void
addScreen
();
117
118
/**
119
* Set screen
120
* @param screenIdx screen index
121
* @param screenNode screen node
122
*/
123
void
setScreen
(
int
screenIdx,
GUIScreenNode
* screenNode);
124
125
/**
126
* Unset screen
127
* @param screenIdx screen index
128
*/
129
void
unsetScreen
(
int
screenIdx);
130
131
/**
132
* Remove screen
133
* @param screenIdx screen index
134
*/
135
void
removeScreen
(
int
screenIdx);
136
137
/**
138
* Readd screens
139
*/
140
void
reAddScreens
();
141
142
/**
143
* @return prototype
144
*/
145
Prototype
*
getPrototype
();
146
147
/**
148
* Load prototype
149
* @param pathName path name
150
* @param fileName file name
151
* @param modelMeshNode model mesh node
152
* @param modelMeshAnimation model mesh animation
153
* @return model
154
*/
155
Prototype
*
loadPrototype
(
const
string
& pathName,
const
string
& fileName,
const
string
&
modelMeshNode
,
const
string
& modelMeshAnimation);
156
157
/**
158
* Set model mesh node
159
* @param modelMeshNode model mesh node
160
*/
161
void
setModelMeshNode
(
const
string
&
modelMeshNode
);
162
163
/**
164
* Set model mesh animation
165
* @param modelMeshAnimation model mesh animation
166
*/
167
void
setModelMeshAnimation
(
const
string
& modelMeshAnimation);
168
169
/**
170
* Remove model
171
*/
172
void
removePrototype
();
173
174
// overridden methods
175
void
handleInputEvents
()
override
;
176
void
display
()
override
;
177
inline
const
string
&
getTabId
()
override
{
178
return
tabId
;
179
}
180
void
initialize
()
override
;
181
void
dispose
()
override
;
182
Engine
*
getEngine
()
override
;
183
void
activate
()
override
;
184
void
deactivate
()
override
;
185
void
reloadOutliner
()
override
;
186
inline
bool
hasFixedSize
()
override
;
187
void
updateRendering
()
override
;
188
189
};
CameraRotationInputHandlerEventHandler.h
Float.h
Matrix4x4.h
PopUps.h
TabController.h
TabView.h
UIEditorTabController.h
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::engine::FrameBuffer
Frame buffer class.
Definition:
FrameBuffer.h:21
tdme::engine::prototype::Prototype
Prototype definition.
Definition:
Prototype.h:49
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
tdme::math::Matrix4x4
4x4 3D Matrix class
Definition:
Matrix4x4.h:24
tdme::tools::editor::misc::CameraRotationInputHandler
Camera Rotation Input Handler.
Definition:
CameraRotationInputHandler.h:23
tdme::tools::editor::misc::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::tabcontrollers::UIEditorTabController
UI editor tab controller.
Definition:
UIEditorTabController.h:42
tdme::tools::editor::tabviews::UIEditorTabView
UI editor tab view.
Definition:
UIEditorTabView.h:45
tdme::tools::editor::tabviews::UIEditorTabView::engine
Engine * engine
Definition:
UIEditorTabView.h:48
tdme::tools::editor::tabviews::UIEditorTabView::removePrototype
void removePrototype()
Remove model.
Definition:
UIEditorTabView.cpp:335
tdme::tools::editor::tabviews::UIEditorTabView::dispose
void dispose() override
Disposes the view.
Definition:
UIEditorTabView.cpp:145
tdme::tools::editor::tabviews::UIEditorTabView::hasFixedSize
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
Definition:
UIEditorTabView.cpp:156
tdme::tools::editor::tabviews::UIEditorTabView::display
void display() override
Renders the view.
Definition:
UIEditorTabView.cpp:126
tdme::tools::editor::tabviews::UIEditorTabView::reloadOutliner
void reloadOutliner() override
Reload outliner.
Definition:
UIEditorTabView.cpp:175
tdme::tools::editor::tabviews::UIEditorTabView::projectedUiMaxX
float projectedUiMaxX
Definition:
UIEditorTabView.h:54
tdme::tools::editor::tabviews::UIEditorTabView::getTabController
TabController * getTabController() override
Definition:
UIEditorTabView.h:95
tdme::tools::editor::tabviews::UIEditorTabView::tabId
string tabId
Definition:
UIEditorTabView.h:59
tdme::tools::editor::tabviews::UIEditorTabView::onCameraRotation
void onCameraRotation() override
On rotation event to be overloaded.
Definition:
UIEditorTabView.cpp:82
tdme::tools::editor::tabviews::UIEditorTabView::loadPrototype
Prototype * loadPrototype(const string &pathName, const string &fileName, const string &modelMeshNode, const string &modelMeshAnimation)
Load prototype.
Definition:
UIEditorTabView.cpp:241
tdme::tools::editor::tabviews::UIEditorTabView::initialize
void initialize() override
Initiates the view.
Definition:
UIEditorTabView.cpp:133
tdme::tools::editor::tabviews::UIEditorTabView::deactivate
void deactivate() override
Deactivate.
Definition:
UIEditorTabView.cpp:171
tdme::tools::editor::tabviews::UIEditorTabView::UIEditorTabView
UIEditorTabView(EditorView *editorView, const string &tabId, GUIScreenNode *screenNode)
Public constructor.
Definition:
UIEditorTabView.cpp:60
tdme::tools::editor::tabviews::UIEditorTabView::projectedUi
bool projectedUi
Definition:
UIEditorTabView.h:49
tdme::tools::editor::tabviews::UIEditorTabView::getEngine
Engine * getEngine() override
Definition:
UIEditorTabView.cpp:160
tdme::tools::editor::tabviews::UIEditorTabView::~UIEditorTabView
~UIEditorTabView()
Destructor.
Definition:
UIEditorTabView.cpp:73
tdme::tools::editor::tabviews::UIEditorTabView::screenNodes
vector< GUIScreenNode * > screenNodes
Definition:
UIEditorTabView.h:63
tdme::tools::editor::tabviews::UIEditorTabView::handleInputEvents
void handleInputEvents() override
Handle input events that have not yet been processed.
Definition:
UIEditorTabView.cpp:90
tdme::tools::editor::tabviews::UIEditorTabView::projectedUiMinX
float projectedUiMinX
Definition:
UIEditorTabView.h:52
tdme::tools::editor::tabviews::UIEditorTabView::setModelMeshAnimation
void setModelMeshAnimation(const string &modelMeshAnimation)
Set model mesh animation.
Definition:
UIEditorTabView.cpp:326
tdme::tools::editor::tabviews::UIEditorTabView::modelMeshNode
string modelMeshNode
Definition:
UIEditorTabView.h:51
tdme::tools::editor::tabviews::UIEditorTabView::outlinerState
TabView::OutlinerState outlinerState
Definition:
UIEditorTabView.h:62
tdme::tools::editor::tabviews::UIEditorTabView::projectedUiMinZ
float projectedUiMinZ
Definition:
UIEditorTabView.h:53
tdme::tools::editor::tabviews::UIEditorTabView::screenDimensions
vector< array< int, 2 > > screenDimensions
Definition:
UIEditorTabView.h:64
tdme::tools::editor::tabviews::UIEditorTabView::cameraRotationInputHandler
CameraRotationInputHandler * cameraRotationInputHandler
Definition:
UIEditorTabView.h:65
tdme::tools::editor::tabviews::UIEditorTabView::removeScreen
void removeScreen(int screenIdx)
Remove screen.
Definition:
UIEditorTabView.cpp:201
tdme::tools::editor::tabviews::UIEditorTabView::setScreen
void setScreen(int screenIdx, GUIScreenNode *screenNode)
Set screen.
Definition:
UIEditorTabView.cpp:185
tdme::tools::editor::tabviews::UIEditorTabView::getPopUps
PopUps * getPopUps()
Definition:
UIEditorTabView.h:102
tdme::tools::editor::tabviews::UIEditorTabView::uiTabController
UIEditorTabController * uiTabController
Definition:
UIEditorTabView.h:61
tdme::tools::editor::tabviews::UIEditorTabView::activate
void activate() override
Activate.
Definition:
UIEditorTabView.cpp:164
tdme::tools::editor::tabviews::UIEditorTabView::projectedUiMaxZ
float projectedUiMaxZ
Definition:
UIEditorTabView.h:55
tdme::tools::editor::tabviews::UIEditorTabView::guiEngine
Engine * guiEngine
Definition:
UIEditorTabView.h:47
tdme::tools::editor::tabviews::UIEditorTabView::unsetScreen
void unsetScreen(int screenIdx)
Unset screen.
Definition:
UIEditorTabView.cpp:191
tdme::tools::editor::tabviews::UIEditorTabView::getTabId
const string & getTabId() override
Definition:
UIEditorTabView.h:177
tdme::tools::editor::tabviews::UIEditorTabView::popUps
PopUps * popUps
Definition:
UIEditorTabView.h:60
tdme::tools::editor::tabviews::UIEditorTabView::getPrototype
Prototype * getPrototype()
Definition:
UIEditorTabView.cpp:237
tdme::tools::editor::tabviews::UIEditorTabView::prototype
Prototype * prototype
Definition:
UIEditorTabView.h:50
tdme::tools::editor::tabviews::UIEditorTabView::getScreenNodes
const vector< GUIScreenNode * > & getScreenNodes()
Definition:
UIEditorTabView.h:109
tdme::tools::editor::tabviews::UIEditorTabView::updateRendering
void updateRendering() override
Update rendering.
Definition:
UIEditorTabView.cpp:153
tdme::tools::editor::tabviews::UIEditorTabView::setModelMeshNode
void setModelMeshNode(const string &modelMeshNode)
Set model mesh node.
Definition:
UIEditorTabView.cpp:283
tdme::tools::editor::tabviews::UIEditorTabView::addScreen
void addScreen()
Add screen.
Definition:
UIEditorTabView.cpp:180
tdme::tools::editor::tabviews::UIEditorTabView::reAddScreens
void reAddScreens()
Readd screens.
Definition:
UIEditorTabView.cpp:211
tdme::tools::editor::tabviews::UIEditorTabView::editorView
EditorView * editorView
Definition:
UIEditorTabView.h:58
tdme::tools::editor::tabviews::UIEditorTabView::getEditorView
EditorView * getEditorView()
Definition:
UIEditorTabView.h:88
tdme::tools::editor::tabviews::UIEditorTabView::onCameraScale
void onCameraScale() override
On scale event to be overloaded.
Definition:
UIEditorTabView.cpp:86
tdme::tools::editor::views::EditorView
Editor View.
Definition:
EditorView.h:30
tdme::utilities::Float
Float class.
Definition:
Float.h:23
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
tdme::tools::editor::misc::CameraRotationInputHandlerEventHandler
Camera Rotation Input Handler Event Handler.
Definition:
CameraRotationInputHandlerEventHandler.h:12
tdme::tools::editor::tabcontrollers::TabController
Tab controller, which connects UI with logic.
Definition:
TabController.h:23
tdme::tools::editor::tabviews::TabView::OutlinerState
Definition:
TabView.h:29
tdme::tools::editor::tabviews::TabView
Tab view interface.
Definition:
TabView.h:28
tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3