Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (306)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
   Home   Help   Search   Login   Register   
  Show Posts
Pages: [1]
1  Java Game APIs & Engines / Android / JBullet on Android on: 2011-09-22 16:33:18
Hello,

has anyone successfully used JBullet on Android? I got some weird behaviour when using a simple BoxShape. It acts almost like a cylinder. It comes to rest correctly on two opposite sides (say 1 and 6 on a dice). But it roles like a wheel when on any other side (with  a line from 1 to 6 as the axis).

This is how I initialize the world (That's basically the same as in the BasicDemo):
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
// collision configuration contains default setup for memory, collision
// setup
CollisionConfiguration collisionConfiguration = new DefaultCollisionConfiguration();

// use the default collision dispatcher. For parallel processing you can
// use a diffent dispatcher (see Extras/BulletMultiThreaded)
CollisionDispatcher dispatcher = new CollisionDispatcher(
      collisionConfiguration);

BroadphaseInterface broadphase = new DbvtBroadphase();

// the default constraint solver. For parallel processing you can use a
// different solver (see Extras/BulletMultiThreaded)
ConstraintSolver solver = new SequentialImpulseConstraintSolver();

mDynamics = new DiscreteDynamicsWorld(dispatcher, broadphase, solver,
      collisionConfiguration);

mDynamics.setGravity(new Vector3f(0f, -10f, 0f));


Afterwards I define some static shapes for the ground and for the walls and then I just want to create a simple cube:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
CollisionShape colShape = new BoxShape(new Vector3f(1, 1, 1));

// Create Dynamic Objects
Transform startTransform = new Transform();
startTransform.setIdentity();

float mass = 1f;

Vector3f localInertia = new Vector3f(0, 0, 0);
colShape.calculateLocalInertia(mass, localInertia);

// using motionstate is recommended, it provides
// interpolation capabilities, and only synchronizes
// 'active' objects
DefaultMotionState myMotionState = new DefaultMotionState(
      startTransform);

RigidBodyConstructionInfo rbInfo = new RigidBodyConstructionInfo(mass,
      myMotionState, colShape, localInertia);
dice = new RigidBody(rbInfo);

dice.setActivationState(RigidBody.ACTIVE_TAG);

mDynamics.addRigidBody(dice);


Most of the code is taken directly from the examples so I wonder what I am doing wrong here.

Here is a video for demonstration:
http://www.youtube.com/watch?v=oIe5sYJKQSs

Any suggestions?
Pages: [1]
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (5 views)
2013-06-19 14:55:23

BrassApparatus (12 views)
2013-06-19 08:52:37

NegativeZero (17 views)
2013-06-19 03:31:52

NegativeZero (19 views)
2013-06-19 03:24:09

Jesse_Attard (22 views)
2013-06-18 22:03:02

HeroesGraveDev (62 views)
2013-06-15 23:35:23

Vermeer (61 views)
2013-06-14 20:08:06

davedes (61 views)
2013-06-14 16:03:55

alaslipknot (56 views)
2013-06-13 07:56:31

Roquen (77 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!