31 lines
851 B
C#
31 lines
851 B
C#
using AxibugProtobuf;
|
|
using ClientCore.Common;
|
|
using ClientCore.Event;
|
|
using ClientCore.Network;
|
|
|
|
namespace ClientCore.Manager
|
|
{
|
|
public class AppChat
|
|
{
|
|
public AppChat()
|
|
{
|
|
NetMsg.Instance.RegNetMsgEvent((int)CommandID.CmdChatmsg, RecvChatMsg);
|
|
}
|
|
|
|
public void SendChatMsg(string ChatMsg)
|
|
{
|
|
Protobuf_ChatMsg msg = new Protobuf_ChatMsg()
|
|
{
|
|
ChatMsg = ChatMsg,
|
|
};
|
|
App.networkHelper.SendToServer((int)CommandID.CmdChatmsg, ProtoBufHelper.Serizlize(msg));
|
|
}
|
|
|
|
public void RecvChatMsg(byte[] reqData)
|
|
{
|
|
Protobuf_ChatMsg_RESP msg = ProtoBufHelper.DeSerizlize<Protobuf_ChatMsg_RESP>(reqData);
|
|
EventSystem.Instance.PostEvent(EEvent.OnChatMsg, msg.NickName, msg.ChatMsg);
|
|
}
|
|
}
|
|
}
|