PSO2SERVER/Server/Protocol/Packets/11-ClientPacket/11-3D-ShipListPacket.cs

45 lines
1.2 KiB
C#
Raw Normal View History

2024-09-16 17:09:36 +08:00
using PSO2SERVER.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-12-06 19:47:18 +08:00
using static PSO2SERVER.Models.CharacterStruct;
2024-09-16 17:09:36 +08:00
namespace PSO2SERVER.Protocol.Packets
2024-09-16 17:09:36 +08:00
{
2024-09-18 04:21:17 +08:00
public class ShipListPacket : Packet
2024-09-16 17:09:36 +08:00
{
2024-12-06 19:47:18 +08:00
public List<ShipEntry> shipEntries { get; set; } = new List<ShipEntry>();
public int timestamp { get; set; }
public uint unk { get; set; }
2024-09-16 17:09:36 +08:00
2024-12-06 19:47:18 +08:00
public ShipListPacket(List<ShipEntry> entries, int timestamp, uint unk)
2024-09-16 17:09:36 +08:00
{
2024-12-06 19:47:18 +08:00
shipEntries = entries;
this.timestamp = timestamp;
this.unk = unk;
2024-09-16 17:09:36 +08:00
}
#region implemented abstract members of Packet
public override byte[] Build()
{
2024-09-17 11:29:41 +08:00
var pkt = new PacketWriter();
2024-12-06 19:47:18 +08:00
pkt.WriteMagic((uint)shipEntries.Count, 0xE418, 0x51);
foreach (var entry in shipEntries)
pkt.WriteStruct(entry);
pkt.Write(timestamp);
pkt.Write(unk);
2024-09-17 11:29:41 +08:00
return pkt.ToArray();
2024-09-16 17:09:36 +08:00
}
public override PacketHeader GetHeader()
{
2024-12-06 19:47:18 +08:00
return new PacketHeader(0x11, 0x3D, PacketFlags.PACKED);
2024-09-16 17:09:36 +08:00
}
#endregion
}
}