TFM-4.3-Reloaded/src/main/java/me/totalfreedom/totalfreedommod/fun/Landminer.java
JeromSar e93ac11172 Use custom service abstraction in favour of Aero's AbstractService
Use Aero's YamlConfig in favour of FConfig
Refractoring
Small edits
2016-03-01 17:47:01 +01:00

129 lines
3.2 KiB
Java

package me.totalfreedom.totalfreedommod.fun;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import lombok.Getter;
import me.totalfreedom.totalfreedommod.FreedomService;
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
import org.bukkit.GameMode;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.entity.Player;
import org.bukkit.entity.TNTPrimed;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.player.PlayerMoveEvent;
import org.bukkit.util.Vector;
public class Landminer extends FreedomService
{
@Getter
private final List<Landmine> landmines = new ArrayList<Landmine>();
public Landminer(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
{
landmines.clear();
}
@Override
protected void onStop()
{
}
public void add(Landmine landmine)
{
landmines.add(landmine);
}
public void remove(Landmine landmine)
{
landmines.remove(landmine);
}
@EventHandler(priority = EventPriority.NORMAL)
public void onPlayerMove(PlayerMoveEvent event)
{
if (!(ConfigEntry.LANDMINES_ENABLED.getBoolean() && ConfigEntry.ALLOW_EXPLOSIONS.getBoolean()))
{
return;
}
final Player player = event.getPlayer();
final Iterator<Landmine> lit = landmines.iterator();
while (lit.hasNext())
{
final Landmine landmine = lit.next();
final Location location = landmine.location;
if (location.getBlock().getType() != Material.TNT)
{
lit.remove();
continue;
}
if (landmine.planter.equals(player))
{
break;
}
if (!player.getWorld().equals(location.getWorld()))
{
continue;
}
if (!(player.getLocation().distanceSquared(location) <= (landmine.radius * landmine.radius)))
{
break;
}
landmine.location.getBlock().setType(Material.AIR);
final TNTPrimed tnt1 = location.getWorld().spawn(location, TNTPrimed.class);
tnt1.setFuseTicks(40);
tnt1.setPassenger(player);
tnt1.setVelocity(new Vector(0.0, 2.0, 0.0));
final TNTPrimed tnt2 = location.getWorld().spawn(player.getLocation(), TNTPrimed.class);
tnt2.setFuseTicks(1);
player.setGameMode(GameMode.SURVIVAL);
lit.remove();
}
}
public static class Landmine
{
@Getter
private final Location location;
@Getter
private final Player planter;
@Getter
private final double radius;
public Landmine(Location location, Player player, double radius)
{
this.location = location;
this.planter = player;
this.radius = radius;
}
@Override
public String toString()
{
return this.location.toString() + ", " + this.radius + ", " + this.planter.getName();
}
}
}