TDME2
1.9.121
src
tdme
tools
editor
tabviews
subviews
PrototypeDisplaySubView.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
#include <vector>
5
6
#include <
tdme/tdme.h
>
7
#include <
tdme/engine/fwd-tdme.h
>
8
#include <
tdme/engine/prototype/fwd-tdme.h
>
9
#include <
tdme/tools/editor/tabcontrollers/subcontrollers/fwd-tdme.h
>
10
#include <
tdme/tools/editor/tabviews/subviews/fwd-tdme.h
>
11
12
using
std::string;
13
using
std::vector;
14
15
using
tdme::engine::prototype::Prototype
;
16
using
tdme::engine::Engine
;
17
using
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeDisplaySubController
;
18
19
/**
20
* Prototype display view
21
* @author Andreas Drewke
22
* @version $Id$
23
*/
24
class
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView
final
25
{
26
private
:
27
Engine
*
engine
{
nullptr
};
28
PrototypeDisplaySubController
*
prototypeDisplaySubController
{
nullptr
};
29
bool
displayGroundPlate
{
true
};
30
bool
displayShadowing
{
true
};
31
32
public
:
33
/**
34
* Public constructor
35
* @param engine engine
36
* @param prototypeDisplaySubController entity display sub screen controller
37
*/
38
PrototypeDisplaySubView
(
Engine
*
engine
,
PrototypeDisplaySubController
*
prototypeDisplaySubController
);
39
40
/**
41
* Destructor
42
*/
43
~PrototypeDisplaySubView
();
44
45
/**
46
* @return display ground plate
47
*/
48
inline
bool
isDisplayGroundPlate
() {
49
return
this->
displayGroundPlate
;
50
}
51
52
/**
53
* Set up ground plate visibility
54
* @param groundPlate ground plate visible
55
*/
56
inline
void
setDisplayGroundPlate
(
bool
groundPlate) {
57
this->
displayGroundPlate
= groundPlate;
58
}
59
60
/**
61
* @return display shadowing
62
*/
63
inline
bool
isDisplayShadowing
() {
64
return
displayShadowing
;
65
}
66
67
/**
68
* Set up shadow rendering
69
* @param shadowing shadow rendering
70
*/
71
inline
void
setDisplayShadowing
(
bool
shadowing) {
72
this->
displayShadowing
= shadowing;
73
}
74
75
/**
76
* Update shader parameters
77
* @param prototype prototype
78
*/
79
void
updateShaderParameters
(
Prototype
* prototype);
80
81
/**
82
* Display
83
* @param prototype prototype
84
*/
85
void
display
(
Prototype
* prototype);
86
87
};
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::engine::prototype::Prototype
Prototype definition.
Definition:
Prototype.h:49
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypeDisplaySubController
Prototype display sub screen controller.
Definition:
PrototypeDisplaySubController.h:41
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView
Prototype display view.
Definition:
PrototypeDisplaySubView.h:25
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::displayShadowing
bool displayShadowing
Definition:
PrototypeDisplaySubView.h:30
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::display
void display(Prototype *prototype)
Display.
Definition:
PrototypeDisplaySubView.cpp:55
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::engine
Engine * engine
Definition:
PrototypeDisplaySubView.h:27
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::updateShaderParameters
void updateShaderParameters(Prototype *prototype)
Update shader parameters.
Definition:
PrototypeDisplaySubView.cpp:37
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::displayGroundPlate
bool displayGroundPlate
Definition:
PrototypeDisplaySubView.h:29
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::~PrototypeDisplaySubView
~PrototypeDisplaySubView()
Destructor.
Definition:
PrototypeDisplaySubView.cpp:34
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::setDisplayShadowing
void setDisplayShadowing(bool shadowing)
Set up shadow rendering.
Definition:
PrototypeDisplaySubView.h:71
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::isDisplayGroundPlate
bool isDisplayGroundPlate()
Definition:
PrototypeDisplaySubView.h:48
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::setDisplayGroundPlate
void setDisplayGroundPlate(bool groundPlate)
Set up ground plate visibility.
Definition:
PrototypeDisplaySubView.h:56
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::prototypeDisplaySubController
PrototypeDisplaySubController * prototypeDisplaySubController
Definition:
PrototypeDisplaySubView.h:28
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::PrototypeDisplaySubView
PrototypeDisplaySubView(Engine *engine, PrototypeDisplaySubController *prototypeDisplaySubController)
Public constructor.
Definition:
PrototypeDisplaySubView.cpp:28
tdme::tools::editor::tabviews::subviews::PrototypeDisplaySubView::isDisplayShadowing
bool isDisplayShadowing()
Definition:
PrototypeDisplaySubView.h:63
fwd-tdme.h
fwd-tdme.h
tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3