(client) feat:健康给予,路径优化,结算界面,商店界面 (#60)

Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com>
Reviewed-on: http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite/pulls/60
This commit is contained in:
2025-10-10 14:08:23 +08:00
parent 9a797479ff
commit 16b49f3d3a
1900 changed files with 114053 additions and 34157 deletions

View File

@@ -6,17 +6,11 @@ namespace EventWorkClass
{
public class Event_OpenUI : EventWorkClassBase
{
// 新增私有数据类用于JSON反序列化
private class OpenUIEventData
{
public string uiName { get; set; } // 对应JSON中的 "uiName" 字段
}
// 新增私有字段用于存储解析出的UI名称
private string _uiName;
/// <summary>
/// 初始化事件解析JSON字符串获取UI名称。
/// 初始化事件解析JSON字符串获取UI名称。
/// </summary>
/// <param name="value">包含UI名称的JSON字符串例如: {"uiName": "MainMenuUI"}</param>
/// <exception cref="System.ArgumentException">当value为null或空时抛出。</exception>
@@ -25,44 +19,40 @@ namespace EventWorkClass
public override void Init(string value)
{
if (string.IsNullOrEmpty(value))
{
throw new System.ArgumentException(
throw new ArgumentException(
"Event_OpenUI Init: value cannot be null or empty. It must contain the UI configuration JSON.",
nameof(value));
}
try
{
// 反序列化JSON字符串为OpenUIEventData对象
OpenUIEventData eventData = JsonConvert.DeserializeObject<OpenUIEventData>(value);
var eventData = JsonConvert.DeserializeObject<OpenUIEventData>(value);
// 检查反序列化结果是否有效
if (eventData == null || string.IsNullOrEmpty(eventData.uiName))
{
throw new System.FormatException(
throw new FormatException(
$"Event_OpenUI Init: Invalid JSON format or missing 'uiName' property in value: '{value}'");
}
// 存储UI名称
_uiName = eventData.uiName;
}
catch (Newtonsoft.Json.JsonSerializationException ex)
catch (JsonSerializationException ex)
{
// JSON反序列化失败的特定处理
throw new System.FormatException(
throw new FormatException(
$"Event_OpenUI Init: Failed to deserialize JSON for value: '{value}'. Please ensure it is a valid JSON string with a 'uiName' property. Error: {ex.Message}",
ex);
}
catch (Exception ex)
{
// 捕获其他所有潜在异常,提供更通用的错误信息
throw new System.InvalidOperationException(
throw new InvalidOperationException(
$"Event_OpenUI Init: An unexpected error occurred during initialization for value: '{value}'. Error: {ex.Message}",
ex);
}
}
/// <summary>
/// 运行事件打开UI界面。
/// 运行事件打开UI界面。
/// </summary>
/// <param name="dimensionID">维度ID (当前未被使用,但保留接口)。</param>
/// <param name="initiator">触发此事件的实体 (当前未被使用,但保留接口)。</param>
@@ -70,5 +60,11 @@ namespace EventWorkClass
{
UIInputControl.Instance.Show(_uiName);
}
// 新增私有数据类用于JSON反序列化
private class OpenUIEventData
{
public string uiName { get; set; } // 对应JSON中的 "uiName" 字段
}
}
}