2019-06-18 22:55:32 -04:00
|
|
|
|
/*
|
|
|
|
|
===========================================================================
|
|
|
|
|
Copyright (C) 2015-2019 Project Meteor Dev Team
|
|
|
|
|
|
|
|
|
|
This file is part of Project Meteor Server.
|
|
|
|
|
|
|
|
|
|
Project Meteor Server is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
Project Meteor Server is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with Project Meteor Server. If not, see <https:www.gnu.org/licenses/>.
|
|
|
|
|
===========================================================================
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using FFXIVClassic_Map_Server.lua;
|
2016-01-01 14:03:55 -05:00
|
|
|
|
using System;
|
2015-10-16 21:30:49 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2016-01-01 14:03:55 -05:00
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.receive.events
|
2015-10-16 21:30:49 -04:00
|
|
|
|
{
|
2016-01-01 14:03:55 -05:00
|
|
|
|
class EventUpdatePacket
|
2015-10-16 21:30:49 -04:00
|
|
|
|
{
|
2015-11-27 00:42:35 -05: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;
|
2016-01-01 14:03:55 -05:00
|
|
|
|
public byte step;
|
|
|
|
|
public List<LuaParam> luaParams;
|
2015-10-16 21:30:49 -04:00
|
|
|
|
|
2016-01-01 14:03:55 -05: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();
|
2016-01-01 14:03:55 -05:00
|
|
|
|
step = binReader.ReadByte();
|
2016-06-14 21:29:10 +01:00
|
|
|
|
luaParams = LuaUtils.ReadLuaParams(binReader);
|
2015-10-16 21:30:49 -04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception){
|
|
|
|
|
invalidPacket = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|