Saber-Factions/src/main/java/com/massivecraft/factions/listeners/FactionsEntityListener.java

538 lines
23 KiB
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.listeners;
2011-02-06 13:36:11 +01:00
2014-04-04 20:55:21 +02:00
import com.massivecraft.factions.*;
import com.massivecraft.factions.event.PowerLossEvent;
import com.massivecraft.factions.struct.Relation;
import com.massivecraft.factions.util.MiscUtil;
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.block.Block;
2014-04-04 20:55:21 +02:00
import org.bukkit.entity.*;
import org.bukkit.entity.minecart.ExplosiveMinecart;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
2014-04-04 20:55:21 +02:00
import org.bukkit.event.entity.*;
import org.bukkit.event.hanging.HangingBreakByEntityEvent;
import org.bukkit.event.hanging.HangingBreakEvent;
import org.bukkit.event.hanging.HangingBreakEvent.RemoveCause;
import org.bukkit.event.hanging.HangingPlaceEvent;
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;
2014-04-06 00:00:33 +02:00
import org.bukkit.projectiles.ProjectileSource;
2011-07-18 22:06:02 +02:00
2014-04-04 20:55:21 +02:00
import java.util.*;
public class FactionsEntityListener implements Listener {
public P p;
public FactionsEntityListener(P p) {
this.p = p;
}
@EventHandler(priority = EventPriority.NORMAL)
public void onEntityDeath(EntityDeathEvent event) {
2014-07-01 22:10:18 +02:00
Entity entity = event.getEntity();
if (!(entity instanceof Player)) {
2014-04-04 20:55:21 +02:00
return;
}
2014-07-01 22:10:18 +02:00
Player player = (Player) entity;
FPlayer fplayer = FPlayers.i.get(player);
2014-04-04 20:55:21 +02:00
Faction faction = Board.getFactionAt(new FLocation(player.getLocation()));
PowerLossEvent powerLossEvent = new PowerLossEvent(faction, fplayer);
// Check for no power loss conditions
if (faction.isWarZone()) {
// war zones always override worldsNoPowerLoss either way, thus this layout
if (!Conf.warZonePowerLoss) {
powerLossEvent.setMessage("<i>You didn't lose any power since you were in a war zone.");
powerLossEvent.setCancelled(true);
2014-07-01 22:10:18 +02:00
}
if (Conf.worldsNoPowerLoss.contains(player.getWorld().getName())) {
2014-04-04 20:55:21 +02:00
powerLossEvent.setMessage("<b>The world you are in has power loss normally disabled, but you still lost power since you were in a war zone.\n<i>Your power is now <h>%d / %d");
}
2014-07-01 21:52:40 +02:00
} else if (faction.isNone() && !Conf.wildernessPowerLoss && !Conf.worldsNoWildernessProtection.contains(player.getWorld().getName())) {
2014-04-04 20:55:21 +02:00
powerLossEvent.setMessage("<i>You didn't lose any power since you were in the wilderness.");
powerLossEvent.setCancelled(true);
2014-07-01 21:52:40 +02:00
} else if (Conf.worldsNoPowerLoss.contains(player.getWorld().getName())) {
2014-04-04 20:55:21 +02:00
powerLossEvent.setMessage("<i>You didn't lose any power due to the world you died in.");
powerLossEvent.setCancelled(true);
2014-07-01 21:52:40 +02:00
} else if (Conf.peacefulMembersDisablePowerLoss && fplayer.hasFaction() && fplayer.getFaction().isPeaceful()) {
2014-04-04 20:55:21 +02:00
powerLossEvent.setMessage("<i>You didn't lose any power since you are in a peaceful faction.");
powerLossEvent.setCancelled(true);
2014-07-01 21:52:40 +02:00
} else {
2014-04-04 20:55:21 +02:00
powerLossEvent.setMessage("<i>Your power is now <h>%d / %d");
}
// call Event
Bukkit.getPluginManager().callEvent(powerLossEvent);
// Call player onDeath if the event is not cancelled
if (!powerLossEvent.isCancelled()) {
fplayer.onDeath();
}
// Send the message from the powerLossEvent
2014-07-01 22:10:18 +02:00
final String msg = powerLossEvent.getMessage();
if (msg != null && !msg.isEmpty()) {
2014-04-04 20:55:21 +02:00
fplayer.msg(msg, fplayer.getPowerRounded(), fplayer.getPowerMaxRounded());
}
}
/**
* Who can I hurt? I can never hurt members or allies. I can always hurt enemies. I can hurt neutrals as long as
* they are outside their own territory.
*/
@EventHandler(priority = EventPriority.NORMAL)
public void onEntityDamage(EntityDamageEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
if (event instanceof EntityDamageByEntityEvent) {
EntityDamageByEntityEvent sub = (EntityDamageByEntityEvent) event;
if (!this.canDamagerHurtDamagee(sub, true)) {
event.setCancelled(true);
}
2014-07-01 21:52:40 +02:00
} else if (Conf.safeZonePreventAllDamageToPlayers && isPlayerInSafeZone(event.getEntity())) {
2014-04-04 20:55:21 +02:00
// Players can not take any damage in a Safe Zone
event.setCancelled(true);
}
}
@EventHandler(priority = EventPriority.NORMAL)
public void onEntityExplode(EntityExplodeEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
Location loc = event.getLocation();
Entity boomer = event.getEntity();
2014-04-04 20:55:21 +02:00
Faction faction = Board.getFactionAt(new FLocation(loc));
if (faction.noExplosionsInTerritory()) {
// faction is peaceful and has explosions set to disabled
2014-07-01 22:10:18 +02:00
event.setCancelled(true);
return;
2014-04-04 20:55:21 +02:00
}
boolean online = faction.hasPlayersOnline();
//TODO: :(
2014-07-01 21:52:40 +02:00
if (boomer instanceof Creeper && ((faction.isNone() && Conf.wildernessBlockCreepers && !Conf.worldsNoWildernessProtection.contains(loc.getWorld().getName())) ||
(faction.isNormal() && (online ? Conf.territoryBlockCreepers : Conf.territoryBlockCreepersWhenOffline)) ||
(faction.isWarZone() && Conf.warZoneBlockCreepers) ||
faction.isSafeZone())) {
2014-04-04 20:55:21 +02:00
// creeper which needs prevention
event.setCancelled(true);
2014-07-01 21:52:40 +02:00
} else if (
2014-04-04 20:55:21 +02:00
// it's a bit crude just using fireball protection for Wither boss too, but I'd rather not add in a whole new set of xxxBlockWitherExplosion or whatever
2014-07-01 21:52:40 +02:00
(boomer instanceof Fireball || boomer instanceof WitherSkull || boomer instanceof Wither) && ((faction.isNone() && Conf.wildernessBlockFireballs && !Conf.worldsNoWildernessProtection.contains(loc.getWorld().getName())) ||
(faction.isNormal() && (online ? Conf.territoryBlockFireballs : Conf.territoryBlockFireballsWhenOffline)) ||
(faction.isWarZone() && Conf.warZoneBlockFireballs) ||
faction.isSafeZone())) {
2014-04-04 20:55:21 +02:00
// ghast fireball which needs prevention
event.setCancelled(true);
2014-07-01 21:52:40 +02:00
} else if ((boomer instanceof TNTPrimed || boomer instanceof ExplosiveMinecart) && ((faction.isNone() && Conf.wildernessBlockTNT && !Conf.worldsNoWildernessProtection.contains(loc.getWorld().getName())) ||
(faction.isNormal() && (online ? Conf.territoryBlockTNT : Conf.territoryBlockTNTWhenOffline)) ||
(faction.isWarZone() && Conf.warZoneBlockTNT) ||
(faction.isSafeZone() && Conf.safeZoneBlockTNT))) {
2014-04-04 20:55:21 +02:00
// TNT which needs prevention
event.setCancelled(true);
2014-07-01 21:52:40 +02:00
} else if ((boomer instanceof TNTPrimed || boomer instanceof ExplosiveMinecart) && Conf.handleExploitTNTWaterlog) {
2014-04-04 20:55:21 +02:00
// TNT in water/lava doesn't normally destroy any surrounding blocks, which is usually desired behavior, but...
// this change below provides workaround for waterwalling providing perfect protection,
// and makes cheap (non-obsidian) TNT cannons require minor maintenance between shots
2014-07-01 22:10:18 +02:00
Block center = loc.getBlock();
if (center.isLiquid()) {
2014-04-04 20:55:21 +02:00
// a single surrounding block in all 6 directions is broken if the material is weak enough
2014-07-01 22:10:18 +02:00
List<Block> targets = new ArrayList<Block>();
targets.add(center.getRelative(0, 0, 1));
targets.add(center.getRelative(0, 0, -1));
targets.add(center.getRelative(0, 1, 0));
targets.add(center.getRelative(0, -1, 0));
targets.add(center.getRelative(1, 0, 0));
targets.add(center.getRelative(-1, 0, 0));
for (Block target : targets) {
2014-04-04 20:55:21 +02:00
int id = target.getTypeId();
// ignore air, bedrock, water, lava, obsidian, enchanting table, etc.... too bad we can't get a blast resistance value through Bukkit yet
2014-07-01 21:49:42 +02:00
if (id != 0 && (id < 7 || id > 11) && id != 49 && id != 90 && id != 116 && id != 119 && id != 120 && id != 130) {
2014-04-04 20:55:21 +02:00
target.breakNaturally();
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
}
}
}
}
// mainly for flaming arrows; don't want allies or people in safe zones to be ignited even after damage event is cancelled
@EventHandler(priority = EventPriority.NORMAL)
public void onEntityCombustByEntity(EntityCombustByEntityEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
EntityDamageByEntityEvent sub = new EntityDamageByEntityEvent(event.getCombuster(), event.getEntity(), EntityDamageEvent.DamageCause.FIRE, 0);
2014-07-01 22:10:18 +02:00
if (!this.canDamagerHurtDamagee(sub, false)) {
event.setCancelled(true);
}
sub = null;
2014-04-04 20:55:21 +02:00
}
2014-07-01 21:52:40 +02:00
private static final Set<PotionEffectType> badPotionEffects = new LinkedHashSet<PotionEffectType>(Arrays.asList(PotionEffectType.BLINDNESS, PotionEffectType.CONFUSION, PotionEffectType.HARM, PotionEffectType.HUNGER, PotionEffectType.POISON, PotionEffectType.SLOW, PotionEffectType.SLOW_DIGGING, PotionEffectType.WEAKNESS, PotionEffectType.WITHER));
2014-04-04 20:55:21 +02:00
@EventHandler(priority = EventPriority.NORMAL)
public void onPotionSplashEvent(PotionSplashEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
// see if the potion has a harmful effect
2014-07-01 22:10:18 +02:00
boolean badjuju = false;
for (PotionEffect effect : event.getPotion().getEffects()) {
2014-04-04 20:55:21 +02:00
if (badPotionEffects.contains(effect.getType())) {
2014-07-01 22:10:18 +02:00
badjuju = true;
break;
2014-04-04 20:55:21 +02:00
}
2014-07-01 22:10:18 +02:00
}
if (!badjuju) {
return;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
ProjectileSource thrower = event.getPotion().getShooter();
if (!(thrower instanceof Entity)) {
2014-04-06 00:00:33 +02:00
return;
}
2014-04-04 20:55:21 +02:00
// scan through affected entities to make sure they're all valid targets
2014-07-01 22:10:18 +02:00
Iterator<LivingEntity> iter = event.getAffectedEntities().iterator();
while (iter.hasNext()) {
2014-04-04 20:55:21 +02:00
LivingEntity target = iter.next();
2014-04-06 00:00:33 +02:00
EntityDamageByEntityEvent sub = new EntityDamageByEntityEvent((Entity) thrower, target, EntityDamageEvent.DamageCause.CUSTOM, 0);
2014-07-01 21:49:42 +02:00
if (!this.canDamagerHurtDamagee(sub, true)) {
2014-04-04 20:55:21 +02:00
event.setIntensity(target, 0.0); // affected entity list doesn't accept modification (so no iter.remove()), but this works
2014-07-01 22:10:18 +02:00
}
sub = null;
2014-04-04 20:55:21 +02:00
}
}
public boolean isPlayerInSafeZone(Entity damagee) {
if (!(damagee instanceof Player)) {
return false;
2014-07-01 22:10:18 +02:00
}
if (Board.getFactionAt(new FLocation(damagee.getLocation())).isSafeZone()) {
2014-04-04 20:55:21 +02:00
return true;
2014-07-01 22:10:18 +02:00
}
return false;
2014-04-04 20:55:21 +02:00
}
public boolean canDamagerHurtDamagee(EntityDamageByEntityEvent sub) {
return canDamagerHurtDamagee(sub, true);
}
public boolean canDamagerHurtDamagee(EntityDamageByEntityEvent sub, boolean notify) {
2014-07-01 22:10:18 +02:00
Entity damager = sub.getDamager();
Entity damagee = sub.getEntity();
double damage = sub.getDamage();
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
if (!(damagee instanceof Player)) {
return true;
}
2014-04-04 20:55:21 +02:00
FPlayer defender = FPlayers.i.get((Player) damagee);
2014-07-01 22:10:18 +02:00
if (defender == null || defender.getPlayer() == null) {
return true;
}
2014-04-04 20:55:21 +02:00
Location defenderLoc = defender.getPlayer().getLocation();
Faction defLocFaction = Board.getFactionAt(new FLocation(defenderLoc));
// for damage caused by projectiles, getDamager() returns the projectile... what we need to know is the source
2014-04-06 00:00:33 +02:00
if (damager instanceof Projectile) {
2014-06-17 07:54:50 +02:00
damager = (Entity) ((Projectile) damager).getShooter();
2014-04-06 00:00:33 +02:00
}
2014-04-04 20:55:21 +02:00
2014-06-17 07:54:50 +02:00
if (damager == damagee) // ender pearl usage and other self-inflicted damage
2014-07-01 22:10:18 +02:00
{
return true;
}
2014-04-04 20:55:21 +02:00
// Players can not take attack damage in a SafeZone, or possibly peaceful territory
if (defLocFaction.noPvPInTerritory()) {
if (damager instanceof Player) {
if (notify) {
FPlayer attacker = FPlayers.i.get((Player) damager);
attacker.msg("<i>You can't hurt other players in " + (defLocFaction.isSafeZone() ? "a SafeZone." : "peaceful territory."));
2014-07-01 22:10:18 +02:00
}
return false;
}
return !defLocFaction.noMonstersInTerritory();
2014-04-04 20:55:21 +02:00
}
2014-07-01 22:10:18 +02:00
if (!(damager instanceof Player)) {
return true;
}
2014-04-04 20:55:21 +02:00
FPlayer attacker = FPlayers.i.get((Player) damager);
2014-07-01 22:10:18 +02:00
if (attacker == null || attacker.getPlayer() == null) {
return true;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
if (Conf.playersWhoBypassAllProtection.contains(attacker.getName())) {
return true;
}
2014-04-04 20:55:21 +02:00
if (attacker.hasLoginPvpDisabled()) {
2014-07-01 21:49:42 +02:00
if (notify) {
2014-04-04 20:55:21 +02:00
attacker.msg("<i>You can't hurt other players for " + Conf.noPVPDamageToOthersForXSecondsAfterLogin + " seconds after logging in.");
2014-07-01 22:10:18 +02:00
}
return false;
2014-04-04 20:55:21 +02:00
}
Faction locFaction = Board.getFactionAt(new FLocation(attacker));
// so we know from above that the defender isn't in a safezone... what about the attacker, sneaky dog that he might be?
if (locFaction.noPvPInTerritory()) {
2014-07-01 21:49:42 +02:00
if (notify) {
2014-04-04 20:55:21 +02:00
attacker.msg("<i>You can't hurt other players while you are in " + (locFaction.isSafeZone() ? "a SafeZone." : "peaceful territory."));
2014-07-01 22:10:18 +02:00
}
return false;
2014-04-04 20:55:21 +02:00
}
2014-07-01 22:10:18 +02:00
if (locFaction.isWarZone() && Conf.warZoneFriendlyFire) {
return true;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
if (Conf.worldsIgnorePvP.contains(defenderLoc.getWorld().getName())) {
return true;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
Faction defendFaction = defender.getFaction();
Faction attackFaction = attacker.getFaction();
2014-04-04 20:55:21 +02:00
if (attackFaction.isNone() && Conf.disablePVPForFactionlessPlayers) {
2014-07-01 22:10:18 +02:00
if (notify) {
attacker.msg("<i>You can't hurt other players until you join a faction.");
}
return false;
2014-07-01 21:52:40 +02:00
} else if (defendFaction.isNone()) {
2014-04-04 20:55:21 +02:00
if (defLocFaction == attackFaction && Conf.enablePVPAgainstFactionlessInAttackersLand) {
// Allow PVP vs. Factionless in attacker's faction territory
return true;
2014-07-01 21:52:40 +02:00
} else if (Conf.disablePVPForFactionlessPlayers) {
2014-07-01 22:10:18 +02:00
if (notify) {
attacker.msg("<i>You can't hurt players who are not currently in a faction.");
}
2014-04-04 20:55:21 +02:00
return false;
}
}
if (defendFaction.isPeaceful()) {
2014-07-01 22:10:18 +02:00
if (notify) {
attacker.msg("<i>You can't hurt players who are in a peaceful faction.");
}
return false;
2014-07-01 21:52:40 +02:00
} else if (attackFaction.isPeaceful()) {
2014-07-01 22:10:18 +02:00
if (notify) {
attacker.msg("<i>You can't hurt players while you are in a peaceful faction.");
}
2014-04-04 20:55:21 +02:00
return false;
}
Relation relation = defendFaction.getRelationTo(attackFaction);
// You can not hurt neutral factions
if (Conf.disablePVPBetweenNeutralFactions && relation.isNeutral()) {
2014-07-01 22:10:18 +02:00
if (notify) {
attacker.msg("<i>You can't hurt neutral factions. Declare them as an enemy.");
}
return false;
2014-04-04 20:55:21 +02:00
}
// Players without faction may be hurt anywhere
2014-07-01 22:10:18 +02:00
if (!defender.hasFaction()) {
return true;
}
2014-04-04 20:55:21 +02:00
// You can never hurt faction members or allies
if (relation.isMember() || relation.isAlly()) {
2014-07-01 22:10:18 +02:00
if (notify) {
attacker.msg("<i>You can't hurt %s<i>.", defender.describeTo(attacker));
}
return false;
2014-04-04 20:55:21 +02:00
}
boolean ownTerritory = defender.isInOwnTerritory();
// You can not hurt neutrals in their own territory.
if (ownTerritory && relation.isNeutral()) {
if (notify) {
attacker.msg("<i>You can't hurt %s<i> in their own territory unless you declare them as an enemy.", defender.describeTo(attacker));
defender.msg("%s<i> tried to hurt you.", attacker.describeTo(defender, true));
2014-07-01 22:10:18 +02:00
}
return false;
2014-04-04 20:55:21 +02:00
}
// Damage will be dealt. However check if the damage should be reduced.
/*
2014-04-04 20:55:21 +02:00
if (damage > 0.0 && ownTerritory && Conf.territoryShieldFactor > 0) {
double newDamage = Math.ceil(damage * (1D - Conf.territoryShieldFactor));
2014-07-01 22:10:18 +02:00
sub.setDamage(newDamage);
2014-04-04 20:55:21 +02:00
// Send message
if (notify) {
String perc = MessageFormat.format("{0,number,#%}", (Conf.territoryShieldFactor)); // TODO does this display correctly??
defender.msg("<i>Enemy damage reduced by <rose>%s<i>.", perc);
}
} */
2014-04-04 20:55:21 +02:00
return true;
}
@EventHandler(priority = EventPriority.NORMAL)
public void onCreatureSpawn(CreatureSpawnEvent event) {
if (event.isCancelled() || event.getLocation() == null) {
return;
}
if (Conf.safeZoneNerfedCreatureTypes.contains(event.getEntityType()) && Board.getFactionAt(new FLocation(event.getLocation())).noMonstersInTerritory()) {
event.setCancelled(true);
}
}
@EventHandler(priority = EventPriority.NORMAL)
public void onEntityTarget(EntityTargetEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
// if there is a target
2014-07-01 22:10:18 +02:00
Entity target = event.getTarget();
if (target == null) {
2014-04-04 20:55:21 +02:00
return;
}
// We are interested in blocking targeting for certain mobs:
if (!Conf.safeZoneNerfedCreatureTypes.contains(MiscUtil.creatureTypeFromEntity(event.getEntity()))) {
return;
}
// in case the target is in a safe zone.
if (Board.getFactionAt(new FLocation(target.getLocation())).noMonstersInTerritory()) {
event.setCancelled(true);
}
}
@EventHandler(priority = EventPriority.NORMAL)
public void onPaintingBreak(HangingBreakEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
if (event.getCause() == RemoveCause.EXPLOSION) {
Location loc = event.getEntity().getLocation();
Faction faction = Board.getFactionAt(new FLocation(loc));
2014-04-04 20:55:21 +02:00
if (faction.noExplosionsInTerritory()) {
// faction is peaceful and has explosions set to disabled
2014-07-01 22:10:18 +02:00
event.setCancelled(true);
return;
2014-04-04 20:55:21 +02:00
}
boolean online = faction.hasPlayersOnline();
2014-07-01 21:52:40 +02:00
if ((faction.isNone() && !Conf.worldsNoWildernessProtection.contains(loc.getWorld().getName()) && (Conf.wildernessBlockCreepers || Conf.wildernessBlockFireballs || Conf.wildernessBlockTNT)) ||
(faction.isNormal() && (online ? (Conf.territoryBlockCreepers || Conf.territoryBlockFireballs || Conf.territoryBlockTNT) : (Conf.territoryBlockCreepersWhenOffline || Conf.territoryBlockFireballsWhenOffline || Conf.territoryBlockTNTWhenOffline))) ||
(faction.isWarZone() && (Conf.warZoneBlockCreepers || Conf.warZoneBlockFireballs || Conf.warZoneBlockTNT)) ||
faction.isSafeZone()) {
2014-04-04 20:55:21 +02:00
// explosion which needs prevention
event.setCancelled(true);
}
}
if (!(event instanceof HangingBreakByEntityEvent)) {
return;
}
2014-07-01 22:10:18 +02:00
Entity breaker = ((HangingBreakByEntityEvent) event).getRemover();
if (!(breaker instanceof Player)) {
2014-04-04 20:55:21 +02:00
return;
}
if (!FactionsBlockListener.playerCanBuildDestroyBlock((Player) breaker, event.getEntity().getLocation(), "remove paintings", false)) {
event.setCancelled(true);
}
}
@EventHandler(priority = EventPriority.NORMAL)
public void onPaintingPlace(HangingPlaceEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
if (!FactionsBlockListener.playerCanBuildDestroyBlock(event.getPlayer(), event.getBlock().getLocation(), "place paintings", false)) {
event.setCancelled(true);
}
}
@EventHandler(priority = EventPriority.NORMAL)
public void onEntityChangeBlock(EntityChangeBlockEvent event) {
2014-07-01 22:10:18 +02:00
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
Entity entity = event.getEntity();
// for now, only interested in Enderman and Wither boss tomfoolery
2014-07-01 22:10:18 +02:00
if (!(entity instanceof Enderman) && !(entity instanceof Wither)) {
return;
}
2014-04-04 20:55:21 +02:00
Location loc = event.getBlock().getLocation();
if (entity instanceof Enderman) {
2014-07-01 22:10:18 +02:00
if (stopEndermanBlockManipulation(loc)) {
event.setCancelled(true);
}
2014-07-01 21:52:40 +02:00
} else if (entity instanceof Wither) {
2014-04-04 20:55:21 +02:00
Faction faction = Board.getFactionAt(new FLocation(loc));
// it's a bit crude just using fireball protection, but I'd rather not add in a whole new set of xxxBlockWitherExplosion or whatever
2014-07-01 21:52:40 +02:00
if ((faction.isNone() && Conf.wildernessBlockFireballs && !Conf.worldsNoWildernessProtection.contains(loc.getWorld().getName())) ||
(faction.isNormal() && (faction.hasPlayersOnline() ? Conf.territoryBlockFireballs : Conf.territoryBlockFireballsWhenOffline)) ||
(faction.isWarZone() && Conf.warZoneBlockFireballs) ||
2014-07-01 22:10:18 +02:00
faction.isSafeZone()) {
event.setCancelled(true);
}
2014-04-04 20:55:21 +02:00
}
}
private boolean stopEndermanBlockManipulation(Location loc) {
if (loc == null) {
return false;
}
// quick check to see if all Enderman deny options are enabled; if so, no need to check location
2014-07-01 21:52:40 +02:00
if (Conf.wildernessDenyEndermanBlocks &&
Conf.territoryDenyEndermanBlocks &&
Conf.territoryDenyEndermanBlocksWhenOffline &&
Conf.safeZoneDenyEndermanBlocks &&
Conf.warZoneDenyEndermanBlocks) {
2014-04-04 20:55:21 +02:00
return true;
}
2014-07-01 22:10:18 +02:00
FLocation fLoc = new FLocation(loc);
Faction claimFaction = Board.getFactionAt(fLoc);
2014-04-04 20:55:21 +02:00
if (claimFaction.isNone()) {
return Conf.wildernessDenyEndermanBlocks;
2014-07-01 21:52:40 +02:00
} else if (claimFaction.isNormal()) {
2014-04-04 20:55:21 +02:00
return claimFaction.hasPlayersOnline() ? Conf.territoryDenyEndermanBlocks : Conf.territoryDenyEndermanBlocksWhenOffline;
2014-07-01 21:52:40 +02:00
} else if (claimFaction.isSafeZone()) {
2014-04-04 20:55:21 +02:00
return Conf.safeZoneDenyEndermanBlocks;
2014-07-01 21:52:40 +02:00
} else if (claimFaction.isWarZone()) {
2014-04-04 20:55:21 +02:00
return Conf.warZoneDenyEndermanBlocks;
}
return false;
}
2011-02-06 13:36:11 +01:00
}