TDME2 1.9.121
Body.h
Go to the documentation of this file.
1#pragma once
2
3#include <algorithm>
4#include <string>
5#include <vector>
6
7#include <ext/reactphysics3d/src/body/Body.h>
8#include <ext/reactphysics3d/src/body/CollisionBody.h>
9#include <ext/reactphysics3d/src/body/RigidBody.h>
10#include <ext/reactphysics3d/src/collision/ProxyShape.h>
11
12#include <tdme/tdme.h>
20#include <tdme/math/fwd-tdme.h>
21#include <tdme/math/Matrix4x4.h>
22#include <tdme/math/Vector3.h>
23
24using std::remove;
25using std::string;
26using std::vector;
27
36
37/**
38 * Dynamic rigid/static rigid/collision body class
39 * @author Andreas Drewke
40 * @version $Id$
41 */
43{
44 friend class World;
45
46public:
47 static constexpr int32_t TYPE_STATIC { 0 };
48 static constexpr int32_t TYPE_DYNAMIC { 2 };
49 static constexpr int32_t TYPE_KINEMATIC { 1 };
50 static constexpr int32_t TYPE_COLLISION { 3 };
51
52 static constexpr uint16_t TYPEID_STATIC { 1 };
53 static constexpr uint16_t TYPEID_DYNAMIC { 2 };
54 static constexpr uint16_t TYPEIDS_ALL { 65535 };
55
56 /**
57 * @return no rotation inertia tensor
58 */
60
61private:
62 World* world { nullptr };
63 reactphysics3d::RigidBody* rigidBody { nullptr };
64 reactphysics3d::CollisionBody* collisionBody { nullptr };
65 bool cloned { false };
66 string id;
67 string rootId;
68 int32_t type;
69 float mass;
75 vector<BoundingVolume*> boundingVolumes;
76 vector<reactphysics3d::ProxyShape*> proxyShapes;
77 vector<CollisionListener*> collisionListener;
78
79 /**
80 * Protected constructor
81 * @param world world
82 * @param id id
83 * @param type type
84 * @param enabled enabled
85 * @param collisionTypeId collision type id
86 * @param transformations transformations
87 * @param restitution restitution
88 * @param friction friction
89 * @param mass mass in kg
90 * @param inertiaTensor inertia tensor vector
91 * @param boundingVolumes bounding volumes
92 */
93 Body(World* world, const string& id, int type, bool enabled, uint16_t collisionTypeId, const Transformations& transformations, float restitution, float friction, float mass, const Vector3& inertiaTensor, const vector<BoundingVolume*> boundingVolumes);
94
95 /**
96 * Destructor
97 */
98 ~Body();
99
100 /**
101 * Reset proxy shapes
102 */
103 void resetProxyShapes();
104
105 /**
106 * Fire on collision
107 * @param other other
108 * @param collisionResponse collision response
109 */
110 void fireOnCollision(Body* other, CollisionResponse& collisionResponse);
111
112 /**
113 * Fire on collision begin
114 * @param other other
115 * @param collisionResponse collision response
116 */
117 void fireOnCollisionBegin(Body* other, CollisionResponse& collisionResponse);
118
119 /**
120 * Fire on collision end
121 * @param other other
122 */
123 void fireOnCollisionEnd(Body* other);
124
125 /**
126 * Computes the inverse inertia matrix
127 * @param boundingBox bounding box
128 * @param mass mass
129 * @param scaleXAxis scale x axis
130 * @param scaleYAxis scale y axis
131 * @param scaleZAxis scale z axis
132 * @return inverse inertia matrix
133 */
134 static Matrix4x4 computeInverseInertiaMatrix(BoundingBox* boundingBox, float mass, float scaleXAxis, float scaleYAxis, float scaleZAxis);
135
136public:
137 /**
138 * @return if rigid body has been cloned from another rigid body
139 */
140 bool isCloned();
141
142 /**
143 * Set cloned
144 * @param cloned cloned
145 */
146 void setCloned(bool cloned);
147
148 /**
149 * @return id
150 */
151 const string& getId();
152
153 /**
154 * @return root id
155 */
156 const string& getRootId();
157
158 /**
159 * Set root id
160 * @param rootId root id
161 */
162 void setRootId(const string& rootId);
163
164 /**
165 * Return type, see TYPE_*
166 * @return type
167 */
168 int getType();
169
170 /**
171 * @return type id
172 */
173 uint16_t getCollisionTypeId();
174
175 /**
176 * Set collision type id
177 * @param typeId type id
178 */
179 void setCollisionTypeId(uint16_t typeId);
180
181 /**
182 * @return collision type ids bitmask
183 */
184 uint16_t getCollisionTypeIds();
185
186 /**
187 * Set up collision type ids
188 * @param collisionTypeIds collisionTypeIds
189 */
190 void setCollisionTypeIds(uint16_t collisionTypeIds);
191
192 /**
193 * @return if enabled
194 */
195 bool isEnabled();
196
197 /**
198 * Set up if rigid body is enabled
199 * @param enabled enabled
200 */
201 void setEnabled(bool enabled);
202
203 /**
204 * @return object is static
205 */
206 bool isStatic();
207
208 /**
209 * @return if sleeping
210 */
211 bool isSleeping();
212
213 /**
214 * Set sleeping
215 * @param sleeping sleeping
216 */
217 void setSleeping(bool sleeping);
218
219 /**
220 * @return bounding volumes
221 */
222 vector<BoundingVolume*>& getBoundingVolumes();
223
224 /**
225 * Add bounding volume
226 * @param boundingVolume bounding volume
227 */
228 void addBoundingVolume(BoundingVolume* boundingVolume);
229
230 /**
231 * Compute bounding box transformed
232 */
234
235 /**
236 * @return friction
237 */
238 float getFriction();
239
240 /**
241 * Set up friction
242 * @param friction friction
243 */
244 void setFriction(float friction);
245
246 /**
247 * @return restitution / bouncyness
248 */
249 float getRestitution();
250
251 /**
252 * Set up restitution
253 * @param restitution restitution
254 */
255 void setRestitution(float restitution);
256
257 /**
258 * @return mass
259 */
260 float getMass();
261
262 /**
263 * Set up mass
264 * @param mass mass
265 */
266 void setMass(float mass);
267
268 /**
269 * @return linear velocity
270 */
272
273 /**
274 * Set linear velocity
275 * @param linearVelocity velocity
276 */
277 void setLinearVelocity(const Vector3& linearVelocity);
278
279 /**
280 * @return angular velocity
281 */
283
284 /**
285 * Set angular velocity
286 * @param angularVelocity angular velocity
287 */
288 void setAngularVelocity(const Vector3& angularVelocity);
289
290 /**
291 * @return return linear damping
292 */
293 float getLinearDamping();
294
295 /**
296 * Set linear damping
297 * @param linearDamping linear damping
298 */
299 void setLinearDamping(float linearDamping);
300
301 /**
302 * @return return angular damping
303 */
304 float getAngularDamping();
305
306 /**
307 * Set angular damping
308 * @param angularDamping anuglar damping
309 */
310 void setAngularDamping(float angularDamping);
311
312 /**
313 * @return transformations
314 */
316
317 /**
318 * Synchronizes this rigid body with transformations
319 * @param transformations transformations
320 */
322
323 /**
324 * Add force
325 * @param forceOrigin position of world force
326 * @param force force
327 */
328 void addForce(const Vector3& forceOrigin, const Vector3& force);
329
330 /**
331 * Add force to center of mass
332 * @param forceOrigin force
333 */
334 void addForce(const Vector3& forceOrigin);
335
336 /**
337 * Add torque
338 * @param torque torque
339 */
340 void addTorque(const Vector3& torque);
341
342 /**
343 * Add a collision listener to this rigid body
344 * @param listener listener
345 */
347
348 /**
349 * Remove a collision listener to this rigid body
350 * @param listener listener
351 */
353
354};
Transformations which contain scale, rotations and translation.
Dynamic rigid/static rigid/collision body class.
Definition: Body.h:43
vector< BoundingVolume * > boundingVolumes
Definition: Body.h:75
uint16_t getCollisionTypeIds()
Definition: Body.cpp:187
void setCloned(bool cloned)
Set cloned.
Definition: Body.cpp:152
vector< CollisionListener * > collisionListener
Definition: Body.h:77
void addTorque(const Vector3 &torque)
Add torque.
Definition: Body.cpp:533
reactphysics3d::RigidBody * rigidBody
Definition: Body.h:63
void fireOnCollisionBegin(Body *other, CollisionResponse &collisionResponse)
Fire on collision begin.
Definition: Body.cpp:561
void setMass(float mass)
Set up mass.
Definition: Body.cpp:369
void resetProxyShapes()
Reset proxy shapes.
Definition: Body.cpp:224
void setAngularVelocity(const Vector3 &angularVelocity)
Set angular velocity.
Definition: Body.cpp:413
vector< BoundingVolume * > & getBoundingVolumes()
Definition: Body.cpp:220
Transformations transformations
Definition: Body.h:73
static constexpr uint16_t TYPEID_DYNAMIC
Definition: Body.h:53
BoundingBox computeBoundingBoxTransformed()
Compute bounding box transformed.
Definition: Body.cpp:312
void setEnabled(bool enabled)
Set up if rigid body is enabled.
Definition: Body.cpp:205
static Matrix4x4 computeInverseInertiaMatrix(BoundingBox *boundingBox, float mass, float scaleXAxis, float scaleYAxis, float scaleZAxis)
Computes the inverse inertia matrix.
Definition: Body.cpp:122
void setLinearVelocity(const Vector3 &linearVelocity)
Set linear velocity.
Definition: Body.cpp:392
void setFriction(float friction)
Set up friction.
Definition: Body.cpp:337
void setRestitution(float restitution)
Set up restitution.
Definition: Body.cpp:355
void setSleeping(bool sleeping)
Set sleeping.
Definition: Body.cpp:216
uint16_t collideTypeIds
Definition: Body.h:70
reactphysics3d::CollisionBody * collisionBody
Definition: Body.h:64
void setCollisionTypeId(uint16_t typeId)
Set collision type id.
Definition: Body.cpp:179
void addForce(const Vector3 &forceOrigin, const Vector3 &force)
Add force.
Definition: Body.cpp:510
static constexpr int32_t TYPE_DYNAMIC
Definition: Body.h:48
int getType()
Return type, see TYPE_*.
Definition: Body.cpp:170
void setLinearDamping(float linearDamping)
Set linear damping.
Definition: Body.cpp:430
void removeCollisionListener(CollisionListener *listener)
Remove a collision listener to this rigid body.
Definition: Body.cpp:549
void fireOnCollisionEnd(Body *other)
Fire on collision end.
Definition: Body.cpp:568
void setAngularDamping(float angularDamping)
Set angular damping.
Definition: Body.cpp:448
Body(World *world, const string &id, int type, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float restitution, float friction, float mass, const Vector3 &inertiaTensor, const vector< BoundingVolume * > boundingVolumes)
Protected constructor.
Definition: Body.cpp:62
static constexpr int32_t TYPE_KINEMATIC
Definition: Body.h:49
const Transformations & getTransformations()
Definition: Body.cpp:457
const Vector3 getAngularVelocity()
Definition: Body.cpp:400
const string & getRootId()
Definition: Body.cpp:161
vector< reactphysics3d::ProxyShape * > proxyShapes
Definition: Body.h:76
static constexpr uint16_t TYPEIDS_ALL
Definition: Body.h:54
static constexpr uint16_t TYPEID_STATIC
Definition: Body.h:52
static const Vector3 getNoRotationInertiaTensor()
Definition: Body.cpp:118
void setCollisionTypeIds(uint16_t collisionTypeIds)
Set up collision type ids.
Definition: Body.cpp:192
Vector3 transformationsScale
Definition: Body.h:74
uint16_t collisionTypeId
Definition: Body.h:71
void fromTransformations(const Transformations &transformations)
Synchronizes this rigid body with transformations.
Definition: Body.cpp:461
const string & getId()
Definition: Body.cpp:156
void addCollisionListener(CollisionListener *listener)
Add a collision listener to this rigid body.
Definition: Body.cpp:544
uint16_t getCollisionTypeId()
Definition: Body.cpp:174
void fireOnCollision(Body *other, CollisionResponse &collisionResponse)
Fire on collision.
Definition: Body.cpp:554
static constexpr int32_t TYPE_STATIC
Definition: Body.h:47
void addBoundingVolume(BoundingVolume *boundingVolume)
Add bounding volume.
const Vector3 getLinearVelocity()
Definition: Body.cpp:379
static constexpr int32_t TYPE_COLLISION
Definition: Body.h:50
void setRootId(const string &rootId)
Set root id.
Definition: Body.cpp:166
Dynamic physics world class.
Definition: World.h:38
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22