71 lines
2.4 KiB
C#
71 lines
2.4 KiB
C#
using PSO2SERVER.Database;
|
|
using PSO2SERVER.Protocol.Packets;
|
|
using PSO2SERVER.Party;
|
|
using System;
|
|
using System.Linq;
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
|
{
|
|
[PacketHandlerAttr(0x11, 0xB8)]
|
|
public class CharacterShipTransferRightsRequest : PacketHandler
|
|
{
|
|
public struct CharacterShipTransferRightsRequestPacket
|
|
{
|
|
/// <summary>
|
|
/// Selected character ID.
|
|
/// </summary>
|
|
public uint CharId;
|
|
public uint Unk1;
|
|
}
|
|
|
|
#region implemented abstract members of PacketHandler
|
|
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
{
|
|
if (context._account == null)
|
|
return;
|
|
|
|
var reader = new PacketReader(data, position, size);
|
|
var pkt = reader.ReadStruct<CharacterShipTransferRightsRequestPacket>();
|
|
|
|
var charId = pkt.CharId;
|
|
|
|
Logger.Write("id {0}", charId);
|
|
|
|
//if (context.Character == null) // On character create, this is already set.
|
|
//{
|
|
// using (var db = new ServerEf())
|
|
// {
|
|
// try
|
|
// {
|
|
// var character = db.Characters.FirstOrDefault(c => c.AccountID == charId);
|
|
|
|
// if (character == null || character.Accounts == null || character.Accounts.AccountId != context._account.AccountId)
|
|
// {
|
|
// Logger.WriteError("数据库中未找到 {0} 角色ID {1} ({2})"
|
|
// , context._account.Username
|
|
// , charId
|
|
// , context._account.AccountId
|
|
// );
|
|
// context.Socket.Close();
|
|
// return;
|
|
// }
|
|
|
|
// context.Character = character;
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// Logger.WriteError("查询角色时发生异常: {0}", ex.Message);
|
|
// context.Socket.Close();
|
|
// }
|
|
// }
|
|
//}
|
|
|
|
//// 告诉客户端切换到转船界面
|
|
context.SendPacket(new CharacterShipTransferRightsCheckPacket(context._account.AccountId, charId));
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
|
|
} |