2014-10-08 06:38:26 +02:00
|
|
|
package com.massivecraft.factions.engine;
|
2013-04-18 14:02:39 +02:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.entity.TNTPrimed;
|
|
|
|
import org.bukkit.event.block.BlockFromToEvent;
|
|
|
|
import org.bukkit.event.entity.EntityExplodeEvent;
|
|
|
|
import org.bukkit.event.player.PlayerTeleportEvent;
|
|
|
|
import org.bukkit.event.EventHandler;
|
2014-10-08 06:24:37 +02:00
|
|
|
import org.bukkit.event.EventPriority;
|
|
|
|
import org.bukkit.plugin.Plugin;
|
2013-04-18 14:02:39 +02:00
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.Factions;
|
2013-04-22 10:05:03 +02:00
|
|
|
import com.massivecraft.factions.entity.MConf;
|
2014-10-08 06:24:37 +02:00
|
|
|
import com.massivecraft.massivecore.EngineAbstract;
|
2013-04-18 14:02:39 +02:00
|
|
|
|
|
|
|
|
2014-10-08 06:38:26 +02:00
|
|
|
public class EngineExploit extends EngineAbstract
|
2013-04-18 14:02:39 +02:00
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// INSTANCE & CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-10-08 06:38:26 +02:00
|
|
|
private static EngineExploit i = new EngineExploit();
|
|
|
|
public static EngineExploit get() { return i; }
|
2013-04-18 14:02:39 +02:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
2014-10-08 06:24:37 +02:00
|
|
|
// OVERRIDE
|
2013-04-18 14:02:39 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-10-08 06:24:37 +02:00
|
|
|
@Override
|
|
|
|
public Plugin getPlugin()
|
2013-04-18 14:02:39 +02:00
|
|
|
{
|
2014-10-08 06:24:37 +02:00
|
|
|
return Factions.get();
|
2013-04-18 14:02:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OBSIDIAN GENERATORS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-09-20 12:50:32 +02:00
|
|
|
@SuppressWarnings("deprecation")
|
2013-04-18 14:02:39 +02:00
|
|
|
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
|
|
|
|
public void obsidianGenerators(BlockFromToEvent event)
|
|
|
|
{
|
2013-04-22 10:05:03 +02:00
|
|
|
if (!MConf.get().handleExploitObsidianGenerators) return;
|
2013-04-18 14:02:39 +02:00
|
|
|
|
|
|
|
// thanks to ObGenBlocker and WorldGuard for this method
|
|
|
|
Block block = event.getToBlock();
|
|
|
|
int source = event.getBlock().getTypeId();
|
|
|
|
int target = block.getTypeId();
|
|
|
|
if ((target == 55 || target == 132) && (source == 0 || source == 10 || source == 11))
|
|
|
|
{
|
2013-09-20 12:50:32 +02:00
|
|
|
block.setType(Material.AIR);
|
2013-04-18 14:02:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// ENDER PEARL CLIPPING
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
|
|
|
|
public void enderPearlClipping(PlayerTeleportEvent event)
|
|
|
|
{
|
2013-04-22 10:05:03 +02:00
|
|
|
if (!MConf.get().handleExploitEnderPearlClipping) return;
|
2013-04-18 14:02:39 +02:00
|
|
|
if (event.getCause() != PlayerTeleportEvent.TeleportCause.ENDER_PEARL) return;
|
|
|
|
|
|
|
|
// this exploit works when the target location is within 0.31 blocks or so of a door or glass block or similar...
|
|
|
|
Location target = event.getTo();
|
|
|
|
Location from = event.getFrom();
|
|
|
|
|
|
|
|
// blocks who occupy less than 1 block width or length wise need to be handled differently
|
|
|
|
Material mat = event.getTo().getBlock().getType();
|
|
|
|
if (
|
|
|
|
((mat == Material.THIN_GLASS || mat == Material.IRON_FENCE) && clippingThrough(target, from, 0.65))
|
|
|
|
|| ((mat == Material.FENCE || mat == Material.NETHER_FENCE) && clippingThrough(target, from, 0.45))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
event.setTo(from);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// simple fix otherwise: ender pearl target locations are standardized to be in the center (X/Z) of the target block, not at the edges
|
|
|
|
target.setX(target.getBlockX() + 0.5);
|
|
|
|
target.setZ(target.getBlockZ() + 0.5);
|
|
|
|
event.setTo(target);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean clippingThrough(Location target, Location from, double thickness)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
(
|
|
|
|
(from.getX() > target.getX() && (from.getX() - target.getX() < thickness))
|
|
|
|
|| (target.getX() > from.getX() && (target.getX() - from.getX() < thickness))
|
|
|
|
|| (from.getZ() > target.getZ() && (from.getZ() - target.getZ() < thickness))
|
|
|
|
|| (target.getZ() > from.getZ() && (target.getZ() - from.getZ() < thickness))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// TNT WATERLOG
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// TNT in water/lava doesn't normally destroy any surrounding blocks, which is usually desired behavior, but...
|
|
|
|
// this optional change below provides workaround for waterwalling providing perfect protection,
|
|
|
|
// and makes cheap (non-obsidian) TNT cannons require minor maintenance between shots
|
|
|
|
|
2013-09-20 12:50:32 +02:00
|
|
|
@SuppressWarnings("deprecation")
|
2013-04-18 14:02:39 +02:00
|
|
|
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
|
|
|
public void tntWaterlog(EntityExplodeEvent event)
|
|
|
|
{
|
2013-05-09 17:29:35 +02:00
|
|
|
if (!MConf.get().handleExploitTNTWaterlog) return;
|
2013-04-18 14:02:39 +02:00
|
|
|
if (!(event.getEntity() instanceof TNTPrimed)) return;
|
|
|
|
|
|
|
|
Block center = event.getLocation().getBlock();
|
|
|
|
if (!center.isLiquid()) return;
|
|
|
|
|
|
|
|
// a single surrounding block in all 6 directions is broken if the material is weak enough
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
if (id != 0 && (id < 7 || id > 11) && id != 49 && id != 90 && id != 116 && id != 119 && id != 120 && id != 130)
|
|
|
|
{
|
|
|
|
target.breakNaturally();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-08 06:24:37 +02:00
|
|
|
|
2013-04-18 14:02:39 +02:00
|
|
|
}
|