PSO2SERVER/Server/Protocol/Packets/04-ObjectRelatedPacket/04-07-MovementPacket.cs

82 lines
2.4 KiB
C#
Raw Normal View History

2024-09-16 02:56:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Handlers;
2024-12-03 18:17:43 +08:00
using PSO2SERVER.Zone;
2024-09-16 02:56:02 +08:00
namespace PSO2SERVER.Protocol.Packets
2024-09-16 02:56:02 +08:00
{
2024-12-06 00:31:51 +08:00
public class MovementPacket : Packet
2024-09-16 02:56:02 +08:00
{
public struct PackedVec4
{
public UInt16 x, y, z, w;
public PackedVec4(PSOLocation location)
{
this.x = Helper.FloatToHalfPrecision(location.RotX);
this.y = Helper.FloatToHalfPrecision(location.RotY);
this.z = Helper.FloatToHalfPrecision(location.RotZ);
this.w = Helper.FloatToHalfPrecision(location.RotW);
}
}
public struct PackedVec3
{
public UInt16 x, y, z;
public PackedVec3(PSOLocation location)
{
this.x = Helper.FloatToHalfPrecision(location.PosX);
this.y = Helper.FloatToHalfPrecision(location.PosY);
this.z = Helper.FloatToHalfPrecision(location.PosZ);
}
}
[StructLayout(LayoutKind.Explicit, Size = 0x38)]
public struct FullMovementData
{
[FieldOffset(0x0)]
public ObjectHeader entity1;
[FieldOffset(0xC)]
public ObjectHeader entity2;
[FieldOffset(0x18)]
public UInt32 timestamp;
[FieldOffset(0x1C)]
public PackedVec4 rotation;
[FieldOffset(0x24)]
public PackedVec3 currentPos;
[FieldOffset(0x2A)]
public UInt16 Unknown2; // This MAY be part of lastPos, as lastPos may be a Vec4?
[FieldOffset(0x2C)]
public PackedVec3 unknownPos;
[FieldOffset(0x32)]
public UInt16 Unknown3; // This MAY be part of currentPos, as lastPos may be a Vec4?
[FieldOffset(0x34)]
public UInt32 Unknown4;
}
FullMovementData data;
public MovementPacket(FullMovementData data)
{
this.data = data;
}
public override byte[] Build()
{
PacketWriter pw = new PacketWriter();
pw.WriteStruct(data);
return pw.ToArray();
}
public override PacketHeader GetHeader()
{
return new PacketHeader(0x04, 0x07, PacketFlags.OBJECT_RELATED);
}
}
}