Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I followed the example at http://www.emanueleferonato.com/2007/08/19/managing-ball-vs-ball-collision-with-flash/ to create ball collision on Android,
my code was organized as follows:

int N = 6; // number of balls
for (int i=0; i<N; i++) {
    // move ball
    // as in line 10~39

    // collision detection
    for(int j=i+1; j<N; j++) {
        // as in line 66~77
    } // end for
} // end for

However, sometimes my balls may stick together (overlap).
The same situation didn't happen in the example.
Why?
Do I need to start a thread for each ball?

share|improve this question
13  
+1 for the title. – vcsjones Jun 20 '11 at 1:38
5  
Use baby powder. – Glendon Trullinger Jun 20 '11 at 3:42

2 Answers

up vote 1 down vote accepted

This problem arises when two balls collide with sufficient speed that they cannot fully separate on the subsequent action loop. I've found the best way to handle this is to normalize the distance between them to (r1 + r2) where r is the radius of a ball whenever a collision is detected. This ensures that they will separate on the subsequent action loop, but does have some potential for causing extra collisions if there are a lot of balls in a very tight space.

share|improve this answer
i ain't good at math, i don't know how to apply your normalization in the calculation. can u show me how? – user538565 Jun 20 '11 at 2:20
With the right mindset, this answer is comedy gold. – arcain Jun 20 '11 at 6:25

It is probably the

ball.xspeed = Math.random()*8-4;
ball.yspeed = Math.random()*8-4;

These generate floating point xspeed and yspeeds. The rounded/float/ceil values of which are used to draw in the screen. I think when the collision detection routine run and checks for a collision it cannot find one when the balls are only a very small distances apart in calculation, but when the speed is much higher, the next step will push the balls into their boundaries. Once they are inside each other the function manage_bounce(ball, ball2) will be invoked on every increment, and try to adjust the bounce direction, but only to find another collision.

I think the main problem is the big increment in the coordinated due to big value of speed, but a small distance between the two balls, which push them inside each other, mode than the floating point calculations.

During calculation when you have detected collision you should make sure at that point that they are not inside each other, and if yes then take them out and reposition. OR you might consider a speed increment IF the two balls are more pixels apart than the added distance, OR something like this

if the balls are `dn` pixels apart 
  if the speed in direction `n` is `n_speed`
     then
       if `dn` < `n_speed`
         `n = n + dn`
       else
          `n = n + n_speed`
       endif
  endif
endif
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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