mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-03-13 05:19:44 +01:00
204 lines
8.0 KiB
Java
204 lines
8.0 KiB
Java
package com.intellectualcrafters.plot.commands;
|
|
|
|
import com.intellectualcrafters.plot.PS;
|
|
import com.intellectualcrafters.plot.config.C;
|
|
import com.intellectualcrafters.plot.config.Settings;
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
import com.intellectualcrafters.plot.object.PlotId;
|
|
import com.intellectualcrafters.plot.object.PlotPlayer;
|
|
import com.intellectualcrafters.plot.object.RunnableVal;
|
|
import com.intellectualcrafters.plot.util.MainUtil;
|
|
import com.intellectualcrafters.plot.util.Permissions;
|
|
import com.intellectualcrafters.plot.util.SchematicHandler;
|
|
import com.intellectualcrafters.plot.util.SchematicHandler.Schematic;
|
|
import com.intellectualcrafters.plot.util.TaskManager;
|
|
import com.plotsquared.general.commands.CommandDeclaration;
|
|
|
|
import java.net.MalformedURLException;
|
|
import java.net.URL;
|
|
import java.util.List;
|
|
|
|
@CommandDeclaration(
|
|
command = "load",
|
|
aliases = { "restore" },
|
|
category = CommandCategory.SCHEMATIC,
|
|
requiredType = RequiredType.NONE,
|
|
description = "Load your plot",
|
|
permission = "plots.load",
|
|
usage = "/plot restore")
|
|
public class Load extends SubCommand {
|
|
|
|
@Override
|
|
public boolean onCommand(final PlotPlayer plr, final String[] args) {
|
|
|
|
if (!Settings.METRICS) {
|
|
MainUtil.sendMessage(plr, "&cPlease enable metrics in order to use this command.\n&7 - Or host it yourself if you don't like the free service");
|
|
return false;
|
|
}
|
|
final String world = plr.getLocation().getWorld();
|
|
if (!PS.get().hasPlotArea(world)) {
|
|
return !sendMessage(plr, C.NOT_IN_PLOT_WORLD);
|
|
}
|
|
final Plot plot = plr.getCurrentPlot();
|
|
if (plot == null) {
|
|
return !sendMessage(plr, C.NOT_IN_PLOT);
|
|
}
|
|
if (!plot.hasOwner()) {
|
|
MainUtil.sendMessage(plr, C.PLOT_UNOWNED);
|
|
return false;
|
|
}
|
|
if (!plot.isOwner(plr.getUUID()) && !Permissions.hasPermission(plr, "plots.admin.command.load")) {
|
|
MainUtil.sendMessage(plr, C.NO_PLOT_PERMS);
|
|
return false;
|
|
}
|
|
if (plot.getRunning() > 0) {
|
|
MainUtil.sendMessage(plr, C.WAIT_FOR_TIMER);
|
|
return false;
|
|
}
|
|
|
|
if (args.length != 0) {
|
|
if (args.length == 1) {
|
|
final List<String> schematics = (List<String>) plr.getMeta("plot_schematics");
|
|
if (schematics == null) {
|
|
// No schematics found:
|
|
MainUtil.sendMessage(plr, C.LOAD_NULL);
|
|
return false;
|
|
}
|
|
String schem;
|
|
try {
|
|
schem = schematics.get(Integer.parseInt(args[0]) - 1);
|
|
} catch (final Exception e) {
|
|
// use /plot load <index>
|
|
MainUtil.sendMessage(plr, C.NOT_VALID_NUMBER, "(1, " + schematics.size() + ")");
|
|
return false;
|
|
}
|
|
final URL url;
|
|
try {
|
|
url = new URL(Settings.WEB_URL + "saves/" + plr.getUUID() + "/" + schem + ".schematic");
|
|
} catch (final MalformedURLException e) {
|
|
e.printStackTrace();
|
|
MainUtil.sendMessage(plr, C.LOAD_FAILED);
|
|
return false;
|
|
}
|
|
plot.addRunning();
|
|
MainUtil.sendMessage(plr, C.GENERATING_COMPONENT);
|
|
TaskManager.runTaskAsync(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
final Schematic schematic = SchematicHandler.manager.getSchematic(url);
|
|
if (schematic == null) {
|
|
plot.removeRunning();
|
|
sendMessage(plr, C.SCHEMATIC_INVALID, "non-existent or not in gzip format");
|
|
return;
|
|
}
|
|
SchematicHandler.manager.paste(schematic, plot, 0, 0, new RunnableVal<Boolean>() {
|
|
@Override
|
|
public void run(Boolean value) {
|
|
plot.removeRunning();
|
|
if (value) {
|
|
sendMessage(plr, C.SCHEMATIC_PASTE_SUCCESS);
|
|
} else {
|
|
sendMessage(plr, C.SCHEMATIC_PASTE_FAILED);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
});
|
|
return true;
|
|
}
|
|
plot.removeRunning();
|
|
MainUtil.sendMessage(plr, C.COMMAND_SYNTAX, "/plot load <index>");
|
|
return false;
|
|
}
|
|
|
|
// list schematics
|
|
|
|
final List<String> schematics = (List<String>) plr.getMeta("plot_schematics");
|
|
if (schematics == null) {
|
|
plot.addRunning();
|
|
TaskManager.runTaskAsync(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
final List<String> schematics = SchematicHandler.manager.getSaves(plr.getUUID());
|
|
plot.removeRunning();
|
|
if ((schematics == null) || (schematics.isEmpty())) {
|
|
MainUtil.sendMessage(plr, C.LOAD_FAILED);
|
|
return;
|
|
}
|
|
plr.setMeta("plot_schematics", schematics);
|
|
displaySaves(plr, 0);
|
|
}
|
|
});
|
|
} else {
|
|
displaySaves(plr, 0);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public void displaySaves(final PlotPlayer player, final int page) {
|
|
final List<String> schematics = (List<String>) player.getMeta("plot_schematics");
|
|
for (int i = 0; i < Math.min(schematics.size(), 32); i++) {
|
|
try {
|
|
final String schem = schematics.get(i);
|
|
final String[] split = schem.split("_");
|
|
if (split.length != 6) {
|
|
continue;
|
|
}
|
|
final String time = secToTime((System.currentTimeMillis() / 1000) - (Long.parseLong(split[0])));
|
|
final String world = split[1];
|
|
final PlotId id = PlotId.fromString(split[2] + ";" + split[3]);
|
|
final String size = split[4];
|
|
final String server = split[5].replaceAll(".schematic", "");
|
|
String color;
|
|
if (PS.get().IMP.getServerName().replaceAll("[^A-Za-z0-9]", "").equals(server)) {
|
|
color = "$4";
|
|
} else {
|
|
color = "$1";
|
|
}
|
|
MainUtil.sendMessage(player, "$3[$2" + (i + 1) + "$3] " + color + time + "$3 | " + color + world + ";" + id + "$3 | " + color + size + "x" + size);
|
|
} catch (final Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
MainUtil.sendMessage(player, C.LOAD_LIST);
|
|
}
|
|
|
|
public String secToTime(long time) {
|
|
final StringBuilder toreturn = new StringBuilder();
|
|
int years = 0;
|
|
int weeks = 0;
|
|
int days = 0;
|
|
int hours = 0;
|
|
int minutes = 0;
|
|
if (time >= 33868800) {
|
|
years = (int) (time / 33868800);
|
|
time -= years * 33868800;
|
|
toreturn.append(years + "y ");
|
|
}
|
|
if (time >= 604800) {
|
|
weeks = (int) (time / 604800);
|
|
time -= weeks * 604800;
|
|
toreturn.append(weeks + "w ");
|
|
}
|
|
if (time >= 86400) {
|
|
days = (int) (time / 86400);
|
|
time -= days * 86400;
|
|
toreturn.append(days + "d ");
|
|
}
|
|
if (time >= 3600) {
|
|
hours = (int) (time / 3600);
|
|
time -= hours * 3600;
|
|
toreturn.append(hours + "h ");
|
|
}
|
|
if (time >= 60) {
|
|
minutes = (int) (time / 60);
|
|
time -= minutes * 60;
|
|
toreturn.append(minutes + "m ");
|
|
}
|
|
if (toreturn.equals("") || (time > 0)) {
|
|
toreturn.append((time) + "s ");
|
|
}
|
|
return toreturn.toString().trim();
|
|
}
|
|
}
|