1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-21 20:27:47 +00:00
project-meteor-server/FFXIVClassic Map Server/packets/send/SendMessagePacket.cs

59 lines
2.6 KiB
C#
Raw Normal View History

using System;
using System.IO;
using System.Text;
2016-08-22 10:43:04 -04:00
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send
{
class SendMessagePacket
{
public const int MESSAGE_TYPE_NONE = 0;
public const int MESSAGE_TYPE_SAY = 1;
public const int MESSAGE_TYPE_SHOUT = 2;
public const int MESSAGE_TYPE_TELL = 3;
public const int MESSAGE_TYPE_PARTY = 4;
public const int MESSAGE_TYPE_LINKSHELL1 = 5;
public const int MESSAGE_TYPE_LINKSHELL2 = 6;
public const int MESSAGE_TYPE_LINKSHELL3 = 7;
public const int MESSAGE_TYPE_LINKSHELL4 = 8;
public const int MESSAGE_TYPE_LINKSHELL5 = 9;
public const int MESSAGE_TYPE_LINKSHELL6 = 10;
public const int MESSAGE_TYPE_LINKSHELL7 = 11;
public const int MESSAGE_TYPE_LINKSHELL8 = 12;
public const int MESSAGE_TYPE_SAY_SPAM = 22;
public const int MESSAGE_TYPE_SHOUT_SPAM = 23;
public const int MESSAGE_TYPE_TELL_SPAM = 24;
public const int MESSAGE_TYPE_CUSTOM_EMOTE = 25;
public const int MESSAGE_TYPE_EMOTE_SPAM = 26;
public const int MESSAGE_TYPE_STANDARD_EMOTE = 27;
public const int MESSAGE_TYPE_URGENT_MESSAGE = 28;
public const int MESSAGE_TYPE_GENERAL_INFO = 29;
public const int MESSAGE_TYPE_SYSTEM = 32;
public const int MESSAGE_TYPE_SYSTEM_ERROR = 33;
public const ushort OPCODE = 0x0003;
public const uint PACKET_SIZE = 0x248;
2017-06-27 13:52:47 -04:00
public static SubPacket BuildPacket(uint sourceActorId, uint messageType, string sender, string message)
{
byte[] data = new byte[PACKET_SIZE - 0x20];
using (MemoryStream mem = new MemoryStream(data))
{
using (BinaryWriter binWriter = new BinaryWriter(mem))
{
binWriter.Write(Encoding.ASCII.GetBytes(sender), 0, Encoding.ASCII.GetByteCount(sender) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(sender));
binWriter.BaseStream.Seek(0x20, SeekOrigin.Begin);
binWriter.Write((UInt32)messageType);
binWriter.Write(Encoding.ASCII.GetBytes(message), 0, Encoding.ASCII.GetByteCount(message) >= 0x200 ? 0x200 : Encoding.ASCII.GetByteCount(message));
}
}
2017-06-27 13:52:47 -04:00
return new SubPacket(OPCODE, sourceActorId, data);
}
}
}