Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/collision_reaction/collision.h @ 9869

Last change on this file since 9869 was 9869, checked in by bensch, 18 years ago

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 3.0 KB
Line 
1/*!
2 * @file collision.h
3 *  Definition of a collision as a two WE hit each other
4 *
5 *  A is shared between two WorldEntity's CollisionHandles if both are subscribed to this event. In this case only one
6 *  of the two CollisionHandles will calculate the CollisionReaction and the bDispatched flag will be set afterwards
7 *  to signal that it's already cared about and should be ignored.
8 */
9
10#ifndef _COLLISION_H
11#define _COLLISION_H
12
13#include "vector.h"
14#include <vector>
15
16class WorldEntity;
17class BoundingVolume;
18class CollisionEvent;
19
20//! A class representing a simple collision
21class Collision
22{
23  public:
24    Collision();
25    virtual ~Collision();
26
27    /** collides two WorldEntities @param entityA world entity A, @param entityB world entity B, @param bvA volume A @param bvB volumeB */
28    inline void collide(WorldEntity* entityA, WorldEntity* entityB) { this->entityA = entityA; this->entityB = entityB; this->bDispatched = false; }
29
30
31    /** @return Collision WorldEntity A */
32    inline WorldEntity* getEntityA() const { return this->entityA; }
33    /** @return Collision WorldEntity B */
34    inline WorldEntity* getEntityB() const { return this->entityB; }
35    /** @return true if Entity A collides */
36    inline bool isEntityACollide() const { return this->entityACollide; }
37    /** sets the flag if it reacts @param flag true if it should react on entityA*/
38    inline void setEntityACollide(bool flag) { this->entityACollide = flag; }
39    /** @return true if Entity B collides */
40    inline bool isEntityBCollide() const { return this->entityBCollide; }
41    /** sets the flag if it reacts @param flag true if it should react on entityB*/
42    inline void setEntityBCollide(bool flag) { this->entityACollide = flag; }
43
44
45    /** @returns true if this Collision has already been dispatched */
46    inline bool isDispatched() { return this->bDispatched; }
47    /** sets the dispatched flag to true */
48    inline void dispatched() { this->bDispatched = true; }
49
50    /** registers a @param event CollisionEvent to take place */
51    inline void registerCollisionEvent(CollisionEvent* event) { this->collisionEvents.push_back(event); this->bDispatched = false;}
52    /** @returns a vector of collision events */
53    inline const std::vector<CollisionEvent*>& getCollisionEvents() const { return this->collisionEvents; }
54
55
56    void flushCollisionEvents();
57
58
59  private:
60    WorldEntity*                 entityA;                       //!< the collision body A
61    WorldEntity*                 entityB;                       //!< the collision body B
62    bool                         entityACollide;                //!< true if entity A is subscribed for collision reaction
63    bool                         entityBCollide;                //!< true if entity B is subscribed for collision reaction
64
65    bool                         bDispatched;                   //!< true if this collision has already been dispatched
66
67    std::vector<CollisionEvent*> collisionEvents;               //!< the collision event list
68};
69
70#endif /* _COLLISION_H */
Note: See TracBrowser for help on using the repository browser.