-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathFormatTestCommand.java
48 lines (40 loc) · 1.67 KB
/
FormatTestCommand.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package at.helpch.chatchat.command;
import at.helpch.chatchat.ChatChatPlugin;
import at.helpch.chatchat.api.format.PriorityFormat;
import at.helpch.chatchat.api.user.ChatUser;
import at.helpch.chatchat.placeholder.MiniPlaceholderContext;
import at.helpch.chatchat.user.ConsoleUser;
import at.helpch.chatchat.util.FormatUtils;
import at.helpch.chatchat.processor.LocalToLocalMessageProcessor;
import dev.triumphteam.cmd.bukkit.annotation.Permission;
import dev.triumphteam.cmd.core.annotation.Join;
import dev.triumphteam.cmd.core.annotation.SubCommand;
import org.jetbrains.annotations.NotNull;
public class FormatTestCommand extends ChatChatCommand {
private static final String FORMAT_TEST_PERMISSION = "chatchat.test.format";
private final ChatChatPlugin plugin;
public FormatTestCommand(@NotNull final ChatChatPlugin plugin) {
this.plugin = plugin;
}
@SubCommand("test")
@Permission(FORMAT_TEST_PERMISSION)
public void testFormat(
@NotNull final ChatUser sender,
@NotNull final PriorityFormat format,
@Join @NotNull final String message
) {
if (message.isBlank()) {
sender.sendMessage(plugin.configManager().messages().emptyMessage());
return;
}
sender.sendMessage(
FormatUtils.parseFormat(
format,
sender.player(),
sender.player(),
LocalToLocalMessageProcessor.processMessage(plugin, sender, ConsoleUser.INSTANCE, message),
plugin.miniPlaceholdersManager().compileTags(MiniPlaceholderContext.builder().inMessage(false).sender(sender).recipient(sender).build())
)
);
}
}