2024-09-16 02:56:02 +08:00
|
|
|
|
using PSO2SERVER.Models;
|
2024-11-27 18:05:53 +08:00
|
|
|
|
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;
|
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
2024-09-16 02:56:02 +08:00
|
|
|
|
{
|
|
|
|
|
[PacketHandlerAttr(0x04, 0x3C)]
|
|
|
|
|
public class ActionUpdateHandler : PacketHandler
|
|
|
|
|
{
|
|
|
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
|
|
|
{
|
|
|
|
|
PacketReader reader = new PacketReader(data);
|
2024-12-10 01:23:49 +08:00
|
|
|
|
reader.ReadObjectHeader(); // Read the blank
|
|
|
|
|
ObjectHeader actor = reader.ReadObjectHeader(); // Read the actor
|
2024-09-16 02:56:02 +08:00
|
|
|
|
byte[] rest = reader.ReadBytes(32); // TODO Map this out and do stuff with it!
|
|
|
|
|
|
|
|
|
|
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 writer = new PacketWriter();
|
2024-12-03 13:10:49 +08:00
|
|
|
|
//writer.WriteStruct(new ObjectHeader((uint)c._account.AccountId, ObjectType.Accounts));
|
2024-09-18 01:50:29 +08:00
|
|
|
|
//writer.WriteStruct(actor);
|
|
|
|
|
//writer.Write(rest);
|
2024-09-16 02:56:02 +08:00
|
|
|
|
|
2024-09-18 01:50:29 +08:00
|
|
|
|
//c.SendPacket(0x4, 0x81, 0x40, writer.ToArray());
|
2024-09-20 21:58:37 +08:00
|
|
|
|
c.SendPacket(new ActionUpdateServerPacket(c._account.AccountId, actor, rest));
|
2024-09-16 02:56:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|