Some area has 50% chance of colliding

Jump to navigation Jump to search
Revision as of 22 January 2018 at 19:30.
The highlighted comment was created in this revision.

Some area has 50% chance of colliding

I used to think that bullet collide detection works like:

1. all bullets move 2. detect every collection

but it actually works like this: (can be found in robocode BulletPeer.java)

1. first bullet move, and detect collision with the rest 2. second bullet move, and detect collision with the rest 3. etc.

as the order is randomized each tick, each moved bullet has 50% chance of colliding with a bullet that is not yet moved.

    Xor (talk)14:49, 22 January 2018

    This sounds as a bug in the game logic.

    I was about to go crazy trying explain why there are bullets in my precalculated bullet's shadows.

      Beaming (talk)21:30, 22 January 2018