Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/cr/src/lib/collision_reaction/collision_handle.h @ 8029

Last change on this file since 8029 was 8029, checked in by patrick, 18 years ago

cr: more collision, new interface

File size: 1.9 KB
Line 
1/*!
2 * @file collision_handle.h
3 * @brief Definition of a collision handle: used for accesing per world entity collision events and reactions
4*/
5
6#ifndef _COLLISION_HANDLE_H
7#define _COLLISION_HANDLE_H
8
9#include "base_object.h"
10#include "cr_engine.h"
11
12#include <vector>
13#include <list>
14
15
16class Collision;
17class WorldEntity;
18
19
20
21//! A class for defining collision reactions and storing events
22class CollisionHandle : public BaseObject
23{
24
25  public:
26    CollisionHandle(WorldEntity* owner, CREngine::CRType type);
27    virtual ~CollisionHandle();
28
29    void reset();
30
31    void addTarget(long target);
32    Collision* registerCollision(WorldEntity* entityA, WorldEntity* entityB);
33    void registerCollisionEvent(CollisionEvent* collisionEvent);
34
35    /** @returns true if regiestered some new collision events in this tick frame */
36    inline bool isCollided() const { return this->bCollided; }
37    /** @returns true if this collision handle has already been dispatched */
38    inline bool isDispatched() const { return this->bDispatched; }
39
40    void handleCollisions();
41
42
43  private:
44    void flushCollisions();
45
46
47  private:
48    WorldEntity*                  owner;                   //!< the worldenity this reaction will be applied on
49    CREngine::CRType              type;                    //!< the reaction type
50
51    bool                          bDispatched;             //!< true if this handle has already been dispatched
52    bool                          bStopOnFirstCollision;   //!< true if the cd of this object should be terminated after one match
53    bool                          bCollided;               //!< true if the CollsionHandle has registered some new collisions
54
55    std::vector<Collision*>       collisionList;           //!< a list full of collisions
56    std::vector<long>             targetList;              //!< a list of target classes for filtering
57
58};
59
60#endif /* _COLLISION_HANDLE_H */
Note: See TracBrowser for help on using the repository browser.