Uniform Grid Based

Introduction

For really small projects, brute-force collision detection approach looping through all the rigid bodies may work without any problems; however, when the number of the objects in the scene increases, the performance of the approach decreases quickly. That’s why it’s important to use space partitioning approaches to make the collision detection process faster.

Space partitioning approaches partition the scene and create a smaller set of objects in the scene for collision detection test. The main approaches are bounding volume hierarchies (BVH), k-d trees, BSP trees, and Quad/Octrees. However, each approach does not work perfectly in any scenarios. They work better in some certain situations and decision of the space partitioning should be made depending on the game or the application in general.

BVH create a hierarchy based on object bounding boxes and this might be costly for the scene that includes objects moving all around during the frames since it requires reconstruction of the hierarchy for each frame.

BSP trees are good for indoor games (such as Quake) and collision detection between the level geometry and the game level.

For large opens spaces having lots of objects moving around, quad/octrees and uniform grids are good options. Uniform grid especially easier to build and easier to handle especially for tile-based games or the games everything in the scene is always moving.

Uniform Grid Insertion

The grid insertion is easy. It only depends on objectPosition / cellSize, where the cell size is a constant value ideally same or larger than the objects that will be inserted to the grid.

However, this basic insertion approach does not handle the objects that cover more than one grid cell. For handling this situation:

Here, getBBoxUp() returns the position of the upper-left corner of the object’s bounding volume and getBBoxDown() returns the position of the lower-right corner of the object’s bounding volume.

Collision Test

After the grid cells are filled with the objects, now you can loop through the grid cells and check the collisions for only the objects in the same cell. Additionally, if there are only some special objects to check collision detection, you can skip all other grid cells and only consider very few of them based on the cells these special objects cover (check insertion section above).

The code below considers all the objects in the grids:

Here, I assume that my objects are directly bounding volumes. But, for a real mesh, you need to run more detail collision detection algorithm in the final if statement before mark the objects collided.