Results 1 to 3 of 3
- 10-15-2011, 02:17 AM #1
Senior Member
- Join Date
- Jul 2011
- Location
- Melbourne, Victoria, Australia
- Posts
- 155
- Rep Power
- 2
Collision detection between player and platform
I have a simple platform game that allows the player to jump onto platforms and climb a tower. It is essentially vertical scrolling. I have run into a wall trying to figure out how i can detect a collision between the player and a block.
My basic problem is trying to figure out how i can have many blocks drawn to the screen and detect if the player is touching one or more individual blocks.
Does each block need an id and then i check each block for collisions? (that would just be a waste of resources and time!)
Any ideas?
-
Re: Collision detection between player and platform
I'm assuming that your gui or "view" has an underlying non-gui model that it's based on, and if so, all collisions should be analyzed there, not in the GUI section of the code which simply displays what the model tells it to display.
- 10-15-2011, 08:02 AM #3
Senior Member
- Join Date
- Jul 2011
- Location
- Melbourne, Victoria, Australia
- Posts
- 155
- Rep Power
- 2
Re: Collision detection between player and platform
Okay. I have a block class that contains the data for each block that is drawn. When a map or platform is draw a random number is generated, this number is fed into a loop that draws a new Block() each time. Is there a better way to do that? Especially when it comes to detecting collisions.
Similar Threads
-
Collision Detection
By Äppelpaj in forum Java 2DReplies: 1Last Post: 10-13-2011, 03:29 PM -
Collision Detection
By sunde887 in forum Java 2DReplies: 2Last Post: 10-07-2011, 11:40 PM -
Collision Detection?
By Alerhau in forum New To JavaReplies: 39Last Post: 09-07-2011, 04:55 PM -
Really Need help with some collision detection
By Harwad in forum New To JavaReplies: 1Last Post: 01-23-2011, 12:38 AM -
Collision Detection
By dotabyss in forum Java GamingReplies: 0Last Post: 03-14-2010, 06:13 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks