|
| Vehicle (Vector2D position, double radius, Vector2D velocity, double max_speed, Vector2D heading, double mass, double max_turn_rate, double max_force) |
|
| Vehicle (String name, Vector2D position, double radius, Vector2D velocity, double max_speed, Vector2D heading, double mass, double max_turn_rate, double max_force) |
|
Vehicle | AP (AutoPilot ap) |
|
AutoPilot | AP () |
|
double | maxForce () |
|
Vehicle | forceRecorderOn () |
|
Vehicle | forceRecorderOff () |
|
ForceRecorder | forceRecorder () |
|
boolean | hasForceRecorder () |
|
void | printForceData () |
|
void | update (double deltaTime, World world) |
|
String | toString () |
|
| MovingEntity (Vector2D position, double radius, Vector2D velocity, double max_speed, Vector2D heading, double mass, double max_turn_rate, double max_force) |
|
| MovingEntity (String name, Vector2D position, double radius, Vector2D velocity, double max_speed, Vector2D heading, double mass, double max_turn_rate, double max_force) |
|
Vector2D | prevPos () |
|
Vector2D | velocity () |
|
MovingEntity | velocity (Vector2D newVel) |
|
MovingEntity | velocity (double vx, double vy) |
|
MovingEntity | heading (Vector2D h) |
|
MovingEntity | heading (double x, double y) |
|
Vector2D | heading () |
|
Vector2D | headingAtRest () |
|
MovingEntity | headingAtRest (Vector2D restHeading) |
|
void | mass (double mass) |
|
double | mass () |
|
Vector2D | side () |
|
double | maxSpeed () |
|
MovingEntity | maxSpeed (double maxSpeed) |
|
double | maxForce () |
|
MovingEntity | maxForce (double mf) |
|
boolean | isSpeedMaxedOut () |
|
double | speed () |
|
double | speedSq () |
|
double | maxTurnRate () |
|
MovingEntity | maxTurnRate (double maxTurnRate) |
|
double | turnRate () |
|
MovingEntity | turnRate (double turnRate) |
|
double | viewDistance () |
|
MovingEntity | viewDistance (double viewDistance) |
|
double | viewFOV () |
|
MovingEntity | viewFOV (double viewFOV) |
|
MovingEntity | viewFactors (double viewDistance, double viewFOV) |
|
MovingEntity | worldDomain (Domain wd) |
|
MovingEntity | worldDomain (Domain wd, int constraint) |
|
MovingEntity | worldDomainConstraint (int constraint) |
|
Domain | worldDomain () |
|
int | worldDomainConstraint () |
|
boolean | isEitherSide (double x0, double y0, double x1, double y1) |
|
boolean | canSee (World world, double x0, double y0) |
|
boolean | canSee (World world, Vector2D pos) |
|
boolean | rotateHeadingToFacePosition (double deltaTime, Vector2D faceTarget) |
|
boolean | rotateHeadingToAlignWith (double deltaTime, final Vector2D allignTo) |
|
boolean | isInDomain (Domain view) |
|
boolean | isOver (double px, double py) |
|
void | update (double deltaTime, World world) |
|
void | draw (double elapsedTime, World world) |
|
void | draw (World world) |
|
| BaseEntity () |
|
| BaseEntity (String name) |
|
| BaseEntity (String entityName, Vector2D entityPos, double entityColRadius) |
|
int | ID () |
|
void | updateFSM (double deltaTime, World world) |
|
FiniteStateMachine | FSM () |
|
boolean | hasFSM () |
|
void | addFSM () |
|
boolean | removeFSM () |
|
int | Z () |
|
BaseEntity | Z (int z) |
|
boolean | isVisible () |
|
BaseEntity | visible (boolean visible) |
|
double | colRadius () |
|
BaseEntity | colRadius (double colRadius) |
|
boolean | isOverLapAllowed () |
|
BaseEntity | overLapAllowed (boolean overLapAllowed) |
|
boolean | isInDomain (Domain view) |
|
boolean | isOver (double px, double py) |
|
BaseEntity | renderer (Picture renderer) |
|
Picture | renderer () |
|
void | die (World world, double timeToLive) |
|
void | born (World world, double timeToLive) |
|
BaseEntity | moveTo (double x, double y) |
|
BaseEntity | moveTo (Vector2D p) |
|
BaseEntity | moveBy (double x, double y) |
|
BaseEntity | moveBy (Vector2D p) |
|
Vector2D | pos () |
|
BaseEntity | name (String name) |
|
String | name () |
|
boolean | isEitherSide (double x0, double y0, double x1, double y1) |
|
boolean | isEitherSide (Vector2D p0, Vector2D p1) |
|
void | update (double deltaTime, World world) |
|
void | draw (World world) |
|
void | draw (double elapsedTime, World world) |
|
int | compareTo (BaseEntity o) |
|
String | toString () |
|
This class models the behaviour of a moving entity acting under the influence of an AutoPilot.
- Author
- Peter Lager
Vehicle game2dai.entities.Vehicle.forceRecorderOn |
( |
| ) |
|
Enable the force recorder on for this Vehicle. This will delete any collected data and start the logger.
The recorder will record the minimum, maximum average and number of readings for each steering force.
This is useful in tweaking max force values for vehicles and to help decide on the best force calculation method to use.
The force recorder should be switched off in the final sketch.