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 (407)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  JBullet on Android  (Read 1591 times)
0 Members and 1 Guest are viewing this topic.
Offline bhurling

JGO Visitor




« Posted 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]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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!
cubemaster21 (90 views)
2013-05-17 21:29:12

alaslipknot (99 views)
2013-05-16 21:24:48

gouessej (129 views)
2013-05-16 00:53:38

gouessej (124 views)
2013-05-16 00:17:58

theagentd (135 views)
2013-05-15 15:01:13

theagentd (122 views)
2013-05-15 15:00:54

StreetDoggy (164 views)
2013-05-14 15:56:26

kutucuk (186 views)
2013-05-12 17:10:36

kutucuk (188 views)
2013-05-12 15:36:09

UnluckyDevil (195 views)
2013-05-12 05:09:57
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

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
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!
Page created in 0.144 seconds with 22 queries.