mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 12:47:46 +00:00
104 lines
4 KiB
C#
104 lines
4 KiB
C#
![]() |
using FFXIVClassic_Lobby_Server.dataobjects;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FFXIVClassic_Lobby_Server.packets
|
|||
|
{
|
|||
|
class CharacterListPacket
|
|||
|
{
|
|||
|
public const ushort OPCODE = 0x0D;
|
|||
|
public const ushort MAXPERPACKET = 3;
|
|||
|
|
|||
|
private ulong sequence;
|
|||
|
private List<Character> characterList;
|
|||
|
|
|||
|
public CharacterListPacket(ulong sequence, List<Character> characterList)
|
|||
|
{
|
|||
|
this.sequence = sequence;
|
|||
|
this.characterList = characterList;
|
|||
|
}
|
|||
|
|
|||
|
public List<SubPacket> buildPackets()
|
|||
|
{
|
|||
|
List<SubPacket> subPackets = new List<SubPacket>();
|
|||
|
|
|||
|
int characterCount = 0;
|
|||
|
int totalCount = 0;
|
|||
|
|
|||
|
MemoryStream memStream = null;
|
|||
|
BinaryWriter binWriter = null;
|
|||
|
|
|||
|
foreach (Character chara in characterList)
|
|||
|
{
|
|||
|
if (totalCount == 0 || characterCount % MAXPERPACKET == 0)
|
|||
|
{
|
|||
|
memStream = new MemoryStream(0x3D0);
|
|||
|
binWriter = new BinaryWriter(memStream);
|
|||
|
|
|||
|
//Write List Info
|
|||
|
binWriter.Write((UInt64)sequence);
|
|||
|
binWriter.Write(characterList.Count - totalCount <= MAXPERPACKET ? (byte)(characterList.Count + 1) : (byte)0);
|
|||
|
binWriter.Write(characterList.Count - totalCount <= MAXPERPACKET ? (UInt32)(characterList.Count - totalCount) : (UInt32)MAXPERPACKET);
|
|||
|
binWriter.Write((byte)6);
|
|||
|
binWriter.Write((UInt16)5);
|
|||
|
}
|
|||
|
|
|||
|
binWriter.Seek(0x10 + (0x1D0 * characterCount), SeekOrigin.Begin);
|
|||
|
|
|||
|
//Write Entries
|
|||
|
binWriter.Write((uint)0);
|
|||
|
binWriter.Write((uint)totalCount);
|
|||
|
binWriter.Write((uint)0);
|
|||
|
binWriter.Write((uint)0);
|
|||
|
binWriter.Write(Encoding.ASCII.GetBytes(chara.name.PadRight(0x20, '\0')));
|
|||
|
binWriter.Write(Encoding.ASCII.GetBytes(chara.world.PadRight(0x10, '\0')));
|
|||
|
binWriter.Write("wAQAAOonIyMNAAAAV3Jlbml4IFdyb25nABwAAAAEAAAAAwAAAAMAAAA_8OADAAHQFAAEAAABAAAAABTQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEgAAAAMQAAQCQAAMAsAACKVAAAAPgCAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAkAwAAAAAAAAAAANvb1M05AQAABBoAAAEABqoiIuIKAAAAcHJ2MElubjAxABEAAABkZWZhdWx0VGVycml0b3J5AAwJAhcABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAAAAAAAAAAAAAA=");
|
|||
|
|
|||
|
characterCount++;
|
|||
|
totalCount++;
|
|||
|
|
|||
|
//Send this chunk of character list
|
|||
|
if (characterCount >= MAXPERPACKET)
|
|||
|
{
|
|||
|
byte[] data = memStream.GetBuffer();
|
|||
|
binWriter.Dispose();
|
|||
|
memStream.Dispose();
|
|||
|
SubPacket subpacket = new SubPacket(OPCODE, 0xe0006868, 0xe0006868, data);
|
|||
|
subPackets.Add(subpacket);
|
|||
|
characterCount = 0;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//If there is anything left that was missed or the list is empty
|
|||
|
if (characterCount > 0 || characterList.Count == 0)
|
|||
|
{
|
|||
|
if (characterList.Count == 0)
|
|||
|
{
|
|||
|
memStream = new MemoryStream(0x3D0);
|
|||
|
binWriter = new BinaryWriter(memStream);
|
|||
|
|
|||
|
//Write Empty List Info
|
|||
|
binWriter.Write((UInt64)0);
|
|||
|
binWriter.Write((byte)1);
|
|||
|
binWriter.Write((UInt32)0);
|
|||
|
binWriter.Write((byte)0);
|
|||
|
binWriter.Write((UInt16)0);
|
|||
|
}
|
|||
|
|
|||
|
byte[] data = memStream.GetBuffer();
|
|||
|
binWriter.Dispose();
|
|||
|
memStream.Dispose();
|
|||
|
SubPacket subpacket = new SubPacket(OPCODE, 0xe0006868, 0xe0006868, data);
|
|||
|
subPackets.Add(subpacket);
|
|||
|
}
|
|||
|
|
|||
|
return subPackets;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|