TDME2 1.9.121
World.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7
8#include <ext/reactphysics3d/src/engine/DynamicsWorld.h>
9
10#include <tdme/tdme.h>
15#include <tdme/math/fwd-tdme.h>
17
18using std::map;
19using std::string;
20using std::vector;
21
31
32/**
33 * Dynamic physics world class
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38{
39 friend class Body;
40
41private:
43 string body1Id;
44 string body2Id;
45 };
46
47 reactphysics3d::DynamicsWorld world;
48
49 vector<Body*> bodies;
50 vector<Body*> rigidBodiesDynamic;
51 map<string, Body*> bodiesById;
52 map<string, BodyCollisionStruct> bodyCollisionsLastFrame;
53 vector<WorldListener*> worldListeners;
54
55 /**
56 * Synch into cloned body from body
57 * @param clonedBody cloned body
58 * @param body body
59 */
60 void synch(Body* clonedBody, Body* body);
61
62public:
63 /**
64 * Public constructor
65 */
66 World();
67
68 /**
69 * Destructor
70 */
71 ~World();
72
73 /**
74 * Resets the physic world
75 */
76 void reset();
77
78 /**
79 * Add a rigid body
80 * @param id id
81 * @param enabled enabled
82 * @param collisionTypeId collision type id
83 * @param transformations transformations
84 * @param restitution restitution
85 * @param friction friction
86 * @param mass mass
87 * @param inertiaTensor inertia matrix
88 * @param boundingVolumes bounding volumes
89 * @return body
90 */
91 Body* addRigidBody(const string& id, bool enabled, uint16_t collisionTypeId, const Transformations& transformations, float restitution, float friction, float mass, const Vector3& inertiaTensor, vector<BoundingVolume*> boundingVolumes);
92
93 /**
94 * Add a collision body
95 * @param id id
96 * @param enabled enabled
97 * @param collisionTypeId collision type id
98 * @param transformations transformations
99 * @param boundingVolumes bounding volumes
100 * @return body
101 */
102 Body* addCollisionBody(const string& id, bool enabled, uint16_t collisionTypeId, const Transformations& transformations, vector<BoundingVolume*> boundingVolumes);
103
104 /**
105 * Add a static rigid body
106 * @param id id
107 * @param enabled enabled
108 * @param collisionTypeId collision type id
109 * @param transformations transformations
110 * @param friction friction
111 * @param boundingVolumes bounding volumes
112 * @return body
113 */
114 Body* addStaticRigidBody(const string& id, bool enabled, uint16_t collisionTypeId, const Transformations& transformations, float friction, vector<BoundingVolume*> boundingVolumes);
115
116 /**
117 * Returns body identified by id
118 * @param id id
119 * @return ridig body
120 */
121 Body* getBody(const string& id);
122
123 /**
124 * Removes body identified by id
125 * @param id id
126 */
127 void removeBody(const string& id);
128
129 /**
130 * Update world
131 * @param deltaTime delta time
132 */
133 void update(float deltaTime);
134
135 /**
136 * Synch physics world with engine
137 * @param engine engine
138 */
139 void synch(Engine* engine);
140
141 /**
142 * Determine height on x,y,u while respecting step up max
143 * @param collisionTypeId collision type ids
144 * @param stepUpMax step up max
145 * @param point point on which height should be calculated
146 * @param dest point where height has been determined
147 * @param minHeight min height to determine height from
148 * @param maxHeight max height to start raytracing from
149 * @return body from which height was determined or null
150 */
151 Body* determineHeight(uint16_t collisionTypeId, float stepUpMax, const Vector3& point, Vector3& dest, float minHeight = -10000.0f, float maxHeight = 10000.0f);
152
153 /**
154 * Do a ray cast from given start to given end point, if there is any body with given collision type in between
155 * then the body is returned and a hit point is reported
156 * @param collisionTypeIds collision type ids
157 * @param start start
158 * @param end end
159 * @param hitPoint hit point
160 * @param actorId actor rigid body id, which will be exlcluded from ray tracing
161 * @return body
162 *
163 */
164 Body* doRayCasting(uint16_t collisionTypeIds, const Vector3& start, const Vector3& end, Vector3& hitPoint, const string& actorId = string());
165
166 /**
167 * Check if world collides with given body
168 * @param collisionTypeIds collision type ids
169 * @param body body
170 * @param rigidBodies bodies that collide with given body
171 * @return if collision happpened or not
172 */
173 bool doesCollideWith(uint16_t collisionTypeIds, Body* body, vector<Body*>& rigidBodies);
174
175 /**
176 * Check if world collides with given bounding volumes and its transformations, which both form a collision for method runtime
177 * @param collisionTypeIds collision type ids
178 * @param transformations transformations
179 * @param boundingVolumes bounding volume
180 * @param rigidBodies bodies that collide with given body
181 * @return if collision happpened or not
182 */
183 bool doesCollideWith(uint16_t collisionTypeIds, const Transformations& transformations, vector<BoundingVolume*> boundingVolumes, vector<Body*>& rigidBodies);
184
185 /**
186 * Check if body 1 collides with body 2
187 * @param body1 body 1
188 * @param body2 body 2
189 * @return if collision happpened or not
190 */
191 bool doCollide(Body* body1, Body* body2);
192
193 /**
194 * Get collision response
195 * @param body1 body 1
196 * @param body2 body 2
197 * @param collision collision response
198 * @return if having hit points
199 */
200 bool getCollisionResponse(Body* body1, Body* body2, CollisionResponse& collision);
201
202 /**
203 * Clone this world
204 * @param collisionTypeIds collision type ids to clone
205 */
206 World* clone(uint16_t collisionTypeIds = ~0);
207
208 /**
209 * Updates given world with this world
210 * Given world should be a clone of this world
211 * @param world world
212 */
213 void synch(World* world);
214
215 /**
216 * Add a world listener
217 * @param listener listener
218 */
219 void addWorldListener(WorldListener* listener);
220
221 /**
222 * Remove a world listener
223 * @param listener listener
224 */
225 void removeWorldListener(WorldListener* listener);
226
227};
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
Dynamic rigid/static rigid/collision body class.
Definition: Body.h:43
Dynamic physics world class.
Definition: World.h:38
Body * addRigidBody(const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float restitution, float friction, float mass, const Vector3 &inertiaTensor, vector< BoundingVolume * > boundingVolumes)
Add a rigid body.
Definition: World.cpp:86
Body * addStaticRigidBody(const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float friction, vector< BoundingVolume * > boundingVolumes)
Add a static rigid body.
Definition: World.cpp:110
Body * getBody(const string &id)
Returns body identified by id.
Definition: World.cpp:122
Body * doRayCasting(uint16_t collisionTypeIds, const Vector3 &start, const Vector3 &end, Vector3 &hitPoint, const string &actorId=string())
Do a ray cast from given start to given end point, if there is any body with given collision type in ...
Definition: World.cpp:341
Body * determineHeight(uint16_t collisionTypeId, float stepUpMax, const Vector3 &point, Vector3 &dest, float minHeight=-10000.0f, float maxHeight=10000.0f)
Determine height on x,y,u while respecting step up max.
Definition: World.cpp:300
bool doCollide(Body *body1, Body *body2)
Check if body 1 collides with body 2.
Definition: World.cpp:410
void removeBody(const string &id)
Removes body identified by id.
Definition: World.cpp:131
map< string, Body * > bodiesById
Definition: World.h:51
bool getCollisionResponse(Body *body1, Body *body2, CollisionResponse &collision)
Get collision response.
Definition: World.cpp:414
reactphysics3d::DynamicsWorld world
Definition: World.h:47
World()
Public constructor.
Definition: World.cpp:66
bool doesCollideWith(uint16_t collisionTypeIds, Body *body, vector< Body * > &rigidBodies)
Check if world collides with given body.
Definition: World.cpp:381
void addWorldListener(WorldListener *listener)
Add a world listener.
Definition: World.cpp:522
map< string, BodyCollisionStruct > bodyCollisionsLastFrame
Definition: World.h:52
void synch(Body *clonedBody, Body *body)
Synch into cloned body from body.
Definition: World.cpp:492
vector< Body * > rigidBodiesDynamic
Definition: World.h:50
World * clone(uint16_t collisionTypeIds=~0)
Clone this world.
Definition: World.cpp:455
Body * addCollisionBody(const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, vector< BoundingVolume * > boundingVolumes)
Add a collision body.
Definition: World.cpp:99
vector< WorldListener * > worldListeners
Definition: World.h:53
void removeWorldListener(WorldListener *listener)
Remove a world listener.
Definition: World.cpp:527
void update(float deltaTime)
Update world.
Definition: World.cpp:150
void reset()
Resets the physic world.
Definition: World.cpp:76
vector< Body * > bodies
Definition: World.h:49
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
World listener which is about notifying adding or removing bodies.
Definition: WorldListener.h:22