2016-06-08 22:29:04 +01:00
|
|
|
|
using FFXIVClassic_Map_Server.lua;
|
2016-01-02 14:03:28 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2016-08-22 10:43:04 -04:00
|
|
|
|
using FFXIVClassic.Common;
|
|
|
|
|
|
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.send.actor
|
2016-01-02 14:03:28 -05:00
|
|
|
|
{
|
|
|
|
|
class ActorInstantiatePacket
|
|
|
|
|
{
|
|
|
|
|
public const ushort OPCODE = 0x00CC;
|
|
|
|
|
public const uint PACKET_SIZE = 0x128;
|
|
|
|
|
|
2016-06-15 00:08:05 +01:00
|
|
|
|
public static SubPacket BuildPacket(uint sourceActorID, uint targetActorID, string objectName, string className, List<LuaParam> initParams)
|
2016-01-02 14:03:28 -05:00
|
|
|
|
{
|
|
|
|
|
byte[] data = new byte[PACKET_SIZE - 0x20];
|
|
|
|
|
|
|
|
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
|
|
|
{
|
|
|
|
|
using (BinaryWriter binWriter = new BinaryWriter(mem))
|
|
|
|
|
{
|
2016-03-30 20:15:21 -04:00
|
|
|
|
int value1 = 0x00; //Instance ID?
|
|
|
|
|
int value2 = 0x3040;
|
2016-02-07 13:05:54 -05:00
|
|
|
|
binWriter.Write((Int16)value1);
|
|
|
|
|
binWriter.Write((Int16)value2);
|
2016-01-02 14:03:28 -05:00
|
|
|
|
binWriter.Write(Encoding.ASCII.GetBytes(objectName), 0, Encoding.ASCII.GetByteCount(objectName) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(objectName));
|
|
|
|
|
binWriter.BaseStream.Seek(0x24, SeekOrigin.Begin);
|
|
|
|
|
binWriter.Write(Encoding.ASCII.GetBytes(className), 0, Encoding.ASCII.GetByteCount(className) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(className));
|
|
|
|
|
binWriter.BaseStream.Seek(0x44, SeekOrigin.Begin);
|
2016-06-14 21:29:10 +01:00
|
|
|
|
LuaUtils.WriteLuaParams(binWriter, initParams);
|
2016-01-02 14:03:28 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-15 00:08:05 +01:00
|
|
|
|
return new SubPacket(OPCODE, sourceActorID, targetActorID, data);
|
2016-01-02 14:03:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|