JBox2D

Hi!

We’ve released the first beta of JBox2D, a Java port of Erin Catto’s Box2D

Check out some demos at http://jbox2d.sourceforge.net/, source code is hosted at http://www.sf.net/projects/jbox2d

Soon (technical problems!) we’ll host the first jar release, in the meantime play with the demos and check out the source code

As usual, comments, suggestions et al are most welcomed

how does it compare to phys2d ?

Awesome stuff guys, just tried it out locally on my current game - very promising.

Box2D (not Lite) has a few new joints and compound shapes that I’m interested in. The really great feature thats been promised by Erin is continuous collision detection. If that goes in, gets ported to Java and proves to be performant enough I’m loving it! :slight_smile:

Kev

nice job. However I am a bit concerned about the structure of the code. Looks very un-java (package names for instance). Good do with a refactor.
Of course the structure might be as it is to ease porting ?

Looks good but runs very slowly here (1-2fps). Is that because of unoptimised JBox2D code or because of Processing?

it’s an alpha/beta release, where the demos are working and that’s it

we still need a lot of work in making it java-friendly, optimizations, etc

stay tuned!

Just wanted to bump this thread and take the opportunity to post a link to the latest JBox2d demos applet: http://www.jbox2d.org/v2demos/

I just finished up porting version 2.0 of Box2d, which now has continuous collision detection (turned on on a per-body basis, though everything is swept against static objects). We’re not quite at the release stage yet (mainly just working on documentation/cleanup/optimization now, as well as porting the rest of the examples), but anyone that’s interested is encouraged to grab a recent build from our SVN repo at https://jbox2d.svn.sourceforge.net/svnroot/jbox2d. A not-quite-as-recent .zip file is also available at http://jbox2d.svn.sourceforge.net/svnroot/jbox2d/trunk/JBox2d%2003-27-2008.zip, but that’s not updated as often.

There’s a Box2d Java thread at the Box2d forums (http://www.box2d.org/forum/viewforum.php?f=5), feel free to drop a line if you have problems or anything like that. I’ll post here as well when we officially release.

BTW, if you’re getting low frame rates, it’s a bit of both Processing and JBox2d at fault, Processing because I put it into full software rendering mode for best compatibility (Java2d mode was really causing problems on some computers, dropping frames and all that), which doesn’t work very quickly with a 640x480 canvas and thousands of lines to draw, JBox2d because I haven’t optimized this version at all yet (I know where most of the time is spent, though, so that will come - probably a factor of 2 improvement, if I had to guess). The stress test examples aren’t meant to run at 60 fps, I use those for optimization purposes, but most of the others should run at least usably on a recent computer (I get roughly 60 on all of them except the stress tests on my Macbook Pro 2.4 ghz). Soon I’ll get some OpenGL accelerated tests up so we can see what it’s like with the hardware in control of the graphics.

The demo applet doesn’t work: :’(


Exception in thread "Thread-15" java.lang.NoClassDefFoundError: javax/vecmath/Color3f
	at org.jbox2d.testbed.AbstractExample.<clinit>(Unknown Source)
	at org.jbox2d.testbed.TestbedMain.setup(Unknown Source)
	at processing.core.PApplet.handleDisplay(PApplet.java:1285)
	at processing.core.PGraphics.requestDisplay(PGraphics.java:680)
	at processing.core.PApplet.run(PApplet.java:1454)
	at java.lang.Thread.run(Thread.java:595)


[s]Ah, crap. I must have vecmath installed locally (I guess OS X does by default). Well, I’ll have to work this out tomorrow, this might take some debugging (my build script for whatever reason won’t let me add vecmath.jar when it does its thing)…sorry about that!

Gotta get rid of that vecmath dependency anyways, since it’s GPL and JBox2d is trying to be zlib-only - I guess this gives me a good excuse to make that a priority![/s]

Nevermind, fixed it just now - took out the vecmath stuff (was just using Color3f as a holder anyways) and replaced it with my own code. Sorry I missed that at first!

One thing I notice that still really disturbs me, the memory usage goes up and up if you keep reloading the applet…I suspect that means the previously loaded copies never unload (I also had to remove any static state variables or I discovered they never get reset when you reload - some searching shows that this is Not A Bug, but man, is that irritating and unexpected!). Eventually I run out of heap space and the browser sometimes even crashes. Does anyone know a way around that, or is it just another one of those things that make Java suck in the browser? (It also might be a Processing bug, I’m not sure - if Processing’s internals hold on to a single static reference to my controller, that’s going to leak the entire active heap right there)

Works fine now… ;D Great work, i like the demos.

Just figured I’d post an update here - I just finished updating JBox2d to version 2.0.1 of Box2d. Continuous collision detection is pretty stable now, and most things seem in line with the C++ engine.

JBox2d is released under the zlib license.

Bug reports/feature requests are best directed to this thread at the Box2d forums: http://www.box2d.org/forum/viewtopic.php?f=5&t=36

Some links:

Also, as a plug, my brothers (mostly) and I (a bit) are currently working on Pulpfizz, a Pulpcore/JBox2d integration under a BSD license that will hopefully turn into a full featured and easy way to make 2d physics based games, wrapping and simplifying the JBox2d API a bit and tuning it specifically for Pulpcore. The project is still pretty young, it’s only been in development for a few weeks, but amongst ourselves we’re now doing a bi-weekly game making contest using the engine, so it’s going to see a lot of development and use over the next months - if you’re interested in using Pulpcore with JBox2d it’s probably worth keeping an eye on, it will likely be the easiest way to do so once it’s mature.