gameQuery Platformer Collision
We suck. We have no clue how to make a platformer. We have set up the tilemap and sprites, but can't figure out how to do collision detection to keep the character from moving through the tiles. Any help would be appreciated. One of us has prior experience with C++ and their own engine, but that doesn't translate very well into Javascript and gameQuery.
Our current code is here: (see full resources below)
Our current code is here: (see full resources below)
Comments
So instead of doing :
You would specify the tiles you're interested in. And I would recommend using the CSS class provided by library:
Here the tiles with type 2 and 7 will be tested for collision. To find-out what is the type of the tiles that concern you you should simply use the browser's inspector and look at the class of the tiles.
As you can see there is a small error in you code since you use as a filter
"gQ_tilemap"
and it should have been".gQ_tilemap"
.If you haven't already done so I would recommend watching the video tutorial about collision detection :
I am not able to access that video.
Instead of calling
.x()
immediately you can store the new coordinate into a variable and assign this variable to the sprite position once the collision detection is finished.Oh and a small remarks: you don't need to
parseInt()
the value returned by.x()
,.y()
,.w()
or.h()
.Here is the entirety of the code and resources for the game:
https://docs.google.com/file/d/0B2ucvP-R0-IHN0pnNHJtQmdETWc/edit?usp=sharing
- You don't need the
- You shouldn't use
- you use
I think the bug you describe is caused by an exception being thrown during the collision detection due to some of the problems I've listed above.if
check since.each
will only iterate if the number of elements is not 0.$(this)[0].gameQuery.posx
but$(this).x()
instead (same y, width and height)..h
like a field but it is a function. Furthermore this function returns a number so you don't need to parse it. So you should really doOther than that the algorithm you use to move the player is not perfect:
The beginning is right: Compute the next position, check for collision but after that you should for each tile:
- Compute the distance along the x axis the player has entered the tile.
- Same for the y axis
- Push the sprite out of the collision along the shortest distance by setting the new position like you did in your code
This should work.You could have a look at it from the section "Coding the game" and it will provide interesting information.
the book:
http://www.packtpub.com/jquery-game-development-essentials/book
the free chapter:
http://www.packtpub.com/sites/default/files/9781849695060_Chapter_04.pdf?utm_source=packtpub&utm_medium=free&utm_campaign=pdf
https://docs.google.com/a/pghboe.net/file/d/0B2ucvP-R0-IHWlg0bkdPclhlY2s/edit?usp=sharing