PSO2SERVER/Server/Protocol/Handlers/0B-QuestHandler/0B-19-QuestDifficultyRequestHandler.cs

80 lines
3.1 KiB
C#
Raw Normal View History

using Org.BouncyCastle.Bcpg;
using PSO2SERVER.Json;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
using System.Collections.Generic;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x0B, 0x19)]
2024-12-03 13:18:58 +08:00
public class QuestDifficultyRequestHandler : PacketHandler
{
/// List of objects of requested quests.
public List<ObjectHeader> Quests { get; set; } = new List<ObjectHeader>();
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
var info = string.Format("[<--] 接收到的数据 (hex): {0}字节", data.Length);
Logger.WriteHex(info, data);
var reader = new PacketReader(data, position, size);
2024-12-06 03:42:25 +08:00
var questCount = reader.ReadMagic(0xA36E, 0x10);
for (uint i = 0; i < questCount; i++)
{
2024-12-06 03:42:25 +08:00
var qobj = new ObjectHeader();
2024-12-06 19:47:18 +08:00
qobj.ReadObjectHeaderFromStream(reader);
2024-12-06 03:42:25 +08:00
Quests.Add(qobj);
// 打印每个任务的 ID 和类型,方便调试
Logger.Write($"任务 ID: {qobj.ID}, 任务类型: {qobj.ObjectType}");
}
string jsonFilePath4 = "data\\quests\\Story Quests\\EP1\\700000 - An Encounter with Xion\\data.json";
var quest = JsonRead.DeserializeJson<QuestData>(jsonFilePath4);
var quests = new List<QuestData>();
quests.Add(quest);
//QuestDifficulty[] diffs = new QuestDifficulty[1];
//for (int i = 0; i < diffs.Length; i++)
//{
// diffs[i].dateOrSomething = "2012/01/05";
// diffs[i].quest_obj = new ObjectHeader(0x20, ObjectType.PartyQuest);
// diffs[i].name_id = 30010;
// diffs[i].area = 0x01;
// diffs[i].planet = 0x03;
// diffs[i].unk1 = 0x03;
// diffs[i].unk2 = 0x00;
// diffs[i].difficulty1 = new QuestDifficultyEntry();
// diffs[i].difficulty2 = new QuestDifficultyEntry();
// diffs[i].difficulty3 = new QuestDifficultyEntry();
// diffs[i].difficulty4 = new QuestDifficultyEntry();
// diffs[i].difficulty5 = new QuestDifficultyEntry();
// diffs[i].difficulty6 = new QuestDifficultyEntry();
// diffs[i].difficulty7 = new QuestDifficultyEntry();
// diffs[i].difficulty8 = new QuestDifficultyEntry();
//}
context.SendPacket(new QuestDifficultyPacket(quests));
// [K873] I believe this is the correct packet, but it causes an infinite send/recieve loop, we're probably just missing something else
context.SendPacket(new QuestDifficultySendFinishedPacket());
2024-12-06 03:42:25 +08:00
//// 现在可以对任务列表Quests进行处理
//// 例如,可以记录任务的信息或进行其他处理
//foreach (var quest in Quests)
//{
// if(quest.ObjectType == ObjectType.PartyQuest)
2024-12-06 03:42:25 +08:00
// {
// }
//}
}
}
}