PSO2SERVER/Server/Protocol/Handlers/11-ClientHandler/11-05-CharacterCreate.cs

125 lines
4.5 KiB
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System.IO;
using System.Data.Entity;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Database;
2024-09-12 15:06:07 +08:00
using System.Linq;
2024-12-02 20:43:28 +08:00
using static PSO2SERVER.Models.CharacterStruct;
using System.Security.Cryptography.Pkcs;
using System.Runtime.InteropServices;
2024-09-10 00:31:40 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-10 00:31:40 +08:00
{
[PacketHandlerAttr(0x11, 0x05)]
public class CharacterCreate : PacketHandler
{
#region implemented abstract members of PacketHandler
2024-12-02 20:43:28 +08:00
2024-12-07 01:44:49 +08:00
public uint CharacterID { get; set; }
public uint AccountID { get; set; }
public uint Unk1 { get; set; }
public uint VoiceType { get; set; }
public ushort Unk2 { get; set; }
public short VoicePitch { get; set; }
public string Name { get; set; }
public LooksParam Looks { get; set; }
public uint Unk3 { get; set; }
public JobParam Jobs { get; set; }
public byte[] unk4 { get; set; } = new byte[148]; // 148 字节的字节数组
2024-09-10 00:31:40 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
2024-09-20 21:58:37 +08:00
if (context._account == null)
2024-09-10 00:31:40 +08:00
return;
2024-09-22 00:08:44 +08:00
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
2024-09-19 11:48:56 +08:00
Logger.WriteHex(info, data);
2024-09-20 11:48:27 +08:00
2024-12-07 01:44:49 +08:00
var reader = new PacketReader(data, position, size);
CharacterID = reader.ReadUInt32();
AccountID = reader.ReadUInt32();
Unk1 = reader.ReadUInt32();//Unk1
VoiceType = reader.ReadUInt32(); // VoiceType
Unk2 = reader.ReadUInt16(); // 5 unknown bytes
VoicePitch = reader.ReadInt16(); // VoiceData
Name = reader.ReadFixedLengthUtf16(16);
Looks = reader.ReadStruct<LooksParam>();
Unk3 = reader.ReadUInt32();
Jobs = reader.ReadStruct<JobParam>();
unk4 = reader.ReadBytes(unk4.Length);
2024-09-20 11:48:27 +08:00
// 创建一个 Consumable 类型的物品
PSO2ItemConsumable consumableItem = new PSO2ItemConsumable
{
amount = 10,
};
PSO2Items[] items = new PSO2Items[10];
for (var i = 0; i < 10; i++)
{
items[i] = new PSO2Items
{
uuid = (ulong)i,
id = new ItemId
{
ItemType = 3,
Id = 1,
Subid = 0,
},
data = new Items { Consumable = consumableItem }
};
}
2024-09-10 00:31:40 +08:00
var newCharacter = new Character
{
2024-11-27 20:53:51 +08:00
CharacterID = 0,
AccountID = context._account.AccountId,
2024-12-07 01:44:49 +08:00
Unk1 = (int)Unk1,
VoiceType = (int)VoiceType,
Unk2 = (short)Unk2,
VoicePitch = VoicePitch,
Name = Name,
Looks = Looks,
Unk3 = (int)Unk3,
Jobs = Jobs,
Unk4 = unk4,
EquipedItems = items,
2024-12-07 01:44:49 +08:00
2024-12-02 20:43:28 +08:00
Account = context._account,
Fulldata = data
2024-09-10 00:31:40 +08:00
};
// Add to database
2024-09-10 01:13:20 +08:00
using (var db = new ServerEf())
2024-09-12 15:06:07 +08:00
{
// Check if any characters exist for this player
var existingCharacters = db.Characters.Where(c => c.AccountID == context._account.AccountId).ToList();
2024-09-12 15:06:07 +08:00
if (existingCharacters.Count > 0)
{
// Increment ID if characters already exist
2024-11-25 23:33:41 +08:00
newCharacter.CharacterID = existingCharacters.Max(c => c.CharacterID) + 1;
2024-09-12 15:06:07 +08:00
}
else
{
// Start with ID 1 if no characters exist
2024-11-25 23:33:41 +08:00
newCharacter.CharacterID = 1;
2024-09-12 15:06:07 +08:00
}
2024-11-30 16:18:27 +08:00
Logger.Write("New character data: {0}, {1}, {2}, {3}, {4}", newCharacter.CharacterID, newCharacter.Name, newCharacter.VoiceType, newCharacter.VoicePitch, newCharacter.AccountID);
2024-09-12 15:06:07 +08:00
2024-09-10 00:31:40 +08:00
db.Characters.Add(newCharacter);
2024-09-20 21:58:37 +08:00
db.Entry(newCharacter.Account).State = EntityState.Modified;
2024-09-10 00:31:40 +08:00
db.SaveChanges();
}
// Assign character to player
context.Character = newCharacter;
// Set Accounts ID
2024-09-20 21:58:37 +08:00
context.SendPacket(new CharacterCreateResponsePacket(CharacterCreateResponsePacket.CharacterCreationStatus.Success, (uint)context._account.AccountId));
2024-09-10 00:31:40 +08:00
}
#endregion
}
}