ImageOnMap/src/main/java/fr/moribus/imageonmap/commands/maptool/GiveCommand.java

154 lines
5.9 KiB
Java
Raw Normal View History

2020-07-23 11:06:53 +02:00
/*
* Copyright or © or Copr. Moribus (2013)
* Copyright or © or Copr. ProkopyL <prokopylmc@gmail.com> (2015)
* Copyright or © or Copr. Amaury Carrade <amaury@carrade.eu> (2016 2021)
* Copyright or © or Copr. Vlammar <valentin.jabre@gmail.com> (2019 2021)
2020-07-23 11:06:53 +02:00
*
* This software is a computer program whose purpose is to allow insertion of
* custom images in a Minecraft world.
*
* This software is governed by the CeCILL license under French law and
2020-07-23 11:06:53 +02:00
* abiding by the rules of distribution of free software. You can use,
* modify and/ or redistribute the software under the terms of the CeCILL
2020-07-23 11:06:53 +02:00
* license as circulated by CEA, CNRS and INRIA at the following URL
* "http://www.cecill.info".
*
* As a counterpart to the access to the source code and rights to copy,
* modify and redistribute granted by the license, users are provided only
* with a limited warranty and the software's author, the holder of the
* economic rights, and the successive licensors have only limited
* liability.
*
* In this respect, the user's attention is drawn to the risks associated
* with loading, using, modifying and/or developing or reproducing the
* software by the user in light of its specific status of free software,
* that may mean that it is complicated to manipulate, and that also
* therefore means that it is reserved for developers and experienced
* professionals having in-depth computer knowledge. Users are therefore
* encouraged to load and test the software's suitability as regards their
* requirements in conditions enabling the security of their systems and/or
* data to be ensured and, more generally, to use and operate it in the
* same conditions as regards security.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms.
2020-07-23 11:06:53 +02:00
*/
package fr.moribus.imageonmap.commands.maptool;
2020-12-13 15:23:02 +01:00
import fr.moribus.imageonmap.ImageOnMap;
2020-07-23 11:06:53 +02:00
import fr.moribus.imageonmap.Permissions;
import fr.moribus.imageonmap.commands.IoMCommand;
import fr.moribus.imageonmap.map.ImageMap;
import fr.moribus.imageonmap.map.MapManager;
2020-12-10 22:13:05 +01:00
import fr.zcraft.quartzlib.components.commands.CommandException;
import fr.zcraft.quartzlib.components.commands.CommandInfo;
import fr.zcraft.quartzlib.components.i18n.I;
2020-12-13 15:23:02 +01:00
import fr.zcraft.quartzlib.tools.mojang.UUIDFetcher;
import java.io.IOException;
import java.util.ArrayList;
2020-12-10 22:13:05 +01:00
import java.util.UUID;
2020-07-23 11:06:53 +02:00
import org.bukkit.Bukkit;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
2020-08-21 01:15:03 +02:00
2021-02-07 12:31:17 +01:00
@CommandInfo(name = "give", usageParameters = "<player name> [playerFrom]:<map name>")
2020-08-21 01:15:03 +02:00
public class GiveCommand extends IoMCommand {
2020-12-10 22:13:05 +01:00
2020-07-23 11:06:53 +02:00
@Override
2020-08-21 01:15:03 +02:00
protected void run() throws CommandException {
2020-12-10 22:13:05 +01:00
if (args.length < 2) {
throwInvalidArgument(I.t("You must give a valid player name and a map name."));
2021-02-10 22:22:30 +01:00
return;
2020-12-10 22:13:05 +01:00
}
2020-07-23 11:06:53 +02:00
2020-12-13 15:23:02 +01:00
ArrayList<String> arguments = getArgs();
2021-01-11 22:52:07 +01:00
2020-12-13 15:23:02 +01:00
if (arguments.size() > 3) {
throwInvalidArgument(I.t("Too many parameters!"));
2020-12-13 15:23:02 +01:00
return;
}
if (arguments.size() < 1) {
throwInvalidArgument(I.t("Too few parameters!"));
2020-12-13 15:23:02 +01:00
return;
}
final String mapName;
final String from;
final String playerName;
2021-01-11 22:52:07 +01:00
final Player playerSender;
Player playerSender1;
try {
playerSender1 = playerSender();
} catch (CommandException ignored) {
if (arguments.size() == 2) {
throwInvalidArgument(I.t("Player name is required from the console"));
2021-01-11 22:52:07 +01:00
}
playerSender1 = null;
}
playerSender = playerSender1;
2020-12-13 15:23:02 +01:00
if (arguments.size() == 2) {
2021-01-11 22:52:07 +01:00
from = playerSender.getName();
2020-12-13 15:23:02 +01:00
playerName = arguments.get(0);
mapName = arguments.get(1);
} else {
if (arguments.size() == 3) {
2021-01-11 22:52:07 +01:00
from = arguments.get(1);
playerName = arguments.get(0);
2020-12-13 15:23:02 +01:00
mapName = arguments.get(2);
} else {
from = "";
playerName = "";
mapName = "";
2020-07-23 11:06:53 +02:00
}
2020-12-13 15:23:02 +01:00
}
2021-02-10 22:22:30 +01:00
final Player sender = playerSender();
2020-12-13 15:23:02 +01:00
//TODO passer en static
2021-01-11 22:52:07 +01:00
ImageOnMap.getPlugin().getCommandWorker().offlineNameFetch(from, uuid -> {
2020-12-13 15:23:02 +01:00
if (uuid == null) {
warning(sender, I.t("The player {0} does not exist.", from));
2020-12-13 15:23:02 +01:00
return;
2020-07-23 11:06:53 +02:00
}
2020-12-13 15:23:02 +01:00
final ImageMap map = MapManager.getMap(uuid, mapName);
2020-07-23 11:06:53 +02:00
if (map == null) {
warning(sender, I.t("This map does not exist."));
2020-12-13 15:23:02 +01:00
return;
2020-07-23 11:06:53 +02:00
}
2020-12-13 15:23:02 +01:00
try {
UUID uuid2 = UUIDFetcher.fetch(playerName);
if (uuid2 == null) {
warning(sender, I.t("The player {0} does not exist.", playerName));
2020-12-13 15:23:02 +01:00
return;
}
2021-02-11 00:29:18 +01:00
if (Bukkit.getPlayer((uuid2)) == null || !Bukkit.getPlayer((uuid2)).isOnline()) {
warning(sender, I.t("The player {0} is not connected.", playerName));
return;
}
2021-02-10 22:22:30 +01:00
if (Bukkit.getPlayer((uuid2)) != null && Bukkit.getPlayer((uuid2)).isOnline()
&& map.give(Bukkit.getPlayer(uuid2))) {
2020-12-13 15:23:02 +01:00
info(I.t("The requested map was too big to fit in your inventory."));
info(I.t("Use '/maptool getremaining' to get the remaining maps."));
}
} catch (IOException | InterruptedException e) {
2021-02-10 22:22:30 +01:00
try {
throwInvalidArgument(I.t("The player {0} does not exist.", playerName));
} catch (CommandException ex) {
ex.printStackTrace();
}
2020-12-13 15:23:02 +01:00
return;
}
});
2020-07-23 11:06:53 +02:00
}
@Override
2020-08-21 01:15:03 +02:00
public boolean canExecute(CommandSender sender) {
2020-07-23 11:06:53 +02:00
return Permissions.GIVE.grantedTo(sender);
}
}