vote up 6 vote down star

Collision detection is naturally an O(n^2) problem.

You have a bunch of objects and you need to check if that object is colliding with every other object. Right now that is my naive approach and while it isn't a problem on modern hardware for a limited number of objects I'm now approaching the point that it is a bottleneck (after profiling my code).

Here is example of my program I'm working on as a fun project:

alt text

There are 400 balls in the image and I can have up to 1000 with my current constraints. 1000^2 is a million collision checks, each game update. I need to implement some broad phase pruning. It is too slow and you can tell in the simulations that it is taking a definite toll.

What technique do I need to use for my broad phase collision detection? I'm looking for someone with serious experience in either games or simulation programming who "knows" what the best solution to this 2D use-case is. Is it QuadTrees? Is it BSP? What?

The end goal is to check only the balls that are spatially close to each other, which will allow me to prune thousands of collision checks. The problem is, there are so many ways of solving this problem that I would like some advice on the proper solution for my particular program. Grids, Spatial data structures like QuadTrees, spatial hashing, etc.


Related Questions to this project asked on SO:

flag

63% accept rate

3 Answers

vote up 3 vote down

spatial hashing. http://freespace.virgin.net/hugo.elias/models/m_colide.htm

link|flag
vote up 2 vote down

I wouldn't use QuadTrees or anything that complicated because you'll be constantly balancing and rebalancing trees as balls move between them. It would probably be more efficient just to have a grid - every time you move a ball, you can just calculate what grid cell it's in, and throw it in there if it's changed. And every time you need to make a collision check, you can just check balls whose center is either in your grid, or in adjacent ones if you're sufficiently close to the edge.

You can experiment with grid size to find the optimum. You may find it depends on how many balls you have.

I said this in a comment below, but I think it deserves to be part of the answer: Only do collsion detection when something moves, so you only have to check the moving thing against things in its grid square (and ajacent ones as mentioned above). That way if you get a pile of things in the bottom that aren't moving, pretty soon those objects are never checked for collision, because nothing is moving within their grid nor is anything moving into or out of their grid.

link|flag
Added the related questions to my answer and removed the question from your answer since it was distracting. – Simucal Jan 5 '09 at 21:46
Nicely done, @Simucal. – Paul Tomblin Jan 6 '09 at 17:23
vote up 2 vote down

I second the Grid method. A 2D simulation of balls won't benefit from QuadTrees (which are generally used when you have complex geometry like characters and buildings), or BSPs (which you should choose if you have a very uneven dispersion/concentration of objects, like with high concentration areas and low concentration areas, in a multiplayer or strategy game)

link|flag
Looking at the image above, would you say that constitutes an uneven enough concentration? Often times the window is much larger with the balls settled at the bottom. Would you still suggest grids over BSP? – Simucal Jan 6 '09 at 7:04
A BSP is an irregular Grid, and I'm suggesting a regular chess-like grid. The difference is a chess-like grid is easy to implement and debug compared to a BSP, and more than suitable even for professional games. You could up your Grid to a BSP if performance is a problem, or as personal challenge – Robert Gould Jan 6 '09 at 7:16
In your case the concentration actually is uneven, below you have lots of balls and up top less balls. So you could use a finer grid size towards the bottom, which is an application of expert knowledge, since you KNOW what to expect, and its not a really generic situation, like a pool table. – Robert Gould Jan 6 '09 at 7:19
thanks for the comments robert – Simucal Jan 6 '09 at 9:01
Once you've got the balls at the bottom, I'd assume their velocities would degrade to zero pretty quickly, so you wouldn't have to check if they collided with anything (although you would have to check if anything collided with them). – Paul Tomblin Jan 6 '09 at 17:24
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.