2016-06-08 22:29:04 +01:00
|
|
|
|
using System;
|
2015-12-05 18:18:35 -05:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2016-08-22 10:43:04 -04:00
|
|
|
|
using FFXIVClassic.Common;
|
|
|
|
|
|
2015-12-05 18:18:35 -05:00
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.send.social
|
|
|
|
|
{
|
|
|
|
|
class SendFriendlistPacket
|
|
|
|
|
{
|
|
|
|
|
public const ushort OPCODE = 0x01CE;
|
|
|
|
|
public const uint PACKET_SIZE = 0x686;
|
|
|
|
|
|
2017-06-27 13:23:05 -04:00
|
|
|
|
public static SubPacket BuildPacket(uint sourceActorId, Tuple<long, string>[] friends, ref int offset)
|
2015-12-05 18:18:35 -05:00
|
|
|
|
{
|
|
|
|
|
byte[] data = new byte[PACKET_SIZE - 0x20];
|
|
|
|
|
|
|
|
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
|
|
|
{
|
|
|
|
|
using (BinaryWriter binWriter = new BinaryWriter(mem))
|
|
|
|
|
{
|
|
|
|
|
binWriter.Write((UInt32)0);
|
|
|
|
|
int max;
|
|
|
|
|
|
|
|
|
|
if (friends.Length - offset <= 0x32)
|
|
|
|
|
max = friends.Length - offset;
|
|
|
|
|
else
|
|
|
|
|
max = 0x32;
|
|
|
|
|
|
|
|
|
|
binWriter.Write((UInt32)max);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < max; i++)
|
|
|
|
|
{
|
|
|
|
|
binWriter.Write(Encoding.ASCII.GetBytes(friends[i].Item2), 0, Encoding.ASCII.GetByteCount(friends[i].Item2) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(friends[i].Item2));
|
|
|
|
|
binWriter.Write((UInt64)friends[i].Item1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
offset += max;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-27 13:23:05 -04:00
|
|
|
|
return new SubPacket(OPCODE, sourceActorId, data);
|
2015-12-05 18:18:35 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|