2015-10-06 20:06:08 -04:00
|
|
|
|
using FFXIVClassic_Lobby_Server.packets;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
2015-10-13 12:50:23 -04:00
|
|
|
|
public static SubPacket buildPacket(uint playerActorID, uint targetID, uint messageType, string sender, string message)
|
2015-10-06 20:06:08 -04:00
|
|
|
|
{
|
|
|
|
|
byte[] data = new byte[PACKET_SIZE - 0x20];
|
|
|
|
|
|
|
|
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
|
|
|
{
|
|
|
|
|
using (BinaryWriter binWriter = new BinaryWriter(mem))
|
|
|
|
|
{
|
2015-12-30 12:20:47 -05:00
|
|
|
|
binWriter.Write(Encoding.ASCII.GetBytes(sender), 0, Encoding.ASCII.GetByteCount(sender) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(sender));
|
2015-10-06 20:06:08 -04:00
|
|
|
|
binWriter.BaseStream.Seek(0x20, SeekOrigin.Begin);
|
2015-10-13 12:50:23 -04:00
|
|
|
|
binWriter.Write((UInt32)messageType);
|
2015-12-30 12:20:47 -05:00
|
|
|
|
binWriter.Write(Encoding.ASCII.GetBytes(message), 0, Encoding.ASCII.GetByteCount(message) >= 0x200 ? 0x200 : Encoding.ASCII.GetByteCount(message));
|
2015-10-06 20:06:08 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new SubPacket(OPCODE, playerActorID, targetID, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|