mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 13:46:45 +01:00
54 lines
1.8 KiB
Java
54 lines
1.8 KiB
Java
package com.plotsquared.bukkit.util;
|
|
|
|
import com.plotsquared.bukkit.chat.FancyMessage;
|
|
import com.plotsquared.bukkit.player.BukkitPlayer;
|
|
import com.plotsquared.core.config.Captions;
|
|
import com.plotsquared.core.config.Settings;
|
|
import com.plotsquared.core.player.ConsolePlayer;
|
|
import com.plotsquared.core.plot.message.PlotMessage;
|
|
import com.plotsquared.core.player.PlotPlayer;
|
|
import com.plotsquared.core.util.ChatManager;
|
|
import org.bukkit.ChatColor;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
public class BukkitChatManager extends ChatManager<FancyMessage> {
|
|
|
|
@Override public FancyMessage builder() {
|
|
return new FancyMessage("");
|
|
}
|
|
|
|
@Override public void color(PlotMessage message, String color) {
|
|
message.$(this).color(ChatColor.getByChar(Captions.color(color).substring(1)));
|
|
}
|
|
|
|
@Override public void tooltip(PlotMessage message, PlotMessage... tooltips) {
|
|
List<FancyMessage> lines =
|
|
Arrays.stream(tooltips).map(tooltip -> tooltip.$(this)).collect(Collectors.toList());
|
|
message.$(this).formattedTooltip(lines);
|
|
}
|
|
|
|
@Override public void command(PlotMessage message, String command) {
|
|
message.$(this).command(command);
|
|
}
|
|
|
|
@Override public void text(PlotMessage message, String text) {
|
|
message.$(this).then(ChatColor.stripColor(text));
|
|
}
|
|
|
|
@Override public void send(PlotMessage plotMessage, PlotPlayer player) {
|
|
if (player instanceof ConsolePlayer || !Settings.Chat.INTERACTIVE) {
|
|
player.sendMessage(plotMessage.$(this).toOldMessageFormat());
|
|
} else {
|
|
plotMessage.$(this).send(((BukkitPlayer) player).player);
|
|
}
|
|
}
|
|
|
|
@Override public void suggest(PlotMessage plotMessage, String command) {
|
|
plotMessage.$(this).suggest(command);
|
|
}
|
|
|
|
}
|