2024-09-10 00:31:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2024-09-22 00:08:44 +08:00
|
|
|
|
using System.Text;
|
2024-12-02 20:43:28 +08:00
|
|
|
|
using static PSO2SERVER.Models.CharacterStruct;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-09-10 01:13:20 +08:00
|
|
|
|
namespace PSO2SERVER.Models
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct ShortItemId
|
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public byte ItemType;
|
|
|
|
|
public byte Id;
|
|
|
|
|
public ushort Subid;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct ItemId
|
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public ushort ItemType;
|
|
|
|
|
public ushort Id;
|
|
|
|
|
public ushort Unk3;
|
|
|
|
|
public ushort Subid;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public struct PSO2Items
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public ulong uuid;
|
|
|
|
|
public ItemId id;
|
|
|
|
|
public Items data;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
|
|
|
public struct Items
|
|
|
|
|
{
|
|
|
|
|
[FieldOffset(0)]
|
|
|
|
|
public PSO2ItemWeapon Weapon;
|
|
|
|
|
[FieldOffset(0)]
|
|
|
|
|
public PSO2ItemClothing Clothing;
|
|
|
|
|
[FieldOffset(0)]
|
|
|
|
|
public PSO2ItemConsumable Consumable;
|
|
|
|
|
[FieldOffset(0)]
|
|
|
|
|
public PSO2ItemCamo Camo;
|
|
|
|
|
[FieldOffset(0)]
|
|
|
|
|
public PSO2ItemUnit Unit;
|
2024-09-20 11:48:27 +08:00
|
|
|
|
//[FieldOffset(0)]
|
|
|
|
|
//public byte[] Unknown;
|
|
|
|
|
//[FieldOffset(0)]
|
|
|
|
|
//public PSO2ItemNone None;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct PSO2ItemNone
|
|
|
|
|
{
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public unsafe struct PSO2ItemWeapon
|
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public byte flags;
|
|
|
|
|
public byte element;
|
|
|
|
|
public byte force;
|
|
|
|
|
public byte grind;
|
|
|
|
|
public byte grindPercent;
|
|
|
|
|
public byte unknown1;
|
|
|
|
|
public short unknown2;
|
|
|
|
|
public fixed short affixes[8];
|
|
|
|
|
public uint potential;
|
|
|
|
|
public byte extend;
|
|
|
|
|
public byte unknown3;
|
|
|
|
|
public ushort unknown4;
|
|
|
|
|
public uint unknown5;
|
|
|
|
|
public uint unknown6;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct PSO2ItemClothing
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public ushort flags;
|
|
|
|
|
public fixed byte unk1[0x14];
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public HSVColor Color;
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public fixed byte unk2[0xA];
|
|
|
|
|
public ushort Unk3;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct PSO2ItemConsumable
|
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public ushort flags;
|
|
|
|
|
public fixed byte unk1[0x24];
|
|
|
|
|
public ushort amount;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct PSO2ItemCamo
|
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public byte unk1;
|
|
|
|
|
public byte unk2;
|
|
|
|
|
public byte unk3;
|
|
|
|
|
public fixed byte unk4[0x24];
|
|
|
|
|
public byte unk5;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-29 10:01:28 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public unsafe struct PSO2ItemUnit
|
|
|
|
|
{
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public byte flags;
|
|
|
|
|
public byte EnhLevel;
|
|
|
|
|
public byte EnhPercent;
|
|
|
|
|
public byte Unk1;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
|
|
|
|
|
// 使用 fixed 数组来存储附加信息
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public fixed ushort Affixes[8]; // Item affix IDs (0 to 4095)
|
2024-09-19 11:48:56 +08:00
|
|
|
|
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public fixed byte unk4[0x7];
|
|
|
|
|
public uint Potential;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
|
|
|
|
|
// 使用 fixed 数组来存储未知字段
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public fixed byte Unk2[4];
|
2024-09-19 11:48:56 +08:00
|
|
|
|
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public uint Unk3;
|
|
|
|
|
public ushort Unk4;
|
|
|
|
|
public ushort Unk5;
|
2024-09-19 11:48:56 +08:00
|
|
|
|
|
|
|
|
|
// 提供访问固定数组的属性
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public Span<ushort> AffixSpan
|
2024-09-19 11:48:56 +08:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
fixed (ushort* p = Affixes)
|
|
|
|
|
{
|
|
|
|
|
return new Span<ushort>(p, 8);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-22 00:08:44 +08:00
|
|
|
|
public struct Campaign
|
|
|
|
|
{
|
|
|
|
|
/// Campaign ID.
|
|
|
|
|
public uint Id; // 对应 Rust 的 u32
|
|
|
|
|
|
|
|
|
|
/// Start timestamp.
|
|
|
|
|
public TimeSpan StartDate; // 对应 Rust 的 Duration
|
|
|
|
|
|
|
|
|
|
/// End timestamp.
|
|
|
|
|
public TimeSpan EndDate; // 对应 Rust 的 Duration
|
|
|
|
|
|
|
|
|
|
/// Campaign title (固定长度 0x3E).
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public const int TitleLength = 0x3E;
|
|
|
|
|
public byte[] titleBytes;
|
2024-09-22 00:08:44 +08:00
|
|
|
|
|
|
|
|
|
public string Title
|
|
|
|
|
{
|
|
|
|
|
get => Encoding.ASCII.GetString(titleBytes).TrimEnd('\0');
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
titleBytes = new byte[TitleLength];
|
|
|
|
|
byte[] valueBytes = Encoding.ASCII.GetBytes(value);
|
|
|
|
|
Array.Copy(valueBytes, titleBytes, Math.Min(valueBytes.Length, TitleLength));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Campaign conditions (固定长度 0x102).
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public const int ConditionsLength = 0x102;
|
|
|
|
|
public byte[] conditionsBytes;
|
2024-09-22 00:08:44 +08:00
|
|
|
|
|
|
|
|
|
public string Conditions
|
|
|
|
|
{
|
|
|
|
|
get => Encoding.ASCII.GetString(conditionsBytes).TrimEnd('\0');
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
conditionsBytes = new byte[ConditionsLength];
|
|
|
|
|
byte[] valueBytes = Encoding.ASCII.GetBytes(value);
|
|
|
|
|
Array.Copy(valueBytes, conditionsBytes, Math.Min(valueBytes.Length, ConditionsLength));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 从数据流中读取 Campaign
|
|
|
|
|
public static Campaign FromStream(Stream stream)
|
|
|
|
|
{
|
|
|
|
|
using (BinaryReader reader = new BinaryReader(stream, Encoding.ASCII, true))
|
|
|
|
|
{
|
|
|
|
|
Campaign campaign = new Campaign
|
|
|
|
|
{
|
|
|
|
|
Id = reader.ReadUInt32(),
|
|
|
|
|
StartDate = TimeSpan.FromTicks(reader.ReadInt64()),
|
|
|
|
|
EndDate = TimeSpan.FromTicks(reader.ReadInt64()),
|
|
|
|
|
};
|
|
|
|
|
campaign.titleBytes = reader.ReadBytes(TitleLength);
|
|
|
|
|
campaign.conditionsBytes = reader.ReadBytes(ConditionsLength);
|
|
|
|
|
return campaign;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 将 Campaign 写入数据流
|
|
|
|
|
public void WriteToStream(Stream stream)
|
|
|
|
|
{
|
|
|
|
|
using (BinaryWriter writer = new BinaryWriter(stream, Encoding.ASCII, true))
|
|
|
|
|
{
|
|
|
|
|
writer.Write(Id);
|
|
|
|
|
writer.Write(StartDate.Ticks);
|
|
|
|
|
writer.Write(EndDate.Ticks);
|
|
|
|
|
writer.Write(titleBytes);
|
|
|
|
|
writer.Write(conditionsBytes);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public enum ItemTypes
|
|
|
|
|
{
|
|
|
|
|
NoItem,
|
2024-09-10 00:31:40 +08:00
|
|
|
|
Weapon,
|
2024-09-19 11:48:56 +08:00
|
|
|
|
Clothing,
|
|
|
|
|
Consumable,
|
|
|
|
|
Camo,
|
2024-09-10 00:31:40 +08:00
|
|
|
|
Unit,
|
2024-09-19 11:48:56 +08:00
|
|
|
|
Unknown
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum ItemFlags
|
|
|
|
|
{
|
|
|
|
|
Locked = 0x01,
|
|
|
|
|
BoundToOwner = 0x02
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ItemElement
|
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
Fire,
|
|
|
|
|
Ice,
|
|
|
|
|
Lightning,
|
|
|
|
|
Wind,
|
|
|
|
|
Light,
|
|
|
|
|
Dark
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class PSO2Item
|
|
|
|
|
{
|
|
|
|
|
public const int Size = 0x38;
|
|
|
|
|
|
|
|
|
|
MemoryStream stream;
|
2024-09-10 01:16:10 +08:00
|
|
|
|
//TODO
|
2024-12-07 01:44:49 +08:00
|
|
|
|
public ItemTypes type = ItemTypes.Consumable;
|
|
|
|
|
public byte[] data = new byte[Size];
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return string.Format("Data: {0:X}", BitConverter.ToString(data)).Replace('-', ' ');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PSO2Item(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
SetData(data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public byte[] GetData()
|
|
|
|
|
{
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetData(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
this.data = data;
|
|
|
|
|
|
|
|
|
|
stream = new MemoryStream(data, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long GetGUID()
|
|
|
|
|
{
|
|
|
|
|
byte[] guid = new byte[sizeof(long)];
|
|
|
|
|
|
|
|
|
|
stream.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
stream.Read(guid, 0, sizeof(long));
|
|
|
|
|
|
|
|
|
|
return BitConverter.ToInt64(guid, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetGUID(long guid)
|
|
|
|
|
{
|
|
|
|
|
stream.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
stream.Write(BitConverter.GetBytes(guid), 0, 8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int[] GetID()
|
|
|
|
|
{
|
|
|
|
|
byte[] ID = new byte[sizeof(int)];
|
|
|
|
|
byte[] subID = new byte[sizeof(int)];
|
|
|
|
|
|
|
|
|
|
stream.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
stream.Read(ID, 0x08, sizeof(int));
|
|
|
|
|
stream.Read(subID, 0x0C, sizeof(int));
|
|
|
|
|
|
|
|
|
|
return new int[] { BitConverter.ToInt32(ID, 0), BitConverter.ToInt32(subID, 0) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetID(int ID, int subID)
|
|
|
|
|
{
|
|
|
|
|
stream.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
stream.Write(BitConverter.GetBytes(ID), 0x08, sizeof(int));
|
|
|
|
|
stream.Write(BitConverter.GetBytes(subID), 0x0C, sizeof(int));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ...
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-19 11:48:56 +08:00
|
|
|
|
public static class AffixUtils
|
|
|
|
|
{
|
|
|
|
|
public static ushort[] ReadPackedAffixes(Stream reader)
|
|
|
|
|
{
|
|
|
|
|
byte[] packed = new byte[12];
|
|
|
|
|
reader.Read(packed, 0, packed.Length);
|
|
|
|
|
|
|
|
|
|
ushort[] affixes = new ushort[8];
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
|
|
|
|
affixes[i * 2] = BitConverter.ToUInt16(new byte[] { packed[i * 3], (byte)((packed[i * 3 + 2] & 0xF0) >> 4) }, 0);
|
|
|
|
|
affixes[i * 2 + 1] = BitConverter.ToUInt16(new byte[] { packed[i * 3 + 1], (byte)(packed[i * 3 + 2] & 0xF) }, 0);
|
|
|
|
|
}
|
|
|
|
|
return affixes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WritePackedAffixes(ushort[] affixes, Stream writer)
|
|
|
|
|
{
|
|
|
|
|
byte[] packed = new byte[12];
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
|
|
|
|
byte[] affix1 = BitConverter.GetBytes(affixes[i * 2]);
|
|
|
|
|
byte[] affix2 = BitConverter.GetBytes(affixes[i * 2 + 1]);
|
|
|
|
|
|
|
|
|
|
packed[i * 3] = affix1[0];
|
|
|
|
|
packed[i * 3 + 1] = affix2[0];
|
|
|
|
|
packed[i * 3 + 2] = (byte)((affix1[1] << 4) | (affix2[1] & 0xF));
|
|
|
|
|
}
|
|
|
|
|
writer.Write(packed, 0, packed.Length);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class PacketError : Exception
|
|
|
|
|
{
|
|
|
|
|
public string PacketName { get; }
|
|
|
|
|
public string FieldName { get; }
|
|
|
|
|
|
|
|
|
|
public PacketError(string packetName, string fieldName, Exception innerException)
|
|
|
|
|
: base($"Error in packet '{packetName}', field '{fieldName}'", innerException)
|
|
|
|
|
{
|
|
|
|
|
PacketName = packetName;
|
|
|
|
|
FieldName = fieldName;
|
|
|
|
|
}
|
|
|
|
|
}
|