PSO2SERVER/Server/Models/PSOData.cs

65 lines
1.6 KiB
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-09-22 11:14:48 +08:00
using System.IO;
using PSO2SERVER.Packets;
2024-09-10 00:31:40 +08:00
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER.Models
2024-09-10 00:31:40 +08:00
{
2024-09-21 13:11:22 +08:00
public enum ObjectType : UInt16
2024-09-10 00:31:40 +08:00
{
2024-09-21 13:11:22 +08:00
Unknown = 0,
Player = 4,
Map = 5,
Object = 6,
StaticObject = 7,
Quest = 11,
Party = 13,
World = 16,
APC = 22,
Undefined = 0xFFFF
2024-09-10 00:31:40 +08:00
}
public struct ObjectHeader
{
2024-09-21 13:11:22 +08:00
/// Id of the object.
2024-09-10 00:31:40 +08:00
public UInt32 ID;
public UInt32 padding; // Always is padding
2024-09-21 13:11:22 +08:00
/// Type of the object.
public ObjectType ObjectType;
/// Zone id of the object. Not set for players.
public UInt16 MapID;
2024-09-10 00:31:40 +08:00
2024-09-21 13:11:22 +08:00
public ObjectHeader(uint id, ObjectType type) : this()
2024-09-10 00:31:40 +08:00
{
2024-09-21 13:11:22 +08:00
ID = id;
ObjectType = type;
}
/// Zone id of the object. Not set for players.
public ObjectHeader(uint id, ObjectType type, UInt16 mapid) : this()
{
ID = id;
ObjectType = type;
MapID = mapid;
2024-09-10 00:31:40 +08:00
}
2024-09-22 11:14:48 +08:00
public void ReadFromStream(PacketReader reader)
{
ID = reader.ReadUInt32();
padding = reader.ReadUInt32(); // 读取填充
ObjectType = (ObjectType)reader.ReadUInt16();
MapID = reader.ReadUInt16();
}
public void WriteToStream(PacketWriter writer)
{
writer.Write(ID);
writer.Write(padding); // 写入填充
writer.Write((UInt16)ObjectType);
writer.Write(MapID);
}
2024-09-10 00:31:40 +08:00
}
}