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

160 lines
5.2 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;
2024-12-02 20:43:28 +08:00
using static PSO2SERVER.Models.CharacterStruct;
2024-09-17 11:29:41 +08:00
namespace PSO2SERVER.Protocol.Packets
2024-09-17 11:29:41 +08:00
{
public class CharacterListPacket : Packet
{
2024-12-07 01:44:49 +08:00
// Available characters
public List<Character> Characters { get; set; } = new List<Character>();
// Equipped items (List of 10 Items for each character)
public List<PSO2Items[]> EquippedItems { get; set; } = new List<PSO2Items[]>();
// Character play times (30 times)
public uint[] PlayTimes { get; set; } = new uint[30];
// Character deletion flags (flag, deletion timestamp) (30 pairs of (u32, u32))
public (uint flag, uint timestamp)[] DeletionFlags { get; set; } = new (uint, uint)[30];
// Character ship transfer flags (30 pairs of (u32, u32))
public (uint flag, uint timestamp)[] TransferFlags { get; set; } = new (uint, uint)[30];
// Account accessory flag (unknown)
public ushort AccountAccessory { get; set; }
// Login survey flag
public uint LoginSurvey { get; set; }
// Ad flag
public uint Ad { get; set; }
2024-09-17 11:29:41 +08:00
// 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注:额外的数据可能是当前设备,游戏时间等。
//所有这些数据目前都是未知的。
2024-11-30 16:18:27 +08:00
private int AccountId;
2024-09-19 11:48:56 +08:00
2024-11-30 16:18:27 +08:00
public CharacterListPacket(int AccountId)
2024-09-17 11:29:41 +08:00
{
2024-11-30 16:18:27 +08:00
this.AccountId = AccountId;
2024-09-17 11:29:41 +08:00
}
#region implemented abstract members of Packet
public override byte[] Build()
{
using (var db = new ServerEf())
{
var chars = db.Characters
2024-11-30 16:18:27 +08:00
.Where(w => w.Account.AccountId == AccountId)
2024-11-25 23:33:41 +08:00
.OrderBy(o => o.CharacterID) // TODO: 按照最后游玩的角色排序
2024-09-17 11:29:41 +08:00
.Select(s => s);
foreach (var ch in chars)
{
2024-12-07 01:44:49 +08:00
Characters.Add(ch);
//// 创建一个 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 }
// };
//}
EquippedItems.Add(ch.EquipedItems);
2024-09-17 11:29:41 +08:00
}
2024-12-07 01:44:49 +08:00
}
var pkt = new PacketWriter();
2024-12-07 01:44:49 +08:00
pkt.Write((uint)Characters.Count()); // 写入玩家数量
pkt.Write((uint)0);
foreach (var ch in Characters)
{
pkt.Write((uint)0);
pkt.Write(ch.BuildCharacterByteArray());//4
}
2024-12-07 01:44:49 +08:00
pkt.Write((uint)EquippedItems.Count()); // 写入物品数量
foreach (var itemsArray in EquippedItems)
{
foreach (var item in itemsArray)
{
byte[] itemBytes = item.ToByteArray(); // Assume PSO2Items has a ToByteArray method
pkt.Write(itemBytes); // Write the item bytes
}
}
// Write PlayTimes
foreach (var playTime in PlayTimes)
{
pkt.Write(playTime);
}
// Write DeletionFlags
foreach (var flag in DeletionFlags)
{
pkt.Write(flag.flag);
pkt.Write(flag.timestamp);
}
// Write TransferFlags
foreach (var flag in TransferFlags)
{
pkt.Write(flag.flag);
pkt.Write(flag.timestamp);
}
2024-12-07 01:44:49 +08:00
// Write AccountAccessory
pkt.Write(AccountAccessory);
2024-12-07 01:44:49 +08:00
// Write LoginSurvey
pkt.Write(LoginSurvey);
2024-12-07 01:44:49 +08:00
// Write Ad
pkt.Write(Ad);
2024-12-02 20:43:28 +08:00
pkt.WriteBytes(0, 2);
2024-12-02 20:43:28 +08:00
2024-09-17 11:29:41 +08:00
return pkt.ToArray();
2024-09-17 11:29:41 +08:00
}
public override PacketHeader GetHeader()
{
return new PacketHeader(0x11, 0x03, PacketFlags.None);
}
#endregion
}
}