arsa  2.7
ISceneNodeAnimatorCollisionResponse.h
Go to the documentation of this file.
1 // Copyright (C) 2002-2012 Nikolaus Gebhardt
2 // This file is part of the "Irrlicht Engine".
3 // For conditions of distribution and use, see copyright notice in irrlicht.h
4 
5 #ifndef __I_SCENE_NODE_ANIMATOR_COLLISION_RESPONSE_H_INCLUDED__
6 #define __I_SCENE_NODE_ANIMATOR_COLLISION_RESPONSE_H_INCLUDED__
7 
8 #include "ISceneNode.h"
9 
10 namespace irr
11 {
12 namespace scene
13 {
14 
15  class ISceneNodeAnimatorCollisionResponse;
16 
18 
22  class ICollisionCallback : public virtual IReferenceCounted
23  {
24  public:
25 
27 
36  virtual bool onCollision(const ISceneNodeAnimatorCollisionResponse& animator) = 0;
37  };
38 
40 
54  {
55  public:
56 
59 
61 
66  virtual bool isFalling() const = 0;
67 
69 
77  virtual void setEllipsoidRadius(const core::vector3df& radius) = 0;
78 
80 
81  virtual core::vector3df getEllipsoidRadius() const = 0;
82 
84 
89  virtual void setGravity(const core::vector3df& gravity) = 0;
90 
93  virtual core::vector3df getGravity() const = 0;
94 
96 
98  virtual void jump(f32 jumpSpeed) = 0;
99 
101  virtual void setAnimateTarget ( bool enable ) = 0;
102  virtual bool getAnimateTarget () const = 0;
103 
105 
111  virtual void setEllipsoidTranslation(const core::vector3df &translation) = 0;
112 
114 
119  virtual core::vector3df getEllipsoidTranslation() const = 0;
120 
122 
124  virtual void setWorld(ITriangleSelector* newWorld) = 0;
125 
127  virtual ITriangleSelector* getWorld() const = 0;
128 
130 
133  virtual void setTargetNode(ISceneNode * node) = 0;
134 
136 
137  virtual ISceneNode* getTargetNode(void) const = 0;
138 
140  virtual bool collisionOccurred() const = 0;
141 
143  virtual const core::vector3df & getCollisionPoint() const = 0;
144 
146  virtual const core::triangle3df & getCollisionTriangle() const = 0;
147 
149 
153  virtual const core::vector3df & getCollisionResultPosition(void) const = 0;
154 
156  virtual ISceneNode* getCollisionNode(void) const = 0;
157 
159 
162  virtual void setCollisionCallback(ICollisionCallback* callback) = 0;
163 
164  };
165 
166 
167 } // end namespace scene
168 } // end namespace irr
169 
170 #endif
171 
Interface to return triangles with specific properties.
virtual void setTargetNode(ISceneNode *node)=0
Set the single node that this animator will act on.
virtual ITriangleSelector * getWorld() const =0
Get the current triangle selector containing all triangles for collision detection.
float f32
32 bit floating point variable.
Definition: irrTypes.h:108
Scene node interface.
Definition: ISceneNode.h:40
3d triangle template class for doing collision detection and other things.
Definition: triangle3d.h:20
Animates a scene node. Can animate position, rotation, material, and so on.
Everything in the Irrlicht Engine can be found in this namespace.
Definition: CARSADPad.h:6
*virtual core::vector3df getGravity() const =0
virtual core::vector3df getEllipsoidTranslation() const =0
Get the translation of the ellipsoid for collision detection.
virtual void setAnimateTarget(bool enable)=0
Should the Target react on collision ( default = true )
virtual void setWorld(ITriangleSelector *newWorld)=0
Sets a triangle selector holding all triangles of the world with which the scene node may collide.
virtual void setEllipsoidTranslation(const core::vector3df &translation)=0
Set translation of the collision ellipsoid.
virtual bool isFalling() const =0
Check if the attached scene node is falling.
virtual void setGravity(const core::vector3df &gravity)=0
Sets the gravity of the environment.
virtual void setCollisionCallback(ICollisionCallback *callback)=0
Sets a callback interface which will be called if a collision occurs.
Special scene node animator for doing automatic collision detection and response.
virtual const core::vector3df & getCollisionResultPosition(void) const =0
Returns the position that the target node will be moved to, unless the collision is consumed in a cal...
GLboolean enable
virtual const core::vector3df & getCollisionPoint() const =0
Returns the last point of collision.
virtual bool collisionOccurred() const =0
Returns true if a collision occurred during the last animateNode()
virtual void jump(f32 jumpSpeed)=0
'Jump' the animator, by adding a jump speed opposite to its gravity
Base class of most objects of the Irrlicht Engine.
virtual ISceneNode * getCollisionNode(void) const =0
Returns the node that was collided with.
virtual const core::triangle3df & getCollisionTriangle() const =0
Returns the last triangle that caused a collision.
virtual core::vector3df getEllipsoidRadius() const =0
Returns the radius of the ellipsoid for collision detection and response.
Callback interface for catching events of collisions.
virtual ISceneNode * getTargetNode(void) const =0
Gets the single node that this animator is acting on.
virtual void setEllipsoidRadius(const core::vector3df &radius)=0
Sets the radius of the ellipsoid for collision detection and response.
virtual bool onCollision(const ISceneNodeAnimatorCollisionResponse &animator)=0
Will be called when a collision occurs.