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.Packets.PSOPackets;
|
|
|
|
|
using PSO2SERVER.Database;
|
2024-09-12 15:06:07 +08:00
|
|
|
|
using System.Linq;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-09-10 01:13:20 +08:00
|
|
|
|
namespace PSO2SERVER.Packets.Handlers
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
|
|
|
|
[PacketHandlerAttr(0x11, 0x05)]
|
|
|
|
|
public class CharacterCreate : PacketHandler
|
|
|
|
|
{
|
|
|
|
|
#region implemented abstract members of PacketHandler
|
|
|
|
|
|
|
|
|
|
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-19 11:48:56 +08:00
|
|
|
|
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
var reader = new PacketReader(data, position, size);
|
2024-09-19 11:48:56 +08:00
|
|
|
|
var info = string.Format("[<--] 接收到的数据 (hex): ");
|
|
|
|
|
Logger.WriteHex(info, data);
|
2024-09-20 11:48:27 +08:00
|
|
|
|
|
|
|
|
|
reader.ReadBytes(12); // 12 unknown bytes
|
|
|
|
|
reader.ReadByte(); // VoiceType
|
|
|
|
|
reader.ReadBytes(5); // 5 unknown bytes
|
|
|
|
|
reader.ReadUInt16(); // VoiceData
|
|
|
|
|
var name = reader.ReadFixedLengthUtf16(16);
|
|
|
|
|
|
|
|
|
|
reader.BaseStream.Seek(0x4, SeekOrigin.Current); // Padding
|
2024-09-10 00:31:40 +08:00
|
|
|
|
var looks = reader.ReadStruct<Character.LooksParam>();
|
|
|
|
|
var jobs = reader.ReadStruct<Character.JobParam>();
|
|
|
|
|
|
2024-09-20 21:58:37 +08:00
|
|
|
|
Logger.WriteInternal("[CHR] {0} 创建了名为 {1} 的新角色.", context._account.Username, name);
|
2024-09-10 00:31:40 +08:00
|
|
|
|
var newCharacter = new Character
|
|
|
|
|
{
|
|
|
|
|
Name = name,
|
2024-09-19 11:48:56 +08:00
|
|
|
|
Jobs = jobs,
|
2024-09-20 11:48:27 +08:00
|
|
|
|
Looks = looks,
|
2024-09-20 21:58:37 +08:00
|
|
|
|
Account = context._account
|
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
|
2024-09-20 21:58:37 +08:00
|
|
|
|
var existingCharacters = db.Characters.Where(c => c.Account.AccountId == context._account.AccountId).ToList();
|
2024-09-12 15:06:07 +08:00
|
|
|
|
if (existingCharacters.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
// Increment ID if characters already exist
|
2024-09-20 16:10:43 +08:00
|
|
|
|
newCharacter.Character_ID = existingCharacters.Max(c => c.Character_ID) + 1;
|
2024-09-12 15:06:07 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Start with ID 1 if no characters exist
|
2024-09-20 16:10:43 +08:00
|
|
|
|
newCharacter.Character_ID = 1;
|
2024-09-12 15:06:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-09-20 21:58:37 +08:00
|
|
|
|
newCharacter.Player_ID = context._account.AccountId;
|
|
|
|
|
|
|
|
|
|
//Logger.Write("newCharacter.CharacterId {0} {1}", newCharacter.CharacterId, context._account.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;
|
|
|
|
|
|
2024-09-20 21:58:37 +08:00
|
|
|
|
// Set Account ID
|
|
|
|
|
context.SendPacket(new CharacterCreateResponsePacket(CharacterCreateResponsePacket.CharacterCreationStatus.Success, (uint)context._account.AccountId));
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
|
|
|
|
// Spawn
|
|
|
|
|
context.SendPacket(new NoPayloadPacket(0x11, 0x3E));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|