Package com.csse3200.game.components
Class FOVComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.ProximityActivationComponent
com.csse3200.game.components.FOVComponent
FOVComponent
This component is used to detect enemies within a certain radius of the turret.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.csse3200.game.components.ProximityActivationComponent
ProximityActivationComponent.ProximityFunc
-
Field Summary
Fields inherited from class com.csse3200.game.components.ProximityActivationComponent
entered, exited, radius
-
Constructor Summary
ConstructorsConstructorDescriptionFOVComponent
(float radius, ProximityActivationComponent.ProximityFunc entered, ProximityActivationComponent.ProximityFunc exited) -
Method Summary
Modifier and TypeMethodDescriptionboolean
enemyIsInFOV
(Entity enemy) Checks if the enemy is within the radius of the turret.void
update()
Updates the FOV component.Methods inherited from class com.csse3200.game.components.ProximityActivationComponent
entityIsInProximity
Methods inherited from class com.csse3200.game.components.Component
create, dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate
-
Constructor Details
-
FOVComponent
public FOVComponent(float radius, ProximityActivationComponent.ProximityFunc entered, ProximityActivationComponent.ProximityFunc exited)
-
-
Method Details
-
update
public void update()Updates the FOV component.- Overrides:
update
in classProximityActivationComponent
-
enemyIsInFOV
Checks if the enemy is within the radius of the turret.- Parameters:
enemy
- The enemy to check.- Returns:
- True if the enemy is within the radius of the turret, false otherwise.
-