PlotSquared/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Trim.java

218 lines
9.7 KiB
Java
Raw Normal View History

2015-01-07 14:29:20 +01:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// PlotSquared - A plot manager and world generator for the Bukkit API /
// Copyright (c) 2014 IntellectualSites/IntellectualCrafters /
// /
// This program is free software; you can redistribute it and/or modify /
// it under the terms of the GNU General Public License as published by /
// the Free Software Foundation; either version 3 of the License, or /
// (at your option) any later version. /
// /
// This program is distributed in the hope that it will be useful, /
// but WITHOUT ANY WARRANTY; without even the implied warranty of /
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the /
// GNU General Public License for more details. /
// /
// You should have received a copy of the GNU General Public License /
// along with this program; if not, write to the Free Software Foundation, /
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA /
// /
// You can contact us via: support@intellectualsites.com /
////////////////////////////////////////////////////////////////////////////////////////////////////
package com.intellectualcrafters.plot.commands;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.ArrayList;
import java.util.Set;
2015-01-13 17:38:15 +01:00
import org.bukkit.Bukkit;
import org.bukkit.Chunk;
import org.bukkit.World;
import org.bukkit.entity.Player;
2015-01-07 14:29:20 +01:00
import com.intellectualcrafters.plot.PlotMain;
import com.intellectualcrafters.plot.config.C;
import com.intellectualcrafters.plot.generator.HybridPlotManager;
import com.intellectualcrafters.plot.generator.HybridPlotWorld;
import com.intellectualcrafters.plot.object.ChunkLoc;
import com.intellectualcrafters.plot.object.Plot;
import com.intellectualcrafters.plot.object.PlotId;
2015-01-09 15:05:10 +01:00
import com.intellectualcrafters.plot.util.ChunkManager;
2015-02-04 06:41:23 +01:00
import com.intellectualcrafters.plot.util.ExpireManager;
2015-01-07 14:29:20 +01:00
import com.intellectualcrafters.plot.util.PlayerFunctions;
2015-01-09 15:05:10 +01:00
import com.intellectualcrafters.plot.util.TaskManager;
2015-01-07 14:29:20 +01:00
public class Trim extends SubCommand {
2015-01-07 14:29:20 +01:00
2015-01-07 16:18:07 +01:00
public static boolean TASK = false;
private static int TASK_ID = 0;
2015-01-07 14:29:20 +01:00
public Trim() {
super("trim", "plots.admin", "Delete unmodified portions of your plotworld", "trim", "", CommandCategory.DEBUG, false);
}
public PlotId getId(String id) {
try {
String[] split = id.split(";");
return new PlotId(Integer.parseInt(split[0]), Integer.parseInt(split[1]));
}
catch (Exception e) {
return null;
}
}
@Override
public boolean execute(final Player plr, final String... args) {
if (plr != null) {
PlayerFunctions.sendMessage(plr, (C.NOT_CONSOLE));
return false;
}
if (args.length == 1) {
String arg = args[0].toLowerCase();
PlotId id = getId(arg);
if (id != null) {
PlayerFunctions.sendMessage(plr, "/plot trim x;z &l<world>");
return false;
}
if (arg.equals("all")) {
PlayerFunctions.sendMessage(plr, "/plot trim all &l<world>");
return false;
}
PlayerFunctions.sendMessage(plr, C.TRIM_SYNTAX);
return false;
}
if (args.length != 2) {
PlayerFunctions.sendMessage(plr, C.TRIM_SYNTAX);
return false;
}
String arg = args[0].toLowerCase();
2015-01-07 15:10:22 +01:00
if (!arg.equals("all")) {
PlayerFunctions.sendMessage(plr, C.TRIM_SYNTAX);
return false;
}
2015-01-07 16:18:07 +01:00
final World world = Bukkit.getWorld(args[1]);
if (world == null || PlotMain.getWorldSettings(world) == null) {
PlayerFunctions.sendMessage(plr, C.NOT_VALID_WORLD);
2015-01-07 15:10:22 +01:00
return false;
}
2015-01-07 16:18:07 +01:00
if (runTrimTask(world)) {
sendMessage(C.TRIM_START.s());
return true;
2015-01-07 14:29:20 +01:00
}
2015-01-07 16:18:07 +01:00
sendMessage(C.TRIM_IN_PROGRESS.s());
return false;
2015-01-07 14:29:20 +01:00
}
2015-01-07 16:18:07 +01:00
public boolean runTrimTask(final World world) {
if (Trim.TASK) {
return false;
}
Trim.TASK = true;
2015-01-09 15:05:10 +01:00
TaskManager.runTask(new Runnable() {
2015-01-07 16:18:07 +01:00
@Override
public void run() {
final HybridPlotManager manager = (HybridPlotManager) PlotMain.getPlotManager(world);
final HybridPlotWorld plotworld = (HybridPlotWorld) PlotMain.getWorldSettings(world);
final String worldname = world.getName();
String directory = new File(".").getAbsolutePath() + File.separator + world.getName() + File.separator + "region";
File folder = new File(directory);
File[] regionFiles = folder.listFiles();
ArrayList<ChunkLoc> chunkChunks = new ArrayList<>();
for (File file : regionFiles) {
String name = file.getName();
if (name.endsWith("mca")) {
if (file.getTotalSpace() <= 8192) {
file.delete();
}
else {
boolean delete = false;
Path path = Paths.get(file.getPath());
try {
BasicFileAttributes attr = Files.readAttributes(path, BasicFileAttributes.class);
long creation = attr.creationTime().toMillis();
long modification = file.lastModified();
long diff = Math.abs(creation - modification);
if (diff < 10000) {
PlotMain.sendConsoleSenderMessage("&6 - Deleted region "+name+" (max 256 chunks)");
file.delete();
delete = true;
}
} catch (Exception e) {
}
if (!delete) {
String[] split = name.split("\\.");
try {
int x = Integer.parseInt(split[1]);
int z = Integer.parseInt(split[2]);
ChunkLoc loc = new ChunkLoc(x, z);
chunkChunks.add(loc);
}
catch (Exception e) { }
}
}
}
}
2015-02-04 06:41:23 +01:00
final Set<Plot> plots = ExpireManager.getOldPlots(world.getName()).keySet();
2015-01-07 16:18:07 +01:00
Trim.TASK_ID = Bukkit.getScheduler().scheduleSyncRepeatingTask(PlotMain.getMain(), new Runnable() {
@Override
public void run() {
if (manager != null && plots.size() > 0) {
2015-02-04 06:41:23 +01:00
Plot plot = plots.iterator().next();
2015-01-07 16:18:07 +01:00
if (plot.hasOwner()) {
2015-02-05 10:24:07 +01:00
HybridPlotManager.checkModified(plot, 0);
2015-01-07 16:18:07 +01:00
}
if (plot.owner == null || !HybridPlotManager.checkModified(plot, plotworld.REQUIRED_CHANGES)) {
PlotMain.removePlot(worldname, plot.id, true);
}
plots.remove(0);
}
else {
trimPlots(world);
Trim.TASK = false;
sendMessage("Done!");
Bukkit.getScheduler().cancelTask(Trim.TASK_ID);
return;
}
}
}, 1, 1);
}
});
return true;
}
private void trimPlots(World world) {
String worldname = world.getName();
2015-01-09 15:05:10 +01:00
ArrayList<ChunkLoc> chunks = ChunkManager.getChunkChunks(world);
2015-01-07 16:18:07 +01:00
for (ChunkLoc loc : chunks) {
int sx = loc.x << 4;
int sz = loc.z << 4;
boolean delete = true;
loop:
for (int x = sx; x < sx + 16; x++) {
for (int z = sz; z < sz + 16; z++) {
Chunk chunk = world.getChunkAt(x, z);
2015-01-09 15:05:10 +01:00
if (ChunkManager.hasPlot(world, chunk)) {
2015-01-07 16:18:07 +01:00
delete = false;
break loop;
}
}
}
if (delete) {
2015-01-09 15:05:10 +01:00
ChunkManager.deleteRegionFile(worldname, loc);
2015-01-07 16:18:07 +01:00
}
2015-01-07 15:10:22 +01:00
}
2015-01-07 16:18:07 +01:00
}
2015-01-07 14:29:20 +01:00
private void sendMessage(final String message) {
PlotMain.sendConsoleSenderMessage("&3PlotSquared -> World trim&8: " + message);
}
}