PSO2SERVER/Server/Json/JsonTest.cs

53 lines
1.8 KiB
C#

using Newtonsoft.Json;
using PSO2SERVER.Models;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Json
{
public class JsonTest
{
public static void JsonReadTest()
{
// 测试数据文件路径
string jsonFilePath1 = "data\\maps\\lobby\\data.json";
string jsonFilePath2 = "data\\maps\\lobby\\events\\main_lobby_1\\all_events.json";
string jsonFilePath3 = "data\\item_attrs.json";
// 读取并反序列化 JSON 文件
var map = JsonRead.DeserializeJson<MapData>(jsonFilePath1);
var mapEvent = JsonRead.DeserializeJson<List<EventData>>(jsonFilePath2)?.FirstOrDefault();
var attributes = JsonRead.DeserializeJson<ItemAttributesRootObject>(jsonFilePath3);
// 输出 MapData 信息
if (map != null)
{
Logger.Write($"map_object ID: {map.Mapdata.map_object.ID}");
Logger.Write($"Zones[0].Name: {map.Zones[0].Name}");
Logger.Write($"Zones[0].Is_special_zone: {map.Zones[0].Is_special_zone}");
}
// 输出 EventData 信息
if (mapEvent != null)
{
Logger.Write($"map_event zone_id: {mapEvent.zone_id}");
Logger.Write($"map_event is_active: {mapEvent.is_active}");
Logger.Write($"map_event objName: {mapEvent.data.objName}");
}
// 输出 ItemAttributesPC 信息
if (attributes != null)
{
Logger.Write($"PC unk1: {attributes.PC.Unk1}");
ItemAttributesPC.LogWeapons(attributes.PC.Weapons);
ItemAttributesPC.LogData17(attributes.PC.Data17);
}
}
}
}