PSO2SERVER/Server/Models/FixedPackets.cs

78 lines
2.2 KiB
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System;
2024-12-06 19:47:18 +08:00
using System.Net.Sockets;
2024-09-10 00:31:40 +08:00
using System.Runtime.InteropServices;
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER.Models
2024-09-10 00:31:40 +08:00
{
public struct PacketHeader
{
public UInt32 Size;
public byte Type;
public byte Subtype;
public byte Flags1;
public byte Flags2;
public PacketHeader(int size, byte type, byte subtype, byte flags1, byte flags2)
{
this.Size = (uint)size;
this.Type = type;
this.Subtype = subtype;
this.Flags1 = flags1;
this.Flags2 = flags2;
}
2024-12-06 19:47:18 +08:00
public PacketHeader(int size, byte type, byte subtype, PacketFlags flags1, PacketFlags flags2) : this(size, type, subtype, (byte)flags1, (byte)flags1)
{
}
2024-09-10 00:31:40 +08:00
public PacketHeader(byte type, byte subtype) : this(type, subtype, (byte)0)
{
}
public PacketHeader(byte type, byte subtype, byte flags1) : this(0, type, subtype, flags1, 0)
{
}
public PacketHeader(byte type, byte subtype, PacketFlags packetFlags) : this(type, subtype, (byte)packetFlags)
{
}
2024-12-06 19:47:18 +08:00
// ToBytes 方法的实现
public byte[] ToBytes()
{
byte[] bytes = new byte[sizeof(UInt32) + sizeof(byte) * 4]; // 计算结构体的总大小
int index = 0;
// 将结构体每个字段转换为字节
Array.Copy(BitConverter.GetBytes(Size), 0, bytes, index, sizeof(UInt32));
index += sizeof(UInt32);
bytes[index++] = Type;
bytes[index++] = Subtype;
bytes[index++] = Flags1;
bytes[index++] = Flags2;
return bytes;
}
2024-09-10 00:31:40 +08:00
}
2024-09-16 17:09:36 +08:00
/// Packet flags.
2024-09-10 00:31:40 +08:00
[Flags]
public enum PacketFlags : byte
{
2024-09-16 17:09:36 +08:00
/// 0x00
None = 0x00,
/// Set when the packet contains variable length data. 0x04
PACKED = 1 << 2,
/// 0x10
FLAG_10 = 1 << 4,
/// Set when the [`Packet::Movement`] has all fields set. 0x20
FULL_MOVEMENT = 1 << 5,
/// Set for all (?) of (0x04) packets. 0x40
2024-09-18 01:50:29 +08:00
OBJECT_RELATED = 1 << 6,
/// 0x44
2024-12-06 00:31:51 +08:00
PACKED_OBJECT_RELATED = PACKED | OBJECT_RELATED
2024-09-10 00:31:40 +08:00
}
}