public class Turret extends PlaceableEntity
Turret This class is used to create a turret entity.
  • Field Details

    • currentAmmo

      public int currentAmmo
  • Constructor Details

    • Turret

      public Turret(TurretType type, Entity player)
      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

      public Turret(TurretConfig turretConfig)
      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

      public void interact(Entity player)
      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.
      Overrides:
      update in class Entity
    • startDamage

      public void startDamage(Entity focus)
      This method is used manage shooting and requires a target.
      Parameters:
      focus - The entity to check before targeting.
    • interactWithTurret

      public void interactWithTurret(Entity player)
      Interact with the turret to refill its ammunition using player resources.
      Parameters:
      player - The player entity interacting with the turret.
    • stopDamage

      public void stopDamage(Entity focus)
      This method is used to stop giving damage to an entity.
      Parameters:
      focus - The entity to stop giving damage to.
    • giveDamage

      public void giveDamage(Entity focus)
      This method is used to give damage to an entity.
      Parameters:
      focus - The entity to give damage to.
    • rotateTurret

      public void rotateTurret(Entity focus)
      This method is used to rotate the turret.
      Parameters:
      focus - The entity to rotate the turret towards.
    • equals

      public boolean equals(Object o)
      This method is used to check for similar type of turret.
      Overrides:
      equals in class Entity
      Returns:
      True if similar, else false.
    • hashCode

      public int hashCode()
      This method is used to generate a hash code using its properties.
      Overrides:
      hashCode in class Entity
      Returns:
      The hash code.