PSO2SERVER/Server/Protocol/Handlers/0B-QuestHandler/0B-17-QuestCategoryRequest.cs

61 lines
2.2 KiB
C#
Raw Normal View History

using PSO2SERVER.Json;
using PSO2SERVER.Models;
2024-12-06 03:42:25 +08:00
using PSO2SERVER.Protocol.Packets;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x0B, 0x17)]
public class QuestCategoryRequest : PacketHandler
{
public uint unk1 { get; set; }
public QuestType category { get; set; }
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);
unk1 = reader.ReadUInt32();
category = (QuestType)reader.ReadUInt32();
Logger.Write($"unk1 = {unk1} category = {category}");
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);
//// What am I doing
//QuestDefiniton[] defs = new QuestDefiniton[1];
//for (int i = 0; i < defs.Length; i++)
//{
// defs[i].dateOrSomething = "2012/01/05";
// defs[i].quest_obj = new ObjectHeader(0x20, ObjectType.PartyQuest);
// defs[i].questNameid = 30010;
// defs[i].playTime = QuestEstimatedTime.Short;
// defs[i].partyType = QuestPartyType.SingleParty;
// defs[i].difficulties = QuestDifficultyType.NORMAL | QuestDifficultyType.HARD | QuestDifficultyType.VERY_HARD | QuestDifficultyType.SUPER_HARD;
// defs[i].req_level = 1;
// // Not sure why but these need to be set for the quest to be enabled
// defs[i].quest_type = (QuestType)0xF1;
// defs[i].field_101 = 1;
//}
context.SendPacket(new QuestCategoryPacket(quests));
2024-12-06 03:42:25 +08:00
context.SendPacket(new QuestCategoryStopperPacket());
}
}
}