Help me choose a physics engine / wrapper for a car game

Post your questions, suggestions and experiences regarding game design, integration of external libraries here. For irrEdit, irrXML and irrKlang, see the
ambiera forums
Post Reply
personoid
Posts: 12
Joined: Fri Oct 22, 2010 7:14 am

Help me choose a physics engine / wrapper for a car game

Post by personoid »

Help!

I need some help choosing a physics engine / wrapper for Irrlicht.
I want it to make a simple car driving game.

I have some experience with driving games - in face I had one published on the original Playstation.

Clearly there are plenty of physics engine with wrappers for Irrlicht, as seen here:
http://www.irrlicht3d.org/wiki/index.ph ... sLibraries
In fact that is the problem , there are so many to choose from!
I've downloaded a few of them , but I'm having difficulty in finding one that meets my requirements. None of the ones I've seen have a good demo of a car simulation integrated with Irrlicht.

I'd appreciate some reccomendations.

My requirements are:
- A physics engine with Irrlich wrapper / integration.
- Must have good car / vehicle simulation, with a good tutorial / example demonstrating it.
- Must be free / open source.
- Must work with Microsoft Visual C++ 2008 express edition
- Must work reasonanbly well on my laptop, a Toshiba Satelite dual core 1.6Ghz, with Mobile Intel 945 Express chipset, and 2.5GB of RAM.

The sort of game I'm aiming to make is something with 5-10 cars driving a simple track /landscape , with some simple AI.
The car physics model car be reasonably simple , although I wouldn't mind if it is more realistic.

Alternatively, if someone has their own simple-ish car project, with source available, that I could take a look at, I'd greatly appreciate it.

Any help appreciated!

Thanks
Personoid
CuteAlien
Admin
Posts: 9691
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

I think for opensource engines you only have the choice between ODE and bullets. Both will work with VisualStudio. I suppose they might have at least simple examples for cars on their homepages, as that is rather often asked for physic engines (and I remember I've seen such an example at least for ODE). So checkout their homepages.

AI is independent of physics engine. It's rather difficult to make a driving AI which does use real physics. It's a lot simpler to move them on some pre-calculated track and only enable physics on collision.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Brainsaw
Posts: 1177
Joined: Wed Jan 07, 2004 12:57 pm
Location: Bavaria

Post by Brainsaw »

My IrrOde wrapper has an IrrOdeCar demo which includes 3 different types of cars (it does also include a tank, a helicopter and an airplane btw). I am currently working hard to get the "simple car" better. There is a new version on sourceforge that is not yet uploaded in a release package.

I am still having problems with inaccuracy in the calculations that make the rear wheels go crazy, but I do have some ideas on how to fix that ... I'll just have to try those out (e.g. switching ODE to doulbe precision).

The demo runs well on my Core2Duo notebook with Intel GMA4500 (I think) graphics chip, but it doesn't have any cool looking graphics effects - it's just a tech-demo.

Maybe you could give it a try.

The simple car with added suspension is the way to go in this demo. The other two cars are OK, but they are way more complicated and bring some strange behavior sometimes, e.g. if a collision with another dynamic object happens both objects will completely go mad.
Dustbin::Games on the web: https://www.dustbin-online.de/

Dustbin::Games on facebook: https://www.facebook.com/dustbingames/
Dustbin::Games on twitter: https://twitter.com/dustbingames
freetimecoder
Posts: 226
Joined: Fri Aug 22, 2008 8:50 pm
Contact:

Post by freetimecoder »

Hi,

Newton is not open source, but free.
I made a simple car test a while ago
Image
http://www.file-upload.net/download-291 ... r.zip.html

The code structure is terrible but it only uses the newton physics commands. I now use it mixed with my own functions, that is why this test has not been developed further.

I compiled it using CodeBlocks but it should be portable to VC++. Besides Newton and Irrlicht I also use the irrNewt wrapper.

Newton 1.53 that is..

greetings
personoid
Posts: 12
Joined: Fri Oct 22, 2010 7:14 am

Post by personoid »

Brainsaw,
Thanks , I'll try that. Does it have a working car model with simple suspension?

Personoid
personoid
Posts: 12
Joined: Fri Oct 22, 2010 7:14 am

Post by personoid »

Freetimecoder,
Thanks very much, I'll try that.
Personoid.
Brainsaw
Posts: 1177
Joined: Wed Jan 07, 2004 12:57 pm
Location: Bavaria

Post by Brainsaw »

If you check the version from sourceforge there is a simple suspension added to the simple car model. It's not (yet) in the official release (I guess I'd have to upload a new version of that ;) ).
Dustbin::Games on the web: https://www.dustbin-online.de/

Dustbin::Games on facebook: https://www.facebook.com/dustbingames/
Dustbin::Games on twitter: https://twitter.com/dustbingames
3DModelerMan
Posts: 1691
Joined: Sun May 18, 2008 9:42 pm

Post by 3DModelerMan »

I like Bullet because you get soft bodies, and cloth, along with the rigid body sim. It has car physics. The nice thing about Bullet is the motion states, I don't know if there's anything similar in other physics engines? But I couldn't find anything like them in Havok while I was using it.
That would be illogical captain...

My first full game:
http://www.kongregate.com/games/3DModel ... tor#tipjar
personoid
Posts: 12
Joined: Fri Oct 22, 2010 7:14 am

Post by personoid »

Actually, I've had some success with the ca demo in this thread:
http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=36237

I'be been able to get it compiling and running with the latest versions of Bullet and Irrlicht.

But other sugestions are welcome.

Thanks

Personoid.
Birdman
Posts: 25
Joined: Mon Jan 28, 2008 5:45 am
Location: Buenos Aires

Physics

Post by Birdman »

I really like Newton Physics, i saw some demos of Raycast Cars.

Is there some sample arround about using Irrlicht and Raycast Car in newton?

I been inspecting the 203 sample from Newton, but it seems to be using newton more directly (instead of linking newton.dll), and i didnt found any demos for irr reflecting that.

Any help will be appreciated, thanks a lot in advance.

Edit: I been trying for a while to convert 203 sample to irr, im almost done now (just need to create the raycastcar), i used this tutorial as help http://www.newtondynamics.com/wiki/inde ... utorial%29
.
The sleeper must awaken!
personoid
Posts: 12
Joined: Fri Oct 22, 2010 7:14 am

Post by personoid »

Birdman,
That sounds like a great project.
Which are the Newton Raycastcar demos you saw?
Perhaps we could collaborate.

Personoid.
Birdman
Posts: 25
Joined: Mon Jan 28, 2008 5:45 am
Location: Buenos Aires

Post by Birdman »

The 203 tutorial for Raycast car is in the wiki.

http://www.newtondynamics.com/downloads ... orials.rar

I was able to mount a car, with physics for its Body, and Floor, but i still wasnt able to make the tires work, i have to check again this week.
The sleeper must awaken!
pippy3
Posts: 155
Joined: Tue Dec 15, 2009 7:32 am

Post by pippy3 »

I wound up with a list like OPs, and chose between ODE and bullet. Bullet ended up being the far more enjoyable to program in of the two:

Image
Post Reply