TDME2 1.9.121
PrototypePhysicsSubController.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>
13#include <tdme/math/fwd-tdme.h>
21
22using std::array;
23using std::string;
24using std::vector;
25
39
40/**
41 * Prototype physics sub screen controller
42 * @author Andreas Drewke
43 * @version $Id$
44 */
46{
51
52private:
54 EditorView* editorView { nullptr };
55 TabView* tabView { nullptr };
57 PopUps* popUps { nullptr };
63
64 array<string, 7> applyPhysicsNodes = {
65 "physics_bodytype",
66 "physics_dynamic_mass",
67 "physics_dynamic_bounciness",
68 "physics_dynamic_friction",
69 "physics_dynamic_inertiatensor_x",
70 "physics_dynamic_inertiatensor_y",
71 "physics_dynamic_inertiatensor_z",
72 };
73
74 array<string, 4> applyBoundingVolumSphereNodes = {
75 "boundingvolume_sphere_x",
76 "boundingvolume_sphere_y",
77 "boundingvolume_sphere_z",
78 "boundingvolume_sphere_radius"
79 };
80
81 array<string, 7> applyBoundingVolumCapsuleNodes = {
82 "boundingvolume_capsule_a_x",
83 "boundingvolume_capsule_a_y",
84 "boundingvolume_capsule_a_z",
85 "boundingvolume_capsule_b_x",
86 "boundingvolume_capsule_b_y",
87 "boundingvolume_capsule_b_z",
88 "boundingvolume_capsule_radius",
89 };
90
91 array<string, 9> applyBoundingVolumOBBNodes = {
92 "boundingvolume_obb_x",
93 "boundingvolume_obb_y",
94 "boundingvolume_obb_z",
95 "boundingvolume_obb_rotation_x",
96 "boundingvolume_obb_rotation_y",
97 "boundingvolume_obb_rotation_z",
98 "boundingvolume_obb_width",
99 "boundingvolume_obb_height",
100 "boundingvolume_obb_depth"
101 };
102
104
105public:
113 BOUNDINGVOLUMETYPE_ALL = 1 + 2 + 4 +8 + 16 + 32
114 };
115
116 /**
117 * Public constructor
118 * @param editorView editor view
119 * @param tabView tabView
120 * @param isModelBoundingVolumes is model bounding volumes
121 * @param maxBoundingVolumeCount maximum number of editable bounding volumes or -1 for default
122 * @param boundingVolumeTypeMask bounding volume type mask
123 */
125
126 /**
127 * Destructor
128 */
130
131 /**
132 * @return view
133 */
135
136 /**
137 * @return screen node
138 */
140
141 /**
142 * Init
143 * @param screenNode screen node
144 */
146
147 /**
148 * Shows the error pop up
149 * @param caption caption
150 * @param message message
151 */
152 void showErrorPopUp(const string& caption, const string& message);
153
154 /**
155 * Create physics XML for outliner
156 * @param prototype prototype
157 * @param xml xml
158 */
159 void createOutlinerPhysicsXML(Prototype* prototype, string& xml);
160
161 /**
162 * Set physics details
163 * @param prototype prototype
164 */
165 void setPhysicsDetails(Prototype* prototype);
166
167 /**
168 * Apply physics details
169 * @param prototype prototype
170 */
171 void applyPhysicsDetails(Prototype* prototype);
172
173 /**
174 * Update details panel
175 * @param prototype prototype
176 * @param outlinerNode outliner node
177 */
178 void updateDetails(Prototype* prototype, const string& outlinerNode);
179
180 /**
181 * Set bounding volume sphere details
182 * @param center center
183 * @param radius radius
184 */
185 void setBoundingVolumeSphereDetails(const Vector3& center, float radius);
186
187 /**
188 * Set bounding volume capsule details
189 * @param a point a
190 * @param b point b
191 * @param radius radius
192 */
193 void setBoundingVolumeCapsuleDetails(const Vector3& a, const Vector3& b, float radius);
194
195 /**
196 * Set bounding volume OOB details
197 * @param center center
198 * @param axis0 axis 0
199 * @param axis1 axis 1
200 * @param axis2 axis 2
201 * @param halfExtension half extension
202 */
203 void setBoundingVolumeOBBDetails(const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension);
204
205 /**
206 * Set import convex mesh from model details
207 */
209
210 /**
211 * Set generate convex mesh from model details
212 */
214
215 /**
216 * Set bounding volume details
217 * @param prototype prototype
218 * @param boundingVolumeIdx bounding volume index
219 */
220 void setBoundingVolumeDetails(Prototype* prototype, int boundingVolumeIdx);
221
222 /**
223 * Apply bounding volume sphere details
224 * @param prototype prototype
225 * @param idx bounding volume index
226 */
227 void applyBoundingVolumeSphereDetails(Prototype* prototype, int idx);
228
229 /**
230 * Apply bounding volume capsule details
231 * @param prototype prototype
232 * @param idx bounding volume index
233 */
234 void applyBoundingVolumeCapsuleDetails(Prototype* prototype, int idx);
235
236 /**
237 * Apply bounding volume obb details
238 * @param prototype prototype
239 * @param idx bounding volume index
240 */
241 void applyBoundingVolumeObbDetails(Prototype* prototype, int idx);
242
243 /**
244 * Apply bounding volume convex mesh details
245 * @param prototype prototype
246 * @param idx bounding volume index
247 */
248 void applyBoundingVolumeConvexMeshDetails(Prototype* prototype, int idx);
249
250 /**
251 * Create bounding volume
252 * @param prototype prototype
253 */
254 void createBoundingVolume(Prototype* prototype);
255
256 /**
257 * On value changed
258 * @param node node
259 * @param prototype prototype
260 */
261 void onValueChanged(GUIElementNode* node, Prototype* prototype);
262
263 /**
264 * On action performed
265 * @param type type
266 * @param node node
267 * @param prototype prototype
268 */
270
271 /**
272 * On context menu requested
273 * @param node node
274 * @param mouseX unscaled mouse X position
275 * @param mouseY unscaled mouse Y position
276 * @param prototype prototype
277 */
278 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY, Prototype* prototype);
279
280 /**
281 * Enable tool bar
282 */
283 void enableTools();
284
285 /*
286 * Disable tool bar
287 */
288 void disableTools();
289};
Prototype definition.
Definition: Prototype.h:49
GUI node base class.
Definition: GUINode.h:63
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
void setBoundingVolumeDetails(Prototype *prototype, int boundingVolumeIdx)
Set bounding volume details.
void applyBoundingVolumeSphereDetails(Prototype *prototype, int idx)
Apply bounding volume sphere details.
void applyBoundingVolumeConvexMeshDetails(Prototype *prototype, int idx)
Apply bounding volume convex mesh details.
void createOutlinerPhysicsXML(Prototype *prototype, string &xml)
Create physics XML for outliner.
void applyBoundingVolumeObbDetails(Prototype *prototype, int idx)
Apply bounding volume obb details.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void applyBoundingVolumeCapsuleDetails(Prototype *prototype, int idx)
Apply bounding volume capsule details.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void setBoundingVolumeOBBDetails(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Set bounding volume OOB details.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void setBoundingVolumeSphereDetails(const Vector3 &center, float radius)
Set bounding volume sphere details.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
PrototypePhysicsSubController(EditorView *editorView, TabView *tabView, bool isModelBoundingVolumes, int maxBoundingVolumeCount=-1, int32_t boundingVolumeTypeMask=BOUNDINGVOLUMETYPE_ALL)
Public constructor.
void setBoundingVolumeCapsuleDetails(const Vector3 &a, const Vector3 &b, float radius)
Set bounding volume capsule details.
Mutable string class.
Definition: MutableString.h:16