mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-18 01:46:44 +01:00
* Fix the following issues: 1. HashMap non-thread-safe issus 2. Fix the same problem in pr621, but use a better implementation Add the following functions: 1. There is now a language cache inside getLanguage to prepare for different languages corresponding to different time zones where the accounts in the server are located * add /language command,each account has their own Locate
94 lines
4.5 KiB
Java
94 lines
4.5 KiB
Java
package emu.grasscutter.command.commands;
|
|
|
|
import emu.grasscutter.Grasscutter;
|
|
import emu.grasscutter.command.Command;
|
|
import emu.grasscutter.command.CommandHandler;
|
|
import emu.grasscutter.command.CommandMap;
|
|
import emu.grasscutter.game.player.Player;
|
|
|
|
import java.util.*;
|
|
|
|
import static emu.grasscutter.utils.Language.translate;
|
|
|
|
@Command(label = "help", usage = "help [command]", description = "commands.help.description")
|
|
public final class HelpCommand implements CommandHandler {
|
|
|
|
@Override
|
|
public void execute(Player player, Player targetPlayer, List<String> args) {
|
|
if (args.size() < 1) {
|
|
HashMap<String, CommandHandler> handlers = CommandMap.getInstance().getHandlers();
|
|
List<Command> annotations = new ArrayList<>();
|
|
for (String key : handlers.keySet()) {
|
|
Command annotation = handlers.get(key).getClass().getAnnotation(Command.class);
|
|
|
|
if (!Arrays.asList(annotation.aliases()).contains(key)) {
|
|
if (player != null && !Objects.equals(annotation.permission(), "") && !player.getAccount().hasPermission(annotation.permission()))
|
|
continue;
|
|
annotations.add(annotation);
|
|
}
|
|
}
|
|
|
|
SendAllHelpMessage(player, annotations);
|
|
} else {
|
|
String command = args.get(0);
|
|
CommandHandler handler = CommandMap.getInstance().getHandler(command);
|
|
StringBuilder builder = new StringBuilder(player == null ? "\n" + translate(player, "commands.status.help") + " - " : translate(player, "commands.status.help") + " - ").append(command).append(": \n");
|
|
if (handler == null) {
|
|
builder.append(translate(player, "commands.generic.command_exist_error"));
|
|
} else {
|
|
Command annotation = handler.getClass().getAnnotation(Command.class);
|
|
|
|
builder.append(" ").append(translate(player, annotation.description())).append("\n");
|
|
builder.append(translate(player, "commands.help.usage")).append(annotation.usage());
|
|
if (annotation.aliases().length >= 1) {
|
|
builder.append("\n").append(translate(player, "commands.help.aliases"));
|
|
for (String alias : annotation.aliases()) {
|
|
builder.append(alias).append(" ");
|
|
}
|
|
}
|
|
if (player != null && !Objects.equals(annotation.permission(), "") && !player.getAccount().hasPermission(annotation.permission())) {
|
|
builder.append("\n Warning: You do not have permission to run this command.");
|
|
}
|
|
}
|
|
|
|
CommandHandler.sendMessage(player, builder.toString());
|
|
}
|
|
}
|
|
|
|
void SendAllHelpMessage(Player player, List<Command> annotations) {
|
|
if (player == null) {
|
|
StringBuilder builder = new StringBuilder("\n" + translate(player, "commands.help.available_commands") + "\n");
|
|
annotations.forEach(annotation -> {
|
|
builder.append(annotation.label()).append("\n");
|
|
builder.append(" ").append(translate(player, annotation.description())).append("\n");
|
|
builder.append(translate(player, "commands.help.usage")).append(annotation.usage());
|
|
if (annotation.aliases().length >= 1) {
|
|
builder.append("\n").append(translate(player, "commands.help.aliases"));
|
|
for (String alias : annotation.aliases()) {
|
|
builder.append(alias).append(" ");
|
|
}
|
|
}
|
|
|
|
builder.append("\n");
|
|
});
|
|
|
|
CommandHandler.sendMessage(null, builder.toString());
|
|
} else {
|
|
CommandHandler.sendMessage(player, translate(player, "commands.help.available_commands"));
|
|
annotations.forEach(annotation -> {
|
|
StringBuilder builder = new StringBuilder(annotation.label()).append("\n");
|
|
builder.append(" ").append(translate(player, annotation.description())).append("\n");
|
|
builder.append(translate(player, "commands.help.usage")).append(annotation.usage());
|
|
if (annotation.aliases().length >= 1) {
|
|
builder.append("\n").append(translate(player, "commands.help.aliases"));
|
|
for (String alias : annotation.aliases()) {
|
|
builder.append(alias).append(" ");
|
|
}
|
|
}
|
|
|
|
CommandHandler.sendMessage(player, builder.toString());
|
|
});
|
|
}
|
|
}
|
|
}
|