2016-12-30 23:19:29 +00:00
|
|
|
package roadtrip;
|
|
|
|
|
|
|
|
import com.jme3.app.SimpleApplication;
|
2017-01-01 14:23:58 +00:00
|
|
|
import com.jme3.audio.AudioNode;
|
2017-01-03 00:14:35 +00:00
|
|
|
import com.jme3.audio.AudioSource.Status;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.bullet.BulletAppState;
|
|
|
|
import com.jme3.bullet.PhysicsSpace;
|
|
|
|
import com.jme3.bullet.collision.shapes.BoxCollisionShape;
|
|
|
|
import com.jme3.bullet.collision.shapes.CompoundCollisionShape;
|
2017-01-05 22:52:15 +00:00
|
|
|
import com.jme3.bullet.collision.shapes.HeightfieldCollisionShape;
|
2016-12-31 22:12:20 +00:00
|
|
|
import com.jme3.bullet.control.BetterCharacterControl;
|
|
|
|
import com.jme3.bullet.control.RigidBodyControl;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.bullet.control.VehicleControl;
|
2017-01-06 07:35:57 +00:00
|
|
|
import com.jme3.input.ChaseCamera;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.input.KeyInput;
|
|
|
|
import com.jme3.input.controls.ActionListener;
|
|
|
|
import com.jme3.input.controls.KeyTrigger;
|
2017-01-04 00:03:13 +00:00
|
|
|
import com.jme3.light.DirectionalLight;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.material.Material;
|
|
|
|
import com.jme3.math.ColorRGBA;
|
|
|
|
import com.jme3.math.FastMath;
|
2017-01-04 00:03:13 +00:00
|
|
|
import com.jme3.math.Quaternion;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.math.Vector3f;
|
2017-01-06 07:35:57 +00:00
|
|
|
import com.jme3.scene.CameraNode;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.scene.Geometry;
|
|
|
|
import com.jme3.scene.Node;
|
|
|
|
import com.jme3.scene.Spatial;
|
2017-01-06 07:35:57 +00:00
|
|
|
import com.jme3.scene.control.CameraControl.ControlDirection;
|
2016-12-31 22:12:20 +00:00
|
|
|
import com.jme3.scene.shape.Box;
|
2016-12-30 23:19:29 +00:00
|
|
|
import com.jme3.scene.shape.Cylinder;
|
2017-01-05 22:52:15 +00:00
|
|
|
import com.jme3.terrain.geomipmap.TerrainGrid;
|
|
|
|
import com.jme3.terrain.geomipmap.TerrainGridListener;
|
|
|
|
import com.jme3.terrain.geomipmap.TerrainGridLodControl;
|
|
|
|
import com.jme3.terrain.geomipmap.TerrainLodControl;
|
|
|
|
import com.jme3.terrain.geomipmap.TerrainQuad;
|
|
|
|
import com.jme3.terrain.geomipmap.grid.FractalTileLoader;
|
|
|
|
import com.jme3.terrain.geomipmap.lodcalc.DistanceLodCalculator;
|
|
|
|
import com.jme3.terrain.noise.ShaderUtils;
|
|
|
|
import com.jme3.terrain.noise.basis.FilteredBasis;
|
|
|
|
import com.jme3.terrain.noise.filter.IterativeFilter;
|
|
|
|
import com.jme3.terrain.noise.filter.OptimizedErode;
|
|
|
|
import com.jme3.terrain.noise.filter.PerturbFilter;
|
|
|
|
import com.jme3.terrain.noise.filter.SmoothFilter;
|
|
|
|
import com.jme3.terrain.noise.fractal.FractalSum;
|
|
|
|
import com.jme3.terrain.noise.modulator.NoiseModulator;
|
|
|
|
import com.jme3.texture.Texture;
|
2017-01-03 00:14:35 +00:00
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
2016-12-30 23:19:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author dejvino
|
|
|
|
*/
|
|
|
|
public class RoadTrip extends SimpleApplication implements ActionListener {
|
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
public static void main(String[] args)
|
|
|
|
{
|
|
|
|
RoadTrip app = new RoadTrip();
|
|
|
|
app.start();
|
|
|
|
}
|
|
|
|
|
2016-12-31 22:12:20 +00:00
|
|
|
public static boolean DEBUG = false;//true;
|
2016-12-30 23:19:29 +00:00
|
|
|
|
|
|
|
private BulletAppState bulletAppState;
|
2017-01-06 07:35:57 +00:00
|
|
|
|
|
|
|
private ChaseCamera chaseCam;
|
2017-01-04 00:03:13 +00:00
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
// START Terrain
|
|
|
|
private Material mat_terrain;
|
|
|
|
private TerrainGrid terrain;
|
|
|
|
private float grassScale = 64;
|
|
|
|
private float dirtScale = 64;
|
|
|
|
private float rockScale = 64;
|
|
|
|
|
|
|
|
private FractalSum base;
|
|
|
|
private PerturbFilter perturb;
|
|
|
|
private OptimizedErode therm;
|
|
|
|
private SmoothFilter smooth;
|
|
|
|
private IterativeFilter iterate;
|
|
|
|
// END Terrain
|
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
private List<VehicleNode> vehicles = new LinkedList<>();
|
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
// START Player
|
2017-01-03 00:14:35 +00:00
|
|
|
private Node playerNode;
|
|
|
|
private BetterCharacterControl playerPersonControl;
|
2016-12-30 23:19:29 +00:00
|
|
|
private Vector3f jumpForce = new Vector3f(0, 3000, 0);
|
2016-12-31 22:57:29 +00:00
|
|
|
private Vector3f walkDir = new Vector3f();
|
2017-01-04 00:03:13 +00:00
|
|
|
private VehicleNode playerVehicleNode;
|
2017-01-05 22:52:15 +00:00
|
|
|
// END Player
|
2017-01-04 00:03:13 +00:00
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
private PhysicsSpace getPhysicsSpace(){
|
|
|
|
return bulletAppState.getPhysicsSpace();
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
@Override
|
|
|
|
public void simpleInitApp() {
|
|
|
|
bulletAppState = new BulletAppState();
|
|
|
|
stateManager.attach(bulletAppState);
|
2016-12-31 22:12:20 +00:00
|
|
|
if (DEBUG) bulletAppState.getPhysicsSpace().enableDebug(assetManager);
|
2016-12-30 23:19:29 +00:00
|
|
|
PhysicsTestHelper.createPhysicsTestWorld(rootNode, assetManager, bulletAppState.getPhysicsSpace());
|
2017-01-05 22:52:15 +00:00
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
setupKeys();
|
|
|
|
|
2017-01-01 20:47:53 +00:00
|
|
|
//audioRenderer.setEnvironment(Environment.Dungeon);
|
|
|
|
//AL10.alDistanceModel(AL11.AL_EXPONENT_DISTANCE);
|
2017-01-01 14:23:58 +00:00
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
// Environment
|
2017-01-04 00:03:13 +00:00
|
|
|
DirectionalLight dl = new DirectionalLight();
|
2017-01-04 07:28:56 +00:00
|
|
|
dl.setColor(ColorRGBA.LightGray);
|
2017-01-04 00:03:13 +00:00
|
|
|
dl.setDirection(new Vector3f(1, -1, 1));
|
|
|
|
rootNode.addLight(dl);
|
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
addMap();
|
2016-12-31 22:12:20 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
addCar();
|
|
|
|
addCar();
|
|
|
|
addCar();
|
|
|
|
addCar();
|
|
|
|
addCar();
|
|
|
|
addPerson();
|
|
|
|
addPerson();
|
2016-12-31 22:12:20 +00:00
|
|
|
addPerson();
|
|
|
|
addPerson();
|
|
|
|
addPerson();
|
|
|
|
addPerson();
|
|
|
|
addPerson();
|
2017-01-05 22:52:15 +00:00
|
|
|
|
|
|
|
addPlayer();
|
2017-01-06 07:35:57 +00:00
|
|
|
|
|
|
|
chaseCam = new ChaseCamera(cam, playerNode, inputManager);
|
|
|
|
chaseCam.setSmoothMotion(true);
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void setupKeys() {
|
2017-01-04 07:28:56 +00:00
|
|
|
inputManager.clearMappings();
|
|
|
|
inputManager.addMapping("Lefts", new KeyTrigger(KeyInput.KEY_A));
|
|
|
|
inputManager.addMapping("Rights", new KeyTrigger(KeyInput.KEY_D));
|
|
|
|
inputManager.addMapping("Ups", new KeyTrigger(KeyInput.KEY_W));
|
|
|
|
inputManager.addMapping("Downs", new KeyTrigger(KeyInput.KEY_S));
|
|
|
|
inputManager.addMapping("Revs", new KeyTrigger(KeyInput.KEY_X));
|
2016-12-30 23:19:29 +00:00
|
|
|
inputManager.addMapping("Space", new KeyTrigger(KeyInput.KEY_SPACE));
|
|
|
|
inputManager.addMapping("Reset", new KeyTrigger(KeyInput.KEY_RETURN));
|
2017-01-04 07:28:56 +00:00
|
|
|
inputManager.addMapping("Esc", new KeyTrigger(KeyInput.KEY_ESCAPE));
|
2016-12-30 23:19:29 +00:00
|
|
|
inputManager.addListener(this, "Lefts");
|
|
|
|
inputManager.addListener(this, "Rights");
|
|
|
|
inputManager.addListener(this, "Ups");
|
|
|
|
inputManager.addListener(this, "Downs");
|
2016-12-31 15:58:13 +00:00
|
|
|
inputManager.addListener(this, "Revs");
|
2016-12-30 23:19:29 +00:00
|
|
|
inputManager.addListener(this, "Space");
|
|
|
|
inputManager.addListener(this, "Reset");
|
2017-01-04 07:28:56 +00:00
|
|
|
inputManager.addListener(this, "Esc");
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
private void addCar()
|
|
|
|
{
|
|
|
|
Node vehicleModel = new Node("VehicleModel");
|
2017-01-04 00:03:13 +00:00
|
|
|
VehicleInstance vehicleInstance = VehicleInstance.createVehicle(vehicles.size() % VehicleInstance.getVehicleTypesCount());
|
2017-01-05 22:52:15 +00:00
|
|
|
vehicleInstance.brakeForce = vehicleInstance.accelerationForce;
|
2017-01-03 00:14:35 +00:00
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
Material mat = new Material(getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
|
|
mat.getAdditionalRenderState().setWireframe(true);
|
2016-12-31 22:12:20 +00:00
|
|
|
mat.setColor("Color", ColorRGBA.Black);
|
2016-12-30 23:19:29 +00:00
|
|
|
|
2017-01-04 00:03:13 +00:00
|
|
|
//Create four wheels and add them at their locations
|
|
|
|
Vector3f wheelDirection = new Vector3f(0, -1, 0); // was 0, -1, 0
|
|
|
|
Vector3f wheelAxle = new Vector3f(-1, 0, 0); // was -1, 0, 0
|
|
|
|
float radius = 1.0f;
|
|
|
|
float restLength = 0.3f;
|
|
|
|
float yOff = 0.5f;
|
|
|
|
float xOff = 1.6f;
|
|
|
|
float zOff = 2f;
|
|
|
|
|
|
|
|
Material matBody = new Material(getAssetManager(), "Common/MatDefs/Light/Lighting.j3md");
|
|
|
|
matBody.setFloat("Shininess", 32f);
|
|
|
|
matBody.setBoolean("UseMaterialColors", true);
|
|
|
|
matBody.setColor("Ambient", ColorRGBA.Black);
|
|
|
|
matBody.setColor("Diffuse", ColorRGBA.Red);
|
|
|
|
matBody.setColor("Specular", ColorRGBA.White);
|
2017-01-06 07:35:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (vehicleInstance.carType == VehicleInstance.WEAK) {
|
|
|
|
Spatial carBody = getAssetManager().loadModel("Models/rivercrossing.j3o");
|
|
|
|
carBody.setLocalScale(1.1f, 0.8f, 0.8f);
|
|
|
|
carBody.setLocalTranslation(0f, -1f, 0f);
|
|
|
|
carBody.rotate(0f, 3.1415f, 0f);
|
|
|
|
vehicleModel.attachChild(carBody);
|
|
|
|
} else {
|
|
|
|
Geometry carBody = new Geometry("car body", new Box(new Vector3f(0.0f, 1f, 0.0f), 1.4f, 0.5f, 3.6f));
|
|
|
|
carBody.setMaterial(matBody);
|
|
|
|
vehicleModel.attachChild(carBody);
|
|
|
|
}
|
2017-01-04 00:03:13 +00:00
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
//create a compound shape and attach the BoxCollisionShape for the car body at 0,1,0
|
|
|
|
//this shifts the effective center of mass of the BoxCollisionShape to 0,-1,0
|
|
|
|
CompoundCollisionShape compoundShape = new CompoundCollisionShape();
|
|
|
|
BoxCollisionShape box = new BoxCollisionShape(new Vector3f(1.4f, 0.5f, 3.6f));
|
|
|
|
compoundShape.addChildShape(box, new Vector3f(0, 1, 0));
|
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
if (vehicleInstance.carType == VehicleInstance.TRUCK) {
|
2016-12-30 23:19:29 +00:00
|
|
|
BoxCollisionShape boxCabin = new BoxCollisionShape(new Vector3f(1.4f, 0.8f, 1.0f));
|
|
|
|
compoundShape.addChildShape(boxCabin, new Vector3f(0, 2, 2f));
|
2017-01-04 00:03:13 +00:00
|
|
|
|
|
|
|
Geometry carCabin = new Geometry("car cabin", new Box(new Vector3f(0, 2, 2f), 1.4f, 0.8f, 1.0f));
|
|
|
|
carCabin.setMaterial(matBody);
|
|
|
|
vehicleModel.attachChild(carCabin);
|
2017-01-03 00:14:35 +00:00
|
|
|
} else if (vehicleInstance.carType == VehicleInstance.SPORT) {
|
2016-12-30 23:19:29 +00:00
|
|
|
BoxCollisionShape boxCabin = new BoxCollisionShape(new Vector3f(1.2f, 0.6f, 2.0f));
|
|
|
|
compoundShape.addChildShape(boxCabin, new Vector3f(0, 2, -1f));
|
2017-01-04 00:03:13 +00:00
|
|
|
|
|
|
|
Geometry carCabin = new Geometry("car cabin", new Box(new Vector3f(0, 2, -1f), 1.2f, 0.6f, 2.0f));
|
|
|
|
carCabin.setMaterial(matBody);
|
|
|
|
vehicleModel.attachChild(carCabin);
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
2017-01-04 00:03:13 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
VehicleControl vehicleControl = new VehicleControl(compoundShape, 500);
|
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
//setting suspension values for wheels, this can be a bit tricky
|
|
|
|
//see also https://docs.google.com/Doc?docid=0AXVUZ5xw6XpKZGNuZG56a3FfMzU0Z2NyZnF4Zmo&hl=en
|
|
|
|
float stiffness = 30.0f;//200=f1 car
|
|
|
|
float compValue = .1f; //(should be lower than damp)
|
|
|
|
float dampValue = .2f;
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.setSuspensionCompression(compValue * 2.0f * FastMath.sqrt(stiffness));
|
|
|
|
vehicleControl.setSuspensionDamping(dampValue * 2.0f * FastMath.sqrt(stiffness));
|
|
|
|
vehicleControl.setSuspensionStiffness(stiffness);
|
|
|
|
vehicleControl.setMaxSuspensionForce(10000.0f);
|
2016-12-31 22:12:20 +00:00
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
Cylinder wheelMesh = new Cylinder(16, 16, radius, radius * 0.2f, true);
|
|
|
|
|
|
|
|
Node node1 = new Node("wheel 1 node");
|
|
|
|
Geometry wheels1 = new Geometry("wheel 1", wheelMesh);
|
|
|
|
node1.attachChild(wheels1);
|
|
|
|
wheels1.rotate(0, FastMath.HALF_PI, 0);
|
|
|
|
wheels1.setMaterial(mat);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.addWheel(node1, new Vector3f(-xOff, yOff, zOff),
|
2016-12-30 23:19:29 +00:00
|
|
|
wheelDirection, wheelAxle, restLength, radius, true);
|
|
|
|
|
|
|
|
Node node2 = new Node("wheel 2 node");
|
|
|
|
Geometry wheels2 = new Geometry("wheel 2", wheelMesh);
|
|
|
|
node2.attachChild(wheels2);
|
|
|
|
wheels2.rotate(0, FastMath.HALF_PI, 0);
|
|
|
|
wheels2.setMaterial(mat);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.addWheel(node2, new Vector3f(xOff, yOff, zOff),
|
2016-12-30 23:19:29 +00:00
|
|
|
wheelDirection, wheelAxle, restLength, radius, true);
|
|
|
|
|
|
|
|
Node node3 = new Node("wheel 3 node");
|
|
|
|
Geometry wheels3 = new Geometry("wheel 3", wheelMesh);
|
|
|
|
node3.attachChild(wheels3);
|
|
|
|
wheels3.rotate(0, FastMath.HALF_PI, 0);
|
|
|
|
wheels3.setMaterial(mat);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.addWheel(node3, new Vector3f(-xOff, yOff, -zOff),
|
2016-12-30 23:19:29 +00:00
|
|
|
wheelDirection, wheelAxle, restLength, radius, false);
|
|
|
|
|
|
|
|
Node node4 = new Node("wheel 4 node");
|
|
|
|
Geometry wheels4 = new Geometry("wheel 4", wheelMesh);
|
|
|
|
node4.attachChild(wheels4);
|
|
|
|
wheels4.rotate(0, FastMath.HALF_PI, 0);
|
|
|
|
wheels4.setMaterial(mat);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.addWheel(node4, new Vector3f(xOff, yOff, -zOff),
|
2016-12-30 23:19:29 +00:00
|
|
|
wheelDirection, wheelAxle, restLength, radius, false);
|
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleModel.attachChild(node1);
|
|
|
|
vehicleModel.attachChild(node2);
|
|
|
|
vehicleModel.attachChild(node3);
|
|
|
|
vehicleModel.attachChild(node4);
|
2016-12-30 23:19:29 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
if (vehicleInstance.carType == VehicleInstance.TRUCK) {
|
2016-12-30 23:19:29 +00:00
|
|
|
Node node5 = new Node("wheel 5 node");
|
|
|
|
Geometry wheels5 = new Geometry("wheel 5", wheelMesh);
|
|
|
|
node5.attachChild(wheels5);
|
|
|
|
wheels5.rotate(0, FastMath.HALF_PI, 0);
|
|
|
|
wheels5.setMaterial(mat);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.addWheel(node5, new Vector3f(-xOff, yOff, 2.1f* -zOff),
|
2016-12-30 23:19:29 +00:00
|
|
|
wheelDirection, wheelAxle, restLength, radius, false);
|
|
|
|
|
|
|
|
Node node6 = new Node("wheel 6 node");
|
|
|
|
Geometry wheels6 = new Geometry("wheel 6", wheelMesh);
|
|
|
|
node6.attachChild(wheels6);
|
|
|
|
wheels6.rotate(0, FastMath.HALF_PI, 0);
|
|
|
|
wheels6.setMaterial(mat);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.addWheel(node6, new Vector3f(xOff, yOff, 2.1f* -zOff),
|
2016-12-30 23:19:29 +00:00
|
|
|
wheelDirection, wheelAxle, restLength, radius, false);
|
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleModel.attachChild(node5);
|
|
|
|
vehicleModel.attachChild(node6);
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.getWheel(0).setFrictionSlip(0.8f);
|
|
|
|
vehicleControl.getWheel(1).setFrictionSlip(0.8f);
|
|
|
|
vehicleControl.getWheel(2).setFrictionSlip(0.6f);
|
|
|
|
vehicleControl.getWheel(3).setFrictionSlip(0.6f);
|
2016-12-30 23:19:29 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
if (vehicleInstance.carType == VehicleInstance.TRUCK) {
|
|
|
|
vehicleControl.getWheel(4).setFrictionSlip(0.6f);
|
|
|
|
vehicleControl.getWheel(5).setFrictionSlip(0.6f);
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicleControl.setPhysicsLocation(new Vector3f(5f, 30f, 5f));
|
2016-12-31 22:57:29 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
VehicleNode vehicle = new VehicleNode("VehicleNode",
|
|
|
|
vehicleInstance, vehicleControl, vehicleModel);
|
2017-01-04 00:03:13 +00:00
|
|
|
vehicle.attachChild(vehicleModel);
|
2017-01-03 00:14:35 +00:00
|
|
|
|
|
|
|
vehicle.engineAudio = new AudioNode(assetManager, "Sounds/engine.ogg", false);
|
|
|
|
vehicle.engineAudio.setPositional(true);
|
|
|
|
vehicle.engineAudio.setLooping(true);
|
|
|
|
vehicle.engineAudio.setReverbEnabled(true);
|
2017-01-04 00:03:13 +00:00
|
|
|
vehicle.engineAudio.setRefDistance(5);
|
|
|
|
vehicle.engineAudio.setMaxDistance(1000000);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicle.attachChild(vehicle.engineAudio);
|
2017-01-01 14:23:58 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicle.wheelsAudio = new AudioNode(assetManager, "Sounds/wheels.ogg", false);
|
|
|
|
vehicle.wheelsAudio.setPositional(true);
|
|
|
|
vehicle.wheelsAudio.setLooping(true);
|
2017-01-01 20:47:53 +00:00
|
|
|
//wheelsAudio.setReverbEnabled(true);
|
2017-01-04 00:03:13 +00:00
|
|
|
vehicle.wheelsAudio.setRefDistance(1f);
|
|
|
|
vehicle.wheelsAudio.setMaxDistance(1000000f);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicle.wheelsAudio.play();
|
|
|
|
vehicle.attachChild(vehicle.wheelsAudio);
|
2017-01-01 20:47:53 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicle.wheelSlipAudio = new AudioNode(assetManager, "Sounds/wheel-slip.ogg", false);
|
|
|
|
vehicle.wheelSlipAudio.setPositional(true);
|
|
|
|
vehicle.wheelSlipAudio.setLooping(true);
|
2017-01-01 20:47:53 +00:00
|
|
|
//wheelsAudio.setReverbEnabled(true);
|
2017-01-04 00:03:13 +00:00
|
|
|
vehicle.wheelSlipAudio.setRefDistance(5);
|
|
|
|
vehicle.wheelSlipAudio.setMaxDistance(1000000);
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicle.wheelSlipAudio.play();
|
|
|
|
vehicle.attachChild(vehicle.wheelSlipAudio);
|
2017-01-01 20:47:53 +00:00
|
|
|
|
2017-01-04 00:03:13 +00:00
|
|
|
vehicle.addControl(vehicleControl);
|
|
|
|
getPhysicsSpace().add(vehicleControl);
|
2017-01-04 07:28:56 +00:00
|
|
|
vehicleControl.setPhysicsLocation(new Vector3f(10f + (float)Math.random() * 40f, 28f, 12f + (float)Math.random() * 40f));
|
2017-01-03 00:14:35 +00:00
|
|
|
|
|
|
|
vehicles.add(vehicle);
|
2017-01-04 00:03:13 +00:00
|
|
|
rootNode.attachChild(vehicle);
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
private Node addPerson() {
|
|
|
|
Spatial personModel = assetManager.loadModel("Models/person.j3o");
|
|
|
|
Node person = new Node("person");
|
|
|
|
person.attachChild(personModel);
|
|
|
|
BetterCharacterControl personControl = new BetterCharacterControl(1f, 4f, 10f);
|
|
|
|
/*personModel.setLocalTranslation(0f, -1f, 0f);
|
|
|
|
BoxCollisionShape personShape = new BoxCollisionShape(new Vector3f(0.5f, 2f, 0.5f));
|
|
|
|
RigidBodyControl personControl = new RigidBodyControl(personShape, 80f);/**/
|
|
|
|
person.addControl(personControl);
|
|
|
|
/**/personControl.setJumpForce(new Vector3f(0,5f,0));
|
|
|
|
personControl.setGravity(new Vector3f(0,1f,0));
|
|
|
|
personControl.warp(new Vector3f(10f + (float)Math.random() * 20f, 30f, 12f + (float)Math.random() * 20f));/**/
|
|
|
|
//personControl.setPhysicsLocation(new Vector3f(10f, 30f, 12f));
|
|
|
|
getPhysicsSpace().add(personControl);
|
|
|
|
//getPhysicsSpace().addAll(person);
|
|
|
|
rootNode.attachChild(person);
|
|
|
|
|
|
|
|
Vector3f dir = new Vector3f((float)Math.random() * 2f - 1f, 0f, (float)Math.random() * 2f - 1f);
|
|
|
|
personControl.setViewDirection(dir);
|
|
|
|
personControl.setWalkDirection(dir);
|
|
|
|
|
|
|
|
return person;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addPlayer()
|
|
|
|
{
|
|
|
|
playerNode = addPerson();
|
|
|
|
playerPersonControl = playerNode.getControl(BetterCharacterControl.class);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addMap() {
|
|
|
|
// TERRAIN TEXTURE material
|
|
|
|
this.mat_terrain = new Material(this.assetManager, "Common/MatDefs/Terrain/HeightBasedTerrain.j3md");
|
|
|
|
|
|
|
|
// Parameters to material:
|
|
|
|
// regionXColorMap: X = 1..4 the texture that should be appliad to state X
|
|
|
|
// regionX: a Vector3f containing the following information:
|
|
|
|
// regionX.x: the start height of the region
|
|
|
|
// regionX.y: the end height of the region
|
|
|
|
// regionX.z: the texture scale for the region
|
|
|
|
// it might not be the most elegant way for storing these 3 values, but it packs the data nicely :)
|
|
|
|
// slopeColorMap: the texture to be used for cliffs, and steep mountain sites
|
|
|
|
// slopeTileFactor: the texture scale for slopes
|
|
|
|
// terrainSize: the total size of the terrain (used for scaling the texture)
|
|
|
|
// GRASS texture
|
|
|
|
Texture grass = this.assetManager.loadTexture("Textures/solid-grass.png");
|
|
|
|
grass.setWrap(Texture.WrapMode.Repeat);
|
|
|
|
Texture dirt = this.assetManager.loadTexture("Textures/solid-road.png");
|
|
|
|
dirt.setWrap(Texture.WrapMode.Repeat);
|
|
|
|
Texture rock = this.assetManager.loadTexture("Textures/solid-stone.png");
|
|
|
|
rock.setWrap(Texture.WrapMode.Repeat);
|
|
|
|
|
|
|
|
this.mat_terrain.setTexture("region1ColorMap", dirt);
|
|
|
|
this.mat_terrain.setVector3("region1", new Vector3f(0, 80, this.dirtScale));
|
|
|
|
|
|
|
|
this.mat_terrain.setTexture("region2ColorMap", grass);
|
|
|
|
this.mat_terrain.setVector3("region2", new Vector3f(100, 160, this.grassScale));
|
|
|
|
|
|
|
|
this.mat_terrain.setTexture("region3ColorMap", rock);
|
|
|
|
this.mat_terrain.setVector3("region3", new Vector3f(190, 240, this.rockScale));
|
|
|
|
|
|
|
|
this.mat_terrain.setTexture("region4ColorMap", dirt);
|
|
|
|
this.mat_terrain.setVector3("region4", new Vector3f(250, 350, this.dirtScale));
|
|
|
|
|
|
|
|
this.mat_terrain.setTexture("slopeColorMap", rock);
|
|
|
|
this.mat_terrain.setFloat("slopeTileFactor", 32);
|
|
|
|
|
|
|
|
this.mat_terrain.setFloat("terrainSize", 513);
|
|
|
|
|
|
|
|
this.base = new FractalSum();
|
|
|
|
this.base.setRoughness(0.7f);
|
|
|
|
this.base.setFrequency(1.0f);
|
|
|
|
this.base.setAmplitude(1.0f);
|
|
|
|
this.base.setLacunarity(2.12f);
|
|
|
|
this.base.setOctaves(8);
|
|
|
|
this.base.setScale(0.02125f);
|
|
|
|
this.base.addModulator(new NoiseModulator() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public float value(float... in) {
|
|
|
|
return ShaderUtils.clamp(in[0] * 0.5f + 0.5f, 0, 1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
FilteredBasis ground = new FilteredBasis(this.base);
|
|
|
|
|
|
|
|
this.perturb = new PerturbFilter();
|
|
|
|
this.perturb.setMagnitude(0.119f);
|
|
|
|
|
|
|
|
this.therm = new OptimizedErode();
|
|
|
|
this.therm.setRadius(5);
|
|
|
|
this.therm.setTalus(0.011f);
|
|
|
|
|
|
|
|
this.smooth = new SmoothFilter();
|
|
|
|
this.smooth.setRadius(1);
|
|
|
|
this.smooth.setEffect(0.7f);
|
|
|
|
|
|
|
|
this.iterate = new IterativeFilter();
|
|
|
|
this.iterate.addPreFilter(this.perturb);
|
|
|
|
this.iterate.addPostFilter(this.smooth);
|
|
|
|
this.iterate.setFilter(this.therm);
|
|
|
|
this.iterate.setIterations(2);
|
|
|
|
|
|
|
|
ground.addPreFilter(this.iterate);
|
|
|
|
|
|
|
|
this.terrain = new TerrainGrid("terrain", 64 + 1, 256 + 1, new FractalTileLoader(ground, 300f));
|
|
|
|
|
|
|
|
this.terrain.setMaterial(this.mat_terrain);
|
|
|
|
this.terrain.setLocalTranslation(0, -200, 0);
|
|
|
|
this.terrain.setLocalScale(2f, 1f, 2f);
|
|
|
|
this.rootNode.attachChild(this.terrain);
|
|
|
|
|
|
|
|
TerrainLodControl control = new TerrainGridLodControl(this.terrain, this.getCamera());
|
|
|
|
control.setLodCalculator(new DistanceLodCalculator(64 + 1, 2.7f)); // patch size, and a multiplier
|
|
|
|
this.terrain.addControl(control);
|
|
|
|
|
|
|
|
terrain.addListener(new TerrainGridListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void gridMoved(Vector3f newCenter) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void tileAttached(Vector3f cell, TerrainQuad quad) {
|
|
|
|
while(quad.getControl(RigidBodyControl.class)!=null){
|
|
|
|
quad.removeControl(RigidBodyControl.class);
|
|
|
|
}
|
|
|
|
quad.addControl(new RigidBodyControl(new HeightfieldCollisionShape(quad.getHeightMap(), terrain.getLocalScale()), 0));
|
|
|
|
bulletAppState.getPhysicsSpace().add(quad);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void tileDetached(Vector3f cell, TerrainQuad quad) {
|
|
|
|
if (quad.getControl(RigidBodyControl.class) != null) {
|
|
|
|
bulletAppState.getPhysicsSpace().remove(quad);
|
|
|
|
quad.removeControl(RigidBodyControl.class);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-30 23:19:29 +00:00
|
|
|
@Override
|
|
|
|
public void simpleUpdate(float tpf) {
|
2017-01-04 00:03:13 +00:00
|
|
|
Vector3f playerLocation = playerNode.getWorldTranslation();
|
2016-12-31 22:57:29 +00:00
|
|
|
Vector3f newLocation = new Vector3f(playerLocation).add(new Vector3f(-1f, 1.5f, 2.4f).mult(20f));
|
2017-01-06 07:35:57 +00:00
|
|
|
/*cam.setLocation(new Vector3f(cam.getLocation()).interpolate(newLocation, Math.min(tpf, 1f)));
|
|
|
|
cam.lookAt(playerLocation, Vector3f.UNIT_Y);*/
|
2017-01-01 14:23:58 +00:00
|
|
|
|
2017-01-03 00:14:35 +00:00
|
|
|
for (VehicleNode vehicle : vehicles) {
|
|
|
|
vehicle.vehicleInstance.accelerationSmooth = (vehicle.vehicleInstance.accelerationSmooth + vehicle.vehicleInstance.accelerationValue * (tpf * 10f)) / (1 + tpf * 10f);
|
2017-01-05 22:52:15 +00:00
|
|
|
vehicle.engineAudio.setVelocity(new Vector3f(0, 0, 0));
|
2017-01-03 00:14:35 +00:00
|
|
|
vehicle.engineAudio.updateGeometricState();
|
|
|
|
vehicle.engineAudio.setPitch(Math.max(0.5f, Math.min(vehicle.vehicleInstance.accelerationSmooth / vehicle.vehicleInstance.accelerationForce * 2f, 2.0f)));
|
|
|
|
boolean engineRunning = (vehicle.vehicleInstance.accelerationValue > 0.01f || vehicle.vehicleInstance.accelerationValue < -0.01f);
|
|
|
|
if ((vehicle.engineAudio.getStatus() == Status.Playing) && !engineRunning) {
|
|
|
|
vehicle.engineAudio.stop();
|
|
|
|
}
|
|
|
|
if ((vehicle.engineAudio.getStatus() != Status.Playing) && engineRunning) {
|
|
|
|
vehicle.engineAudio.play();
|
|
|
|
}
|
|
|
|
|
|
|
|
vehicle.wheelsAudio.updateGeometricState();
|
2017-01-04 00:03:13 +00:00
|
|
|
float wheelRot = Math.abs(vehicle.vehicleControl.getWheel(0).getDeltaRotation() + vehicle.vehicleControl.getWheel(1).getDeltaRotation()) / tpf / 100f;
|
2017-01-03 00:14:35 +00:00
|
|
|
// TODO: pitch
|
|
|
|
//System.out.println("wheel rot: " + wheelRot);
|
|
|
|
//wheelsAudio.setPitch(Math.max(0.5f, Math.min(wheelRot * 4f, 2.0f)));
|
|
|
|
vehicle.wheelsAudio.setVolume(Math.max(0.0001f, Math.min(wheelRot, 1.0f)) - 0.0001f);
|
2017-01-05 22:52:15 +00:00
|
|
|
if ((vehicle.wheelsAudio.getStatus() == Status.Playing) && wheelRot < 10f) {
|
|
|
|
vehicle.wheelsAudio.stop();
|
2017-01-04 00:03:13 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
if ((vehicle.wheelsAudio.getStatus() != Status.Playing) && wheelRot > 10f) {
|
|
|
|
vehicle.wheelsAudio.play();
|
2017-01-04 00:03:13 +00:00
|
|
|
}
|
2017-01-03 00:14:35 +00:00
|
|
|
|
|
|
|
vehicle.wheelSlipAudio.updateGeometricState();
|
|
|
|
float slipAll = 0f;
|
|
|
|
for (int i = 0; i < vehicle.vehicleControl.getNumWheels(); i++) {
|
|
|
|
slipAll += vehicle.vehicleControl.getWheel(i).getSkidInfo();
|
|
|
|
}
|
|
|
|
float slip = 1f - (slipAll) / vehicle.vehicleControl.getNumWheels();
|
|
|
|
float wheelSlip = (slip * slip * slip * slip * slip * slip * slip) / tpf / 40f;
|
|
|
|
// TODO: pitch
|
|
|
|
//wheelsAudio.setPitch(Math.max(0.5f, Math.min(wheelRot * 4f, 2.0f)));
|
|
|
|
vehicle.wheelSlipAudio.setVolume(Math.max(0.0001f, Math.min(wheelSlip, 1.0f)) - 0.0001f);
|
2017-01-01 20:47:53 +00:00
|
|
|
}
|
2017-01-03 00:14:35 +00:00
|
|
|
|
|
|
|
listener.setLocation(cam.getLocation());
|
|
|
|
listener.setRotation(cam.getRotation());
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 22:52:15 +00:00
|
|
|
@Override
|
2016-12-30 23:19:29 +00:00
|
|
|
public void onAction(String binding, boolean value, float tpf) {
|
2017-01-03 00:14:35 +00:00
|
|
|
if (playerVehicleNode == null) {
|
|
|
|
float walkSpeed = 6f;
|
2016-12-31 22:57:29 +00:00
|
|
|
if (binding.equals("Lefts")) {
|
|
|
|
if (value) {
|
|
|
|
walkDir.x -= walkSpeed;
|
|
|
|
} else {
|
|
|
|
walkDir.x += walkSpeed;
|
|
|
|
}
|
|
|
|
} else if (binding.equals("Rights")) {
|
|
|
|
if (value) {
|
|
|
|
walkDir.x += walkSpeed;
|
|
|
|
} else {
|
|
|
|
walkDir.x -= walkSpeed;
|
|
|
|
}
|
|
|
|
} else if (binding.equals("Ups")) {
|
|
|
|
if (value) {
|
|
|
|
walkDir.z -= walkSpeed;
|
|
|
|
} else {
|
|
|
|
walkDir.z += walkSpeed;
|
|
|
|
}
|
|
|
|
} else if (binding.equals("Downs")) {
|
|
|
|
if (value) {
|
|
|
|
walkDir.z += walkSpeed;
|
|
|
|
} else {
|
|
|
|
walkDir.z -= walkSpeed;
|
|
|
|
}
|
2017-01-04 00:03:13 +00:00
|
|
|
} else if (binding.equals("Reset")) {
|
|
|
|
if (value) {
|
|
|
|
System.out.println("Reset - to car");
|
|
|
|
Vector3f playerPos = playerNode.getWorldTranslation();
|
|
|
|
for (VehicleNode vehicle : vehicles) {
|
|
|
|
Vector3f vehiclePos = vehicle.getWorldTranslation();
|
|
|
|
float dist = playerPos.distance(vehiclePos);
|
|
|
|
System.out.println(" .. dist: " + dist);
|
|
|
|
if (dist < 5f) {
|
|
|
|
playerVehicleNode = vehicle;
|
|
|
|
playerNode.removeFromParent();
|
2017-01-06 07:35:57 +00:00
|
|
|
playerNode.setLocalTranslation(0f, 0f, -1f);
|
2017-01-04 00:03:13 +00:00
|
|
|
playerNode.setLocalRotation(Quaternion.DIRECTION_Z);
|
|
|
|
playerNode.removeControl(playerPersonControl);
|
|
|
|
playerVehicleNode.attachChild(playerNode);
|
2017-01-05 22:52:15 +00:00
|
|
|
VehicleInstance playerVehicle = playerVehicleNode.vehicleInstance;
|
|
|
|
playerVehicle.accelerationValue = 0;
|
|
|
|
playerVehicle.steeringValue = 0;
|
2017-01-04 00:03:13 +00:00
|
|
|
walkDir = new Vector3f();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
2016-12-31 22:57:29 +00:00
|
|
|
playerPersonControl.setWalkDirection(walkDir);
|
|
|
|
playerPersonControl.setViewDirection(walkDir);
|
|
|
|
} else {
|
2017-01-05 22:52:15 +00:00
|
|
|
VehicleInstance playerVehicle = playerVehicleNode.vehicleInstance;
|
|
|
|
VehicleControl playerVehicleControl = playerVehicleNode.vehicleControl;
|
|
|
|
int playerCarType = playerVehicle.carType;
|
2016-12-31 22:57:29 +00:00
|
|
|
float steerMax = 0.5f;
|
2017-01-05 22:52:15 +00:00
|
|
|
if (playerCarType == VehicleInstance.TRUCK) {
|
2016-12-31 22:57:29 +00:00
|
|
|
steerMax = 0.7f;
|
2016-12-31 15:58:13 +00:00
|
|
|
}
|
2016-12-31 22:57:29 +00:00
|
|
|
if (binding.equals("Lefts")) {
|
|
|
|
if (value) {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.steeringValue += steerMax;
|
2016-12-31 22:57:29 +00:00
|
|
|
} else {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.steeringValue += -steerMax;
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicleControl.steer(playerVehicle.steeringValue);
|
2016-12-31 22:57:29 +00:00
|
|
|
} else if (binding.equals("Rights")) {
|
|
|
|
if (value) {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.steeringValue += -steerMax;
|
2016-12-31 22:57:29 +00:00
|
|
|
} else {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.steeringValue += steerMax;
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicleControl.steer(playerVehicle.steeringValue);
|
2016-12-31 22:57:29 +00:00
|
|
|
} else if (binding.equals("Ups")) {
|
|
|
|
if (value) {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.accelerationValue += playerVehicle.accelerationForce;
|
2016-12-31 22:57:29 +00:00
|
|
|
} else {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.accelerationValue -= playerVehicle.accelerationForce;
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicleControl.accelerate(2, playerVehicle.accelerationValue);
|
|
|
|
playerVehicleControl.accelerate(3, playerVehicle.accelerationValue);
|
|
|
|
if (playerCarType == VehicleInstance.TRUCK) {
|
|
|
|
playerVehicleControl.accelerate(4, playerVehicle.accelerationValue);
|
|
|
|
playerVehicleControl.accelerate(5, playerVehicle.accelerationValue);
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
|
|
|
} else if (binding.equals("Downs")) {
|
|
|
|
float b;
|
|
|
|
if (value) {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.brakeForce = playerVehicle.accelerationForce;
|
2016-12-31 22:57:29 +00:00
|
|
|
} else {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.brakeForce = 0f;
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicleControl.brake(0, playerVehicle.brakeForce);
|
|
|
|
playerVehicleControl.brake(1, playerVehicle.brakeForce);
|
2016-12-31 22:57:29 +00:00
|
|
|
} else if (binding.equals("Revs")) {
|
|
|
|
if (value) {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.accelerationValue += playerVehicle.accelerationForce;
|
2016-12-31 22:57:29 +00:00
|
|
|
} else {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicle.accelerationValue -= playerVehicle.accelerationForce;
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicleControl.accelerate(2, -playerVehicle.accelerationValue);
|
|
|
|
playerVehicleControl.accelerate(3, -playerVehicle.accelerationValue);
|
|
|
|
if (playerCarType == VehicleInstance.TRUCK) {
|
|
|
|
playerVehicleControl.accelerate(4, -playerVehicle.accelerationValue);
|
|
|
|
playerVehicleControl.accelerate(5, -playerVehicle.accelerationValue);
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
|
|
|
} else if (binding.equals("Space")) {
|
|
|
|
if (value) {
|
2017-01-05 22:52:15 +00:00
|
|
|
playerVehicleControl.applyImpulse(jumpForce, Vector3f.ZERO);
|
2016-12-31 22:57:29 +00:00
|
|
|
}
|
|
|
|
} else if (binding.equals("Reset")) {
|
|
|
|
if (value) {
|
2017-01-04 00:03:13 +00:00
|
|
|
System.out.println("Reset - from car");
|
|
|
|
playerNode.removeFromParent();
|
|
|
|
playerNode.addControl(playerPersonControl);
|
|
|
|
playerPersonControl.warp(playerVehicleNode.getLocalTranslation());
|
|
|
|
rootNode.attachChild(playerNode);
|
|
|
|
playerVehicleNode = null;
|
|
|
|
walkDir = new Vector3f();
|
2017-01-05 22:52:15 +00:00
|
|
|
/*playerVehicleControl.setPhysicsLocation(Vector3f.ZERO);
|
|
|
|
playerVehicleControl.setPhysicsRotation(new Matrix3f());
|
|
|
|
playerVehicleControl.setLinearVelocity(Vector3f.ZERO);
|
|
|
|
playerVehicleControl.setAngularVelocity(Vector3f.ZERO);
|
|
|
|
playerVehicleControl.resetSuspension();*/
|
2016-12-31 22:57:29 +00:00
|
|
|
} else {
|
|
|
|
}
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-04 07:28:56 +00:00
|
|
|
if (binding.equals("Esc")) {
|
|
|
|
stop();
|
|
|
|
}
|
2016-12-30 23:19:29 +00:00
|
|
|
}
|
|
|
|
}
|