2015-11-15 23:32:04 +00:00
|
|
|
package me.totalfreedom.totalfreedommod;
|
|
|
|
|
2018-06-01 22:39:52 +00:00
|
|
|
import com.google.common.base.Strings;
|
2018-04-19 14:29:19 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.admin.Admin;
|
2015-11-15 23:32:04 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.player.FPlayer;
|
2018-04-19 14:29:19 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.rank.Displayable;
|
2015-11-15 23:32:04 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.util.FLog;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.FSync;
|
2016-05-12 19:40:39 +00:00
|
|
|
import static me.totalfreedom.totalfreedommod.util.FUtil.playerMsg;
|
2018-06-02 20:08:35 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
2015-11-15 23:32:04 +00:00
|
|
|
import org.bukkit.ChatColor;
|
2016-05-12 19:40:39 +00:00
|
|
|
import org.bukkit.command.CommandSender;
|
2015-11-15 23:32:04 +00:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.EventPriority;
|
|
|
|
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
|
|
|
|
2016-03-01 16:47:01 +00:00
|
|
|
public class ChatManager extends FreedomService
|
2015-11-15 23:32:04 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
public ChatManager(TotalFreedomMod plugin)
|
|
|
|
{
|
|
|
|
super(plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStart()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
|
|
|
|
public void onPlayerChatFormat(AsyncPlayerChatEvent event)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
handleChatEvent(event);
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
FLog.severe(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleChatEvent(AsyncPlayerChatEvent event)
|
|
|
|
{
|
|
|
|
final Player player = event.getPlayer();
|
|
|
|
String message = event.getMessage().trim();
|
|
|
|
|
|
|
|
// Strip color from messages
|
|
|
|
message = ChatColor.stripColor(message);
|
|
|
|
|
2017-06-30 07:41:01 +00:00
|
|
|
// Truncate messages that are too long - 256 characters is vanilla client max
|
|
|
|
if (message.length() > 256)
|
2015-11-15 23:32:04 +00:00
|
|
|
{
|
2017-06-30 07:41:01 +00:00
|
|
|
message = message.substring(0, 256);
|
2015-11-15 23:32:04 +00:00
|
|
|
FSync.playerMsg(player, "Message was shortened because it was too long to send.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for caps
|
|
|
|
if (message.length() >= 6)
|
|
|
|
{
|
|
|
|
int caps = 0;
|
|
|
|
for (char c : message.toCharArray())
|
|
|
|
{
|
|
|
|
if (Character.isUpperCase(c))
|
|
|
|
{
|
|
|
|
caps++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (((float) caps / (float) message.length()) > 0.65) //Compute a ratio so that longer sentences can have more caps.
|
|
|
|
{
|
2018-03-18 08:32:50 +00:00
|
|
|
if (!plugin.al.isAdmin(player))
|
|
|
|
{
|
|
|
|
message = message.toLowerCase();
|
|
|
|
}
|
2015-11-15 23:32:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for adminchat
|
2016-03-07 20:32:05 +00:00
|
|
|
final FPlayer fPlayer = plugin.pl.getPlayerSync(player);
|
|
|
|
if (fPlayer.inAdminChat())
|
2015-11-15 23:32:04 +00:00
|
|
|
{
|
2016-03-07 20:32:05 +00:00
|
|
|
FSync.adminChatMessage(player, message);
|
2015-11-15 23:32:04 +00:00
|
|
|
event.setCancelled(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, set message
|
|
|
|
event.setMessage(message);
|
|
|
|
|
2016-05-12 19:40:39 +00:00
|
|
|
// Make format
|
|
|
|
String format = "<%1$s> %2$s";
|
|
|
|
|
|
|
|
String tag = fPlayer.getTag();
|
|
|
|
if (tag != null && !tag.isEmpty())
|
2015-11-15 23:32:04 +00:00
|
|
|
{
|
2016-05-12 19:40:39 +00:00
|
|
|
format = tag.replace("%", "%%") + " " + format;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set format
|
|
|
|
event.setFormat(format);
|
|
|
|
}
|
|
|
|
|
2018-06-02 20:45:05 +00:00
|
|
|
public ChatColor getColor(Admin admin, Displayable display)
|
|
|
|
{
|
|
|
|
ChatColor color = display.getColor();
|
|
|
|
if (admin.getOldTags())
|
|
|
|
{
|
|
|
|
|
|
|
|
if (color.equals(ChatColor.AQUA))
|
|
|
|
{
|
|
|
|
color = ChatColor.GOLD;
|
|
|
|
}
|
|
|
|
else if (color.equals(ChatColor.GOLD))
|
|
|
|
{
|
|
|
|
color = ChatColor.LIGHT_PURPLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2018-06-01 22:39:52 +00:00
|
|
|
public String getColoredTag(Admin admin, Displayable display)
|
2018-04-19 14:29:19 +00:00
|
|
|
{
|
|
|
|
ChatColor color = display.getColor();
|
2018-06-02 20:45:05 +00:00
|
|
|
if (admin.getOldTags())
|
2018-04-19 14:29:19 +00:00
|
|
|
{
|
|
|
|
|
2018-06-01 22:39:52 +00:00
|
|
|
if (color.equals(ChatColor.AQUA))
|
|
|
|
{
|
|
|
|
color = ChatColor.GOLD;
|
|
|
|
}
|
|
|
|
else if (color.equals(ChatColor.GOLD))
|
|
|
|
{
|
|
|
|
color = ChatColor.LIGHT_PURPLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return color + display.getAbbr();
|
2018-04-19 14:29:19 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 19:40:39 +00:00
|
|
|
public void adminChat(CommandSender sender, String message)
|
|
|
|
{
|
2018-04-19 14:29:19 +00:00
|
|
|
Displayable display = plugin.rm.getDisplay(sender);
|
|
|
|
FLog.info("[ADMIN] " + sender.getName() + " " + display.getTag() + ": " + message);
|
2016-05-12 19:40:39 +00:00
|
|
|
|
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
if (plugin.al.isAdmin(player))
|
|
|
|
{
|
2018-04-19 14:29:19 +00:00
|
|
|
Admin admin = plugin.al.getAdmin(player);
|
2018-06-01 22:39:52 +00:00
|
|
|
if (!Strings.isNullOrEmpty(admin.getAcFormat()))
|
2018-04-19 14:29:19 +00:00
|
|
|
{
|
2018-07-31 06:41:56 +00:00
|
|
|
String format = admin.getAcFormat();
|
|
|
|
ChatColor color = getColor(admin, display);
|
|
|
|
String msg = format.replace("%name%", sender.getName()).replace("%rank%", display.getAbbr()).replace("%rankcolor%", color.toString()).replace("%msg%", message);
|
|
|
|
player.sendMessage(FUtil.colorize(msg));
|
2018-04-19 14:29:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-19 11:30:08 +00:00
|
|
|
player.sendMessage("[" + ChatColor.AQUA + "ADMIN" + ChatColor.WHITE + "] " + ChatColor.DARK_RED + sender.getName() + ChatColor.DARK_GRAY + " [" + getColoredTag(admin, display) + ChatColor.DARK_GRAY + "]" + ChatColor.WHITE + ": " + ChatColor.GOLD + FUtil.colorize(message));
|
2018-04-19 14:29:19 +00:00
|
|
|
}
|
2016-05-12 19:40:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void reportAction(Player reporter, Player reported, String report)
|
|
|
|
{
|
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
if (plugin.al.isAdmin(player))
|
|
|
|
{
|
|
|
|
playerMsg(player, ChatColor.RED + "[REPORTS] " + ChatColor.GOLD + reporter.getName() + " has reported " + reported.getName() + " for " + report);
|
|
|
|
}
|
2015-11-15 23:32:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|