Phys2D FixedJoint unstable?

Hi, I’ve recently tried Phys2D and found it generally good, and possibly applicable to the game I’m making. However I’m troubled by an instability I’ve observed: When I connect a chain of several objects via FixedJoints–say, four small boxes widely spaced in a U-shape, sort of like in Phys2D’s Demo19–and drop the resulting shape onto a floor, it bounces and wiggles a bit, as one might expect, but the bouncing gradually becomes worse until the shapes simply fly out of sight. Demo19 looks deceptively stable in comparison to this scenario, but I tried copying its setup and tweaking it a little, and I reproduced the same thing pretty easily. Why does this happen? Does Phys2D belong to some general class of physics engines of which this sort of instability is a basic feature? Or is it conceivable that somebody could write a nicer, stabler FixedJoint without too much trouble? My game is currently using ODE, which hasn’t this problem… though it is very unfortunately saddled with that nasty third dimension. I don’t know what people see in that thing. :slight_smile:

Special bonus question: Cursory online research suggests that ODE is nondeterministic; experimentation suggests that Phys2D (and therefore perhaps Box2D et al) is deterministic. Is this correct? Is JOODE nondeterministic? My game likes determinism!

Phys2D is deterministic.

However there are two reasons for the instability:

a) There are still a few bugs here and there which are generally improved by changing the world iterations and/or step size. However, this takes time and tuning

b) The simulation doesn’t use continuous collision detection, as such it it accept some penetration and tries to resolve it. This is only an approximation and sometimes introduces error.

It’s worth noting the new version of Box2D supports continuous collision detection and appears (to me at least) to be generally more stable. You can find it at http://www.jbox2d.org/

Kev

That’s definately not the case: ODE is deterministic, as well. (At least in the common sense of “deterministic” in computer science… maybe you meant something else?)

I don’t remember what determinism is in computer science. :slight_smile: I meant that if you set up a physical scenario with ODE, and let it run twice, you’ll get two different outcomes. A box that falls on its corner near a ledge might topple off the ledge on one run, and then on the next run, tip back and settle on the ledge. Like this guy says: http://gamecreator.blogspot.com/2007/03/ode-determinism.html

Box2D does appear to be worth trying, so I’ll move on to that and keep my Phys2D exploration on hold for now. I know of JBox2D, and I would prefer to use that since it’s pure Java–but maybe Java bindings to Box2D itself would also be worthwhile. I don’t immediately see any of those around though.

uh, I couldn’t believe it, because I thought I have read some posts on the ODE list about ODE being deterministic… but looking at the code it really uses random numbers :o