mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-08 13:06:02 +08:00
204 lines
7.4 KiB
Java
204 lines
7.4 KiB
Java
package emu.grasscutter.game.chat;
|
|
|
|
import emu.grasscutter.GameConstants;
|
|
import emu.grasscutter.command.CommandMap;
|
|
import emu.grasscutter.game.player.Player;
|
|
import emu.grasscutter.net.proto.ChatInfoOuterClass.ChatInfo;
|
|
import emu.grasscutter.server.game.GameServer;
|
|
import emu.grasscutter.server.packet.send.PacketPlayerChatNotify;
|
|
import emu.grasscutter.server.packet.send.PacketPrivateChatNotify;
|
|
import emu.grasscutter.server.packet.send.PacketPullPrivateChatRsp;
|
|
import emu.grasscutter.server.packet.send.PacketPullRecentChatRsp;
|
|
import emu.grasscutter.utils.Utils;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
import static emu.grasscutter.config.Configuration.*;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class ChatSystem implements ChatSystemHandler {
|
|
static final String PREFIXES = "[/!]";
|
|
static final Pattern RE_PREFIXES = Pattern.compile(PREFIXES);
|
|
static final Pattern RE_COMMANDS = Pattern.compile("\n" + PREFIXES);
|
|
|
|
// We store the chat history for ongoing sessions in the form
|
|
// user id -> chat partner id -> [messages]
|
|
private final Map<Integer, Map<Integer, List<ChatInfo>>> history = new HashMap<>();
|
|
|
|
private final GameServer server;
|
|
|
|
public ChatSystem(GameServer server) {
|
|
this.server = server;
|
|
}
|
|
|
|
public GameServer getServer() {
|
|
return server;
|
|
}
|
|
|
|
private boolean tryInvokeCommand(Player sender, Player target, String rawMessage) {
|
|
if (!RE_PREFIXES.matcher(rawMessage.substring(0, 1)).matches())
|
|
return false;
|
|
for (String line : rawMessage.substring(1).split("\n[/!]"))
|
|
CommandMap.getInstance().invoke(sender, target, line);
|
|
return true;
|
|
}
|
|
|
|
/********************
|
|
* Chat history handling
|
|
********************/
|
|
private void putInHistory(int uid, int partnerId, ChatInfo info) {
|
|
this.history.computeIfAbsent(uid, HashMap::new)
|
|
.computeIfAbsent(partnerId, ArrayList::new)
|
|
.add(info);
|
|
}
|
|
|
|
public void clearHistoryOnLogout(Player player) {
|
|
this.history.remove(player.getUid());
|
|
}
|
|
|
|
public void handlePullPrivateChatReq(Player player, int partnerId) {
|
|
var chatHistory = this.history.computeIfAbsent(player.getUid(), HashMap::new)
|
|
.computeIfAbsent(partnerId, ArrayList::new);
|
|
player.sendPacket(new PacketPullPrivateChatRsp(chatHistory));
|
|
}
|
|
|
|
public void handlePullRecentChatReq(Player player) {
|
|
// If this user has no chat history yet, create it by sending the server welcome messages.
|
|
if (!this.history.computeIfAbsent(player.getUid(), HashMap::new).containsKey(GameConstants.SERVER_CONSOLE_UID)) {
|
|
this.sendServerWelcomeMessages(player);
|
|
}
|
|
|
|
// For now, we send the list three messages from the server for the recent chat history.
|
|
// This matches the previous behavior, but ultimately, we should probably keep track of the last chat partner
|
|
// for every given player and return the last messages exchanged with that partner.
|
|
int historyLength = this.history.get(player.getUid()).get(GameConstants.SERVER_CONSOLE_UID).size();
|
|
var messages = this.history.get(player.getUid()).get(GameConstants.SERVER_CONSOLE_UID).subList(Math.max(historyLength - 3, 0), historyLength);
|
|
player.sendPacket(new PacketPullRecentChatRsp(messages));
|
|
}
|
|
|
|
/********************
|
|
* Sending messages
|
|
********************/
|
|
public void sendPrivateMessageFromServer(int targetUid, String message) {
|
|
// Sanity checks.
|
|
if (message == null || message.length() == 0) {
|
|
return;
|
|
}
|
|
|
|
// Get target.
|
|
Player target = getServer().getPlayerByUid(targetUid);
|
|
if (target == null) {
|
|
return;
|
|
}
|
|
|
|
// Create chat packet and put in history.
|
|
var packet = new PacketPrivateChatNotify(GameConstants.SERVER_CONSOLE_UID, targetUid, message);
|
|
putInHistory(targetUid, GameConstants.SERVER_CONSOLE_UID, packet.getChatInfo());
|
|
|
|
// Send.
|
|
target.sendPacket(packet);
|
|
}
|
|
public void sendPrivateMessageFromServer(int targetUid, int emote) {
|
|
// Get target.
|
|
Player target = getServer().getPlayerByUid(targetUid);
|
|
if (target == null) {
|
|
return;
|
|
}
|
|
|
|
// Create chat packet and put in history.
|
|
var packet = new PacketPrivateChatNotify(GameConstants.SERVER_CONSOLE_UID, targetUid, emote);
|
|
putInHistory(targetUid, GameConstants.SERVER_CONSOLE_UID, packet.getChatInfo());
|
|
|
|
// Send.
|
|
target.sendPacket(packet);
|
|
}
|
|
|
|
public void sendPrivateMessage(Player player, int targetUid, String message) {
|
|
// Sanity checks.
|
|
if (message == null || message.length() == 0) {
|
|
return;
|
|
}
|
|
|
|
// Get target.
|
|
Player target = getServer().getPlayerByUid(targetUid);
|
|
|
|
if (target == null && targetUid != GameConstants.SERVER_CONSOLE_UID) {
|
|
return;
|
|
}
|
|
|
|
// Create chat packet.
|
|
var packet = new PacketPrivateChatNotify(player.getUid(), targetUid, message);
|
|
|
|
// Send and put in history.
|
|
player.sendPacket(packet);
|
|
putInHistory(player.getUid(), targetUid, packet.getChatInfo());
|
|
|
|
// Check if command
|
|
boolean isCommand = tryInvokeCommand(player, target, message);
|
|
|
|
if ((target != null) && (!isCommand)) {
|
|
target.sendPacket(packet);
|
|
putInHistory(targetUid, player.getUid(), packet.getChatInfo());
|
|
}
|
|
}
|
|
|
|
public void sendPrivateMessage(Player player, int targetUid, int emote) {
|
|
// Get target.
|
|
Player target = getServer().getPlayerByUid(targetUid);
|
|
|
|
if (target == null && targetUid != GameConstants.SERVER_CONSOLE_UID) {
|
|
return;
|
|
}
|
|
|
|
// Create chat packet.
|
|
var packet = new PacketPrivateChatNotify(player.getUid(), target.getUid(), emote);
|
|
|
|
// Send and put is history.
|
|
player.sendPacket(packet);
|
|
putInHistory(player.getUid(), targetUid, packet.getChatInfo());
|
|
|
|
if (target != null) {
|
|
target.sendPacket(packet);
|
|
putInHistory(targetUid, player.getUid(), packet.getChatInfo());
|
|
}
|
|
}
|
|
|
|
public void sendTeamMessage(Player player, int channel, String message) {
|
|
// Sanity checks
|
|
if (message == null || message.length() == 0) {
|
|
return;
|
|
}
|
|
|
|
// Check if command
|
|
if (tryInvokeCommand(player, null, message)) {
|
|
return;
|
|
}
|
|
|
|
// Create and send chat packet
|
|
player.getWorld().broadcastPacket(new PacketPlayerChatNotify(player, channel, message));
|
|
}
|
|
public void sendTeamMessage(Player player, int channel, int icon) {
|
|
// Create and send chat packet
|
|
player.getWorld().broadcastPacket(new PacketPlayerChatNotify(player, channel, icon));
|
|
}
|
|
|
|
/********************
|
|
* Welcome messages
|
|
********************/
|
|
private void sendServerWelcomeMessages(Player player) {
|
|
var joinOptions = GAME_INFO.joinOptions;
|
|
|
|
if (joinOptions.welcomeEmotes != null && joinOptions.welcomeEmotes.length > 0) {
|
|
this.sendPrivateMessageFromServer(player.getUid(), joinOptions.welcomeEmotes[Utils.randomRange(0, joinOptions.welcomeEmotes.length - 1)]);
|
|
}
|
|
|
|
if (joinOptions.welcomeMessage != null && joinOptions.welcomeMessage.length() > 0) {
|
|
this.sendPrivateMessageFromServer(player.getUid(), joinOptions.welcomeMessage);
|
|
}
|
|
}
|
|
}
|