2016-06-08 22:29:04 +01:00
|
|
|
|
using FFXIVClassic_Map_Server.actors;
|
2016-01-23 20:12:04 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.send.actor.events
|
|
|
|
|
{
|
|
|
|
|
class SetPushEventConditionWithCircle
|
|
|
|
|
{
|
|
|
|
|
public const ushort OPCODE = 0x016F;
|
|
|
|
|
public const uint PACKET_SIZE = 0x58;
|
|
|
|
|
|
2016-03-20 19:29:38 -04:00
|
|
|
|
public static SubPacket buildPacket(uint playerActorID, uint sourceActorID, EventList.PushCircleEventCondition condition)
|
2016-01-23 20:12:04 -05:00
|
|
|
|
{
|
|
|
|
|
byte[] data = new byte[PACKET_SIZE - 0x20];
|
|
|
|
|
|
|
|
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
|
|
|
{
|
|
|
|
|
using (BinaryWriter binWriter = new BinaryWriter(mem))
|
|
|
|
|
{
|
2016-03-20 19:29:38 -04:00
|
|
|
|
binWriter.Write((Single)condition.radius);
|
|
|
|
|
binWriter.Write((UInt32)0x44533088);
|
|
|
|
|
binWriter.Write((Single)100.0f);
|
2016-01-23 20:12:04 -05:00
|
|
|
|
binWriter.Seek(4, SeekOrigin.Current);
|
2016-03-20 19:29:38 -04:00
|
|
|
|
binWriter.Write((Byte)(condition.outwards ? 0x11 : 0x1)); //If == 0x10, Inverted Bounding Box
|
2016-01-23 20:12:04 -05:00
|
|
|
|
binWriter.Write((Byte)0);
|
2016-03-20 19:29:38 -04:00
|
|
|
|
binWriter.Write((Byte)(condition.silent ? 0x1 : 0x0)); //Silent Trigger
|
|
|
|
|
binWriter.Write(Encoding.ASCII.GetBytes(condition.conditionName), 0, Encoding.ASCII.GetByteCount(condition.conditionName) >= 0x24 ? 0x24 : Encoding.ASCII.GetByteCount(condition.conditionName));
|
2016-01-23 20:12:04 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-23 22:11:45 -05:00
|
|
|
|
return new SubPacket(OPCODE, sourceActorID, playerActorID, data);
|
2016-01-23 20:12:04 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|