PSO2SERVER/Server/Protocol/Packets/11-ClientPacket/11-03-CharacterListPacket.cs

85 lines
2.7 KiB
C#
Raw Normal View History

2024-09-17 11:29:41 +08:00
using PSO2SERVER.Database;
using PSO2SERVER.Models;
using System;
using System.Collections.Generic;
using System.Linq;
2024-09-20 11:48:27 +08:00
using System.Runtime.InteropServices;
2024-09-17 11:29:41 +08:00
using System.Runtime.Remoting.Contexts;
using System.Text;
namespace PSO2SERVER.Protocol.Packets
2024-09-17 11:29:41 +08:00
{
public class CharacterListPacket : Packet
{
// Ninji note: This packet may be followed by extra data,
// after a fixed-length array of character data structures.
// Needs more investigation at some point.
// ---
// CK note: Extra data is likely current equipment, playtime, etc.
// All of that data is currently unaccounted for at the moment.
//忍者注意:这个包后面可能有额外的数据,
//在固定长度的字符数据结构数组之后。
//需要更多的调查。
// ---
// CK注:额外的数据可能是当前设备,游戏时间等。
//所有这些数据目前都是未知的。
private int _PlayerId;
2024-09-19 11:48:56 +08:00
2024-09-17 11:29:41 +08:00
public CharacterListPacket(int PlayerId)
{
_PlayerId = PlayerId;
}
#region implemented abstract members of Packet
public override byte[] Build()
{
var writer = new PacketWriter();
using (var db = new ServerEf())
{
var chars = db.Characters
2024-09-20 21:58:37 +08:00
.Where(w => w.Account.AccountId == _PlayerId)
2024-11-25 23:33:41 +08:00
.OrderBy(o => o.CharacterID) // TODO: 按照最后游玩的角色排序
2024-09-17 11:29:41 +08:00
.Select(s => s);
2024-11-24 23:40:50 +08:00
writer.Write((uint)chars.Count()); // 写入玩家数量
2024-09-17 11:29:41 +08:00
2024-11-25 23:33:41 +08:00
writer.Write((uint)_PlayerId);
2024-09-17 11:29:41 +08:00
foreach (var ch in chars)
{
2024-11-25 23:33:41 +08:00
writer.Write((uint)ch.AccountID);
writer.Write((uint)ch.CharacterID);
2024-09-20 11:48:27 +08:00
2024-11-24 23:40:50 +08:00
writer.Write(ch.Unk1);
2024-11-25 23:33:41 +08:00
writer.Write(ch.VoiceType);
2024-11-24 23:40:50 +08:00
writer.Write(ch.Unk2);
2024-11-25 23:33:41 +08:00
writer.Write(ch.VoicePitch);
2024-11-24 23:40:50 +08:00
writer.Write((uint)0);
2024-09-20 11:48:27 +08:00
2024-09-17 11:29:41 +08:00
writer.WriteFixedLengthUtf16(ch.Name, 16);
2024-09-20 16:10:43 +08:00
//Logger.WriteInternal("[CHR] 新增名为 {0} 的新角色.", ch.Name);
2024-11-24 23:40:50 +08:00
writer.Write((uint)0); // 修改这个值 可能会触发角色不可用或变为联动角色
2024-09-20 11:48:27 +08:00
2024-11-27 20:53:51 +08:00
writer.WriteStruct(ch.Looks);
2024-09-17 11:29:41 +08:00
writer.WriteStruct(ch.Jobs);
2024-09-20 16:10:43 +08:00
for (var i = 0; i < 0x94; i++)
2024-11-24 23:40:50 +08:00
writer.Write((byte)0); //TODO:解析这个是什么
2024-09-17 11:29:41 +08:00
}
}
return writer.ToArray();
}
public override PacketHeader GetHeader()
{
return new PacketHeader(0x11, 0x03, PacketFlags.None);
}
#endregion
}
}