Effectors - Terasology/GooeyDefence GitHub Wiki
Effectors are much like Targeters in that they have both a component and a system part. Each of these has a few more nuances to how they are set up however, that makes an effector the hardest of the three to extend.
See Tower Block Base for details on how to make the tower block and corresponding entity. This guide will assume you have completed those steps first.
The component of an effector is a class that extends TowerEffector
. The component class doesn't need to extend TowerEffector
directly, so long as one of the superclasses do. This class only provides the single field, drain
, which is the amount of power the effector needs.
The effector has two abstract methods that need to be implemented. The first of these is getEffectCount
, which should return an EffectCount
enum. This will represent the number of times that an effect should be applied. Either every time the tower shoots or only on the initial attack per enemy.
The second method, EffectDuration
, returns an EffectDuration
enum. This controls when, if at all, an effect should be called to be removed. The options are for the effect to not have a duration, only last whilst the enemy is targeted, or to last for an unspecified amount of time.
The values of these will effect how often and when the events detailed in the next section are sent.
Here is an example of DamageEffector, minus javadoc, which is the simplest of the effectors:
public class DamageEffectorComponent extends TowerEffector {
public int damage;
@Override
public EffectCount getEffectCount() {
return EffectCount.PER_SHOT;
}
@Override
public EffectDuration getEffectDuration() {
return EffectDuration.INSTANT;
}
}
The system for an effector doesn't need to implement or extend anything beyond that of a normal system. All of the interaction is done via two events, ApplyEffectEvent
and RemoveEffectEvent
.
The first event is sent to apply an effect to the single enemy. A key feature of the event is that it will also contain a multiplier value that the effector should use to moderate it's effect. For instance, multiplying it's damage by it. The event is sent once per enemy, so it will always only have a single target.
The second event is sent to remove an effect from the enemy. It is only sent if the duration of the effect is set to EffectDuration.LASTING
. In the case of EffectDuration.PERMANENT
the system is expected to remove the effect when appropriate itself. This event also has a multiplier, and it is guaranteed to be the same value used to apply the effect. This lets it be used like in IceEffectorSystem
below to both apply and remove the effect.
The IceEffectorSystem
, minus javadoc, is shown as it has simple examples for both events:
@RegisterSystem
public class IceEffectorSystem extends BaseComponentSystem {
@In
private InWorldRenderer inWorldRenderer;
@ReceiveEvent
public void onApplyEffect(ApplyEffectEvent event, EntityRef entity, IceEffectorComponent component) {
EntityRef enemy = event.getTarget();
MovementComponent movementComponent = enemy.getComponent(MovementComponent.class);
double reducedSpeed = movementComponent.speed * component.slow * event.getDamageMultiplier();
movementComponent.speed = (float) reducedSpeed;
inWorldRenderer.addParticleEffect(enemy, DefenceUris.ICE_PARTICLES);
}
@ReceiveEvent
public void onRemoveEffect(RemoveEffectEvent event, EntityRef entity, IceEffectorComponent component) {
EntityRef enemy = event.getTarget();
MovementComponent movementComponent = enemy.getComponent(MovementComponent.class);
movementComponent.speed = movementComponent.speed / (component.slow * event.getMultiplier());
inWorldRenderer.removeParticleEffect(enemy, DefenceUris.ICE_PARTICLES);
}
}
Name | Description | Files | Tile |
---|---|---|---|
DamageEffector | Simply directly deals damage to the target. Has no other side effect. |
blocks/effectors/DamageEffector.prefab , DamageEffectorComponent.java , DamageEffectorSystem.java
|
|
FireEffector | Ignites the target. Burning targets have a chance to set nearby targets on fire, thus spreading the effect. |
blocks/effectors/FireEffector.prefab , FireEffectorComponent.java , FireEffectorSystem.java
|
|
IceEffector | Slows down the target by freezing them. The freezing doesn't do any damage |
blocks/effectors/IceEffector.prefab , IceEffectorComponent.java , IceEffectorSystem.java
|
|
PoisonEffector | Deals an initial damage and then poisons the target, dealing more damage over time. Being hit again by the same effector will cause it to refresh the duration. An enemy can be poisoned by multiple different effectors. |
blocks/effectors/PoisonEffector.prefab , PoisonEffectorComponent.java , PoisonEffectorSystem.java
|
|
StunEffector | Briefly stuns the target. Stops them from moving for the duration of the stun. Does not deal damage to the target |
blocks/effectors/StunEffector.prefab , StunEffectorComponent.java , StunEffectorSystem.java
|