38 #ifndef COAL_BROADPHASE_BROADPAHSESPATIALHASH_H
39 #define COAL_BROADPHASE_BROADPAHSESPATIALHASH_H
52 template <
typename HashTable = detail::SimpleHashTable<AABB, CollisionObject*,
53 detail::SpatialHash> >
60 const Vec3s& scene_max,
61 unsigned int default_table_size = 1000);
81 void update(
const std::vector<CollisionObject*>& updated_objs);
134 std::list<CollisionObject*>
objs;
155 enum ObjectStatus { Inside, PartiallyPenetrating, Outside };
157 template <
typename Container>
A class describing the AABB collision structure, which is a box in 3D space determined by two diagona...
Definition: AABB.h:55
Base class for broad phase collision. It helps to accelerate the collision/distance between N objects...
Definition: broadphase_collision_manager.h:53
virtual std::vector< CollisionObject * > getObjects() const
return the objects managed by the manager
Definition: broadphase_collision_manager.h:87
the object for collision or distance computation, contains the geometry and the transform information
Definition: collision_object.h:214
spatial hashing collision mananger
Definition: broadphase_spatialhash.h:54
static void computeBound(std::vector< CollisionObject * > &objs, Vec3s &l, Vec3s &u)
compute the bound for the environent
Definition: broadphase_spatialhash-inl.h:501
std::list< CollisionObject * > objs
all objects in the scene
Definition: broadphase_spatialhash.h:134
void distance(CollisionObject *obj, DistanceCallBackBase *callback) const
perform distance computation between one object and all the objects belonging ot the manager
Definition: broadphase_spatialhash-inl.h:262
~SpatialHashingCollisionManager()
Definition: broadphase_spatialhash-inl.h:57
HashTable * hash_table
objects in the scene limit (given by scene_min and scene_max) are in the spatial hash table
Definition: broadphase_spatialhash.h:152
bool empty() const
whether the manager is empty
Definition: broadphase_spatialhash-inl.h:489
SpatialHashingCollisionManager(Scalar cell_size, const Vec3s &scene_min, const Vec3s &scene_max, unsigned int default_table_size=1000)
Definition: broadphase_spatialhash-inl.h:47
std::map< CollisionObject *, AABB > obj_aabb_map
store the map between objects and their aabbs. will make update more convenient
Definition: broadphase_spatialhash.h:148
bool distance_(CollisionObject *obj, DistanceCallBackBase *callback, Scalar &min_dist) const
perform distance computation between one object and all the objects belonging ot the manager
Definition: broadphase_spatialhash-inl.h:310
virtual void update()
update the condition of manager
Definition: broadphase_spatialhash-inl.h:111
void clear()
clear the manager
Definition: broadphase_spatialhash-inl.h:237
void unregisterObject(CollisionObject *obj)
remove one object from the manager
Definition: broadphase_spatialhash-inl.h:84
AABB scene_limit
the size of the scene
Definition: broadphase_spatialhash.h:144
void setup()
initialize the manager, related with the specific type of manager
Definition: broadphase_spatialhash-inl.h:105
void collide(CollisionObject *obj, CollisionCallBackBase *callback) const
perform collision test between one object and all the objects belonging to the manager
Definition: broadphase_spatialhash-inl.h:254
BroadPhaseCollisionManager Base
Definition: broadphase_spatialhash.h:56
std::list< CollisionObject * > objs_outside_scene_limit
objects outside the scene limit are in another list
Definition: broadphase_spatialhash.h:141
void registerObject(CollisionObject *obj)
add one object to the manager
Definition: broadphase_spatialhash-inl.h:63
virtual void getObjects(std::vector< CollisionObject * > &objs) const=0
return the objects managed by the manager
bool collide_(CollisionObject *obj, CollisionCallBackBase *callback) const
perform collision test between one object and all the objects belonging to the manager
Definition: broadphase_spatialhash-inl.h:271
size_t size() const
the number of objects managed by the manager
Definition: broadphase_spatialhash-inl.h:495
std::list< CollisionObject * > objs_partially_penetrating_scene_limit
objects partially penetrating (not totally inside nor outside) the scene limit are in another list
Definition: broadphase_spatialhash.h:138
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Base callback class for collision queries. This class can be supersed by child classes to provide des...
Definition: broadphase_callbacks.h:49
Base callback class for distance queries. This class can be supersed by child classes to provide desi...
Definition: broadphase_callbacks.h:72