29 lines
905 B
C#
29 lines
905 B
C#
using AxibugProtobuf;
|
|
using ClientCore.Common;
|
|
using ClientCore.Event;
|
|
using ClientCore.Network;
|
|
|
|
namespace ClientCore.Manager
|
|
{
|
|
public class P2PChat
|
|
{
|
|
public P2PChat()
|
|
{
|
|
NetMsg.Instance.RegNetMsgEvent((int)CommandID.CmdTcpP2PChat, RecvChatMsg);
|
|
}
|
|
public void SendChatMsg(long UID, string ChatMsg)
|
|
{
|
|
Protobuf_TcpP2P_Chat msg = new Protobuf_TcpP2P_Chat()
|
|
{
|
|
ChatMsg = ChatMsg,
|
|
};
|
|
App.clientMgr.SendToTargetSocket(UID, (int)CommandID.CmdTcpP2PChat,(int)ErrorCode.ErrorOk, ProtoBufHelper.Serizlize(msg));
|
|
}
|
|
public void RecvChatMsg(long uid, byte[] reqData)
|
|
{
|
|
Protobuf_TcpP2P_Chat msg = ProtoBufHelper.DeSerizlize<Protobuf_TcpP2P_Chat>(reqData);
|
|
EventSystem.Instance.PostEvent(EEvent.OnP2PChatMsg, uid, msg.ChatMsg);
|
|
}
|
|
}
|
|
}
|