You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.7 KiB
78 lines
2.7 KiB
package jme3test.bullet;
|
|
|
|
import com.jme3.app.SimpleApplication;
|
|
import com.jme3.bullet.BulletAppState;
|
|
import com.jme3.bullet.collision.PhysicsCollisionObject;
|
|
import com.jme3.bullet.collision.PhysicsSweepTestResult;
|
|
import com.jme3.bullet.collision.shapes.CapsuleCollisionShape;
|
|
import com.jme3.bullet.control.RigidBodyControl;
|
|
import com.jme3.math.Transform;
|
|
import com.jme3.scene.Node;
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
* A spatial moves and sweeps its next movement for obstacles before moving
|
|
* there Run this example with Vsync enabled
|
|
*
|
|
* @author wezrule
|
|
*/
|
|
public class TestSweepTest extends SimpleApplication {
|
|
|
|
private BulletAppState bulletAppState = new BulletAppState();
|
|
private CapsuleCollisionShape obstacleCollisionShape;
|
|
private CapsuleCollisionShape capsuleCollisionShape;
|
|
private Node capsule;
|
|
private Node obstacle;
|
|
private float dist = .5f;
|
|
|
|
public static void main(String[] args) {
|
|
new TestSweepTest().start();
|
|
}
|
|
|
|
@Override
|
|
public void simpleInitApp() {
|
|
obstacleCollisionShape = new CapsuleCollisionShape(0.3f, 0.5f);
|
|
capsuleCollisionShape = new CapsuleCollisionShape(1f, 1f);
|
|
|
|
stateManager.attach(bulletAppState);
|
|
|
|
capsule = new Node("capsule");
|
|
capsule.move(-2, 0, 0);
|
|
capsule.addControl(new RigidBodyControl(capsuleCollisionShape, 1));
|
|
capsule.getControl(RigidBodyControl.class).setKinematic(true);
|
|
bulletAppState.getPhysicsSpace().add(capsule);
|
|
rootNode.attachChild(capsule);
|
|
|
|
obstacle = new Node("obstacle");
|
|
obstacle.move(2, 0, 0);
|
|
RigidBodyControl bodyControl = new RigidBodyControl(obstacleCollisionShape, 0);
|
|
obstacle.addControl(bodyControl);
|
|
bulletAppState.getPhysicsSpace().add(obstacle);
|
|
rootNode.attachChild(obstacle);
|
|
|
|
bulletAppState.setDebugEnabled(true);
|
|
}
|
|
|
|
@Override
|
|
public void simpleUpdate(float tpf) {
|
|
|
|
float move = tpf * 1;
|
|
boolean colliding = false;
|
|
|
|
List<PhysicsSweepTestResult> sweepTest = bulletAppState.getPhysicsSpace().sweepTest(capsuleCollisionShape, new Transform(capsule.getWorldTranslation()), new Transform(capsule.getWorldTranslation().add(dist, 0, 0)));
|
|
|
|
for (PhysicsSweepTestResult result : sweepTest) {
|
|
if (result.getCollisionObject().getCollisionShape() != capsuleCollisionShape) {
|
|
PhysicsCollisionObject collisionObject = result.getCollisionObject();
|
|
fpsText.setText("Almost colliding with " + collisionObject.getUserObject().toString());
|
|
colliding = true;
|
|
}
|
|
}
|
|
|
|
if (!colliding) {
|
|
// if the sweep is clear then move the spatial
|
|
capsule.move(move, 0, 0);
|
|
}
|
|
}
|
|
}
|
|
|