mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
59 lines
2.6 KiB
C#
59 lines
2.6 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
using FFXIVClassic.Common;
|
|
|
|
namespace FFXIVClassic_World_Server.Packets.Send.Subpackets
|
|
{
|
|
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;
|
|
|
|
public static SubPacket BuildPacket(uint playerActorID, uint targetID, 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));
|
|
}
|
|
}
|
|
|
|
return new SubPacket(OPCODE, playerActorID, data);
|
|
}
|
|
|
|
}
|
|
}
|