Proper Collision Detection?

Game Editor comments and discussion.

Proper Collision Detection?

Postby Lacotemale » Sun Jul 08, 2012 4:07 pm

Hi guys/gals,

So in one of my games I have been using the collision event but it does not seem reliable.

I have glass which you can shoot but only sometimes does the collision get detected and it will break.

I don't know if this has been asked before but is there any way to make collision detection reliable? :)
User avatar
Lacotemale
 
Posts: 285
Joined: Wed Dec 08, 2010 7:47 pm
Location: /home
Score: 7 Give a positive score

Re: Proper Collision Detection?

Postby Kalladdolf » Sun Jul 08, 2012 4:37 pm

Since this is a pretty straightforward action (no physics involved), it all comes down to this:
There are many methods of working around the collision event, but all of them will eventually be ineffective if you don't keep the following in mind:

The way GE movement works, actors don't actually move. They jump by the amount of pixels you tell them to per frame. So if I told an actor
Code: Select all
x = x + 3;

it would jump three pixels to the right with each frame.
In many cases, the collision engine in GE will not register a collision because actors simply jump ahead / skip the actor they are supposed to be colliding with. A few different flaws can trigger this:
- The actors colliding with each other are too small / thin
- The actors moving are too fast
- Your fps (frames per second) rate is too low.

Image

The higher your fps rate is, the less velocity you have to trust your actors with and the more precise your collision detection will be, respectively.
If these aspects don't take care of your problem sufficiently, there are a couple of more twists to the collision engine (and even standalone custom engines) we can point you to.

NOTE: It is imperative that when adding gravity, you also implement a limit. Don't let your actor accelerate infinitively.
Code: Select all
yvelocity += 0.5;
if (yvelocity >= 10) yvelocity = 10;
// using 60 fps, which is a pretty solid rate for collisions.
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Proper Collision Detection?

Postby Lacotemale » Sun Jul 08, 2012 8:29 pm

Thanks, seems reliable enough now!

I did implement that limit on velocity. I also increased the FPS from 30 to 60. I made the bullets slower and increased the thickness of my glass! :)

+1 for you!
User avatar
Lacotemale
 
Posts: 285
Joined: Wed Dec 08, 2010 7:47 pm
Location: /home
Score: 7 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest