parent
c3fb6fa740
commit
77049c5bed
@ -0,0 +1,145 @@ |
|||||||
|
package mygame.control; |
||||||
|
|
||||||
|
import com.jme3.collision.CollisionResults; |
||||||
|
import template.*; |
||||||
|
import com.jme3.export.JmeExporter; |
||||||
|
import com.jme3.export.JmeImporter; |
||||||
|
import com.jme3.export.Savable; |
||||||
|
import com.jme3.math.Ray; |
||||||
|
import com.jme3.math.Vector3f; |
||||||
|
import com.jme3.renderer.RenderManager; |
||||||
|
import com.jme3.renderer.ViewPort; |
||||||
|
import com.jme3.scene.Node; |
||||||
|
import com.jme3.scene.Spatial; |
||||||
|
import com.jme3.scene.control.AbstractControl; |
||||||
|
import com.jme3.scene.control.Control; |
||||||
|
import java.io.IOException; |
||||||
|
|
||||||
|
public class PhysicsControl extends AbstractControl implements Savable, Cloneable { |
||||||
|
|
||||||
|
float jumpSpd = 0.1f; |
||||||
|
float vspd = 0.0f; |
||||||
|
float gravity = -0.25f; |
||||||
|
|
||||||
|
float modelHeight = 2.5f; |
||||||
|
|
||||||
|
Node levelData; |
||||||
|
|
||||||
|
float walkOffTime = 0.25f; //How long you can jump after becoming airborne.
|
||||||
|
float airTime = 0.0f; //Amount of time in air.
|
||||||
|
|
||||||
|
public PhysicsControl(Node levelData, float jumpSpd, float gravity, float modelHeight){ |
||||||
|
this.levelData=levelData; |
||||||
|
this.jumpSpd=jumpSpd; |
||||||
|
this.gravity=gravity; |
||||||
|
this.modelHeight=modelHeight; |
||||||
|
} |
||||||
|
|
||||||
|
/** This method is called when the control is added to the spatial, |
||||||
|
* and when the control is removed from the spatial (setting a null value). |
||||||
|
* It can be used for both initialization and cleanup. |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void setSpatial(Spatial spatial) { |
||||||
|
super.setSpatial(spatial); |
||||||
|
|
||||||
|
spatial.setUserData("Level", levelData); |
||||||
|
} |
||||||
|
|
||||||
|
/** Implement your spatial's behaviour here. |
||||||
|
* From here you can modify the scene graph and the spatial |
||||||
|
* (transform them, get and set userdata, etc). |
||||||
|
* This loop controls the spatial while the Control is enabled. |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
protected void controlUpdate(float tpf){ |
||||||
|
if (!isOnGround()) { |
||||||
|
vspd+=gravity*tpf; |
||||||
|
airTime+=tpf; |
||||||
|
} else { |
||||||
|
vspd=0; |
||||||
|
airTime=0; |
||||||
|
} |
||||||
|
spatial.move(0,vspd,0); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Control cloneForSpatial(Spatial spatial){ |
||||||
|
final PhysicsControl control = new PhysicsControl((Node)(levelData.clone()),jumpSpd,gravity,modelHeight); |
||||||
|
/* Optional: use setters to copy userdata into the cloned control */ |
||||||
|
// control.setIndex(i); // example
|
||||||
|
control.setSpatial(spatial); |
||||||
|
return control; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void controlRender(RenderManager rm, ViewPort vp){ |
||||||
|
/* Optional: rendering manipulation (for advanced users) */ |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void read(JmeImporter im) throws IOException { |
||||||
|
super.read(im); |
||||||
|
// im.getCapsule(this).read(...);
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void write(JmeExporter ex) throws IOException { |
||||||
|
super.write(ex); |
||||||
|
// ex.getCapsule(this).write(...);
|
||||||
|
} |
||||||
|
|
||||||
|
private Node GetLevel() { |
||||||
|
return (Node)(spatial.getUserData("Level")); |
||||||
|
} |
||||||
|
|
||||||
|
void jump() { |
||||||
|
setVerticalSpeed(jumpSpd); |
||||||
|
} |
||||||
|
|
||||||
|
void setVerticalSpeed(float spd) { |
||||||
|
vspd = spd; |
||||||
|
} |
||||||
|
|
||||||
|
void addVerticalSpeed(float spd) { |
||||||
|
vspd += spd; |
||||||
|
} |
||||||
|
|
||||||
|
float getVerticalSpeed() { |
||||||
|
return vspd; |
||||||
|
} |
||||||
|
|
||||||
|
boolean isOnGround() { |
||||||
|
if (vspd>0) { |
||||||
|
System.out.println(vspd); |
||||||
|
return false; |
||||||
|
} |
||||||
|
CollisionResults results = new CollisionResults(); |
||||||
|
Ray r = new Ray(spatial.getLocalTranslation().add(0,(modelHeight/2)-vspd,0),Vector3f.UNIT_Y.negate()); |
||||||
|
GetLevel().updateGeometricState(); |
||||||
|
GetLevel().collideWith(r, results); |
||||||
|
if (results.size()>0) { |
||||||
|
//System.out.println(results.getCollision(0));
|
||||||
|
if (results.getClosestCollision().getContactPoint().x!=0 || |
||||||
|
results.getClosestCollision().getContactPoint().y!=0 || |
||||||
|
results.getClosestCollision().getContactPoint().z!=0) { |
||||||
|
//System.out.println(results.getClosestCollision());
|
||||||
|
if (results.getClosestCollision().getDistance()<=(modelHeight/2)+0.1-vspd) { |
||||||
|
spatial.setLocalTranslation(results.getClosestCollision().getContactPoint()); |
||||||
|
return true; |
||||||
|
} else { |
||||||
|
return false; |
||||||
|
} |
||||||
|
} else { |
||||||
|
vspd=jumpSpd; //???Undefined behavior.
|
||||||
|
} |
||||||
|
} |
||||||
|
/*if (results.size()>0) { |
||||||
|
System.out.println("Distance: "+results.getClosestCollision().getDistance()); |
||||||
|
//if (results.getClosestCollision().getDistance()<=5.0f) {
|
||||||
|
|
||||||
|
//}
|
||||||
|
}*/ |
||||||
|
return false; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue