I've started using jMonkey engine recently, which is very nice. But I got stuck trying to implement relative gravity.
I want to make planets orbiting around each other (not necessarily in perfectly circular orbit, depends on velocity). So every object should affect other objects.
What I have right now:
turning off global gravity
bulletAppState.getPhysicsSpace().setGravity(Vector3f.ZERO);
initializing spheres and adding to physics space
Sphere sphere = new Sphere(50, 50, 5);
Geometry sun = new Geometry("Sun", sphere);
sun.setMaterial(stone_mat);
rootNode.attachChild(sun);
sun.setLocalTranslation(0, 0, 0);
sunPhysics = new RigidBodyControl((float) (50*Math.pow(10, 5)));
sun.addControl(sunPhysics);
bulletAppState.getPhysicsSpace().add(sunPhysics);
Geometry mercury = new Geometry("Mercury", sphere);
mercury.setMaterial(stone_mat);
rootNode.attachChild(mercury);
mercury.setLocalTranslation(15f, 0, 0);
mercuryPhysics = new RigidBodyControl((float) (5));
mercury.addControl(mercuryPhysics);
bulletAppState.getPhysicsSpace().add(mercuryPhysics);
I noticed that there is method setGravity in RigidBodyControl class, but it just sets the direction. So object goes that way until it disappears.
I am really looking forward for answers.
If you want stable system, don't use simulated physics. (But if system have enough significant bodies, noone knows how it should behave, so it does not matter).
For things like solar system, I would use kinematic mode for planets (move them yourself) and for ships, asteroids etc. use forces. (Unless you make biliard in solar system)
Gravity in bulletphysics is one direction for all objects.
You should set gravity to 0 like you did and apply force too all objects after every simulation step using following formula
regular acceleration on earth is
g == 9.8
In space acceleration may every depend on distance from planet or planets.
If you like to simulate game like Angry Birds Space then you should consider reading article about gravity in that game http://www.wired.com/wiredscience/2012/03/the-gravitational-force-in-angry-birds-space/
The law of gravitation says
F = G (m1 * m2) / r^2
wherem1
andm2
are the masses of the two bodies, andr
is the distance.G
is the gravitational constant.Newton's second law says
F = m * a
, so if we put them together, the body with massm1
would experience an acceleration ofa = G * m2 / r^2
from gravitational pull from the body with massm2
.Now, what you would have to do is: In each step of the simulation, for each body, sum up the
a
s for each other body and apply that acceleration to the body's velocity.