[BEHAVIOR] Chipmunk Physics

From the Asset Store
Simple yet very life-like rag doll made with Physics!
  • Hey R0J0hound

    I just want you to ask if there is a possibility to make a kinematic body with chipmunk.

    Not like the previous examples mattb give (the one with the platforms) i mean is there a chance to add to this behavior set physics bodies kinematic and do the trick. i am asking that because I am working with box2d and Ruskul managed to add set body kinematic to box2d .js file and you can apply other behaviors to kinematic body like sine and works pretty well specially if there is other physics bodies with joints on it (they dont break and acts like it should be) But Box2d is very slow and has a lot of limitations compared to chipmunk .

    Is there a chance to see something new on chipmunk? Or this chapter is close for you.

    Great behavior by the way .Thanx .

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Chipmunk2d doesn't really have kinematic bodies like box2d.

    Wouldn't setting the collision to none, giving the object a high mass, and canceling the gravity like below work?

    sprite: chipmunk: on pre step

    sprite: chipmunk: apply force rect(0,-self.chipmunk.gravity*self.chipmunk.mass)

    I realize it doesn't match box2d's defination exactly...

    [quote:23aut8md]A kinematic body moves under simulation according to its velocity. Kinematic bodies do not respond to forces. They can be moved manually by the user, but normally a kinematic body is moved by setting its velocity. A kinematic body behaves as if it has infinite mass, however, Box2D stores zero for the mass and the inverse mass. Kinematic bodies do not collide with other static or kinematic bodies.

    Namely, not responding to forces. You can set the mass to be infinite with events but there is a NaN issue with the library when doing that so a very high mass is better.

  • , also in addition to what r0j0hound said, if you need to move it, you can use a separate object to position the other one that shouldn't be affected by forces. r0j0hound helped me with this in the past, here is a snapshot of how I handle it:

    the two use different layering groups so they don't collide with each other, and I turn rotation off on the object that follows the other, and give it a high mass value too. Works perfectly.

  • Hey R0J0hound and Prominent

    Really really nice approach of the Kinematic.

    It works really smooth specially with the sine behavior .

  • youtube.com/watch

    Hi, I need help on the joints. As you can see in the screenshots, I create something like microorganism fluid forms. At this stage, I ran into a problem: the cells repel each other and do not want to live together as a single substance. What additional commands should be used? How can I do to cells could be added, the body grow, and being lived in one form? In principle, it does not matter, it will be liquid or not, the main thing - is that growth is on the cells, as well as destruction.

    Still I am trying to make sure that they are not repelled by each other like mad, but do not pass through each other. Any idea how to do it?

    Sorry for my English, I myself am from Russia.

  • I'm having trouble adding the ability to drag an object. I have it so that when mouse down to position an object and have it with a joint to another object that will be dragged, but when I drag it through a wall, the joint gets repositioned so that the objects become separated(joined from a distance), even when I move the mouse back out of the wall.

    Any ideas on how to fix?

  • Prominent

    It's hard to say without a capx. It would be odd if the joint got offset but I suppose it would depend on the joint type.

    Is the dragging similar to this? (from the first post)

    https://dl.dropboxusercontent.com/u/542 ... test2.capx

  • ahhh! I think I know what is the issue. Seems like when the pointer object(object being positioned to the mouse) is not set to immovable(in the physics), then the joint position gets altered when trying to drag through an object.. But if I set the pointer to immovable, then the joint stays in correct position even if I drag stuff into an object.

    Not sure why the difference occurs depending on that setting, but I might be able to work with this now.

    So to recap, yeah- I had been doing it like that example, but I didn't have the pointer set to immovable. Having it movable produces weird results when dragging stuff through immovable objects.

  • Now I'm having another issue.. Seems when I try to join objects together using a gear joint and a pivot, one of the objects turns 360 degrees before it settles back to the position it should be in.

    Not sure what I'm doing wrong.. It doesn't happen all the time, but seems to depend on orientation of the objects. Is there anything I need to keep in mind when doing this? like should the angles be between 0-360, or -180-180?

    edit: here's an exmaple: http://1drv.ms/1YvddfG

    Seems like setting the angle before joining will mess it up. Any way to get around this?

  • here's an exmaple: http://1drv.ms/1YvddfG

    Seems like setting the angle before joining will mess it up. Any way to get around this?

  • Prominent

    I do not understand what is happening here.

    If in the editor

    sprite2.angle = 95

    sprite3.angle = 240

    And you make an event like:

    Start of layout

    --- create gear joint with phase = sprite3.angle-sprite2.angle

    Then sometimes the objects will rotate 360 before settling.

    However if you set the angles with events then it's perfect.

    Start of layout

    --- sprite2: set angle to 95

    --- sprite3: set angle to 240

    --- create gear joint with phase = sprite3.angle-sprite2.angle

    or you even can do this:

    --- sprite2: set angle to self.angle

    --- sprite3: set angle to self.angle

    --- create gear joint with phase = sprite3.angle-sprite2.angle

    EDIT:

    Ah, I see what the issue is. Internally in C2 angles can be any value. When you access them however, they are always returned in the range [0,360). So it would be a fix from my end. Till I do that the above solution will work.

  • R0J0hound , Hm.. seems like that won't fix it in a specific project I have where I'm creating multiple joints on multiple objects (some of which may have more than one gear or pivot).. I try to set all their angles to self.angle, which helps sometimes, but other times they spin like crazy.

    At the moment, I'm just resorting to using two pivot joints to join objects without the gear joints, since the gear joints appear to be unusable in my case. If you get around to fixing that, I can try reverting to the gear joints to see if the problem still persists,

  • hi rojo, i'm getting this error, it's erratic so sometimes I get it, refresh (changing nothing at all) and then it works fine. (happens about once every 10 times)

    Javascript error!Uncaught TypeError: Cannot read property 'x' of nullhttp://localhost:50000/rojoChipmunkBeta_behavior.js, line 5173 (col 25)This may be a bug in Construct 2 or a third party plugin or behavior - please report it to the developer following the bug report guidelines. Subsequent errors will be logged to the console.

  • keepee

    Do you have a capx that reproduces it? That line is run when applying forces, but it works here.

  • Hello,

    I'm new at construct 2.

    I have installed chipmunk and I intend to use it for a small racing game.

    First, I notice that when used with the car behaviour, it's not working well.

    So, I assume that I have to rewrite the car behaviour if I want to use chipmunk (same for physics behaviour).

    Also, I am wondering if chipmunk is OK with 3d isometric graphics.

    And if yes, how to do the transposition?

    I mean, is there a way to manually handle the collisions?

    Because in 3d iso, objects might be displayed "behind" and not colliding.

    Ouais

Jump to:
Active Users
There are 2 visitors browsing this topic (0 users and 2 guests)