1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-23 13:17:45 +00:00
project-meteor-server/FFXIVClassic Map Server/packets/receive/events/EventUpdatePacket.cs

44 lines
1.3 KiB
C#
Raw Normal View History

using FFXIVClassic_Map_Server.lua;
using System;
2015-10-16 21:30:49 -04:00
using System.Collections.Generic;
using System.IO;
namespace FFXIVClassic_Map_Server.packets.receive.events
2015-10-16 21:30:49 -04:00
{
class EventUpdatePacket
2015-10-16 21:30:49 -04:00
{
public const ushort OPCODE = 0x012E;
public const uint PACKET_SIZE = 0x78;
public bool invalidPacket = false;
2015-10-16 21:30:49 -04:00
public uint actorID;
public uint scriptOwnerActorID;
public uint val1;
public uint val2;
public byte step;
public List<LuaParam> luaParams;
2015-10-16 21:30:49 -04:00
public EventUpdatePacket(byte[] data)
2015-10-16 21:30:49 -04:00
{
using (MemoryStream mem = new MemoryStream(data))
{
using (BinaryReader binReader = new BinaryReader(mem))
{
try{
actorID = binReader.ReadUInt32();
scriptOwnerActorID = binReader.ReadUInt32();
val1 = binReader.ReadUInt32();
val2 = binReader.ReadUInt32();
step = binReader.ReadByte();
luaParams = LuaUtils.readLuaParams(binReader);
2015-10-16 21:30:49 -04:00
}
catch (Exception){
invalidPacket = true;
}
}
}
}
}
}