Panda3D
|
This class manages the traversal through the scene graph to detect collisions. More...
#include <pandadoc.hpp>
Public Member Functions | |
object | __getstate__ () |
__init__ (const CollisionTraverser) | |
__init__ (str name) | |
__setstate__ (object state) | |
addCollider (const NodePath collider, CollisionHandler handler) | |
Adds a new CollisionNode, representing an object that will be tested for collisions into other objects, along with the handler that will serve each detected collision. | |
clearColliders () | |
Completely empties the set of collision nodes and their associated handlers. | |
clearRecorder () | |
Removes the CollisionRecorder from the traverser and restores normal low- overhead operation. | |
NodePath | getCollider (int n) |
Returns the nth CollisionNode that has been added to the traverser via add_collider(). | |
list | getColliders () |
CollisionHandler | getHandler (const NodePath collider) |
Returns the handler that is currently assigned to serve the indicated collision node, or NULL if the node is not on the traverser's set of active nodes. | |
int | getNumColliders () |
Returns the number of CollisionNodes that have been added to the traverser via add_collider(). | |
CollisionRecorder | getRecorder () |
Returns the CollisionRecorder currently assigned, or NULL if no recorder is assigned. | |
bool | getRespectPrevTransform () |
Returns the flag that indicates whether the prev_transform stored on a node is respected to calculate collisions. | |
bool | hasCollider (const NodePath collider) |
Returns true if the indicated node is current in the set of nodes that will be tested each frame for collisions into other objects. | |
bool | hasRecorder () |
Returns true if the CollisionTraverser has a CollisionRecorder object currently assigned, false otherwise. | |
hideCollisions () | |
Undoes the effect of a previous call to show_collisions(). | |
output (Ostream out) | |
bool | removeCollider (const NodePath collider) |
Removes the collider (and its associated handler) from the set of CollisionNodes that will be tested each frame for collisions into other objects. | |
setRecorder (CollisionRecorder recorder) | |
Uses the indicated CollisionRecorder object to start recording the intersection tests made by each subsequent call to traverse() on this object. | |
setRespectPrevTransform (bool flag) | |
Sets the flag that indicates whether the prev_transform stored on a node (as updated via set_fluid_pos(), etc.) is respected to calculate collisions. | |
CollisionVisualizer | showCollisions (const NodePath root) |
This is a high-level function to create a CollisionVisualizer object to render the collision tests performed by this traverser. | |
traverse (const NodePath root) | |
Perform the traversal. | |
write (Ostream out, int indent_level) | |
![]() | |
__init__ (const Namable) | |
__init__ (str initial_name) | |
clearName () | |
Resets the Namable's name to empty. | |
str | getName () |
bool | hasName () |
Returns true if the Namable has a nonempty name set, false if the name is empty. | |
output (Ostream out) | |
Outputs the Namable. | |
setName (str name) | |
Static Public Member Functions | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
Public Attributes | |
NodePath | colliders [] |
Returns the nth CollisionNode that has been added to the traverser via add_collider(). | |
CollisionRecorder | recorder |
Returns the CollisionRecorder currently assigned, or NULL if no recorder is assigned. | |
bool | respect_preV_transform |
Returns the flag that indicates whether the prev_transform stored on a node is respected to calculate collisions. | |
bool | respect_prev_transform |
Returns the flag that indicates whether the prev_transform stored on a node is respected to calculate collisions. | |
![]() | |
const String | name |
This class manages the traversal through the scene graph to detect collisions.
It holds ownership of a number of collider objects, each of which is a CollisionNode and an associated CollisionHandler.
When traverse() is called, it begins at the indicated root and detects all collisions with any of its collider objects against nodes at or below the indicated root, calling the appropriate CollisionHandler for each detected collision.
object __getstate__ | ( | ) |
__init__ | ( | const CollisionTraverser | ) |
__init__ | ( | str | name | ) |
__setstate__ | ( | object | state | ) |
addCollider | ( | const NodePath | collider, |
CollisionHandler | handler ) |
Adds a new CollisionNode, representing an object that will be tested for collisions into other objects, along with the handler that will serve each detected collision.
Each CollisionNode may be served by only one handler at a time, but a given handler may serve many CollisionNodes.
The handler that serves a particular node may be changed from time to time by calling add_collider() again on the same node.
clearColliders | ( | ) |
Completely empties the set of collision nodes and their associated handlers.
clearRecorder | ( | ) |
Removes the CollisionRecorder from the traverser and restores normal low- overhead operation.
|
static |
NodePath getCollider | ( | int | n | ) |
Returns the nth CollisionNode that has been added to the traverser via add_collider().
list getColliders | ( | ) |
CollisionHandler getHandler | ( | const NodePath | collider | ) |
Returns the handler that is currently assigned to serve the indicated collision node, or NULL if the node is not on the traverser's set of active nodes.
int getNumColliders | ( | ) |
Returns the number of CollisionNodes that have been added to the traverser via add_collider().
CollisionRecorder getRecorder | ( | ) |
Returns the CollisionRecorder currently assigned, or NULL if no recorder is assigned.
bool getRespectPrevTransform | ( | ) |
Returns the flag that indicates whether the prev_transform stored on a node is respected to calculate collisions.
See set_respect_prev_transform().
bool hasCollider | ( | const NodePath | collider | ) |
Returns true if the indicated node is current in the set of nodes that will be tested each frame for collisions into other objects.
bool hasRecorder | ( | ) |
Returns true if the CollisionTraverser has a CollisionRecorder object currently assigned, false otherwise.
hideCollisions | ( | ) |
Undoes the effect of a previous call to show_collisions().
output | ( | Ostream | out | ) |
bool removeCollider | ( | const NodePath | collider | ) |
Removes the collider (and its associated handler) from the set of CollisionNodes that will be tested each frame for collisions into other objects.
Returns true if the definition was found and removed, false if it wasn't present to begin with.
setRecorder | ( | CollisionRecorder | recorder | ) |
Uses the indicated CollisionRecorder object to start recording the intersection tests made by each subsequent call to traverse() on this object.
A particular CollisionRecorder object can only record one traverser at a time; if this object has already been assigned to another traverser, that assignment is broken.
This is intended to be used in a debugging mode to try to determine what work is being performed by the collision traversal. Usually, attaching a recorder will impose significant runtime overhead.
This does not transfer ownership of the CollisionRecorder pointer; maintenance of that remains the caller's responsibility. If the CollisionRecorder is destructed, it will cleanly remove itself from the traverser.
setRespectPrevTransform | ( | bool | flag | ) |
Sets the flag that indicates whether the prev_transform stored on a node (as updated via set_fluid_pos(), etc.) is respected to calculate collisions.
If this is true, certain types of collision tests will be enhanced by the information about objects in motion. If this is false, objects are always considered to be static. The default is false.
CollisionVisualizer showCollisions | ( | const NodePath | root | ) |
This is a high-level function to create a CollisionVisualizer object to render the collision tests performed by this traverser.
The supplied root should be any node in the scene graph; typically, the top node (e.g. render). The CollisionVisualizer will be attached to this node.
traverse | ( | const NodePath | root | ) |
Perform the traversal.
Begins at the indicated root and detects all collisions with any of its collider objects against nodes at or below the indicated root, calling the appropriate CollisionHandler for each detected collision.
write | ( | Ostream | out, |
int | indent_level ) |
NodePath colliders[] |
Returns the nth CollisionNode that has been added to the traverser via add_collider().
CollisionRecorder recorder |
Returns the CollisionRecorder currently assigned, or NULL if no recorder is assigned.
bool respect_preV_transform |
Returns the flag that indicates whether the prev_transform stored on a node is respected to calculate collisions.
See set_respect_prev_transform().
bool respect_prev_transform |
Returns the flag that indicates whether the prev_transform stored on a node is respected to calculate collisions.
See set_respect_prev_transform().