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-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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|