GameMaker: Studio

GameMaker: Studio

檢視統計資料:
Kudzu 2012 年 10 月 5 日 下午 5:52
Physics - Collision Detection for Jumping
Hello! I've been playing around with the physics capabilities and I now have a moving, jumping character (block) in a physics room complete with gravity, floors, and an 'red' block that is also physics-enabled and doesn't move on its own (it's just there to be pushed around for testing purposes). While I was tweaking the jumping animation I ran into a funny glitch and would appreciate any insight you can offer for solving it.

The glitch seems to occur when I check to see whether there is an object directly under my character so that it can jump. I've tried this two ways. This is the first:

if (physics_test_overlap(x, y+1, 0, all)) {
phy_linear_velocity_y = -100;
}

When I use this method, the character is able to zoom all over the room whether it is near any other object or not - in other words, the check doesn't seem to be working at all. For the second one, I made use of the "collision check" GUI object, which creates the following check:

if relative position (0,1) gives a collision with All objects

(The same line is used within this check to set the linear velocity.)
Using this second method, the object behaves appropriately and will only jump when it is on the ground; it cannot fly around the room. I can also jump on top of the red block object. However, if I move the red block in any way (such as pushing it around the room), I can no longer jump from on top of the red block, but I can jump from the location where the red block was before.

In conclusion, the first method is a physics check but is not working correctly and always returns "true" even if nothing is below the character object. The second method seems to be out of sync with physics and will only take into account the location of objects from the time that they were created; if those objects are moved by the physics engine, it will not update that location correctly and further collisions with that object will not be detected (or will be detected only at the object's prior location).

Thank you for reading this and any assistance would be appreciated!
最後修改者:Kudzu; 2012 年 10 月 5 日 下午 5:53
< >
目前顯示第 1-8 則留言,共 8
Fable Orchid 2012 年 10 月 5 日 下午 6:02 
Just today, I updated and reuploaded my physics example because I had to fix an issue that kind of goes in line with this.

This seems to be the full-proof way to do it, where +33 is one pixel more than the length/height of my player object (in my example, the origin is set to 0,0.

if (physics_test_overlap(x, y, 0, obj_block) && position_meeting(x, y + 33, obj_block)) { onGround = true; y = yprevious; } else if (physics_test_overlap(x, y, 0, obj_block) && position_meeting(x, y, obj_block)) { y = yprevious; } else if (physics_test_overlap(x, y, 0, obj_block) && (position_meeting(x + 32, y, obj_block) || position_meeting(x, y, obj_block))) { x = xprevious; }

Oh hey, code tags. Didn't know about that.

Anyways, what you want is specifically the first part...

if (physics_test_overlap(x, y, 0, obj_block) && position_meeting(x, y + 33, obj_block)) { onGround = true; y = yprevious; }

It should be pretty self-explanatory, but pretty much it's not enough to test for an overlap because the overlap tests every point on the block. I don't know the actual effect of modifying x and/or y when specifying a position to test, I just know that it tests the whole block when unmodified.

So, in addition to testing an overlap, you need to test whether or not your object will meet with the object that it's landing on/bumping into at the location specified by the overlap. This way you can give specific instructions based on where they meet.

EDIT: If that doesn't work, I might have to do some coding of my own with a movable block. Not really sure what could be going wrong.
最後修改者:Fable Orchid; 2012 年 10 月 5 日 下午 6:06
Fable Orchid 2012 年 10 月 5 日 下午 6:22 
Okay, I tried it out and the moving block works...sort of. For some reason, when the block is rotated, the image somehow disconnects from the space where the block's collision testing is. And I can't figure out how to fix it. I tried setting image_angle to phy_rotation every step, but nothing. No idea. I had that issue when the player rotated, too.
Kudzu 2012 年 10 月 5 日 下午 9:21 
Hey, thanks for the response! Your code got the physics_test_overlap function working but it's giving the same problem with the moveable block for some reason. I'm getting this error even when the blocks' rotations are fixed; if the red block is pushed to a different location at all, I cannot jump from on top of it. I will continue working with this and see if I can figure out what's up. Thanks again for the assistance though; at least now I can use a physics test for jumping.

EDIT: Just noticed, I seem to be able to jump off of the spot where my 'character' block begins as well, so it seems that neither object is being tracked correctly for one or both of the statements in the check.
最後修改者:Kudzu; 2012 年 10 月 5 日 下午 9:28
Fable Orchid 2012 年 10 月 5 日 下午 9:30 
Mine's working fine when the rotation is fixed. Well, sort of. Due to the nature of the code, onGround only is set to true of the left end of the player is over the block, as opposed to if it just lands on the block.

EDIT: Try changing your physics world update rate?
最後修改者:Fable Orchid; 2012 年 10 月 5 日 下午 9:30
Kudzu 2012 年 10 月 5 日 下午 9:46 
That I haven't tried. I'm guessing it's physics_world_update_speed and should be set in the creation code of the room? Also, any tips on what to set it to to get results? I tried setting it to twice the room speed as in the physics_world_update example but got no results.
Fable Orchid 2012 年 10 月 5 日 下午 9:55 
I don't know then. :/

I have iterations and update speed both set to my room speed.
Kudzu 2012 年 10 月 5 日 下午 9:59 
Thanks anyway! I'll work with it more tomorrow and update if I find anything. I appreciate the help regardless.
Kudzu 2012 年 10 月 6 日 上午 9:08 
Made a few more discoveries. I think position_meeting, place_meeting, etc. don't always update with the physics engine, hence the weird error I've been getting; however, I think I have found my initial problem with physics_test_overlap.
if (physics_test_overlap(x, y+1, phy_rotation, all)) { phy_linear_velocity_y = -100; }

This was the code that made the block zoom all over the map. I finally realized that the 'all' keyword includes 'self', meaning the object is checking to see whether it will overlap with itself. I can make this stop by changing y+1 to y+33 to make the check occur outside of the sprite's box; however, even though the sprite's origin is set to the top left of the sprite (0,0) this change will cause the character block to jump even when it is 33 pixels away from the ground. I want this character block to be able to utilize any physics object present in the room so 'all' seemed like a good, clean keyword to use, but is there any way to subtract 'self' from it? I could always check for each object individually but I was hoping someone knew of a more elegant solution.

Also, Mattchu, curious to know whether replacing '0' with 'phy_rotation' would help your rotation issues at all? It might not make any difference, though; I can't test it myself yet since I'm still having the block issue.

Thanks for reading and sorry for asking so many questions!
< >
目前顯示第 1-8 則留言,共 8
每頁顯示: 1530 50

張貼日期: 2012 年 10 月 5 日 下午 5:52
回覆: 8