Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

cr: other interface, no stdarg

File size: 1.7 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    /** @returns true if regiestered some new collision events in this tick frame */
35    inline bool isCollided() const { return this->bCollided; }
36
37    void handleCollisions();
38
39
40  private:
41    void flushCollisions();
42
43
44  private:
45    WorldEntity*                  owner;                   //!< the worldenity this reaction will be applied on
46    CREngine::CRType              type;                    //!< the reaction type
47
48    bool                          bDispatched;             //!< true if this handle has already been dispatched
49    bool                          bStopOnFirstCollision;   //!< true if the cd of this object should be terminated after one match
50    bool                          bCollided;               //!< true if the CollsionHandle has registered some new collisions
51
52    std::vector<Collision*>       collisionList;           //!< a list full of collisions
53    std::vector<long>             targetList;              //!< a list of target classes for filtering
54
55};
56
57#endif /* _COLLISION_HANDLE_H */
Note: See TracBrowser for help on using the repository browser.