AdminWorld tweaks.

This commit is contained in:
Steven Lawson 2013-08-12 21:33:21 -04:00
parent 0f6b053727
commit eb4622fc28
6 changed files with 36 additions and 23 deletions

View File

@ -1,5 +1,5 @@
#Mon, 12 Aug 2013 21:33:34 +0200 #Mon, 12 Aug 2013 21:30:50 -0400
program.VERSION=2.22 program.VERSION=2.22
program.BUILDNUM=411 program.BUILDNUM=426
program.BUILDDATE=08/12/2013 09\:33 PM program.BUILDDATE=08/12/2013 09\:30 PM

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit! #Build Number for ANT. Do not edit!
#Mon Aug 12 21:33:34 CEST 2013 #Mon Aug 12 21:30:50 EDT 2013
build.number=412 build.number=427

View File

@ -11,7 +11,6 @@ import org.bukkit.entity.Player;
@CommandParameters(description = "Shows all IPs registered to a player", usage = "/<command> <player>") @CommandParameters(description = "Shows all IPs registered to a player", usage = "/<command> <player>")
public class Command_findip extends TFM_Command public class Command_findip extends TFM_Command
{ {
@Override @Override
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
{ {
@ -19,7 +18,7 @@ public class Command_findip extends TFM_Command
{ {
return false; return false;
} }
final Player p; final Player p;
try try
{ {
@ -30,10 +29,9 @@ public class Command_findip extends TFM_Command
playerMsg(ex.getMessage()); playerMsg(ex.getMessage());
return true; return true;
} }
playerMsg("Player IPs: " + StringUtils.join(TFM_UserList.getInstance(TotalFreedomMod.plugin).getEntry(p).getIpAddresses(), ", ")); playerMsg("Player IPs: " + StringUtils.join(TFM_UserList.getInstance(TotalFreedomMod.plugin).getEntry(p).getIpAddresses(), ", "));
return true; return true;
} }
} }

View File

@ -17,9 +17,14 @@ import org.bukkit.scheduler.BukkitRunnable;
public class TFM_AdminWorld public class TFM_AdminWorld
{ {
private static final long CACHE_CLEAR_FREQUENCY = 30L * 1000L; //30 seconds, milliseconds
private static final long TP_COOLDOWN_TIME = 500L; //0.5 seconds, milliseconds
private static final String GENERATION_PARAMETERS = "16,stone,32,dirt,1,grass"; private static final String GENERATION_PARAMETERS = "16,stone,32,dirt,1,grass";
private static final String ADMINWORLD_NAME = "adminworld"; private static final String ADMINWORLD_NAME = "adminworld";
//
private final Map<Player, Long> teleportCooldown = new HashMap<Player, Long>();
private final Map<CommandSender, Boolean> superadminCache = new HashMap<CommandSender, Boolean>(); private final Map<CommandSender, Boolean> superadminCache = new HashMap<CommandSender, Boolean>();
//
private Long cacheLastCleared = null; private Long cacheLastCleared = null;
private World adminWorld = null; private World adminWorld = null;
@ -34,9 +39,7 @@ public class TFM_AdminWorld
return; return;
} }
loadAdminWorld(); player.teleport(getAdminWorld().getSpawnLocation());
player.teleport(adminWorld.getSpawnLocation());
} }
public boolean validateMovement(PlayerMoveEvent event) public boolean validateMovement(PlayerMoveEvent event)
@ -48,14 +51,21 @@ public class TFM_AdminWorld
final Player player = event.getPlayer(); final Player player = event.getPlayer();
if (!cachedIsUserSuperadmin(player)) if (!cachedIsUserSuperadmin(player))
{ {
new BukkitRunnable() Long lastTP = teleportCooldown.get(player);
long currentTimeMillis = System.currentTimeMillis();
if (lastTP == null || lastTP.longValue() + TP_COOLDOWN_TIME <= currentTimeMillis)
{ {
@Override teleportCooldown.put(player, currentTimeMillis);
public void run() TFM_Util.bcastMsg(player.getName() + " attempted to access the AdminWorld.", ChatColor.RED);
new BukkitRunnable()
{ {
player.teleport(Bukkit.getWorlds().get(0).getSpawnLocation()); @Override
} public void run()
}.runTaskLater(TotalFreedomMod.plugin, 20L); {
player.teleport(Bukkit.getWorlds().get(0).getSpawnLocation());
}
}.runTaskLater(TotalFreedomMod.plugin, 1L);
}
event.setCancelled(true); event.setCancelled(true);
return false; return false;
} }
@ -64,23 +74,26 @@ public class TFM_AdminWorld
return true; return true;
} }
public void loadAdminWorld() public World getAdminWorld()
{ {
if (adminWorld == null || !Bukkit.getWorlds().contains(adminWorld)) if (adminWorld == null || !Bukkit.getWorlds().contains(adminWorld))
{ {
generateWorld(); generateWorld();
} }
return adminWorld;
} }
public World getAdminWorld() public void wipeSuperadminCache()
{ {
return adminWorld; cacheLastCleared = System.currentTimeMillis();
superadminCache.clear();
} }
private boolean cachedIsUserSuperadmin(CommandSender user) private boolean cachedIsUserSuperadmin(CommandSender user)
{ {
long currentTimeMillis = System.currentTimeMillis(); long currentTimeMillis = System.currentTimeMillis();
if (cacheLastCleared == null || cacheLastCleared.longValue() >= currentTimeMillis + (10L * 1000L)) // Wipe every 10 seconds. if (cacheLastCleared == null || cacheLastCleared.longValue() + CACHE_CLEAR_FREQUENCY <= currentTimeMillis)
{ {
cacheLastCleared = currentTimeMillis; cacheLastCleared = currentTimeMillis;
superadminCache.clear(); superadminCache.clear();

View File

@ -121,6 +121,8 @@ public class TFM_SuperadminList
superadminNames = TFM_Util.removeDuplicates(superadminNames); superadminNames = TFM_Util.removeDuplicates(superadminNames);
superadminIPs = TFM_Util.removeDuplicates(superadminIPs); superadminIPs = TFM_Util.removeDuplicates(superadminIPs);
seniorAdminNames = TFM_Util.removeDuplicates(seniorAdminNames); seniorAdminNames = TFM_Util.removeDuplicates(seniorAdminNames);
TFM_AdminWorld.getInstance().wipeSuperadminCache();
} }
public static void saveSuperadminList() public static void saveSuperadminList()

View File

@ -84,7 +84,7 @@ public class TotalFreedomMod extends JavaPlugin
TFM_Util.generateFlatlands(flatlandsGenerationParams); TFM_Util.generateFlatlands(flatlandsGenerationParams);
} }
TFM_AdminWorld.getInstance().loadAdminWorld(); TFM_AdminWorld.getInstance().getAdminWorld();
if (disableWeather) if (disableWeather)
{ {