2015-11-15 23:32:04 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.blocking;
|
2011-09-23 03:22:10 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
|
2015-11-15 23:32:04 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
|
|
|
import net.pravian.aero.component.service.AbstractService;
|
2014-12-21 09:23:50 +00:00
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.EntityType;
|
|
|
|
import org.bukkit.entity.Projectile;
|
|
|
|
import org.bukkit.entity.Tameable;
|
2012-03-03 04:29:54 +00:00
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.EventPriority;
|
2015-11-15 23:32:04 +00:00
|
|
|
import org.bukkit.event.block.BlockBurnEvent;
|
|
|
|
import org.bukkit.event.block.BlockFromToEvent;
|
|
|
|
import org.bukkit.event.block.BlockIgniteEvent;
|
|
|
|
import org.bukkit.event.block.LeavesDecayEvent;
|
2014-12-21 09:23:50 +00:00
|
|
|
import org.bukkit.event.entity.EntityCombustEvent;
|
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
|
|
|
import org.bukkit.event.entity.EntityDeathEvent;
|
|
|
|
import org.bukkit.event.entity.EntityExplodeEvent;
|
|
|
|
import org.bukkit.event.entity.ExplosionPrimeEvent;
|
|
|
|
import org.bukkit.event.entity.ProjectileHitEvent;
|
2015-11-15 23:32:04 +00:00
|
|
|
import org.bukkit.event.player.PlayerDropItemEvent;
|
2011-09-23 03:22:10 +00:00
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
public class EventBlocker extends AbstractService<TotalFreedomMod>
|
2011-09-23 03:22:10 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
public EventBlocker(TotalFreedomMod plugin)
|
2015-10-19 17:43:46 +00:00
|
|
|
{
|
|
|
|
super(plugin);
|
|
|
|
}
|
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
|
|
|
public void onBlockBurn(BlockBurnEvent event)
|
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_FIRE_SPREAD.getBoolean())
|
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
|
|
|
public void onBlockIgnite(BlockIgniteEvent event)
|
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_FIRE_PLACE.getBoolean())
|
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
|
|
|
public void onBlockFromTo(BlockFromToEvent event)
|
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_FLUID_SPREAD.getBoolean())
|
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2011-09-23 03:22:10 +00:00
|
|
|
public void onEntityExplode(EntityExplodeEvent event)
|
2011-09-26 15:26:52 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!ConfigEntry.ALLOW_EXPLOSIONS.getBoolean())
|
2011-09-26 15:26:52 +00:00
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
return;
|
|
|
|
}
|
2011-11-21 04:31:29 +00:00
|
|
|
|
2012-03-09 19:01:04 +00:00
|
|
|
event.setYield(0.0F);
|
2011-09-26 15:26:52 +00:00
|
|
|
}
|
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2011-09-26 15:26:52 +00:00
|
|
|
public void onExplosionPrime(ExplosionPrimeEvent event)
|
2011-09-23 03:22:10 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!ConfigEntry.ALLOW_EXPLOSIONS.getBoolean())
|
2011-09-23 15:45:34 +00:00
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
return;
|
|
|
|
}
|
2011-09-28 17:42:21 +00:00
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
event.setRadius(ConfigEntry.EXPLOSIVE_RADIUS.getDouble().floatValue());
|
2011-09-23 15:45:34 +00:00
|
|
|
}
|
2011-09-28 17:42:21 +00:00
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2011-09-23 15:45:34 +00:00
|
|
|
public void onEntityCombust(EntityCombustEvent event)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!ConfigEntry.ALLOW_EXPLOSIONS.getBoolean())
|
2011-09-23 15:45:34 +00:00
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
|
|
|
public void onEntityDeath(EntityDeathEvent event)
|
|
|
|
{
|
|
|
|
if (ConfigEntry.AUTO_ENTITY_WIPE.getBoolean())
|
|
|
|
{
|
|
|
|
event.setDroppedExp(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
|
|
|
public void onProjectileHit(ProjectileHitEvent event)
|
|
|
|
{
|
|
|
|
if (ConfigEntry.ALLOW_EXPLOSIONS.getBoolean())
|
|
|
|
{
|
|
|
|
Projectile entity = event.getEntity();
|
|
|
|
if (event.getEntityType() == EntityType.ARROW)
|
|
|
|
{
|
|
|
|
entity.getWorld().createExplosion(entity.getLocation(), 2F);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2011-09-23 15:45:34 +00:00
|
|
|
public void onEntityDamage(EntityDamageEvent event)
|
|
|
|
{
|
2012-03-03 04:29:54 +00:00
|
|
|
switch (event.getCause())
|
2011-09-23 15:45:34 +00:00
|
|
|
{
|
2012-03-03 04:29:54 +00:00
|
|
|
case LAVA:
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!ConfigEntry.ALLOW_LAVA_DAMAGE.getBoolean())
|
2013-07-11 18:51:08 +00:00
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
if (ConfigEntry.ENABLE_PET_PROTECT.getBoolean())
|
2013-07-11 18:51:08 +00:00
|
|
|
{
|
|
|
|
Entity entity = event.getEntity();
|
|
|
|
if (entity instanceof Tameable)
|
|
|
|
{
|
|
|
|
if (((Tameable) entity).isTamed())
|
2012-03-03 04:29:54 +00:00
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
2011-09-23 15:45:34 +00:00
|
|
|
}
|
2011-09-23 03:22:10 +00:00
|
|
|
}
|
2011-11-21 04:31:29 +00:00
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
@EventHandler(priority = EventPriority.NORMAL)
|
2015-11-15 23:32:04 +00:00
|
|
|
public void onPlayerDropItem(PlayerDropItemEvent event)
|
2011-11-21 04:31:29 +00:00
|
|
|
{
|
2015-11-15 23:32:04 +00:00
|
|
|
if (!ConfigEntry.AUTO_ENTITY_WIPE.getBoolean())
|
2011-11-21 04:31:29 +00:00
|
|
|
{
|
2015-11-15 23:32:04 +00:00
|
|
|
return;
|
2011-11-21 04:31:29 +00:00
|
|
|
}
|
2012-09-16 17:41:41 +00:00
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
if (event.getPlayer().getWorld().getEntities().size() > 750)
|
2012-03-06 19:25:22 +00:00
|
|
|
{
|
2015-11-15 23:32:04 +00:00
|
|
|
event.setCancelled(true);
|
2012-03-06 19:25:22 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-09 19:01:04 +00:00
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.NORMAL)
|
2015-11-15 23:32:04 +00:00
|
|
|
public void onLeavesDecay(LeavesDecayEvent event)
|
2012-03-09 19:01:04 +00:00
|
|
|
{
|
2015-11-15 23:32:04 +00:00
|
|
|
event.setCancelled(true);
|
2012-03-09 19:01:04 +00:00
|
|
|
}
|
2015-11-15 23:32:04 +00:00
|
|
|
|
2011-09-23 03:22:10 +00:00
|
|
|
}
|