TDME2 1.9.121
PrototypeDisplaySubController.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
19
20using std::array;
21
34
35/**
36 * Prototype display sub screen controller
37 * @author Andreas Drewke
38 * @version $Id$
39 */
41{
42private:
44 EditorView* editorView { nullptr };
45 TabView* tabView { nullptr };
48 PopUps* popUps { nullptr };
49
50 bool displayShadowing { true };
51 bool displayGround { true };
53
54 array<string, 6> applyDisplayNodes = {
55 "rendering_shader",
56 "rendering_distance_shader",
57 "rendering_distanceshader_distance",
58 "rendering_contributes_shadows",
59 "rendering_receives_shadows",
60 "rendering_render_groups"
61 };
63 "rendering_shader",
64 "rendering_distance_shader"
65 };
66
67public:
68 /**
69 * Public constructor
70 * @param editorView editor view
71 * @param tabView tab view
72 * @param physicsView physics view
73 */
75
76 /**
77 * Destructor
78 */
80
81 /**
82 * @return view
83 */
85
86 /**
87 * Init
88 * @param screenNode screen node
89 */
91
92 /**
93 * @return display shadowing checked
94 */
96
97 /**
98 * @return display ground checked
99 */
100 bool getDisplayGround();
101
102 /**
103 * @return display bounding volume checked
104 */
106
107 /**
108 * Create display properties XML
109 * @param prototype prototype
110 * @param xml xml
111 */
112 void createDisplayPropertiesXML(Prototype* prototype, string& xml);
113
114 /**
115 * Set display details
116 * @param prototype prototype
117 */
118 void setDisplayDetails(Prototype* prototype);
119
120 /**
121 * Update details panel
122 * @param prototype prototype
123 * @param outlinerNode outliner node
124 */
125 void updateDetails(Prototype* prototype, const string& outlinerNode);
126
127 /**
128 * Apply display details
129 * @param prototype prototype
130 */
131 void applyDisplayDetails(Prototype* prototype);
132
133 /**
134 * Create display shader details XML
135 * @param prototype prototype
136 * @param shaderParameterPrefix shader parameter prefix
137 * @param shader shader
138 * @param shaderParameters shader parameters
139 * @param xml xml
140 */
141 void createDisplayShaderDetailsXML(Prototype* prototype, const string& shaderParameterPrefix, const string& shader, const EntityShaderParameters& shaderParameters, string& xml);
142
143 /**
144 * Set display shader details
145 * @param prototype prototype
146 */
147 void setDisplayShaderDetails(Prototype* prototype);
148
149 /**
150 * Set display distance shader details
151 * @param prototype prototype
152 */
154
155 /**
156 * Apply display shader details
157 * @param prototype prototype
158 * @param shaderParameterPrefix shader parameter prefix
159 * @param parameterName parameter name
160 * @param shaderParameters shader parameters
161 */
162 void applyDisplayShaderDetails(Prototype* prototype, const string& shaderParameterPrefix, const string& parameterName, EntityShaderParameters& shaderParameters);
163 /**
164 * On value changed
165 * @param node node
166 * @param prototype prototype
167 */
168 void onValueChanged(GUIElementNode* node, Prototype* prototype);
169
170 /**
171 * Shows the error pop up
172 * @param caption caption
173 * @param message message
174 */
175 void showErrorPopUp(const string& caption, const string& message);
176
177};
Engine main class.
Definition: Engine.h:122
TDME2 engine entity shader parameters.
Prototype definition.
Definition: Prototype.h:49
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Pop ups controller accessor class.
Definition: PopUps.h:19
PrototypeDisplaySubController(EditorView *editorView, TabView *tabView, PrototypePhysicsSubView *physicsView)
Public constructor.
void createDisplayPropertiesXML(Prototype *prototype, string &xml)
Create display properties XML.
void createDisplayShaderDetailsXML(Prototype *prototype, const string &shaderParameterPrefix, const string &shader, const EntityShaderParameters &shaderParameters, string &xml)
Create display shader details XML.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void applyDisplayShaderDetails(Prototype *prototype, const string &shaderParameterPrefix, const string &parameterName, EntityShaderParameters &shaderParameters)
Apply display shader details.
void setDisplayDistanceShaderDetails(Prototype *prototype)
Set display distance shader details.
Mutable string class.
Definition: MutableString.h:16