PSO2SERVER/Server/Protocol/Handlers/04-ObjectHandler/04-08-MovementActionHandler.cs

58 lines
2.2 KiB
C#
Raw Normal View History

2024-09-16 02:56:02 +08:00
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-09-16 02:56:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Protocol.Handlers
2024-09-16 02:56:02 +08:00
{
[PacketHandlerAttr(0x04, 0x08)]
public class MovementActionHandler : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
PacketReader reader = new PacketReader(data);
reader.ReadObjectHeader(); // Skip blank entity header.
var preformer = reader.ReadObjectHeader(); // Preformer
2024-09-16 02:56:02 +08:00
byte[] preData = reader.ReadBytes(40);
string command = reader.ReadAscii(0x922D, 0x45);
byte[] rest = reader.ReadBytes(4);
uint thingCount = reader.ReadMagic(0x922D, 0x45);
byte[] things;
PacketWriter thingWriter = new PacketWriter();
for (int i = 0; i < thingCount; i++)
{
thingWriter.Write(reader.ReadBytes(4));
}
things = thingWriter.ToArray();
byte[] final = reader.ReadBytes(4);
2024-12-08 11:33:06 +08:00
//Logger.WriteInternal("[动作] {0} 发送动作 {1}", context.Character.name, command);
2024-09-16 02:56:02 +08:00
foreach (var c in Server.Instance.Clients)
{
2024-12-10 23:08:39 +08:00
if (c == context || c.Character == null || c.CurrentMap != context.CurrentMap)
2024-09-16 02:56:02 +08:00
continue;
2024-09-18 01:50:29 +08:00
//PacketWriter output = new PacketWriter();
//output.WriteStruct(new ObjectHeader((uint)context._account.AccountId, ObjectType.Accounts));
2024-09-18 01:50:29 +08:00
//output.WriteStruct(preformer);
//output.Write(preData);
//output.WriteAscii(command, 0x4315, 0x7A);
//output.Write(rest);
//output.WriteMagic(thingCount, 0x4315, 0x7A);
//output.Write(things);
//output.Write(final);
//c.SendPacket(0x4, 0x80, 0x44, output.ToArray());
2024-09-20 21:58:37 +08:00
c.SendPacket(new MovementActionServerPacket(context._account.AccountId, preformer, preData
2024-09-18 01:50:29 +08:00
, command, rest, thingCount, things, final));
2024-09-16 02:56:02 +08:00
}
}
}
}