public abstract class AbstractSpecialAttack
extends java.lang.Object
implements org.bukkit.event.Listener
Event
class to listen to. The creator can then
override the this#checkConditions method to fine-tune when this attack should occur.Modifier and Type | Field and Description |
---|---|
private boolean |
_enabled
The state of this attack.
|
private java.util.Set<AbstractModule> |
_modules
The modules set for this attack.
|
private java.lang.String |
_name
The name of this attack.
|
Constructor and Description |
---|
AbstractSpecialAttack(java.lang.String name,
java.lang.Class<? extends org.bukkit.event.Event> eventClass,
AbstractModule... modules)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
(package private) abstract boolean |
checkConditions(org.bukkit.event.Event event)
An abstract method to be implemented when a new
AbstractSpecialAttack is created. |
(package private) static boolean |
checkDefaultConditions(org.bukkit.event.entity.EntityDamageByEntityEvent event,
org.bukkit.entity.LivingEntity e,
java.util.Set<org.bukkit.entity.EntityType> supportedMobs) |
private boolean |
checkEligibility(org.bukkit.event.Event event)
Checks an event's eligibility to cause this attack to occcur.
|
(package private) abstract void |
doAttack(org.bukkit.event.Event event)
A method to implement all of the logic behind the attack, i.e.
|
private void |
dynamicallyRegisterEvent(java.lang.Class<? extends org.bukkit.event.Event> eventClass)
Dynamically registers this class as a listener for the
Event class defined during construction. |
AbstractModule |
getModule(ModuleType moduleType)
Returns this attack's module corresponding to the given
ModuleType . |
java.util.Set<AbstractModule> |
getModules()
Returns all modules defined for this attack.
|
java.lang.String |
getName()
Returns this attack's name.
|
void |
load(org.bukkit.configuration.ConfigurationSection configurationSection)
Deserializes this attack's modules.
|
void |
save(org.bukkit.configuration.ConfigurationSection configurationSection)
Serializes this attack's modules.
|
void |
setEnabled(boolean state)
Sets the state of this attack.
|
private final java.lang.String _name
private boolean _enabled
private final java.util.Set<AbstractModule> _modules
AbstractSpecialAttack(java.lang.String name, java.lang.Class<? extends org.bukkit.event.Event> eventClass, AbstractModule... modules)
name
- the name of this attack.eventClass
- the Event
class this attack should listen to.modules
- the AbstractModule
s this attack uses.public void setEnabled(boolean state)
state
- the state.private void dynamicallyRegisterEvent(java.lang.Class<? extends org.bukkit.event.Event> eventClass)
Event
class defined during construction.eventClass
- the Event
class.private boolean checkEligibility(org.bukkit.event.Event event)
event
- the event.public AbstractModule getModule(ModuleType moduleType)
ModuleType
.moduleType
- the ModuleType
.AbstractModule
.public java.util.Set<AbstractModule> getModules()
public java.lang.String getName()
abstract boolean checkConditions(org.bukkit.event.Event event)
AbstractSpecialAttack
is created. Offers more
customizability than the standard checkEligibility(Event)
method.event
- the event.static boolean checkDefaultConditions(org.bukkit.event.entity.EntityDamageByEntityEvent event, org.bukkit.entity.LivingEntity e, java.util.Set<org.bukkit.entity.EntityType> supportedMobs)
abstract void doAttack(org.bukkit.event.Event event)
event
- the event which triggered the attack.public void save(org.bukkit.configuration.ConfigurationSection configurationSection)
configurationSection
- the ConfigurationSection
to save to.public void load(org.bukkit.configuration.ConfigurationSection configurationSection)
configurationSection
- the ConfigurationSection
to read from.