TDME2 1.9.121
WorldListener.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
9
10using std::string;
11using std::vector;
12
15
16/**
17 * World listener which is about notifying adding or removing bodies
18 * @author Andreas Drewke
19 * @version $Id$
20 */
22{
23
24 /**
25 * Destructor
26 */
27 virtual ~WorldListener() {}
28
29 /**
30 * Event fired when rigid body was added
31 * @param id id
32 * @param type body type
33 * @param enabled enabled
34 * @param collisionTypeId collision type id
35 * @param transformations transformations
36 * @param restitution restitution
37 * @param friction friction
38 * @param mass mass
39 * @param inertiaTensor inertia tensor
40 * @param boundingVolumes bounding volumes
41 */
42 virtual void onAddedBody(const string& id, int32_t type, bool enabled, uint16_t collisionTypeId, const Transformations& transformations, float restitution, float friction, float mass, const Vector3& inertiaTensor, vector<BoundingVolume*>& boundingVolumes) = 0;
43
44 /**
45 * Event fired when rigid body was removed
46 * @param id id
47 * @param type rigid body type
48 * @param collisionTypeId collision type id
49 */
50 virtual void onRemovedBody(const string& id, int32_t type, uint16_t collisionTypeId) = 0;
51
52};
Transformations which contain scale, rotations and translation.
3D vector 3 class
Definition: Vector3.h:22
World listener which is about notifying adding or removing bodies.
Definition: WorldListener.h:22
virtual void onRemovedBody(const string &id, int32_t type, uint16_t collisionTypeId)=0
Event fired when rigid body was removed.
virtual void onAddedBody(const string &id, int32_t type, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float restitution, float friction, float mass, const Vector3 &inertiaTensor, vector< BoundingVolume * > &boundingVolumes)=0
Event fired when rigid body was added.
virtual ~WorldListener()
Destructor.
Definition: WorldListener.h:27