PhysicsEngines

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Modified BulletX)
Line 50: Line 50:
 
* Mis-aligned Terrain: ''The visible terrain is slightly mis-aligned against the heightmap.  This causes the avatar to appear as if it's standing on empty space while slightly off of a hill and causes the avatar to appear as if it's knees are bent or feet in the terrain on the other side.''
 
* Mis-aligned Terrain: ''The visible terrain is slightly mis-aligned against the heightmap.  This causes the avatar to appear as if it's standing on empty space while slightly off of a hill and causes the avatar to appear as if it's knees are bent or feet in the terrain on the other side.''
  
== Modified BulletX ==
+
== BulletX Plugin in OpenSim: Modified BulletX ==
This is a modified version of BulletX. The original version of BulletX runs under and has code-dependencies with MS.XNA. The orginal BulletX can be found at [http://www.codeplex.com/xnadevru XNADev.ru]. The modified version removes all code dependencies with MS.XNA. On the other hand, it needs another library to work. This library is based on Mono.Xna and it's called MonoCompactMaths. The modified BulletX and the MonoXnaCompactMaths can be found on the svn of OpenSim. Because its code independency of MS.XNA, the modified BulletX should can be run under either MS.Net or Mono and, therefore, either Windows or Linux (obviously you can combine Windows + Mono)
+
BulletX Plugin in OpenSim runs the modified version of BulletX. The original version of BulletX runs under and has code-dependencies with MS.XNA. The orginal BulletX can be found at [http://www.codeplex.com/xnadevru XNADev.ru]. The modified version removes all code dependencies with MS.XNA. On the other hand, it needs another library to work. This library is based on Mono.Xna and it's called MonoCompactMaths. The modified BulletX and the MonoXnaCompactMaths can be found on the svn of OpenSim. Because its code independency of MS.XNA, the modified BulletX should can be run under either MS.Net or Mono and, therefore, either Windows or Linux (obviously you can combine Windows + Mono)
  
 
+
Currently, BulletX Plugin suports collisions Av2Av, Av2Prim and Prim2Prim. Prims and avies movement supported. By the way, collisions needs tunning. The currently collision's behavoir are:
=== BulletX Plugin in OpenSim ===
+
BulletX Plugin in OpenSim runs the modified version of BulletX. Currently, BulletX Plugin suports collisions Av2Av, Av2Prim and Prim2Prim. Prims and avies movement supported. By the way, collisions needs tunning. The currently collision's behavoir are:
+
 
* For avies, like and sphere of 1m of radious and 50Kg of mass
 
* For avies, like and sphere of 1m of radious and 50Kg of mass
 
* For prims, like a Box of the prim-size and a mass that it depends of its sizes. The mass it's the mass of Box of water with density = 1Kg/l = 1Kg/dm3 = 1000Kg/m3 (Be water my friend! :D).
 
* For prims, like a Box of the prim-size and a mass that it depends of its sizes. The mass it's the mass of Box of water with density = 1Kg/l = 1Kg/dm3 = 1000Kg/m3 (Be water my friend! :D).
  
==== To-do list (next changes) ====
+
=== To-do list (next changes) ===
 
* Tune collision
 
* Tune collision
 
* Introduce Prim Shape Type to have more than the box shape.
 
* Introduce Prim Shape Type to have more than the box shape.
 
* Fix bugs
 
* Fix bugs
===== Known bugs =====
+
==== Known bugs ====
 
* Icy bug: ''an avatar acts like it is on ice and tends to drift off the edge of the sim after a while''
 
* Icy bug: ''an avatar acts like it is on ice and tends to drift off the edge of the sim after a while''
 
* Crash on BulletX. You will find the next message in console sometimes: ''Overflow in AABB, object removed from simulation If you can reproduce this, please email bugs@continuousphysics.com Please include above information, your Platform, version of OS. Thanks.''
 
* Crash on BulletX. You will find the next message in console sometimes: ''Overflow in AABB, object removed from simulation If you can reproduce this, please email bugs@continuousphysics.com Please include above information, your Platform, version of OS. Thanks.''

Revision as of 08:56, 4 November 2007

There are several physics engines available for use in OpenSim. Currently, they are "basicphysics", "OpenDynamicsEngine", "RealPhysX" & "BulletX" (modified version). The plugin "basicphysics" is the default and can be seen in the OpenSim.ini file.

  • When starting OpenSim in either Windows or Linux, one can add -physics=OpenDynamicsEngine to run the OpenDynamicsEngine (ODE) instead of basicphysics, or change the corresponding parameter in OpenSim.ini.
  • When starting OpenSim in Windows, one can add -physics=RealPhysX if one has the appropriate DLL's which are not shipped with OpenSim due to license constraints.
  • When starting OpenSim in either Windows or Linux, one can add -physics=modified_BulletX to run a modified version of the BulletX Physics Engine aka Modified BulletX. See the next information about details and progress.

To conclude, basicphysics & OpenDynamicsEngine both are appropriate for Linux and in addition, RealPhysX is appropriate as an option for Windows if the supporting DLL's are available. Modified BulletX should be fine for Windows and Linux (not the original BulletX).

As of 10/9/07, ODE has received the bulk of testing. It supports basic collision with box-shaped primitives as well as box prims with box-shaped hollows. Bullet supports box-shaped prims and appears stable; there has been little testing yet, and it is known to have issues with friction (you skate around on non-level surfaces). Physx has not been updated in quite a while.

Contents

Compiling ODE from source (Linux)

If you want to compile the OpenDynamicsEngine (ODE) by yourself, get the latest source code (Ver. 0.9 as of Oct '07) from http://www.ode.org/. Unpack it, switch to the ode directory and compile it as follows:

./configure --enable-shared
make -k

(I used to suggest --with-trimesh=gimpact, but no longer. As of ODE 0.9, Opcode is the preferred and best-supported collision library)

This should create a libode.a and lidode.so file in the src/ode subdirectory. Copy these two files to the opensim bin directory (after having backed up the original files there). [er, I don't think the .a file is necessary to put in bin!]

Compiling ODE from source (Windows)

the standard distribution from ode.org has a build directory, in which you will find subdirs for several Microsoft compilers.

The standard .sln files (at least for VS2005) compile ode.dll such that it depends on at least two Microsoft runtime dll's. This can cause failure and confusion, so do the following: Right-click on ode in Solution Explorer, and select properties. under Configuration Properties/General, change "Use of MFC" to read "Use MFC in a Static Library"

then compile as usual.

ODE Plugin in OpenSim

Currently, the ODE Plugin suports collisions Av2Av, Av2Prim and Prim2Prim. Avies movement supported.

The currently collision behavior is:

  • For avies, a capsule of .5m of radius and a length of .9m and 50Kg of mass
  • For prims, like a Box.

To-do list (next changes)

  • Tune ground collisions
  • Introduce Prim Shape Type to have more than the box shape.
  • Fix bugs
  • Physical 'Active' prim

Known bugs

  • xMin<xMax yMin<yMax: Certain scenarios cause ODE to crash with an internal error.
  • Ground Collisions: Certain ground terrain causes avatar to bounce into the air without warning
  • Mis-aligned Terrain: The visible terrain is slightly mis-aligned against the heightmap. This causes the avatar to appear as if it's standing on empty space while slightly off of a hill and causes the avatar to appear as if it's knees are bent or feet in the terrain on the other side.

BulletX Plugin in OpenSim: Modified BulletX

BulletX Plugin in OpenSim runs the modified version of BulletX. The original version of BulletX runs under and has code-dependencies with MS.XNA. The orginal BulletX can be found at XNADev.ru. The modified version removes all code dependencies with MS.XNA. On the other hand, it needs another library to work. This library is based on Mono.Xna and it's called MonoCompactMaths. The modified BulletX and the MonoXnaCompactMaths can be found on the svn of OpenSim. Because its code independency of MS.XNA, the modified BulletX should can be run under either MS.Net or Mono and, therefore, either Windows or Linux (obviously you can combine Windows + Mono)

Currently, BulletX Plugin suports collisions Av2Av, Av2Prim and Prim2Prim. Prims and avies movement supported. By the way, collisions needs tunning. The currently collision's behavoir are:

  • For avies, like and sphere of 1m of radious and 50Kg of mass
  • For prims, like a Box of the prim-size and a mass that it depends of its sizes. The mass it's the mass of Box of water with density = 1Kg/l = 1Kg/dm3 = 1000Kg/m3 (Be water my friend! :D).

To-do list (next changes)

  • Tune collision
  • Introduce Prim Shape Type to have more than the box shape.
  • Fix bugs

Known bugs

  • Icy bug: an avatar acts like it is on ice and tends to drift off the edge of the sim after a while
  • Crash on BulletX. You will find the next message in console sometimes: Overflow in AABB, object removed from simulation If you can reproduce this, please email bugs@continuousphysics.com Please include above information, your Platform, version of OS. Thanks.
Personal tools
General
About This Wiki