AI for Games 1.1.1
|
Public Member Functions | |
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 () |
Protected Member Functions | |
void | applyDomainConstraint () |
Protected Attributes | |
Domain | wd = null |
int | domainConstraint = SBF.WRAP |
Vector2D | prevPos = new Vector2D() |
Vector2D | velocity = new Vector2D() |
Vector2D | heading = new Vector2D() |
Vector2D | side = new Vector2D() |
double | mass |
double | maxSpeed |
double | maxForce |
double | maxTurnRate |
double | currTurnRate |
double | prevTurnRate |
double | viewDistance = 50 |
double | viewFOV = 1.047 |
![]() | |
Integer | entityID |
String | name = "" |
Picture | renderer = null |
boolean | visible = true |
Vector2D | pos = new Vector2D() |
double | colRadius |
Private Attributes | |
Vector2D | headingAtRest = null |
Additional Inherited Members | |
![]() | |
String | tag = "" |
int | tagNo = 0 |
![]() | |
boolean | overlapAllowed = false |
This class that models the behaviour of a moving entity that is not acting under the influence of a steering behaviour.
game2dai.entities.MovingEntity.MovingEntity | ( | Vector2D | position, |
double | radius, | ||
Vector2D | velocity, | ||
double | max_speed, | ||
Vector2D | heading, | ||
double | mass, | ||
double | max_turn_rate, | ||
double | max_force | ||
) |
This is the constructor that should be used when creating an unnamed MovingEntity
position | initial world position |
radius | bounding radius |
velocity | initial velocity |
max_speed | maximum speed |
heading | initial heading |
mass | initial mass |
max_turn_rate | how fast the entity can turn (radians / second) |
max_force | the maximum force that can be applied by a steering behaviour |
game2dai.entities.MovingEntity.MovingEntity | ( | String | name, |
Vector2D | position, | ||
double | radius, | ||
Vector2D | velocity, | ||
double | max_speed, | ||
Vector2D | heading, | ||
double | mass, | ||
double | max_turn_rate, | ||
double | max_force | ||
) |
This is the constructor that should be used when creating a named MovingEntity
name | the name of the entity |
position | initial world position |
radius | bounding radius |
velocity | initial velocity |
max_speed | maximum speed |
heading | initial heading |
mass | initial mass |
max_turn_rate | how fast the entity can turn (radians / second) |
max_force | the maximum force that can be applied by a steering behaviour |
|
protected |
After calculating the entity's position it is then constrained by the domain constraint WRAP or REBOUND
boolean game2dai.entities.MovingEntity.canSee | ( | World | world, |
double | x0, | ||
double | y0 | ||
) |
This method determines whether this entity can see a particular location in the world.
It first checks to see if it is within this entity's view distance and field of view (FOV). If it is then it checks to see if there are any walls or obstacles between them.
world | the world responsible for this entity |
x0 | the x position of the location to test |
y0 | the y position of the location to test |
This method determines whether this entity can see a particular location in the world.
It first checks to see if it is within this entity's view distance and field of view (FOV). If it is then it checks to see if there are any walls or obstacles between them.
world | the world responsible for this entity |
pos | the location to test |
void game2dai.entities.MovingEntity.draw | ( | double | elapsedTime, |
World | world | ||
) |
DO NOT CALL THIS METHOD DIRECTLY
If this shape has a renderer and is visible call the renderer's draw method passing all appropriate information.
This should be overridden in child classes
Reimplemented from game2dai.entities.BaseEntity.
void game2dai.entities.MovingEntity.draw | ( | World | world | ) |
DO NOT CALL THIS METHOD DIRECTLY
This method is left to ensure backward compatibility with library versions prior to 1.0
Use the draw(elapsedTime, world) method instead.
This should be overridden in child classes
Reimplemented from game2dai.entities.BaseEntity.
Vector2D game2dai.entities.MovingEntity.heading | ( | ) |
Get the current heading for this entity
MovingEntity game2dai.entities.MovingEntity.heading | ( | double | x, |
double | y | ||
) |
/** Sets the direction the entity is facing. This is not the same as the but will rotate towards the velocity vector at a speed dependent on the turn-rate.
x | |
y |
MovingEntity game2dai.entities.MovingEntity.heading | ( | Vector2D | h | ) |
Sets the direction the entity is facing. This is not the same as the but will rotate towards the velocity vector at a speed dependent on the turn-rate.
h |
Vector2D game2dai.entities.MovingEntity.headingAtRest | ( | ) |
get the default heading for this entity.
MovingEntity game2dai.entities.MovingEntity.headingAtRest | ( | Vector2D | restHeading | ) |
Set the default heading for this entity. If the parameter is
null
then the default heading is cancelled. The default heading will be normalised.
restHeading | the headingAtRest to set |
boolean game2dai.entities.MovingEntity.isEitherSide | ( | double | x0, |
double | y0, | ||
double | x1, | ||
double | y1 | ||
) |
Determines whether two points are either side of this moving entity. If they are then they cannot 'see' each other.
x0 | x position of first point of interest |
y0 | y position of first point of interest |
x1 | x position of second point of interest |
y1 | y position of second point of interest |
Reimplemented from game2dai.entities.BaseEntity.
boolean game2dai.entities.MovingEntity.isInDomain | ( | Domain | view | ) |
Determine whether this moving entity is inside or part inside the domain. This method is used by the world draw method to see if this entity should be drawn.
view | the world domain |
Reimplemented from game2dai.entities.BaseEntity.
boolean game2dai.entities.MovingEntity.isOver | ( | double | px, |
double | py | ||
) |
Determines whether a point is over this entity's collision circle
Reimplemented from game2dai.entities.BaseEntity.
boolean game2dai.entities.MovingEntity.isSpeedMaxedOut | ( | ) |
See if the current speed exceeds the maximum speed permitted.
double game2dai.entities.MovingEntity.mass | ( | ) |
Get the mass of this entity.
void game2dai.entities.MovingEntity.mass | ( | double | mass | ) |
Change the mass of the entity. The heavier the mass the more force is needed to move it.
The new mass must be greater than zero otherwise the current mass will be unchanged..
mass | the new mass |
double game2dai.entities.MovingEntity.maxForce | ( | ) |
Gets the maximum force that can be applied to this entity.
Reimplemented in game2dai.entities.Vehicle.
MovingEntity game2dai.entities.MovingEntity.maxForce | ( | double | mf | ) |
Sets the maximum force that can be applied to this entity.
mf | max force allowed |
double game2dai.entities.MovingEntity.maxSpeed | ( | ) |
Get the maximum speed allowed for this entity.
MovingEntity game2dai.entities.MovingEntity.maxSpeed | ( | double | maxSpeed | ) |
Sets the maximum speed this entity is allowed to reach
maxSpeed |
double game2dai.entities.MovingEntity.maxTurnRate | ( | ) |
Get the maximum turn rate for this entity
MovingEntity game2dai.entities.MovingEntity.maxTurnRate | ( | double | maxTurnRate | ) |
Sets the maximum turnrate for this entity.
maxTurnRate |
Vector2D game2dai.entities.MovingEntity.prevPos | ( | ) |
Gets the position of the entity prior to the last update.
boolean game2dai.entities.MovingEntity.rotateHeadingToAlignWith | ( | double | deltaTime, |
final Vector2D | allignTo | ||
) |
Rotate this entities heading to align with a vector over a given time period
deltaTime | time (seconds) to turn entity |
allignTo | vector to align entities heading with |
boolean game2dai.entities.MovingEntity.rotateHeadingToFacePosition | ( | double | deltaTime, |
Vector2D | faceTarget | ||
) |
--------------------— RotateHeadingToFacePosition ---------------—
given a target position, this method rotates the entity's heading and side vectors by an amount not greater than m_dMaxTurnRate until it directly faces the target.
deltaTime | time |
faceTarget | the world position to face |
Vector2D game2dai.entities.MovingEntity.side | ( | ) |
Get the side vector for this entity. The side vector is always perpendicular to the heading and normalised.
double game2dai.entities.MovingEntity.speed | ( | ) |
Get the entity's speed.
This is the scalar length of the velocity vector.
double game2dai.entities.MovingEntity.speedSq | ( | ) |
Get the square of the entity's speed.
double game2dai.entities.MovingEntity.turnRate | ( | ) |
Get the current turn rate
MovingEntity game2dai.entities.MovingEntity.turnRate | ( | double | turnRate | ) |
Set the current turnrate making sure it does not exceed the maximum allowed.
turnRate |
void game2dai.entities.MovingEntity.update | ( | double | deltaTime, |
World | world | ||
) |
Update method for any moving entity in the world that is not under the influence of a steering behaviour.
deltaTime | elapsed time since last update |
world | the game world object |
Reimplemented from game2dai.entities.BaseEntity.
Reimplemented in game2dai.entities.Vehicle.
Vector2D game2dai.entities.MovingEntity.velocity | ( | ) |
Gets the current velocity
MovingEntity game2dai.entities.MovingEntity.velocity | ( | double | vx, |
double | vy | ||
) |
Sets the current velocity
vx | |
vy |
MovingEntity game2dai.entities.MovingEntity.velocity | ( | Vector2D | newVel | ) |
Sets the current velocity for this entity
newVel | the new velocity vector |
double game2dai.entities.MovingEntity.viewDistance | ( | ) |
Get the distance that this entity can see.
MovingEntity game2dai.entities.MovingEntity.viewDistance | ( | double | viewDistance | ) |
This sets the distance that this entity can see. It is used by the canSee() method.
viewDistance | the viewDistance to set |
MovingEntity game2dai.entities.MovingEntity.viewFactors | ( | double | viewDistance, |
double | viewFOV | ||
) |
Sets the distance and total field of view angle for this entity.
viewDistance | |
viewFOV | the viewFOV to set |
double game2dai.entities.MovingEntity.viewFOV | ( | ) |
Get the field of view for this entity.
MovingEntity game2dai.entities.MovingEntity.viewFOV | ( | double | viewFOV | ) |
Sets the total field of view angle for this entity.
viewFOV | the viewFOV to set |
Domain game2dai.entities.MovingEntity.worldDomain | ( | ) |
Get the world domain for this entity.
MovingEntity game2dai.entities.MovingEntity.worldDomain | ( | Domain | wd | ) |
Set the world domain for this entity and its' constraint to the default value of SBF.WRAP this means that when an entity leaves the domain it is wrapped to the other side.
wd | the world domain for this entity |
MovingEntity game2dai.entities.MovingEntity.worldDomain | ( | Domain | wd, |
int | constraint | ||
) |
Set the world domain
wd | the world domain for this entity |
constraint | SBF.WRAP or SBF.REBOUND or SBF.PASS_THROUGH |
int game2dai.entities.MovingEntity.worldDomainConstraint | ( | ) |
Get the world domain constraint for this entity.
MovingEntity game2dai.entities.MovingEntity.worldDomainConstraint | ( | int | constraint | ) |
Set the constraint to be applied to the world domain.
constraint | SBF.WRAP or SBF.REBOUND or SBF.PASS_THROUGH |
|
protected |
Reimplemented in game2dai.entities.Vehicle.