2015-11-15 23:32:04 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.blocking;
|
2011-09-23 03:22:10 +00:00
|
|
|
|
2016-03-01 16:47:01 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.FreedomService;
|
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;
|
2014-12-21 09:23:50 +00:00
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.Tameable;
|
2012-03-03 04:29:54 +00:00
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.EventPriority;
|
2018-07-31 07:01:29 +00:00
|
|
|
import org.bukkit.event.block.*;
|
|
|
|
import org.bukkit.event.entity.*;
|
2015-11-15 23:32:04 +00:00
|
|
|
import org.bukkit.event.player.PlayerDropItemEvent;
|
2011-09-23 03:22:10 +00:00
|
|
|
|
2016-03-01 16:47:01 +00:00
|
|
|
public class EventBlocker extends FreedomService
|
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
|
|
|
{
|
2017-10-13 18:35:11 +00:00
|
|
|
event.blockList().clear();
|
2011-09-26 15:26:52 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2018-03-03 04:29:08 +00:00
|
|
|
public void onEntityDamage(EntityDamageEvent event)
|
2011-09-23 15:45:34 +00:00
|
|
|
{
|
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)
|
|
|
|
{
|
2018-07-31 07:01:29 +00:00
|
|
|
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)
|
2018-03-03 04:29:08 +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
|
|
|
|
2018-03-03 04:29:08 +00:00
|
|
|
if (event.getPlayer().getWorld().getEntities().size() > 750 && !plugin.al.isAdmin(event.getPlayer()))
|
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)
|
2017-10-13 18:35:11 +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
|
|
|
|
2017-10-13 18:35:11 +00:00
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2018-03-03 04:29:08 +00:00
|
|
|
public void onFireworkExplode(FireworkExplodeEvent event)
|
2017-10-13 18:35:11 +00:00
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_FIREWORK_EXPLOSION.getBoolean())
|
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2018-01-01 03:43:10 +00:00
|
|
|
public void onBlockPistonRetract(BlockPistonRetractEvent event)
|
2017-10-13 18:35:11 +00:00
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_REDSTONE.getBoolean())
|
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2018-01-01 03:43:10 +00:00
|
|
|
public void onBlockPistonExtend(BlockPistonExtendEvent event)
|
2017-10-13 18:35:11 +00:00
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_REDSTONE.getBoolean())
|
|
|
|
{
|
|
|
|
event.setCancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGH)
|
2018-01-01 03:43:10 +00:00
|
|
|
public void onBlockRedstone(BlockRedstoneEvent event)
|
2017-10-13 18:35:11 +00:00
|
|
|
{
|
|
|
|
if (!ConfigEntry.ALLOW_REDSTONE.getBoolean())
|
|
|
|
{
|
|
|
|
event.setNewCurrent(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-23 03:22:10 +00:00
|
|
|
}
|