TDME2 1.9.121
PrototypePhysicsSubView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
14
15using std::string;
16
24
25/**
26 * Prototype physics view
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31{
32public:
33 static constexpr int DISPLAY_BOUNDINGVOLUMEIDX_ALL { -1 };
34
35private:
36 static constexpr int MOUSE_DOWN_LAST_POSITION_NONE { -1 };
37
38 Engine* engine { nullptr };
40 PopUps* popUps { nullptr };
41
43
47
50
52
53public:
54 /**
55 * Public constructor
56 * @param engine engine
57 * @param prototypePhysicsSubController pop ups
58 * @param popUps model editor screen controller
59 * @param maxBoundingVolumeCount maximum number of editable bounding volumes or -1 for default
60 * @param boundingVolumeTypeMask bounding volume type mask
61 */
63
64 /**
65 * Destructor
66 */
68
69 /**
70 * @return display bounding volume
71 */
74 }
75
76 /**
77 * Set up bounding volume visibility
78 * @param displayBoundingVolume bounding volume
79 */
81 this->displayBoundingVolume = displayBoundingVolume;
82 }
83
84 /**
85 * @return bounding volume index to display or DISPLAY_BOUNDINGVOLUMEIDX_ALL
86 */
87 inline int getDisplayBoundingVolumeIdx() const {
89 }
90
91 /**
92 * Set display bounding volume idx
93 * @param displayBoundingVolumeIdx display bounding volume index or DISPLAY_BOUNDINGVOLUMEIDX_ALL
94 */
96 this->displayBoundingVolumeIdx = displayBoundingVolumeIdx;
97 }
98
99 /**
100 * @return pop ups
101 */
102 PopUps* getPopUps();
103
104 /**
105 * Clear model bounding volume
106 * @param idx idx
107 */
108 void clearModelBoundingVolume(int idx);
109
110 /**
111 * Setup model bounding volume
112 * @param prototype prototype
113 * @param idx idx
114 */
115 void setupModelBoundingVolume(Prototype* prototype, int idx);
116
117 /**
118 * On bounding volume none apply
119 * @param prototype prototype
120 * @param idx bounding volume index
121 */
122 void applyBoundingVolumeNone(Prototype* prototype, int idx);
123
124 /**
125 * On bounding volume sphere apply
126 * @param prototype prototype
127 * @param idx bounding volume index
128 * @param center sphere center
129 * @param radius radius
130 */
131 void applyBoundingVolumeSphere(Prototype* prototype, int idx, const Vector3& center, float radius);
132
133 /**
134 * On bounding volume capsule apply
135 * @param prototype prototype
136 * @param idx bounding volume index
137 * @param a point a
138 * @param b point b
139 * @param radius radius
140 */
141 void applyBoundingVolumeCapsule(Prototype* prototype, int idx, const Vector3& a, const Vector3& b, float radius);
142
143 /**
144 * On bounding volume AABB apply
145 * @param prototype prototype
146 * @param idx bounding volume index
147 * @param min AABB min vector
148 * @param max AABB max vector
149 */
150 void applyBoundingVolumeAabb(Prototype* prototype, int idx, const Vector3& min, const Vector3& max);
151
152 /**
153 * On bounding volume OBB apply
154 * @param prototype prototype
155 * @param idx bounding volume index
156 * @param center OBB center
157 * @param axis0 OBB axis 0
158 * @param axis1 OBB axis 1
159 * @param axis2 OBB axis 2
160 * @param halfExtension OBB half extension
161 */
162 void applyBoundingVolumeObb(Prototype* prototype, int idx, const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension);
163
164 /**
165 * Apply bounding volume convex mesh clear
166 * @param prototype prototype
167 * @param idx bounding volume index
168 */
169 void applyBoundingVolumeConvexMeshClear(Prototype* prototype, int idx);
170
171 /**
172 * On bounding volume convex mesh apply
173 * @param prototype prototype
174 * @param idx bounding volume index
175 * @param fileName file name
176 */
177 void applyBoundingVolumeConvexMesh(Prototype* prototype, int idx, const string& fileName);
178
179 /**
180 * Apply bounding volume transformations
181 * @param prototype prototype
182 * @param idx bounding volume index
183 * @param transformations transformations
184 * @param objectScale object scale
185 * @param guiOnly only update GUI not the BV it self
186 */
187 void applyBoundingVolumeTransformations(Prototype* prototype, int idx, const Transformations& transformations, const Vector3& objectScale, bool guiOnly);
188
189 /**
190 * Handle input events
191 * @param prototype prototype
192 * @param objectScale object scale
193 */
194 void handleInputEvents(Prototype* prototype, const Vector3& objectScale);
195
196 /**
197 * Display
198 * @param prototype prototype
199 */
200 void display(Prototype* prototype);
201
202 /**
203 * Update GIZMO
204 * @param prototype prototype
205 */
206 void updateGizmo(Prototype* prototype);
207
208 /**
209 * Set GIZMO rotation
210 * @param prototype prototype
211 * @param transformations transformations
212 */
213 void setGizmoRotation(Prototype* prototype, const Transformations& transformations);
214
215 /**
216 * Start editing bounding volume
217 * @param prototype prototype
218 */
219 void startEditingBoundingVolume(Prototype* prototype);
220
221 /**
222 * End editing bounding volume
223 * @param prototype prototype
224 */
225 void endEditingBoundingVolume(Prototype* prototype);
226
227 /**
228 * @return is editing bounding volume
229 */
230 bool isEditingBoundingVolume(Prototype* prototype);
231
232};
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22
Gizmo tool for views.
Definition: Gizmo.h:26
Pop ups controller accessor class.
Definition: PopUps.h:19
void applyBoundingVolumeConvexMesh(Prototype *prototype, int idx, const string &fileName)
On bounding volume convex mesh apply.
void applyBoundingVolumeTransformations(Prototype *prototype, int idx, const Transformations &transformations, const Vector3 &objectScale, bool guiOnly)
Apply bounding volume transformations.
void applyBoundingVolumeCapsule(Prototype *prototype, int idx, const Vector3 &a, const Vector3 &b, float radius)
On bounding volume capsule apply.
void applyBoundingVolumeSphere(Prototype *prototype, int idx, const Vector3 &center, float radius)
On bounding volume sphere apply.
void applyBoundingVolumeObb(Prototype *prototype, int idx, const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
On bounding volume OBB apply.
void applyBoundingVolumeConvexMeshClear(Prototype *prototype, int idx)
Apply bounding volume convex mesh clear.
void setDisplayBoundingVolumeIdx(int displayBoundingVolumeIdx)
Set display bounding volume idx.
void setGizmoRotation(Prototype *prototype, const Transformations &transformations)
Set GIZMO rotation.
void setDisplayBoundingVolume(bool displayBoundingVolume)
Set up bounding volume visibility.
void endEditingBoundingVolume(Prototype *prototype)
End editing bounding volume.
void handleInputEvents(Prototype *prototype, const Vector3 &objectScale)
Handle input events.
void startEditingBoundingVolume(Prototype *prototype)
Start editing bounding volume.
void applyBoundingVolumeAabb(Prototype *prototype, int idx, const Vector3 &min, const Vector3 &max)
On bounding volume AABB apply.
void applyBoundingVolumeNone(Prototype *prototype, int idx)
On bounding volume none apply.
PrototypePhysicsSubView(Engine *engine, PrototypePhysicsSubController *prototypePhysicsSubController, PopUps *popUps, int maxBoundingVolumeCount=-1, int32_t boundingVolumeTypeMask=PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ALL)
Public constructor.
void setupModelBoundingVolume(Prototype *prototype, int idx)
Setup model bounding volume.