Class Turret
java.lang.Object
com.csse3200.game.entities.Entity
com.csse3200.game.entities.PlaceableEntity
com.csse3200.game.entities.buildables.Turret
Turret
This class is used to create a turret entity.
-
Field Summary
FieldsFields inherited from class com.csse3200.game.entities.Entity
components
-
Constructor Summary
ConstructorsConstructorDescriptionTurret
(TurretType type, Entity player) Create a new turret placeable entity to match the provided typeTurret
(TurretConfig turretConfig) Create a new turret placeable entity to match the provided config file -
Method Summary
Modifier and TypeMethodDescriptionboolean
Canfire()
Check if the turret can fire (has ammunition).boolean
This method is used to check for similar type of turret.void
giveDamage
(Entity focus) This method is used to give damage to an entity.int
hashCode()
This method is used to generate a hash code using its properties.void
Interact with the turret.void
interactWithTurret
(Entity player) Interact with the turret to refill its ammunition using player resources.void
Refill the turret's ammunition to its maximum capacity.void
refillAmmo
(int ammo) Refill the turret's ammunition by the given amount.void
rotateTurret
(Entity focus) This method is used to rotate the turret.void
startDamage
(Entity focus) This method is used manage shooting and requires a target.void
stopDamage
(Entity focus) This method is used to stop giving damage to an entity.void
update()
This method is used to update the turret.Methods inherited from class com.csse3200.game.entities.PlaceableEntity
getHeight, getWidth, irremovable, is_irremovable, placed, removed, willPlace, willRemove
Methods inherited from class com.csse3200.game.entities.Entity
addComponent, create, dispose, earlyUpdate, getCenterPosition, getComponent, getComponents, getEntityType, getEvents, getGridPosition, getId, getPosition, getScale, scaleHeight, scaleWidth, setEnabled, setEntityType, setPosition, setPosition, setPosition, setScale, setScale, toString
-
Field Details
-
currentAmmo
public int currentAmmo
-
-
Constructor Details
-
Turret
Create a new turret placeable entity to match the provided type- Parameters:
type
- Type of turret to create (used to get config file)player
- Player entity to create turret for (used to get position and rotation)
-
Turret
Create a new turret placeable entity to match the provided config file- Parameters:
turretConfig
- Configuration file to match turret to
-
-
Method Details
-
refillAmmo
public void refillAmmo()Refill the turret's ammunition to its maximum capacity. -
Canfire
public boolean Canfire()Check if the turret can fire (has ammunition).- Returns:
- True if the turret can fire, else false.
-
refillAmmo
public void refillAmmo(int ammo) Refill the turret's ammunition by the given amount.- Parameters:
ammo
- The amount of ammunition to refill.
-
interact
Interact with the turret. This method can be called by a player entity to perform an interaction.- Parameters:
player
- The player entity interacting with the turret.
-
update
public void update()This method is used to update the turret. -
startDamage
This method is used manage shooting and requires a target.- Parameters:
focus
- The entity to check before targeting.
-
interactWithTurret
Interact with the turret to refill its ammunition using player resources.- Parameters:
player
- The player entity interacting with the turret.
-
stopDamage
This method is used to stop giving damage to an entity.- Parameters:
focus
- The entity to stop giving damage to.
-
giveDamage
This method is used to give damage to an entity.- Parameters:
focus
- The entity to give damage to.
-
rotateTurret
This method is used to rotate the turret.- Parameters:
focus
- The entity to rotate the turret towards.
-
equals
This method is used to check for similar type of turret. -
hashCode
public int hashCode()This method is used to generate a hash code using its properties.
-