I am trying to think of what the best way for collision in my platform game should be. My friend and I cant really decide on how to approach it as well. Any ideas?
11 replies to this topic
#5 Members - Reputation: 2408
Posted 01 January 2013 - 07:12 PM
Well i know that. But what is the best method to use to do this?Check each axis of the two rectangles to see if either overlap. If so, separate by either the minimum axis of overlap or by some heuristic based on the direction of travel.
This is pretty simple, what exactly are you having trouble with detecting and resolving axis-aligned rectangles?
#6 Members - Reputation: 104
Posted 02 January 2013 - 02:59 AM
Well i know that. But what is the best method to use to do this?Check each axis of the two rectangles to see if either overlap. If so, separate by either the minimum axis of overlap or by some heuristic based on the direction of travel.
This is pretty simple, what exactly are you having trouble with detecting and resolving axis-aligned rectangles?
We got the rectangles working now its just making the player stay on top of the block. I currently have it reset the Y position of the player to a constant part of the map but how can I get it so the players position will be set to the top of the block?
#8 Members - Reputation: 2408
Posted 02 January 2013 - 04:13 PM
Or just set the y position of the player to be equal to the top of the block it is standing on minus the height of the player block.
It can be helpful in a simple, AABB based tile physics system to do your x and y modifications to your player's position individually. If you first move the player by its y velocity, if you intersect with a block after this move, you know from the direction of the y velocity whether to move the player to either sit on top of or be directly under the block.
If you then do the same with the x, again using the direction of the x velocity to determine which side of a block to align the player with in the case of intersection, you get a very solid, sliding physics that is suitable for simple games.
All this goes out the window if you want to use anything other than AABBs, but sounds like that is a long way off.
It can be helpful in a simple, AABB based tile physics system to do your x and y modifications to your player's position individually. If you first move the player by its y velocity, if you intersect with a block after this move, you know from the direction of the y velocity whether to move the player to either sit on top of or be directly under the block.
If you then do the same with the x, again using the direction of the x velocity to determine which side of a block to align the player with in the case of intersection, you get a very solid, sliding physics that is suitable for simple games.
All this goes out the window if you want to use anything other than AABBs, but sounds like that is a long way off.
#11 Members - Reputation: 287
Posted 03 January 2013 - 12:06 AM
You could take a look at the XNA Platformer starter kit, perhaps you could get some inspiration from that.<br />http://msdn.microsoft.com/en-us/library/dd254918%28v=xnagamestudio.31%29.aspx
#12 Members - Reputation: 104
Posted 03 January 2013 - 12:23 AM
You could take a look at the XNA Platformer starter kit, perhaps you could get some inspiration from that.<br />http://msdn.microsoft.com/en-us/library/dd254918%28v=xnagamestudio.31%29.aspx
We got it working! YEAHHH! Thanks everyone!








