using Newtonsoft.Json; using PSO2SERVER.Json; using System; using System.Collections.Generic; using System.Linq; using System.Security.AccessControl; using System.Text; using System.Threading.Tasks; using UltimateOrb; namespace PSO2SERVER.Models { // 表示 JSON 的根对象 public class ItemAttributesRootObject { [JsonProperty("PC")] public ItemAttributesPC PC { get; set; } [JsonProperty("VITA")] public ItemAttributesVita VITA { get; set; } } // Base class for ItemAttributes [Serializable] public abstract class ItemAttributesBase { [JsonProperty("unk1")] public uint Unk1 { get; set; } [JsonProperty("unk2")] public UInt128 Unk2 { get; set; } } // PC ItemAttributes (NA and JP client) [Serializable] public class ItemAttributesPC : ItemAttributesBase { [JsonProperty("weapons")] public List Weapons { get; set; } = new List(); [JsonProperty("human_costumes")] public List HumanCostumes { get; set; } = new List(); [JsonProperty("cast_parts")] public List CastParts { get; set; } = new List(); [JsonProperty("consumables")] public List Consumables { get; set; } = new List(); [JsonProperty("data5")] public List Data5 { get; set; } = new List(); [JsonProperty("data6")] public List Data6 { get; set; } = new List(); [JsonProperty("data7")] public List Data7 { get; set; } = new List(); [JsonProperty("data8")] public List Data8 { get; set; } = new List(); [JsonProperty("data9")] public List Data9 { get; set; } = new List(); [JsonProperty("data10")] public List Data10 { get; set; } = new List(); [JsonProperty("data11")] public List Data11 { get; set; } = new List(); [JsonProperty("data12")] public List Data12 { get; set; } = new List(); [JsonProperty("data13")] public List Data13 { get; set; } = new List(); [JsonProperty("data14")] public List Data14 { get; set; } = new List(); [JsonProperty("data15")] public List Data15 { get; set; } = new List(); [JsonProperty("data16")] public List Data16 { get; set; } = new List(); [JsonProperty("data17")] public List Data17 { get; set; } = new List(); [JsonProperty("data18")] [JsonConverter(typeof(FixedListConverter))] public FixedList Data18 { get; set; } = new FixedList(406); [JsonProperty("data19")] public List Data19 { get; set; } = new List(); [JsonProperty("data20")] public List Data20 { get; set; } = new List(); public static void LogWeapons(List weapons) { if (weapons == null || weapons.Count == 0) return; Logger.Write($"Weapons Count: {weapons.Count}"); foreach (var weapon in weapons) { Logger.Write($"Weapon ID: {weapon.Id}, Range Damage: {weapon.RangeDmg}, Gender: {weapon.Gender}"); Logger.Write($"weapon.Unk8 Length: {weapon.Unk8.Length}"); foreach (var un8 in weapon.Unk8) { Logger.Write($"Weapon un8: {un8}"); } } } // 输出 Data17 列表信息 public static void LogData17(List data17List) { if (data17List == null || data17List.Count == 0) return; Logger.Write($"Data17 Count: {data17List.Count}"); foreach (var data17 in data17List) { Logger.Write($"data17.unk Length: {data17.unk.Length}"); foreach (var value in data17.unk) { Logger.Write($"data17 value: {value}"); } } } } // Vita ItemAttributes (Vita client) [Serializable] public class ItemAttributesVita : ItemAttributesBase { [JsonProperty("weapons")] public List Weapons { get; set; } = new List(); [JsonProperty("human_costumes")] public List HumanCostumes { get; set; } = new List(); [JsonProperty("cast_parts")] public List CastParts { get; set; } = new List(); [JsonProperty("consumables")] public List Consumables { get; set; } = new List(); [JsonProperty("data5")] public List Data5 { get; set; } = new List(); [JsonProperty("data6")] public List Data6 { get; set; } = new List(); [JsonProperty("data7")] public List Data7 { get; set; } = new List(); [JsonProperty("data8")] public List Data8 { get; set; } = new List(); [JsonProperty("data9")] public List Data9 { get; set; } = new List(); [JsonProperty("data10")] public List Data10 { get; set; } = new List(); [JsonProperty("data11")] public List Data11 { get; set; } = new List(); [JsonProperty("data12")] public List Data12 { get; set; } = new List(); [JsonProperty("data13")] public List Data13 { get; set; } = new List(); [JsonProperty("data14")] public List Data14 { get; set; } = new List(); [JsonProperty("data15")] public List Data15 { get; set; } = new List(); [JsonProperty("data16")] public List Data16 { get; set; } = new List(); [JsonProperty("data17")] public List Data17 { get; set; } = new List(); [JsonProperty("data18")] [JsonConverter(typeof(FixedListConverter))] public FixedList Data18 { get; set; } = new FixedList(406); [JsonProperty("data19")] public List Data19 { get; set; } = new List(); [JsonProperty("data20")] public List Data20 { get; set; } = new List(); } // Abstract base class that holds the common functionality of the Item, irrespective of the platform [Serializable] public class ItemAttr { public ItemAttributesBase Attributes { get; set; } // Constructor to initialize an item with platform-specific attributes public ItemAttr(ItemAttributesBase attributes) { Attributes = attributes; } // Method to display item attributes public void DisplayAttributes() { switch (Attributes) { case ItemAttributesPC pcAttributes: Console.WriteLine("PC Version Item Attributes:"); Console.WriteLine($"Weapons Count: {pcAttributes.Weapons.Count}"); // Add further attribute display logic for PC break; case ItemAttributesVita vitaAttributes: Console.WriteLine("Vita Version Item Attributes:"); Console.WriteLine($"Weapons Count: {vitaAttributes.Weapons.Count}"); // Add further attribute display logic for Vita break; default: Console.WriteLine("Unknown ItemAttributes"); break; } } } // Example of a simple class, could be for one of the referenced types [Serializable] public class WeaponAttrs { // Item category [JsonProperty("id")] public ushort Id { get; set; } // Item ID [JsonProperty("subid")] public ushort Subid { get; set; } [JsonProperty("unk1")] public byte Unk1 { get; set; } [JsonProperty("priority")] public byte Priority { get; set; } [JsonProperty("unk2")] public byte Unk2 { get; set; } [JsonProperty("priority2")] public byte Priority2 { get; set; } // Item rarity in stars [JsonProperty("rarity")] public byte Rarity { get; set; } [JsonProperty("flags")] public ushort Flags { get; set; } [JsonProperty("unk3")] public byte Unk3 { get; set; } [JsonProperty("icon_list")] public ushort IconList { get; set; } [JsonProperty("icon_index")] public ushort IconIndex { get; set; } // Range damage [JsonProperty("range_dmg")] public ushort RangeDmg { get; set; } [JsonProperty("unk4")] public byte Unk4 { get; set; } // Melee damage [JsonProperty("melee_dmg")] public ushort MeleeDmg { get; set; } [JsonProperty("unk5")] public byte Unk5 { get; set; } [JsonProperty("unk6")] public uint Unk6 { get; set; } // Force damage and equipable genders [JsonProperty("force_dmg")] public uint ForceDmg { get; set; } [JsonProperty("gender")] public string Gender { get; set; } [JsonProperty("unk8")] [JsonConverter(typeof(FixedListConverter))] public FixedList Unk8 { get; set; } = new FixedList(0x04, 0); // Equipable races [JsonProperty("race")] public string Race { get; set; } [JsonProperty("flags2")] public byte Flags2 { get; set; } // Equipable classes [JsonProperty("class")] public string Class { get; set; } // Required stat value [JsonProperty("req_stat")] public ushort ReqStat { get; set; } // Required stat type [JsonProperty("req_stat_type")] public string ReqStatType { get; set; } [JsonProperty("unk9")] public byte Unk9 { get; set; } [JsonProperty("model")] public ushort Model { get; set; } [JsonProperty("unk10")] public uint Unk10 { get; set; } [JsonProperty("unk11")] public ushort Unk11 { get; set; } [JsonProperty("affix_flag")] public ushort AffixFlag { get; set; } [JsonProperty("unk12")] public ushort Unk12 { get; set; } } [Serializable] public class HumanCostume { /// /// Item category. /// [JsonProperty("id")] public ushort Id { get; set; } /// /// Item ID. /// [JsonProperty("subid")] public ushort Subid { get; set; } [JsonProperty("unk1")] public ushort Unk1 { get; set; } [JsonProperty("unk2")] public ushort Unk2 { get; set; } /// /// Item rarity in stars. /// [JsonProperty("rarity")] public byte Rarity { get; set; } [JsonProperty("flags")] public ushort Flags { get; set; } [JsonProperty("unk3")] public byte Unk3 { get; set; } [JsonProperty("icon_list")] public ushort IconList { get; set; } [JsonProperty("icon_index")] public ushort IconIndex { get; set; } /// /// Equipable genders. /// [JsonProperty("gender_flags")] [JsonConverter(typeof(GenderFlagsConverter))] public GenderFlags GenderFlags { get; set; } [JsonProperty("color_flags")] public byte ColorFlags { get; set; } /// /// Equipable races. /// [JsonProperty("race_flags")] [JsonConverter(typeof(RaceFlagsConverter))] public RaceFlags RaceFlags { get; set; } [JsonProperty("unk4")] public byte Unk4 { get; set; } [JsonProperty("model")] public ushort Model { get; set; } [JsonProperty("unk5")] [JsonConverter(typeof(FixedUShort.FixedUShortConverter))] public FixedUShort Unk5 { get; set; } = new FixedUShort(3); } [Serializable] public class CastPart { /// /// Item category. /// [JsonProperty("id")] public ushort Id { get; set; } /// /// Item ID. /// [JsonProperty("subid")] public ushort Subid { get; set; } [JsonProperty("unk1")] public ushort Unk1 { get; set; } [JsonProperty("unk2")] public ushort Unk2 { get; set; } /// /// Item rarity in stars. /// /// [JsonProperty("")] [JsonProperty("rarity")] public byte Rarity { get; set; } [JsonProperty("flags")] public ushort Flags { get; set; } [JsonProperty("unk3")] public byte Unk3 { get; set; } [JsonProperty("icon_list")] public ushort IconList { get; set; } [JsonProperty("icon_index")] public ushort IconIndex { get; set; } [JsonProperty("gender_flags")] public byte GenderFlags { get; set; } [JsonProperty("unk4")] public byte Unk4 { get; set; } [JsonProperty("race_flags")] public byte RaceFlags { get; set; } [JsonProperty("unk5")] public byte Unk5 { get; set; } [JsonProperty("unk6")] public ushort Unk6 { get; set; } [JsonProperty("model")] public ushort Model { get; set; } // 默认构造函数 public CastPart() { // 如果需要初始化某些属性,可以在这里进行 } } [Serializable] public class Consumable { [JsonProperty("id")] public ushort Id { get; set; } [JsonProperty("subid")] public ushort Subid { get; set; } [JsonProperty("unk1")] public ushort Unk1 { get; set; } [JsonProperty("unk2")] public ushort Unk2 { get; set; } [JsonProperty("rarity")] public byte Rarity { get; set; } [JsonProperty("flags")] public ushort Flags { get; set; } [JsonProperty("unk3")] public byte Unk3 { get; set; } [JsonProperty("icon_list")] public ushort IconList { get; set; } [JsonProperty("icon_index")] public ushort IconIndex { get; set; } [JsonProperty("max_qty")] public byte MaxQty { get; set; } [JsonProperty("unk4")] public byte[] Unk4 { get; set; } = new byte[3]; [JsonProperty("unk5")] public uint Unk5 { get; set; } } [Serializable] public class Data5 { [JsonProperty("id")] public ushort Id { get; set; } [JsonProperty("subid")] public ushort Subid { get; set; } [JsonProperty("unk1")] public ushort Unk1 { get; set; } [JsonProperty("unk2")] public ushort Unk2 { get; set; } [JsonProperty("unk6")] public byte Unk6 { get; set; } [JsonProperty("unk3")] public byte Unk3 { get; set; } [JsonProperty("unk4")] public byte Unk4 { get; set; } [JsonProperty("unk5")] public byte Unk5 { get; set; } [JsonProperty("icon_list")] public ushort IconList { get; set; } [JsonProperty("icon_index")] public ushort IconIndex { get; set; } [JsonProperty("unk")] public byte[] Unk { get; set; } = new byte[0x30]; // Fixed length of 0x30 bytes } [Serializable] public class Unit { /// /// Item category. /// [JsonProperty("id")] public ushort Id { get; set; } /// /// Item ID. /// [JsonProperty("subid")] public ushort Subid { get; set; } [JsonProperty("unk1")] public ushort Unk1 { get; set; } [JsonProperty("unk2")] public ushort Unk2 { get; set; } /// /// Item rarity in stars. /// [JsonProperty("rarity")] public byte Rarity { get; set; } [JsonProperty("flags")] public ushort Flags { get; set; } [JsonProperty("unk3")] public byte Unk3 { get; set; } [JsonProperty("icon_list")] public ushort IconList { get; set; } [JsonProperty("icon_index")] public ushort IconIndex { get; set; } /// /// Unit stats. /// [JsonProperty("stats")] public UnitRes Stats { get; set; } /// /// Required stat type. /// [JsonProperty("req_stat_type")] public StatType ReqStatType { get; set; } [JsonProperty("unk4")] public byte Unk4 { get; set; } [JsonProperty("unk5")] public byte Unk5 { get; set; } [JsonProperty("unk6")] public ushort Unk6 { get; set; } [JsonProperty("unk7")] public ushort Unk7 { get; set; } [JsonProperty("unk8")] public ushort Unk8 { get; set; } [JsonProperty("unk9")] public ushort Unk9 { get; set; } /// /// Required stat value. /// [JsonProperty("req_stat")] public ushort ReqStat { get; set; } /// /// Unit attack values. /// [JsonProperty("atk")] public UnitAtk Atk { get; set; } [JsonProperty("unk10")] public byte Unk10 { get; set; } [JsonProperty("unk11")] public byte Unk11 { get; set; } [JsonProperty("unk12")] public byte Unk12 { get; set; } [JsonProperty("unk13")] public ushort Unk13 { get; set; } [JsonProperty("unk14")] public uint Unk14 { get; set; } [JsonProperty("unk15")] public uint Unk15 { get; set; } } public class Data7 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x38, 0); } public class Data8 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x10, 0); } public class Data9 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x3C, 0); } public class Data10 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x24, 0); } public class Data11 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x10, 0); } public class Data12 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x24, 0); } public class Data13 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x50, 0); } public class Data14 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x7C, 0); } public class Data15 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x10, 0); } public class Data16 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x12, 0); } public class Data17 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x5A, 0); } public class Data18 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x08, 0); } public class ShortData { public List unk { get; set; } = new List(); } public class Data19 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x54, 0); } public class Data19Vita { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x2C, 0); } public class Data20 { [JsonConverter(typeof(FixedListConverter))] public FixedList unk { get; set; } = new FixedList(0x1C, 0); } public struct GenderDmg { /// Force damage. public ushort force_dmg; /// Equipable genders. public GenderFlags gender; } public enum StatType { // MEL power. MELPwr = 0, // RNG power. RNGPwr = 1, // TEC power. TECPwr = 2, // DEX. DEX = 3, // MEL defence. MELDef = 4, // RNG defence. RNGDef = 5, // TEC defence. TECDef = 6 } public static class StatTypeExtensions { public static StatType Default => StatType.MELPwr; } public class UnitRes { /// /// TEC resistance. /// [JsonProperty("tec_res")] public byte TecRes { get; set; } /// /// TEC defence. /// [JsonProperty("tec_def")] public ushort TecDef { get; set; } /// /// RNG defence. /// [JsonProperty("rng_def")] public ushort RngDef { get; set; } /// /// MEL defence. /// [JsonProperty("mel_def")] public ushort MelDef { get; set; } /// /// Additional HP. /// [JsonProperty("hp")] public ushort Hp { get; set; } /// /// Additional PP. /// [JsonProperty("pp")] public byte Pp { get; set; } /// /// Dark resistance. /// [JsonProperty("dark_res")] public byte DarkRes { get; set; } /// /// Light resistance. /// [JsonProperty("light_res")] public byte LightRes { get; set; } /// /// Wind resistance. /// [JsonProperty("wind_res")] public byte WindRes { get; set; } /// /// Lightning resistance. /// [JsonProperty("lightning_res")] public byte LightningRes { get; set; } /// /// Ice resistance. /// [JsonProperty("ice_res")] public byte IceRes { get; set; } /// /// Fire resistance. /// [JsonProperty("fire_res")] public byte FireRes { get; set; } /// /// RNG resistance. /// [JsonProperty("rng_res")] public byte RngRes { get; set; } /// /// MEL resistance. /// [JsonProperty("mel_res")] public byte MelRes { get; set; } } public class UnitAtk { /// /// Additional MEL attack. /// [JsonProperty("mel_atk")] public ushort MelAtk { get; set; } /// /// Additional RNG attack. /// [JsonProperty("rng_atk")] public ushort RngAtk { get; set; } /// /// Additional TEC attack. /// [JsonProperty("tec_atk")] public ushort TecAtk { get; set; } /// /// Additional DEX. /// [JsonProperty("dex")] public ushort Dex { get; set; } [JsonProperty("unk_atk")] public byte UnkAtk { get; set; } } public class GenderFlagsConverter : JsonConverter { public override GenderFlags ReadJson(JsonReader reader, Type objectType, GenderFlags existingValue, bool hasExistingValue, JsonSerializer serializer) { var value = reader.Value as string; if (value != null) { GenderFlags genderFlags = GenderFlags.NONE; // 按 '|' 分割字符串 var flags = value.Split('|'); foreach (var flag in flags) { var trimmedFlag = flag.Trim(); if (Enum.TryParse(trimmedFlag, out var parsedFlag)) { genderFlags |= parsedFlag; } } return genderFlags; } return GenderFlags.NONE; } public override void WriteJson(JsonWriter writer, GenderFlags value, JsonSerializer serializer) { writer.WriteValue(value.ToString()); } } [Flags] /// Equipable genders. public enum GenderFlags : byte { NONE = 0, /// Males can equip. MALE = 1 << 0, /// Females can equip. FEMALE = 1 << 1, } public class RaceFlagsConverter : JsonConverter { public override RaceFlags ReadJson(JsonReader reader, Type objectType, RaceFlags existingValue, bool hasExistingValue, JsonSerializer serializer) { var value = reader.Value as string; if (value != null) { RaceFlags raceFlags = RaceFlags.NONE; // 按 '|' 分割字符串 var flags = value.Split('|'); foreach (var flag in flags) { var trimmedFlag = flag.Trim(); if (Enum.TryParse(trimmedFlag, out var parsedFlag)) { raceFlags |= parsedFlag; } } return raceFlags; } return RaceFlags.NONE; } public override void WriteJson(JsonWriter writer, RaceFlags value, JsonSerializer serializer) { writer.WriteValue(value.ToString()); } } [Flags] /// Equipable races. public enum RaceFlags : byte { NONE = 0, /// Humans can equip. HUMAN = 1 << 0, /// Newmans can equip. NEWMAN = 1 << 1, /// CASTs can equip. CAST = 1 << 2, /// Deumans can equip. DEUMAN = 1 << 3, } }