TDME2 1.9.121
|
Dynamic physics world class. More...
#include <tdme/engine/physics/World.h>
Classes | |
struct | BodyCollisionStruct |
Public Member Functions | |
World () | |
Public constructor. More... | |
~World () | |
Destructor. More... | |
void | reset () |
Resets the physic world. More... | |
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. More... | |
Body * | addCollisionBody (const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, vector< BoundingVolume * > boundingVolumes) |
Add a collision body. More... | |
Body * | addStaticRigidBody (const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float friction, vector< BoundingVolume * > boundingVolumes) |
Add a static rigid body. More... | |
Body * | getBody (const string &id) |
Returns body identified by id. More... | |
void | removeBody (const string &id) |
Removes body identified by id. More... | |
void | update (float deltaTime) |
Update world. More... | |
void | synch (Engine *engine) |
Synch physics world with engine. More... | |
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. More... | |
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 between then the body is returned and a hit point is reported. More... | |
bool | doesCollideWith (uint16_t collisionTypeIds, Body *body, vector< Body * > &rigidBodies) |
Check if world collides with given body. More... | |
bool | doesCollideWith (uint16_t collisionTypeIds, const Transformations &transformations, vector< BoundingVolume * > boundingVolumes, vector< Body * > &rigidBodies) |
Check if world collides with given bounding volumes and its transformations, which both form a collision for method runtime. More... | |
bool | doCollide (Body *body1, Body *body2) |
Check if body 1 collides with body 2. More... | |
bool | getCollisionResponse (Body *body1, Body *body2, CollisionResponse &collision) |
Get collision response. More... | |
World * | clone (uint16_t collisionTypeIds=~0) |
Clone this world. More... | |
void | synch (World *world) |
Updates given world with this world Given world should be a clone of this world. More... | |
void | addWorldListener (WorldListener *listener) |
Add a world listener. More... | |
void | removeWorldListener (WorldListener *listener) |
Remove a world listener. More... | |
Private Member Functions | |
void | synch (Body *clonedBody, Body *body) |
Synch into cloned body from body. More... | |
Private Attributes | |
reactphysics3d::DynamicsWorld | world |
vector< Body * > | bodies |
vector< Body * > | rigidBodiesDynamic |
map< string, Body * > | bodiesById |
map< string, BodyCollisionStruct > | bodyCollisionsLastFrame |
vector< WorldListener * > | worldListeners |
Friends | |
class | Body |
Body * addCollisionBody | ( | const string & | id, |
bool | enabled, | ||
uint16_t | collisionTypeId, | ||
const Transformations & | transformations, | ||
vector< BoundingVolume * > | boundingVolumes | ||
) |
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 | ||
) |
Body * addStaticRigidBody | ( | const string & | id, |
bool | enabled, | ||
uint16_t | collisionTypeId, | ||
const Transformations & | transformations, | ||
float | friction, | ||
vector< BoundingVolume * > | boundingVolumes | ||
) |
void addWorldListener | ( | WorldListener * | listener | ) |
World * clone | ( | uint16_t | collisionTypeIds = ~0 | ) |
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.
collisionTypeId | collision type ids |
stepUpMax | step up max |
point | point on which height should be calculated |
dest | point where height has been determined |
minHeight | min height to determine height from |
maxHeight | max height to start raytracing from |
bool doesCollideWith | ( | uint16_t | collisionTypeIds, |
const Transformations & | transformations, | ||
vector< BoundingVolume * > | boundingVolumes, | ||
vector< Body * > & | rigidBodies | ||
) |
Check if world collides with given bounding volumes and its transformations, which both form a collision for method runtime.
collisionTypeIds | collision type ids |
transformations | transformations |
boundingVolumes | bounding volume |
rigidBodies | bodies that collide with given body |
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 between then the body is returned and a hit point is reported.
collisionTypeIds | collision type ids |
start | start |
end | end |
hitPoint | hit point |
actorId | actor rigid body id, which will be exlcluded from ray tracing |
Body * getBody | ( | const string & | id | ) |
bool getCollisionResponse | ( | Body * | body1, |
Body * | body2, | ||
CollisionResponse & | collision | ||
) |
void removeBody | ( | const string & | id | ) |
void removeWorldListener | ( | WorldListener * | listener | ) |
void synch | ( | Engine * | engine | ) |
void synch | ( | World * | world | ) |
void update | ( | float | deltaTime | ) |
|
private |
|
private |