2024-09-10 00:31:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2024-09-10 01:13:20 +08:00
|
|
|
|
using PSO2SERVER.Packets;
|
|
|
|
|
using PSO2SERVER.Database;
|
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
|
|
|
|
{
|
|
|
|
|
public class Character
|
|
|
|
|
{
|
|
|
|
|
public enum ClassType : byte
|
|
|
|
|
{
|
2024-09-17 11:29:41 +08:00
|
|
|
|
Unknown = 0xFF,
|
2024-09-10 00:31:40 +08:00
|
|
|
|
Hunter = 0,
|
|
|
|
|
Ranger,
|
|
|
|
|
Force,
|
2024-09-17 11:29:41 +08:00
|
|
|
|
Fighter,
|
|
|
|
|
Gunner,
|
2024-09-10 00:31:40 +08:00
|
|
|
|
Techer,
|
|
|
|
|
Braver,
|
|
|
|
|
Bouncer,
|
2024-09-17 11:29:41 +08:00
|
|
|
|
Challenger,
|
|
|
|
|
Summoner,
|
|
|
|
|
BattleWarrior,
|
|
|
|
|
Hero,
|
|
|
|
|
Phantom,
|
|
|
|
|
Etole,
|
|
|
|
|
Luster,
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-09-17 11:29:41 +08:00
|
|
|
|
// 每个枚举成员的值是通过位移操作计算的:
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-09-17 11:29:41 +08:00
|
|
|
|
//Hunter:1 << 0,即 1(0x0001)
|
|
|
|
|
//Ranger:1 << 1,即 2(0x0002)
|
|
|
|
|
//Force:1 << 2,即 4(0x0004)
|
|
|
|
|
//Fighter:1 << 3,即 8(0x0008)
|
|
|
|
|
//Gunner:1 << 4,即 16(0x0010)
|
|
|
|
|
//Techer:1 << 5,即 32(0x0020)
|
|
|
|
|
//Braver:1 << 6,即 64(0x0040)
|
|
|
|
|
//Bouncer:1 << 7,即 128(0x0080)
|
|
|
|
|
//Challenger:1 << 8,即 256(0x0100)
|
|
|
|
|
//Summoner:1 << 9,即 512(0x0200)
|
|
|
|
|
//BattleWarrior:1 << 10,即 1024(0x0400)
|
|
|
|
|
//Hero:1 << 11,即 2048(0x0800)
|
|
|
|
|
//Phantom:1 << 12,即 4096(0x1000)
|
|
|
|
|
//Etole:1 << 13,即 8192(0x2000)
|
|
|
|
|
//Luster:1 << 14,即 16384(0x4000)
|
|
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum ClassTypeField : ushort
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-09-17 11:29:41 +08:00
|
|
|
|
Unknown = 0xFF,
|
|
|
|
|
None = 0,
|
|
|
|
|
Hunter = 1 << 0,
|
|
|
|
|
Ranger = 1 << 1,
|
|
|
|
|
Force = 1 << 2,
|
|
|
|
|
Fighter = 1 << 3,
|
|
|
|
|
Gunner = 1 << 4,
|
|
|
|
|
Techer = 1 << 5,
|
|
|
|
|
Braver = 1 << 6,
|
|
|
|
|
Bouncer = 1 << 7,
|
|
|
|
|
Challenger = 1 << 8,
|
|
|
|
|
Summoner = 1 << 9,
|
|
|
|
|
BattleWarrior = 1 << 10,
|
|
|
|
|
Hero = 1 << 11,
|
|
|
|
|
Phantom = 1 << 12,
|
|
|
|
|
Etole = 1 << 13,
|
|
|
|
|
Luster = 1 << 14
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public unsafe struct CharParam
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-09-17 22:47:58 +08:00
|
|
|
|
public int character_id;
|
|
|
|
|
public int player_id;
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public uint unk1;
|
|
|
|
|
public uint voice_type;
|
|
|
|
|
public ushort unk2;
|
|
|
|
|
public short voice_pitch;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public struct JobEntry
|
|
|
|
|
{
|
|
|
|
|
public ushort level;
|
|
|
|
|
public ushort level2; // Usually the same as the above, what is this used for?
|
|
|
|
|
public uint exp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public struct Entries
|
|
|
|
|
{
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public JobEntry
|
|
|
|
|
hunter
|
|
|
|
|
, ranger
|
|
|
|
|
, force
|
|
|
|
|
, fighter
|
|
|
|
|
, gunner
|
|
|
|
|
, techer
|
|
|
|
|
, braver
|
|
|
|
|
, bouncer
|
|
|
|
|
, Challenger
|
|
|
|
|
, Summoner
|
|
|
|
|
, BattleWarrior
|
|
|
|
|
, Hero
|
|
|
|
|
, Phantom
|
|
|
|
|
, Etole
|
|
|
|
|
, Luster
|
|
|
|
|
, unk16
|
|
|
|
|
, unk17
|
|
|
|
|
, unk18
|
|
|
|
|
, unk19
|
|
|
|
|
, unk20
|
|
|
|
|
, unk21
|
|
|
|
|
, unk22
|
|
|
|
|
, unk23
|
|
|
|
|
, unk24
|
|
|
|
|
;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public unsafe struct JobParam
|
|
|
|
|
{
|
|
|
|
|
public ClassType mainClass;
|
|
|
|
|
public ClassType subClass;
|
2024-09-17 22:47:58 +08:00
|
|
|
|
public ushort unk2;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public ClassTypeField enabledClasses;
|
2024-09-17 22:47:58 +08:00
|
|
|
|
public ushort unk3;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public Entries entries; //TODO: Make this a fixed array
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public fixed ushort unk_maxlevel[15];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum RunAnimation : ushort
|
|
|
|
|
{
|
|
|
|
|
Walking = 9,
|
|
|
|
|
Hovering = 11
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum Race : ushort
|
|
|
|
|
{
|
|
|
|
|
Unknown = 0xFFFF,
|
|
|
|
|
Human = 0,
|
|
|
|
|
Newman,
|
|
|
|
|
Cast,
|
|
|
|
|
Dewman,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum Gender : ushort
|
|
|
|
|
{
|
|
|
|
|
Unknown = 0xFFFF,
|
|
|
|
|
Male = 0,
|
|
|
|
|
Female,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct AccessoryData
|
|
|
|
|
{
|
|
|
|
|
public sbyte Value1;
|
|
|
|
|
public sbyte Value2;
|
|
|
|
|
public sbyte Value3;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-18 00:55:35 +08:00
|
|
|
|
public enum SkinColor : byte
|
2024-09-17 11:29:41 +08:00
|
|
|
|
{
|
|
|
|
|
RaceDefined,
|
|
|
|
|
Human,
|
|
|
|
|
Deuman,
|
|
|
|
|
Cast
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public struct HSVColor
|
|
|
|
|
{
|
|
|
|
|
public ushort hue, saturation, value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public struct Figure
|
|
|
|
|
{
|
|
|
|
|
public ushort x, y, z; // Great naming, SEGA
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public unsafe struct LooksParam
|
|
|
|
|
{
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public RunAnimation running_animation;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public Race race;
|
|
|
|
|
public Gender gender;
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public ushort Muscule;
|
|
|
|
|
public Figure Body;
|
|
|
|
|
public Figure Arms;
|
|
|
|
|
public Figure Legs;
|
|
|
|
|
public Figure Chest;
|
|
|
|
|
public Figure FaceShape;
|
|
|
|
|
public Figure FaceParts;
|
|
|
|
|
public Figure Eyes;
|
|
|
|
|
public Figure NoseSize;
|
|
|
|
|
public Figure NoseHeight;
|
|
|
|
|
public Figure Mouth;
|
|
|
|
|
public Figure Ears;
|
|
|
|
|
public Figure Neck;
|
|
|
|
|
public Figure Waist;
|
|
|
|
|
public Figure Body2;
|
|
|
|
|
public Figure Arms2;
|
|
|
|
|
public Figure Legs2;
|
|
|
|
|
public Figure Chest2;
|
|
|
|
|
public Figure Neck2;
|
|
|
|
|
public Figure Waist2;
|
|
|
|
|
public fixed byte Unk1[0x20];
|
|
|
|
|
public fixed byte Unk2[0x0A];
|
|
|
|
|
public AccessoryData Acc1Location;
|
|
|
|
|
public AccessoryData Acc2Location;
|
|
|
|
|
public AccessoryData Acc3Location;
|
|
|
|
|
public AccessoryData Acc4Location;
|
|
|
|
|
public HSVColor UnkColor;
|
|
|
|
|
public HSVColor CostumeColor;
|
|
|
|
|
public HSVColor MainColor;
|
|
|
|
|
public HSVColor Sub1Color;
|
|
|
|
|
public HSVColor Sub2Color;
|
|
|
|
|
public HSVColor Sub3Color;
|
|
|
|
|
public HSVColor EyeColor;
|
|
|
|
|
public HSVColor HairColor;
|
|
|
|
|
public fixed byte Unk3[0x20];
|
|
|
|
|
public fixed byte Unk4[0x10];
|
|
|
|
|
public ushort CostumeId;
|
|
|
|
|
public ushort BodyPaint1;
|
|
|
|
|
public ushort StickerId;
|
|
|
|
|
public ushort RightEyeId;
|
|
|
|
|
public ushort EyebrowId;
|
|
|
|
|
public ushort EyelashId;
|
|
|
|
|
public ushort FaceId1;
|
|
|
|
|
public ushort FaceId2;
|
|
|
|
|
public ushort Facemakeup1Id;
|
|
|
|
|
public ushort HairstyleId;
|
|
|
|
|
public ushort Acc1Id;
|
|
|
|
|
public ushort Acc2Id;
|
|
|
|
|
public ushort Acc3Id;
|
|
|
|
|
public ushort Facemakeup2Id;
|
|
|
|
|
public ushort LegId;
|
|
|
|
|
public ushort ArmId;
|
|
|
|
|
public ushort Acc4Id;
|
|
|
|
|
public fixed byte Unk5[0x04];
|
|
|
|
|
public ushort BodyPaint2;
|
|
|
|
|
public ushort LeftEyeId;
|
|
|
|
|
public fixed byte Unk6[0x12];
|
|
|
|
|
public AccessoryData Acc1Size;
|
|
|
|
|
public AccessoryData Acc2Size;
|
|
|
|
|
public AccessoryData Acc3Size;
|
|
|
|
|
public AccessoryData Acc4Size;
|
|
|
|
|
public AccessoryData Acc1Rotation;
|
|
|
|
|
public AccessoryData Acc2Rotation;
|
|
|
|
|
public AccessoryData Acc3Rotation;
|
|
|
|
|
public AccessoryData Acc4Rotation;
|
|
|
|
|
public ushort Unk7;
|
|
|
|
|
public fixed byte Unk8[0x08];
|
|
|
|
|
public SkinColor SkinColorType;
|
|
|
|
|
public sbyte EyebrowThickness;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Probably more info than this
|
|
|
|
|
[Key]
|
2024-09-12 15:06:07 +08:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public int CharacterId { get; set; }
|
2024-09-17 22:47:58 +08:00
|
|
|
|
public int player_id { get; set; }
|
|
|
|
|
public uint unk1 { get; set; }
|
|
|
|
|
public uint voice_type { get; set; }
|
|
|
|
|
public ushort unk2 { get; set; }
|
|
|
|
|
public short voice_pitch { get; set; }
|
2024-09-17 11:29:41 +08:00
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public byte[] LooksBinary
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
PacketWriter w = new PacketWriter();
|
|
|
|
|
w.WriteStruct(Looks);
|
|
|
|
|
return w.ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Looks = Helper.ByteArrayToStructure<LooksParam>(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-17 11:29:41 +08:00
|
|
|
|
public LooksParam Looks { get; set; }
|
|
|
|
|
|
2024-09-17 22:47:58 +08:00
|
|
|
|
public uint unk3 { get; set; }
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public byte[] JobsBinary
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
PacketWriter w = new PacketWriter();
|
|
|
|
|
w.WriteStruct(Jobs);
|
|
|
|
|
return w.ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Jobs = Helper.ByteArrayToStructure<JobParam>(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public JobParam Jobs { get; set; }
|
2024-09-17 22:47:58 +08:00
|
|
|
|
|
|
|
|
|
public string unk4 { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual Player Player { get; set; }
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public struct PSOLocation
|
|
|
|
|
{
|
|
|
|
|
public float RotX, RotY, RotZ, RotW, PosX, PosY, PosZ; // RotX, RotY, RotZ, and RotW make up a Quaternion
|
|
|
|
|
|
|
|
|
|
public PSOLocation(float RotX, float RotY, float RotZ, float RotW, float PosX, float PosY, float PosZ)
|
|
|
|
|
{
|
|
|
|
|
this.RotX = RotX;
|
|
|
|
|
this.RotY = RotY;
|
|
|
|
|
this.RotZ = RotZ;
|
|
|
|
|
this.RotW = RotW;
|
|
|
|
|
|
|
|
|
|
this.PosX = PosX;
|
|
|
|
|
this.PosY = PosY;
|
|
|
|
|
this.PosZ = PosZ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
2024-09-13 10:27:47 +08:00
|
|
|
|
return String.Format("Rot: ({0}, {1}, {2}, {3}) Loc: ({4}, {5}, {6})"
|
|
|
|
|
, RotX, RotY, RotZ, RotW, PosX, PosY, PosZ);
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|