2021-01-03 07:21:15 +00:00
|
|
|
package dev.plex.command.impl;
|
2020-11-06 03:50:16 +00:00
|
|
|
|
2022-01-04 03:04:39 +00:00
|
|
|
import com.google.common.collect.ImmutableList;
|
|
|
|
import dev.plex.command.PlexCommand;
|
2021-01-03 07:21:15 +00:00
|
|
|
import dev.plex.command.annotation.CommandParameters;
|
|
|
|
import dev.plex.command.annotation.CommandPermissions;
|
|
|
|
import dev.plex.command.exception.CommandFailException;
|
|
|
|
import dev.plex.command.source.RequiredCommandSource;
|
|
|
|
import dev.plex.rank.enums.Rank;
|
|
|
|
import dev.plex.util.PlexUtils;
|
2022-01-27 21:23:01 +00:00
|
|
|
import java.util.List;
|
2022-01-27 05:28:30 +00:00
|
|
|
import net.kyori.adventure.text.Component;
|
2020-11-06 03:50:16 +00:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.GameMode;
|
2022-01-27 05:28:30 +00:00
|
|
|
import org.bukkit.command.CommandSender;
|
2020-11-06 03:50:16 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2022-01-27 09:00:50 +00:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
2020-11-06 03:50:16 +00:00
|
|
|
|
2022-01-30 01:08:07 +00:00
|
|
|
@CommandPermissions(level = Rank.OP, permission = "plex.gamemode.adventure", source = RequiredCommandSource.ANY)
|
2022-01-27 05:28:30 +00:00
|
|
|
@CommandParameters(name = "adventure", aliases = "gma", description = "Set your own or another player's gamemode to adventure mode")
|
2020-11-06 03:50:16 +00:00
|
|
|
public class AdventureCMD extends PlexCommand
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
2022-01-27 05:28:30 +00:00
|
|
|
public Component execute(CommandSender sender, String[] args)
|
2020-11-06 03:50:16 +00:00
|
|
|
{
|
2022-01-30 01:08:07 +00:00
|
|
|
Player player = (Player) sender;
|
2020-11-06 03:50:16 +00:00
|
|
|
if (args.length == 0)
|
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
if (isConsole(sender))
|
2020-11-06 03:50:16 +00:00
|
|
|
{
|
|
|
|
throw new CommandFailException("You must define a player when using the console!");
|
|
|
|
}
|
2022-01-27 09:00:50 +00:00
|
|
|
player.setGameMode(GameMode.ADVENTURE);
|
|
|
|
return tl("gameModeSetTo", "adventure");
|
2020-11-06 03:50:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 01:08:07 +00:00
|
|
|
if (checkRank(player, Rank.ADMIN, "plex.gamemode.adventure.others"))
|
2020-11-06 03:50:16 +00:00
|
|
|
{
|
|
|
|
if (args[0].equals("-a"))
|
|
|
|
{
|
|
|
|
for (Player targetPlayer : Bukkit.getServer().getOnlinePlayers())
|
|
|
|
{
|
|
|
|
targetPlayer.setGameMode(GameMode.ADVENTURE);
|
|
|
|
}
|
2022-01-27 09:00:50 +00:00
|
|
|
return tl("gameModeSetTo", "adventure");
|
2020-11-06 03:50:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 01:08:07 +00:00
|
|
|
Player nPlayer = getNonNullPlayer(args[0]);
|
2020-11-06 03:50:16 +00:00
|
|
|
// use send
|
2022-01-30 01:08:07 +00:00
|
|
|
send(nPlayer, tl("playerSetOtherGameMode", sender.getName(), "adventure"));
|
|
|
|
nPlayer.setGameMode(GameMode.ADVENTURE);
|
|
|
|
return tl("setOtherPlayerGameModeTo", nPlayer.getName(), "adventure");
|
2020-11-06 03:50:16 +00:00
|
|
|
}
|
2022-01-27 09:00:50 +00:00
|
|
|
return null;
|
2020-11-06 03:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2022-01-27 09:00:50 +00:00
|
|
|
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) throws IllegalArgumentException
|
2020-11-06 03:50:16 +00:00
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
if (isAdmin(sender))
|
2020-11-06 03:50:16 +00:00
|
|
|
{
|
|
|
|
return PlexUtils.getPlayerNameList();
|
|
|
|
}
|
2020-11-06 04:39:27 +00:00
|
|
|
return ImmutableList.of();
|
2020-11-06 03:50:16 +00:00
|
|
|
}
|
|
|
|
}
|