diff --git a/Server/Models/CharacterAdditionalStruct.cs b/Server/Models/CharacterAdditionalStruct.cs index 2230d28..f450d79 100644 --- a/Server/Models/CharacterAdditionalStruct.cs +++ b/Server/Models/CharacterAdditionalStruct.cs @@ -69,7 +69,7 @@ namespace PSO2SERVER.Models //Luster:1 << 14,即 16384(0x4000) [Flags] - public enum ClassTypeField : ushort + public enum ClassFlags : ushort { Hunter = 1 << 0, Ranger = 1 << 1, @@ -135,7 +135,7 @@ namespace PSO2SERVER.Models Hovering = 11 } - public enum Race : ushort + public enum RaceFlags : ushort { Unknown = 0xFFFF, Human = 0, diff --git a/Server/Models/CharacterStruct.cs b/Server/Models/CharacterStruct.cs index 7fd418c..d13eeea 100644 --- a/Server/Models/CharacterStruct.cs +++ b/Server/Models/CharacterStruct.cs @@ -13,7 +13,7 @@ namespace PSO2SERVER.Models public unsafe struct LooksParam { public RunAnimation running_animation; - public Race race; + public RaceFlags race; public Gender gender; public ushort Muscule; public Figure Body; @@ -92,7 +92,7 @@ namespace PSO2SERVER.Models public ClassType mainClass;//1 public ClassType subClass;//1 public ushort unk2;//2 - public ClassTypeField enabledClasses;//2 + public ClassFlags enabledClasses;//2 public ushort unk3;//2 public Entries entries; //TODO: Make this a fixed array 24 * 8 public fixed ushort unk_maxlevel[15];//30 diff --git a/Server/Models/ItemAttributes.cs b/Server/Models/ItemAttributes.cs new file mode 100644 index 0000000..5395015 --- /dev/null +++ b/Server/Models/ItemAttributes.cs @@ -0,0 +1,211 @@ +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 +{ + // Enum for ItemAttributes + public enum ItemAttributes + { + PC, + Vita + } + + // Base class for ItemAttributes + [Serializable] + public class ItemAttributesBase + { + public uint Unk1 { get; set; } + public UInt128 Unk2 { get; set; } + } + + // PC ItemAttributes (NA and JP client) + [Serializable] + public class ItemAttributesPC : ItemAttributesBase + { + public List Weapons { get; set; } = new List(); + public List HumanCostumes { get; set; } = new List(); + public List CastParts { get; set; } = new List(); + public List Consumables { get; set; } = new List(); + public List Data5 { get; set; } = new List(); + public List Data6 { get; set; } = new List(); + public List Data7 { get; set; } = new List(); + public List Data8 { get; set; } = new List(); + public List Data9 { get; set; } = new List(); + public List Data10 { get; set; } = new List(); + public List Data11 { get; set; } = new List(); + public List Data12 { get; set; } = new List(); + public List Data13 { get; set; } = new List(); + public List Data14 { get; set; } = new List(); + public List Data15 { get; set; } = new List(); + public List Data16 { get; set; } = new List(); + public List Data17 { get; set; } = new List(); + public List Data18 { get; set; } = new List(); // Fixed length can be manually handled + public List Data19 { get; set; } = new List(); + public List Data20 { get; set; } = new List(); + } + + // Vita ItemAttributes (Vita client) + [Serializable] + public class ItemAttributesVita : ItemAttributesBase + { + public List Weapons { get; set; } = new List(); + public List HumanCostumes { get; set; } = new List(); + public List CastParts { get; set; } = new List(); + public List Consumables { get; set; } = new List(); + public List Data5 { get; set; } = new List(); + public List Data6 { get; set; } = new List(); + public List Data7 { get; set; } = new List(); + public List Data8 { get; set; } = new List(); + public List Data9 { get; set; } = new List(); + public List Data10 { get; set; } = new List(); + public List Data11 { get; set; } = new List(); + public List Data12 { get; set; } = new List(); + public List Data13 { get; set; } = new List(); + public List Data14 { get; set; } = new List(); + public List Data15 { get; set; } = new List(); + public List Data16 { get; set; } = new List(); + public List Data17 { get; set; } = new List(); + public List Data18 { get; set; } = new List(); // Fixed length can be manually handled + public List Data19 { get; set; } = new List(); + public List Data20 { get; set; } = new List(); + } + + // Example of a simple class, could be for one of the referenced types + [Serializable] + public class WeaponAttrs + { + // Item category + public ushort Id { get; set; } + + // Item ID + public ushort Subid { get; set; } + public byte Unk1 { get; set; } + public byte Priority { get; set; } + public byte Unk2 { get; set; } + public byte Priority2 { get; set; } + + // Item rarity in stars + public byte Rarity { get; set; } + public ushort Flags { get; set; } + public byte Unk3 { get; set; } + public ushort IconList { get; set; } + public ushort IconIndex { get; set; } + + // Range damage + public ushort RangeDmg { get; set; } + public byte Unk4 { get; set; } + + // Melee damage + public ushort MeleeDmg { get; set; } + public byte Unk5 { get; set; } + public uint Unk6 { get; set; } + + // Force damage and equipable genders + public GenderDmg GenderForceDmg { get; set; } + + public byte[] Unk8 { get; set; } = new byte[4]; + + // Equipable races + public RaceFlags Race { get; set; } + public byte Flags2 { get; set; } + + // Equipable classes + public ClassFlags Class { get; set; } + + // Required stat value + public ushort ReqStat { get; set; } + + // Required stat type + public StatType ReqStatType { get; set; } + + public byte Unk9 { get; set; } + public ushort Model { get; set; } + public uint Unk10 { get; set; } + public ushort Unk11 { get; set; } + public ushort AffixFlag { get; set; } + public ushort Unk12 { get; set; } + } + + [Serializable] + public class HumanCostume + { + // Properties specific to HumanCostume + } + + [Serializable] + public class CastPart + { + // Properties specific to CastPart + } + + [Serializable] + public class Consumable + { + // Properties specific to Consumable + } + + [Serializable] + public class Data5 + { + // Properties specific to Data5 + } + + // More data types (e.g., Data7, Data8, etc.) need to be created similarly + public class Unit { } + public class Data7 { } + public class Data8 { } + public class Data9 { } + public class Data10 { } + public class Data11 { } + public class Data12 { } + public class Data13 { } + public class Data14 { } + public class Data15 { } + public class Data16 { } + public class Data17 { } + public class ShortData { } + public class Data19 { } + public class Data19Vita { } + public class Data20 { } + public struct GenderDmg + { + /// Force damage. + public ushort force_dmg; + /// Equipable genders. + public Gender 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; + } +} diff --git a/Server/Server.csproj b/Server/Server.csproj index f96086d..e273ada 100644 --- a/Server/Server.csproj +++ b/Server/Server.csproj @@ -108,6 +108,11 @@ ..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll + True + True + ..\packages\MySql.Data.9.0.0\lib\net48\MySql.Data.dll @@ -118,13 +123,24 @@ ..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll + + ..\packages\System.AppContext.4.3.0\lib\net463\System.AppContext.dll + True + True + ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll + ..\packages\System.Configuration.ConfigurationManager.8.0.0\lib\net462\System.Configuration.ConfigurationManager.dll + + ..\packages\System.Console.4.3.0\lib\net46\System.Console.dll + True + True + @@ -135,29 +151,147 @@ ..\packages\System.Diagnostics.DiagnosticSource.8.0.1\lib\net462\System.Diagnostics.DiagnosticSource.dll + + ..\packages\System.Diagnostics.Tracing.4.3.0\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + ..\packages\System.Globalization.Calendars.4.3.0\lib\net46\System.Globalization.Calendars.dll + True + True + ..\packages\Half.1.0.0\lib\netstandard2.0\System.Half.dll + + ..\packages\System.IO.4.3.0\lib\net462\System.IO.dll + True + True + + + ..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll + True + True + + + + ..\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll + True + True + + + ..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll + True + True + + + ..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll + True + True + ..\packages\System.IO.Pipelines.8.0.0\lib\net462\System.IO.Pipelines.dll + + ..\packages\System.Linq.4.3.0\lib\net463\System.Linq.dll + True + True + + + ..\packages\System.Linq.Expressions.4.3.0\lib\net463\System.Linq.Expressions.dll + True + True + ..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll + + ..\packages\System.Net.Http.4.3.0\lib\net46\System.Net.Http.dll + True + True + + + ..\packages\System.Net.Sockets.4.3.0\lib\net46\System.Net.Sockets.dll + True + True + ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll + + ..\packages\System.Reflection.4.3.0\lib\net462\System.Reflection.dll + True + True + + + ..\packages\System.Runtime.4.3.0\lib\net462\System.Runtime.dll + True + True + ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll + + ..\packages\System.Runtime.Extensions.4.3.0\lib\net462\System.Runtime.Extensions.dll + True + True + + + ..\packages\System.Runtime.InteropServices.4.3.0\lib\net463\System.Runtime.InteropServices.dll + True + True + + + ..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + ..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + ..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + ..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + ..\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + ..\packages\System.Text.RegularExpressions.4.3.0\lib\net463\System.Text.RegularExpressions.dll + True + True + ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll + + + ..\packages\System.Xml.ReaderWriter.4.3.0\lib\net46\System.Xml.ReaderWriter.dll + True + True + + + ..\packages\UltimateOrb.Int128.1.0.8\lib\netstandard2.0\UltimateOrb.Int128.dll + + + ..\packages\UltimateOrb.Mathematics.DoubleArithmetic.Core.1.2.12\lib\netstandard1.0\UltimateOrb.Mathematics.DoubleArithmetic.Core.dll + ..\packages\ZstdSharp.Port.0.8.1\lib\net462\ZstdSharp.dll @@ -174,6 +308,7 @@ + diff --git a/Server/packages.config b/Server/packages.config index 31862be..64bb4da 100644 --- a/Server/packages.config +++ b/Server/packages.config @@ -9,16 +9,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file