TotalFreedomMod/src/me/StevenLawson/TotalFreedomMod/TFM_Util.java

858 lines
26 KiB
Java
Raw Normal View History

2011-10-13 23:07:52 +00:00
package me.StevenLawson.TotalFreedomMod;
import java.io.*;
import java.lang.reflect.Field;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
2012-11-13 01:42:30 +00:00
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
2013-12-01 11:13:39 +00:00
import net.minecraft.util.org.apache.commons.io.FileUtils;
2013-11-27 17:21:53 +00:00
2013-12-01 11:13:39 +00:00
import net.minecraft.util.org.apache.commons.lang3.StringUtils;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.GameMode;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.OfflinePlayer;
import org.bukkit.SkullType;
import org.bukkit.World;
2011-10-13 23:07:52 +00:00
import org.bukkit.block.Block;
2013-08-25 23:08:53 +00:00
import org.bukkit.block.Skull;
2011-10-13 23:07:52 +00:00
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Boat;
import org.bukkit.entity.Creature;
import org.bukkit.entity.EnderCrystal;
import org.bukkit.entity.EnderSignal;
import org.bukkit.entity.Entity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.ExperienceOrb;
import org.bukkit.entity.Explosive;
import org.bukkit.entity.FallingBlock;
import org.bukkit.entity.Firework;
import org.bukkit.entity.Item;
import org.bukkit.entity.Minecart;
import org.bukkit.entity.Player;
import org.bukkit.entity.Projectile;
2011-10-13 23:07:52 +00:00
public class TFM_Util
{
private static final Map<String, Integer> ejectTracker = new HashMap<String, Integer>();
2012-03-03 04:29:54 +00:00
public static final Map<String, EntityType> mobtypes = new HashMap<String, EntityType>();
public static final List<String> STOP_COMMANDS = Arrays.asList("stop", "off", "end", "halt", "die");
2013-08-15 21:36:55 +00:00
public static final List<String> REMOVE_COMMANDS = Arrays.asList("del", "delete", "rem", "remove");
public static final List<String> DEVELOPERS = Arrays.asList("Madgeek1450", "DarthSalamon", "AcidicCyanide", "wild1145", "WickedGamingUK", "xXWilee999Xx");
2013-09-24 12:05:48 +00:00
private static final Random RANDOM = new Random();
public static String DATE_STORAGE_FORMAT = "EEE, d MMM yyyy HH:mm:ss Z";
public static final Map<String, ChatColor> CHAT_COLOR_NAMES = new HashMap<String, ChatColor>();
public static final List<ChatColor> CHAT_COLOR_POOL = Arrays.asList(
2013-09-24 12:05:48 +00:00
ChatColor.DARK_BLUE,
ChatColor.DARK_GREEN,
ChatColor.DARK_AQUA,
ChatColor.DARK_RED,
ChatColor.DARK_PURPLE,
ChatColor.GOLD,
ChatColor.BLUE,
ChatColor.GREEN,
ChatColor.AQUA,
ChatColor.RED,
ChatColor.LIGHT_PURPLE,
ChatColor.YELLOW);
static
{
for (EntityType type : EntityType.values())
2012-11-18 03:57:24 +00:00
{
try
{
if (type.getName() != null)
2012-11-18 03:57:24 +00:00
{
if (Creature.class.isAssignableFrom(type.getEntityClass()))
2012-11-18 03:57:24 +00:00
{
mobtypes.put(type.getName().toLowerCase(), type);
2012-11-18 03:57:24 +00:00
}
}
}
catch (Exception ex)
2012-11-18 03:57:24 +00:00
{
}
}
for (ChatColor chatColor : CHAT_COLOR_POOL)
{
CHAT_COLOR_NAMES.put(chatColor.name().toLowerCase().replace("_", ""), chatColor);
}
}
2011-10-24 02:43:52 +00:00
private TFM_Util()
{
throw new AssertionError();
}
public static void bcastMsg(String message, ChatColor color)
2011-10-13 23:07:52 +00:00
{
TFM_Log.info(message, true);
2011-10-13 23:07:52 +00:00
2013-08-14 14:01:42 +00:00
for (Player player : Bukkit.getOnlinePlayers())
2011-10-13 23:07:52 +00:00
{
2013-08-14 14:01:42 +00:00
player.sendMessage((color == null ? "" : color) + message);
2011-10-13 23:07:52 +00:00
}
}
2011-10-24 02:43:52 +00:00
public static void bcastMsg(String message)
2011-10-13 23:07:52 +00:00
{
TFM_Util.bcastMsg(message, null);
2011-10-13 23:07:52 +00:00
}
2013-01-21 18:58:42 +00:00
// Still in use by listeners
public static void playerMsg(CommandSender sender, String message, ChatColor color)
{
sender.sendMessage(color + message);
}
2013-01-21 18:58:42 +00:00
// Still in use by listeners
public static void playerMsg(CommandSender sender, String message)
{
TFM_Util.playerMsg(sender, message, ChatColor.GRAY);
}
public static void adminAction(String adminName, String action, boolean isRed)
{
2012-09-15 18:05:48 +00:00
TFM_Util.bcastMsg(adminName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
}
public static String formatLocation(Location location)
2011-10-13 23:07:52 +00:00
{
return String.format("%s: (%d, %d, %d)",
location.getWorld().getName(),
Math.round(location.getX()),
Math.round(location.getY()),
Math.round(location.getZ()));
2011-10-13 23:07:52 +00:00
}
public static void gotoWorld(CommandSender sender, String targetworld)
{
if (sender instanceof Player)
{
Player player = (Player) sender;
2011-10-13 23:07:52 +00:00
if (player.getWorld().getName().equalsIgnoreCase(targetworld))
2011-10-13 23:07:52 +00:00
{
sender.sendMessage(ChatColor.GRAY + "Going to main world.");
player.teleport(Bukkit.getWorlds().get(0).getSpawnLocation());
2011-10-13 23:07:52 +00:00
return;
}
for (World world : Bukkit.getWorlds())
{
if (world.getName().equalsIgnoreCase(targetworld))
{
sender.sendMessage(ChatColor.GRAY + "Going to world: " + targetworld);
player.teleport(world.getSpawnLocation());
2011-10-13 23:07:52 +00:00
return;
}
}
2012-07-22 18:06:01 +00:00
2011-11-28 22:44:51 +00:00
sender.sendMessage(ChatColor.GRAY + "World " + targetworld + " not found.");
2011-10-13 23:07:52 +00:00
}
else
{
2011-10-16 06:00:37 +00:00
sender.sendMessage(TotalFreedomMod.NOT_FROM_CONSOLE);
2011-10-13 23:07:52 +00:00
}
}
2013-01-21 18:58:42 +00:00
public static void buildHistory(Location location, int length, TFM_PlayerData playerdata)
2011-10-13 23:07:52 +00:00
{
Block center = location.getBlock();
for (int xOffset = -length; xOffset <= length; xOffset++)
2011-10-13 23:07:52 +00:00
{
for (int yOffset = -length; yOffset <= length; yOffset++)
2011-10-13 23:07:52 +00:00
{
for (int zOffset = -length; zOffset <= length; zOffset++)
2011-10-13 23:07:52 +00:00
{
Block block = center.getRelative(xOffset, yOffset, zOffset);
2011-10-13 23:07:52 +00:00
playerdata.insertHistoryBlock(block.getLocation(), block.getType());
}
}
}
}
public static void generateCube(Location location, int length, Material material)
{
2013-08-25 23:08:53 +00:00
Block center = location.getBlock();
for (int xOffset = -length; xOffset <= length; xOffset++)
2011-10-13 23:07:52 +00:00
{
for (int yOffset = -length; yOffset <= length; yOffset++)
2011-10-13 23:07:52 +00:00
{
for (int zOffset = -length; zOffset <= length; zOffset++)
2011-10-13 23:07:52 +00:00
{
2013-08-26 13:04:36 +00:00
final Block block = center.getRelative(xOffset, yOffset, zOffset);
if (block.getType() != material)
{
block.setType(material);
}
}
}
}
}
public static void generateHollowCube(Location location, int length, Material material)
{
Block center = location.getBlock();
for (int xOffset = -length; xOffset <= length; xOffset++)
{
for (int yOffset = -length; yOffset <= length; yOffset++)
{
for (int zOffset = -length; zOffset <= length; zOffset++)
{
// Hollow
if (Math.abs(xOffset) != length && Math.abs(yOffset) != length && Math.abs(zOffset) != length)
{
continue;
}
final Block block = center.getRelative(xOffset, yOffset, zOffset);
2013-08-25 23:08:53 +00:00
if (material != Material.SKULL)
{
2013-08-26 13:04:36 +00:00
// Glowstone light
if (material != Material.GLASS && xOffset == 0 && yOffset == 2 && zOffset == 0)
{
block.setType(Material.GLOWSTONE);
continue;
}
block.setType(material);
2013-08-25 23:08:53 +00:00
}
2013-08-26 13:04:36 +00:00
else // Darth mode
2013-08-25 23:08:53 +00:00
{
2013-08-26 13:04:36 +00:00
if (Math.abs(xOffset) == length && Math.abs(yOffset) == length && Math.abs(zOffset) == length)
{
block.setType(Material.GLOWSTONE);
continue;
}
2013-08-25 23:08:53 +00:00
block.setType(Material.SKULL);
Skull skull = (Skull) block.getState();
skull.setSkullType(SkullType.PLAYER);
skull.setOwner("DarthSalamon");
skull.update();
}
2011-10-13 23:07:52 +00:00
}
}
}
}
2011-10-14 05:31:21 +00:00
2011-10-13 23:07:52 +00:00
public static void setWorldTime(World world, long ticks)
{
long time = world.getTime();
time -= time % 24000;
world.setTime(time + 24000 + ticks);
}
2011-10-14 05:31:21 +00:00
2013-09-24 12:05:48 +00:00
public static void createDefaultConfiguration(final String configFileName)
{
2013-09-24 12:05:48 +00:00
final File targetFile = new File(TotalFreedomMod.plugin.getDataFolder(), configFileName);
2013-09-24 12:05:48 +00:00
if (targetFile.exists())
2011-10-13 23:07:52 +00:00
{
2013-09-24 12:05:48 +00:00
return;
2011-10-13 23:07:52 +00:00
}
2013-09-24 12:05:48 +00:00
TFM_Log.info("Installing default configuration file template: " + targetFile.getPath());
2013-09-24 12:05:48 +00:00
try
2011-10-13 23:07:52 +00:00
{
2013-09-24 12:05:48 +00:00
final InputStream configFileStream = TotalFreedomMod.plugin.getResource(configFileName);
FileUtils.copyInputStreamToFile(configFileStream, targetFile);
configFileStream.close();
}
2013-09-24 12:05:48 +00:00
catch (IOException ex)
{
2013-09-24 12:05:48 +00:00
TFM_Log.severe(ex);
2011-10-13 23:07:52 +00:00
}
}
2011-10-14 05:31:21 +00:00
2013-09-24 12:05:48 +00:00
public static boolean deleteFolder(final File file)
2011-10-14 05:31:21 +00:00
{
2013-09-24 12:05:48 +00:00
if (file.exists() && file.isDirectory())
2011-10-14 05:31:21 +00:00
{
2013-09-24 12:05:48 +00:00
return FileUtils.deleteQuietly(file);
2011-10-14 05:31:21 +00:00
}
2013-09-24 12:05:48 +00:00
return false;
2011-10-14 05:31:21 +00:00
}
2011-10-24 02:43:52 +00:00
2012-03-03 04:29:54 +00:00
public static EntityType getEntityType(String mobname) throws Exception
2011-10-24 02:43:52 +00:00
{
2011-11-28 22:44:51 +00:00
mobname = mobname.toLowerCase().trim();
2012-07-22 18:06:01 +00:00
2011-11-28 22:44:51 +00:00
if (!TFM_Util.mobtypes.containsKey(mobname))
{
throw new Exception();
}
2012-07-22 18:06:01 +00:00
2011-11-28 22:44:51 +00:00
return TFM_Util.mobtypes.get(mobname);
2011-10-24 02:43:52 +00:00
}
2011-11-04 23:14:17 +00:00
@Deprecated
2011-11-04 23:14:17 +00:00
private static void copy(InputStream in, OutputStream out) throws IOException
{
byte[] buffer = new byte[1024];
while (true)
{
int readCount = in.read(buffer);
if (readCount < 0)
{
break;
}
out.write(buffer, 0, readCount);
}
}
public static boolean isStopCommand(String command)
2011-11-07 13:11:13 +00:00
{
return STOP_COMMANDS.contains(command.toLowerCase());
2011-11-07 13:11:13 +00:00
}
2013-08-15 21:36:55 +00:00
public static boolean isRemoveCommand(String command)
{
return REMOVE_COMMANDS.contains(command.toLowerCase());
}
2013-08-14 14:01:42 +00:00
public static void autoEject(Player player, String kickMessage)
2011-11-07 13:11:13 +00:00
{
EjectMethod method = EjectMethod.STRIKE_ONE;
String ip = null;
2012-07-22 18:06:01 +00:00
try
{
ip = player.getAddress().getAddress().getHostAddress();
2012-07-22 18:06:01 +00:00
Integer kicks = TFM_Util.ejectTracker.get(ip);
if (kicks == null)
{
kicks = new Integer(0);
}
kicks = new Integer(kicks.intValue() + 1);
2012-07-22 18:06:01 +00:00
TFM_Util.ejectTracker.put(ip, kicks);
if (kicks.intValue() <= 1)
{
method = EjectMethod.STRIKE_ONE;
}
else if (kicks.intValue() == 2)
{
method = EjectMethod.STRIKE_TWO;
}
else if (kicks.intValue() >= 3)
{
method = EjectMethod.STRIKE_THREE;
}
}
catch (Exception ex)
{
}
2012-07-22 18:06:01 +00:00
TFM_Log.info("autoEject -> name: " + player.getName() + " - player ip: " + ip + " - method: " + method.toString());
2013-08-14 14:01:42 +00:00
player.setOp(false);
player.setGameMode(GameMode.SURVIVAL);
player.getInventory().clear();
switch (method)
{
case STRIKE_ONE:
{
2012-09-16 21:25:34 +00:00
Calendar c = new GregorianCalendar();
c.add(Calendar.MINUTE, 1);
Date expires = c.getTime();
2013-08-14 14:01:42 +00:00
TFM_Util.bcastMsg(ChatColor.RED + player.getName() + " has been banned for 1 minute.");
TFM_ServerInterface.banIP(ip, kickMessage, "AutoEject", expires);
2013-08-14 14:01:42 +00:00
TFM_ServerInterface.banUsername(player.getName(), kickMessage, "AutoEject", expires);
player.kickPlayer(kickMessage);
break;
}
case STRIKE_TWO:
{
2012-09-16 21:25:34 +00:00
Calendar c = new GregorianCalendar();
c.add(Calendar.MINUTE, 3);
Date expires = c.getTime();
2013-08-14 14:01:42 +00:00
TFM_Util.bcastMsg(ChatColor.RED + player.getName() + " has been banned for 3 minutes.");
TFM_ServerInterface.banIP(ip, kickMessage, "AutoEject", expires);
2013-08-14 14:01:42 +00:00
TFM_ServerInterface.banUsername(player.getName(), kickMessage, "AutoEject", expires);
player.kickPlayer(kickMessage);
break;
}
case STRIKE_THREE:
{
//Bukkit.banIP(player_ip);
TFM_ServerInterface.banIP(ip, kickMessage, "AutoEject", null);
String[] ipAddressParts = ip.split("\\.");
//Bukkit.banIP();
TFM_ServerInterface.banIP(ipAddressParts[0] + "." + ipAddressParts[1] + ".*.*", kickMessage, "AutoEject", null);
//p.setBanned(true);
2013-08-14 14:01:42 +00:00
TFM_ServerInterface.banUsername(player.getName(), kickMessage, "AutoEject", null);
2012-07-22 18:06:01 +00:00
TFM_Util.bcastMsg(ChatColor.RED + player.getName() + " has been banned.");
2012-07-22 18:06:01 +00:00
2013-08-14 14:01:42 +00:00
player.kickPlayer(kickMessage);
2012-07-22 18:06:01 +00:00
break;
}
}
2011-11-07 13:11:13 +00:00
}
2012-07-22 18:06:01 +00:00
public static Date parseDateOffset(String time)
{
Pattern timePattern = Pattern.compile(
"(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?"
+ "(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?"
+ "(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?"
+ "(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?"
+ "(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?"
+ "(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?"
+ "(?:([0-9]+)\\s*(?:s[a-z]*)?)?", Pattern.CASE_INSENSITIVE);
Matcher m = timePattern.matcher(time);
int years = 0;
int months = 0;
int weeks = 0;
int days = 0;
int hours = 0;
int minutes = 0;
int seconds = 0;
boolean found = false;
while (m.find())
{
if (m.group() == null || m.group().isEmpty())
{
continue;
}
for (int i = 0; i < m.groupCount(); i++)
{
if (m.group(i) != null && !m.group(i).isEmpty())
{
found = true;
break;
}
}
if (found)
{
if (m.group(1) != null && !m.group(1).isEmpty())
{
years = Integer.parseInt(m.group(1));
}
if (m.group(2) != null && !m.group(2).isEmpty())
{
months = Integer.parseInt(m.group(2));
}
if (m.group(3) != null && !m.group(3).isEmpty())
{
weeks = Integer.parseInt(m.group(3));
}
if (m.group(4) != null && !m.group(4).isEmpty())
{
days = Integer.parseInt(m.group(4));
}
if (m.group(5) != null && !m.group(5).isEmpty())
{
hours = Integer.parseInt(m.group(5));
}
if (m.group(6) != null && !m.group(6).isEmpty())
{
minutes = Integer.parseInt(m.group(6));
}
if (m.group(7) != null && !m.group(7).isEmpty())
{
seconds = Integer.parseInt(m.group(7));
}
break;
}
}
if (!found)
{
return null;
}
Calendar c = new GregorianCalendar();
if (years > 0)
{
c.add(Calendar.YEAR, years);
}
if (months > 0)
{
c.add(Calendar.MONTH, months);
}
if (weeks > 0)
{
c.add(Calendar.WEEK_OF_YEAR, weeks);
}
if (days > 0)
{
c.add(Calendar.DAY_OF_MONTH, days);
}
if (hours > 0)
{
c.add(Calendar.HOUR_OF_DAY, hours);
}
if (minutes > 0)
{
c.add(Calendar.MINUTE, minutes);
}
if (seconds > 0)
{
c.add(Calendar.SECOND, seconds);
}
return c.getTime();
}
2012-09-18 00:13:13 +00:00
public static String playerListToNames(Set<OfflinePlayer> players)
{
List<String> names = new ArrayList<String>();
2013-08-14 14:01:42 +00:00
for (OfflinePlayer player : players)
{
names.add(player.getName());
}
return StringUtils.join(names, ", ");
}
@SuppressWarnings("unchecked")
public static Map<String, Boolean> getSavedFlags()
{
Map<String, Boolean> flags = null;
File input = new File(TotalFreedomMod.plugin.getDataFolder(), TotalFreedomMod.SAVED_FLAGS_FILE);
if (input.exists())
{
try
{
FileInputStream fis = new FileInputStream(input);
ObjectInputStream ois = new ObjectInputStream(fis);
flags = (HashMap<String, Boolean>) ois.readObject();
ois.close();
fis.close();
}
catch (Exception ex)
{
TFM_Log.severe(ex);
}
}
return flags;
}
public static boolean getSavedFlag(String flag) throws Exception
{
Boolean flagValue = null;
Map<String, Boolean> flags = TFM_Util.getSavedFlags();
if (flags != null)
{
if (flags.containsKey(flag))
{
flagValue = flags.get(flag);
}
}
if (flagValue != null)
{
return flagValue.booleanValue();
}
else
{
throw new Exception();
}
}
public static void setSavedFlag(String flag, boolean value)
{
Map<String, Boolean> flags = TFM_Util.getSavedFlags();
if (flags == null)
{
flags = new HashMap<String, Boolean>();
}
flags.put(flag, value);
try
{
FileOutputStream fos = new FileOutputStream(new File(TotalFreedomMod.plugin.getDataFolder(), TotalFreedomMod.SAVED_FLAGS_FILE));
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(flags);
oos.close();
fos.close();
}
catch (Exception ex)
{
TFM_Log.severe(ex);
}
}
2012-11-13 01:42:30 +00:00
public static String dateToString(Date date)
{
return new SimpleDateFormat(DATE_STORAGE_FORMAT, Locale.ENGLISH).format(date);
}
public static Date stringToDate(String dateString)
2012-11-13 01:42:30 +00:00
{
try
{
return new SimpleDateFormat(DATE_STORAGE_FORMAT, Locale.ENGLISH).parse(dateString);
2012-11-13 01:42:30 +00:00
}
catch (ParseException pex)
2012-11-13 01:42:30 +00:00
{
return new Date(0L);
}
}
2012-11-18 03:57:24 +00:00
2013-08-28 15:26:08 +00:00
@SuppressWarnings("unchecked")
public static boolean isFromHostConsole(String senderName)
2012-11-18 03:57:24 +00:00
{
return ((List<String>) TFM_ConfigEntry.HOST_SENDER_NAMES.getList()).contains(senderName.toLowerCase());
2012-11-18 03:57:24 +00:00
}
public static List<String> removeDuplicates(List<String> oldList)
{
List<String> newList = new ArrayList<String>();
for (String entry : oldList)
{
if (!newList.contains(entry))
{
newList.add(entry);
}
}
return newList;
}
public static boolean fuzzyIpMatch(String a, String b, int octets)
{
boolean match = true;
String[] aParts = a.split("\\.");
String[] bParts = b.split("\\.");
if (aParts.length != 4 || bParts.length != 4)
{
return false;
}
if (octets > 4)
{
octets = 4;
}
else if (octets < 1)
{
octets = 1;
}
for (int i = 0; i < octets && i < 4; i++)
{
if (aParts[i].equals("*") || bParts[i].equals("*"))
{
continue;
}
if (!aParts[i].equals(bParts[i]))
{
match = false;
break;
}
}
return match;
}
public static int replaceBlocks(Location center, Material fromMaterial, Material toMaterial, int radius)
{
int affected = 0;
Block centerBlock = center.getBlock();
for (int xOffset = -radius; xOffset <= radius; xOffset++)
{
for (int yOffset = -radius; yOffset <= radius; yOffset++)
{
for (int zOffset = -radius; zOffset <= radius; zOffset++)
{
Block block = centerBlock.getRelative(xOffset, yOffset, zOffset);
if (block.getType().equals(fromMaterial))
{
if (block.getLocation().distanceSquared(center) < (radius * radius))
{
block.setType(toMaterial);
affected++;
}
}
}
}
}
return affected;
}
public static void downloadFile(String url, File output) throws java.lang.Exception
{
downloadFile(url, output, false);
}
public static void downloadFile(String url, File output, boolean verbose) throws java.lang.Exception
{
2013-12-01 14:18:05 +00:00
final URL website = new URL(url);
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream(output);
fos.getChannel().transferFrom(rbc, 0, 1 << 24);
fos.close();
if (verbose)
{
TFM_Log.info("Downloaded " + url + " to " + output.toString() + ".");
}
}
2012-12-02 17:27:10 +00:00
public static void adminChatMessage(CommandSender sender, String message, boolean senderIsConsole)
{
2013-12-03 15:21:58 +00:00
String name = sender.getName() + " " + TFM_PlayerRank.fromSender(sender).getPrefix() + ChatColor.WHITE;
TFM_Log.info("[ADMIN] " + name + ": " + message);
2012-12-02 17:27:10 +00:00
2013-08-14 14:01:42 +00:00
for (Player player : Bukkit.getOnlinePlayers())
{
2013-08-14 14:01:42 +00:00
if (TFM_SuperadminList.isUserSuperadmin(player))
{
2013-08-14 14:01:42 +00:00
player.sendMessage("[" + ChatColor.AQUA + "ADMIN" + ChatColor.WHITE + "] " + ChatColor.DARK_RED + name + ": " + ChatColor.AQUA + message);
}
}
}
2013-07-02 18:31:22 +00:00
//getField: Borrowed from WorldEdit
@SuppressWarnings("unchecked")
public static <T> T getField(Object from, String name)
{
Class<?> checkClass = from.getClass();
do
{
try
{
Field field = checkClass.getDeclaredField(name);
field.setAccessible(true);
return (T) field.get(from);
}
catch (NoSuchFieldException ex)
{
}
catch (IllegalAccessException ex)
{
}
}
while (checkClass.getSuperclass() != Object.class && ((checkClass = checkClass.getSuperclass()) != null));
return null;
}
public static ChatColor randomChatColor()
{
return CHAT_COLOR_POOL.get(RANDOM.nextInt(CHAT_COLOR_POOL.size()));
}
2013-08-12 10:26:49 +00:00
public static String colorize(String string)
2013-08-12 10:26:49 +00:00
{
return ChatColor.translateAlternateColorCodes('&', string);
}
2013-09-24 12:05:48 +00:00
public static class TFM_EntityWiper
{
private static final List<Class<? extends Entity>> WIPEABLES = new ArrayList<Class<? extends Entity>>();
static
{
WIPEABLES.add(EnderCrystal.class);
WIPEABLES.add(EnderSignal.class);
WIPEABLES.add(ExperienceOrb.class);
WIPEABLES.add(Projectile.class);
WIPEABLES.add(FallingBlock.class);
WIPEABLES.add(Firework.class);
WIPEABLES.add(Item.class);
}
private TFM_EntityWiper()
{
throw new AssertionError();
}
private static boolean canWipe(Entity entity, boolean wipeExplosives, boolean wipeVehicles)
{
if (wipeExplosives)
{
if (Explosive.class.isAssignableFrom(entity.getClass()))
{
return true;
}
}
if (wipeVehicles)
{
if (Boat.class.isAssignableFrom(entity.getClass()))
{
return true;
}
else if (Minecart.class.isAssignableFrom(entity.getClass()))
{
return true;
}
}
Iterator<Class<? extends Entity>> it = WIPEABLES.iterator();
while (it.hasNext())
{
if (it.next().isAssignableFrom(entity.getClass()))
{
return true;
}
}
return false;
}
public static int wipeEntities(boolean wipeExplosives, boolean wipeVehicles)
{
int removed = 0;
Iterator<World> worlds = Bukkit.getWorlds().iterator();
while (worlds.hasNext())
{
Iterator<Entity> entities = worlds.next().getEntities().iterator();
while (entities.hasNext())
{
Entity entity = entities.next();
if (canWipe(entity, wipeExplosives, wipeVehicles))
{
entity.remove();
removed++;
}
}
}
return removed;
}
}
enum EjectMethod
{
STRIKE_ONE, STRIKE_TWO, STRIKE_THREE;
}
2011-10-13 23:07:52 +00:00
}