#include <OPC_SphereCollider.h>
Contains a sphere-vs-tree collider. This class performs a collision test between a sphere and an AABB tree. You can use this to do a standard player vs world collision, in a Nettle/Telemachos way. It doesn't suffer from all reported bugs in those two classic codes - the "new" one by Paul Nettle is a debuggued version I think. Collision response can be driven by reported collision data - it works extremely well for me. In sake of efficiency, all meshes (that is, all AABB trees) should of course also be kept in an extra hierarchical structure (octree, whatever).
Definition at line 35 of file OPC_SphereCollider.h.
virtual SphereCollider::~SphereCollider | ( | ) | [virtual] |
void SphereCollider::_Collide | ( | const AABBCollisionNode * | node | ) | [protected] |
void SphereCollider::_Collide | ( | const AABBNoLeafNode * | node | ) | [protected] |
void SphereCollider::_Collide | ( | const AABBQuantizedNode * | node | ) | [protected] |
void SphereCollider::_Collide | ( | const AABBQuantizedNoLeafNode * | node | ) | [protected] |
void SphereCollider::_Collide | ( | const AABBTreeNode * | node | ) | [protected] |
void SphereCollider::_CollideNoPrimitiveTest | ( | const AABBCollisionNode * | node | ) | [protected] |
void SphereCollider::_CollideNoPrimitiveTest | ( | const AABBNoLeafNode * | node | ) | [protected] |
void SphereCollider::_CollideNoPrimitiveTest | ( | const AABBQuantizedNode * | node | ) | [protected] |
void SphereCollider::_CollideNoPrimitiveTest | ( | const AABBQuantizedNoLeafNode * | node | ) | [protected] |
bool SphereCollider::Collide | ( | SphereCache & | cache, |
const Sphere & | sphere, | ||
const Model & | model, | ||
const Matrix4x4 * | worlds = null , |
||
const Matrix4x4 * | worldm = null |
||
) |
Generic collision query for generic OPCODE models. After the call, access the results:
cache | [in/out] a sphere cache |
sphere | [in] collision sphere in local space |
model | [in] Opcode model to collide with |
worlds | [in] sphere's world matrix, or null |
worldm | [in] model's world matrix, or null |
bool SphereCollider::Collide | ( | SphereCache & | cache, |
const Sphere & | sphere, | ||
const AABBTree * | tree | ||
) |
BOOL SphereCollider::InitQuery | ( | SphereCache & | cache, |
const Sphere & | sphere, | ||
const Matrix4x4 * | worlds = null , |
||
const Matrix4x4 * | worldm = null |
||
) | [protected] |
inline_ BOOL SphereCollider::SphereAABBOverlap | ( | const Point & | center, |
const Point & | extents | ||
) | [protected] |
Sphere-AABB overlap test, based on Jim Arvo's code.
center | [in] box center |
extents | [in] box extents |
Definition at line 9 of file OPC_SphereAABBOverlap.h.
BOOL SphereCollider::SphereTriOverlap | ( | const Point & | vert0, |
const Point & | vert1, | ||
const Point & | vert2 | ||
) | [protected] |
Definition at line 9 of file OPC_SphereTriOverlap.h.
Point SphereCollider::mCenter [protected] |
Sphere center.
Definition at line 64 of file OPC_SphereCollider.h.
float SphereCollider::mRadius2 [protected] |
Sphere radius squared.
Definition at line 65 of file OPC_SphereCollider.h.