2016-06-08 22:29:04 +01:00
|
|
|
|
using System;
|
2015-12-05 18:18:35 -05:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
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 FriendStatusPacket
|
|
|
|
|
{
|
|
|
|
|
public const ushort OPCODE = 0x01CF;
|
|
|
|
|
public const uint PACKET_SIZE = 0x686;
|
|
|
|
|
|
2016-06-14 21:29:10 +01:00
|
|
|
|
public static SubPacket BuildPacket(uint playerActorID, Tuple<long, bool>[] friendStatus)
|
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;
|
|
|
|
|
|
2015-12-05 18:58:06 -05:00
|
|
|
|
if (friendStatus != null)
|
|
|
|
|
{
|
|
|
|
|
if (friendStatus.Length <= 200)
|
|
|
|
|
max = friendStatus.Length;
|
|
|
|
|
else
|
|
|
|
|
max = 200;
|
|
|
|
|
}
|
2015-12-05 18:18:35 -05:00
|
|
|
|
else
|
2015-12-05 18:58:06 -05:00
|
|
|
|
max = 0;
|
2015-12-05 18:18:35 -05:00
|
|
|
|
|
|
|
|
|
binWriter.Write((UInt32)max);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < max; i++)
|
|
|
|
|
{
|
|
|
|
|
binWriter.Write((UInt64)friendStatus[i].Item1);
|
|
|
|
|
binWriter.Write((UInt64)(friendStatus[i].Item2 ? 1 : 0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new SubPacket(OPCODE, playerActorID, playerActorID, data);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|