Creates a non-generic overload for NodeUtils.InstantiatePackedScene<T> and removes the Try-Catch block from the generic version

为NodeUtils.InstantiatePackedScene<T>创建非泛型重载,并移除泛型版本中的Try-Catch块
This commit is contained in:
霧雨烨 2024-06-15 17:07:02 +08:00
parent 4f2a6e8110
commit 9a83fd1dd2
2 changed files with 65 additions and 29 deletions

View File

@ -27,6 +27,8 @@ log_loot_list_has_no_entries,ID为{0}的战利品表,没有指定条目。,"Lo
log_not_within_the_loot_spawn_range,给定的数值{0}没有在战利品{1}的生成范围{2}内。,The given value {0} is not within the spawn range {2} of loot {1}.,与えられた数値{0}は戦利品{1}の生成範囲{2}内にありません。
log_loot_data_quantity,有{0}个战利品数据被返回。,{0} loot data was returned.,{0}個の戦利品データが返されます。
log_warning_node_cannot_cast_to,创建的物品{0}无法被转型为类型{1},Created items {0} cannot be cast into type {1},作成されたアイテム {0} をタイプ {1} にキャストすることはできません。
log_start_item_register_from_file,开始从文件注册物品信息,Start registering item information from files,アイテム情報をファイルから登録開始
log_found_files,找到{0}个文件,Found {0} files,{0}ファイルが見つかりました
log_found_item_types,从文件中找到{0}个物品类型,Found {0} item types in files,ファイルから{0}個のアイテム・タイプが見つかった

1 id zh en ja
27 log_not_within_the_loot_spawn_range 给定的数值{0}没有在战利品{1}的生成范围{2}内。 The given value {0} is not within the spawn range {2} of loot {1}. 与えられた数値{0}は戦利品{1}の生成範囲{2}内にありません。
28 log_loot_data_quantity 有{0}个战利品数据被返回。 {0} loot data was returned. {0}個の戦利品データが返されます。
29 log_start_item_register_from_file log_warning_node_cannot_cast_to 开始从文件注册物品信息 创建的物品{0}无法被转型为类型{1} Start registering item information from files Created items {0} cannot be cast into type {1} アイテム情報をファイルから登録開始 作成されたアイテム {0} をタイプ {1} にキャストすることはできません。
30 log_start_item_register_from_file 开始从文件注册物品信息 Start registering item information from files アイテム情報をファイルから登録開始
31 log_found_files 找到{0}个文件 Found {0} files {0}ファイルが見つかりました
32 log_found_files log_found_item_types 找到{0}个文件 从文件中找到{0}个物品类型 Found {0} files Found {0} item types in files {0}ファイルが見つかりました ファイルから{0}個のアイテム・タイプが見つかった
33 log_found_item_types log_error_when_open_item_regs_dir 从文件中找到{0}个物品类型 尝试打开物品信息目录时发生错误 Found {0} item types in files Error when opening itemRegs dir ファイルから{0}個のアイテム・タイプが見つかった アイテム情報カタログを開こうとしてエラーが発生しました。
34

View File

@ -1,9 +1,11 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using ColdMint.scripts.debug;
using ColdMint.scripts.item;
using ColdMint.scripts.item.weapon;
using Godot;
@ -125,10 +127,11 @@ public static class NodeUtils
return GameSceneNodeHolder.WeaponContainer;
}
if (GameSceneNodeHolder.PacksackContainer!= null && childNode is Packsack)
if (GameSceneNodeHolder.PacksackContainer != null && childNode is Packsack)
{
return GameSceneNodeHolder.PacksackContainer;
}
return defaultParentNode;
}
@ -153,14 +156,13 @@ public static class NodeUtils
/// <para>默认父节点如果传入null则不会将实例化后的节点放入父节点内。您需要手动放置这对于延迟设置父节点相当有用。</para>
/// </param>
/// <returns></returns>
public static T? InstantiatePackedScene<T>(PackedScene packedScene, Node? defaultParentNode = null,
bool assignedByRootNodeType = true) where T : Node
/// <seealso cref="InstantiatePackedScene{T}"/>
public static Node InstantiatePackedScene(PackedScene packedScene, Node? defaultParentNode = null,
bool assignedByRootNodeType = true)
{
try
{
var instantiateNode = packedScene.Instantiate<T>();
//An attempt is made to place an instantiated node under a husband node only after the default parent node is set.
//只有设定了默认父节点后才会尝试将实例化的节点放置到夫节点下。
var instantiateNode = packedScene.Instantiate();
//An attempt is made to place an instantiated node under a parent node only after the default parent node is set.
//只有设定了默认父节点后才会尝试将实例化的节点放置到父节点下。
if (defaultParentNode != null)
{
if (assignedByRootNodeType)
@ -178,12 +180,44 @@ public static class NodeUtils
return instantiateNode;
}
catch (InvalidCastException e)
/// <summary>
/// <para>
/// Generic version of <see cref="InstantiatePackedScene"/> that transforms the created node to <see cref="T"/> type,
/// if the created node can't be transformed to the specified type, return null and release it.
/// </para>
/// <para><see cref="InstantiatePackedScene"/>的泛型版本,转换创建的节点至<see cref="T"/>类型如果创建的节点无法转型至指定的类型返回null并释放它</para>
/// </summary>
/// <remarks>
///<para>This method is recommended in place of all packedScene.Instantiate&lt;T&gt;() calls within a project, using it to instantiate a scene, optionally assigned to a container that matches the type of the root node.</para>
///<para>推荐使用此方法代替项目内所有的packedScene.Instantiate&lt;T&gt;()调用,使用此方法实例化场景,可选择将其分配到与根节点类型相匹配的容器内。</para>
/// </remarks>
/// <param name="packedScene">
///<para>packedScene</para>
///<para>打包的场景</para>
/// </param>
/// <param name="assignedByRootNodeType">
///<para>Enabled by default, whether to place a node into a container node that matches the type of the root node after it is instantiated. If the assignment fails by type, it is placed under the default parent node.</para>
///<para>默认启用,实例化节点后,是否将其放置到与根节点类型相匹配的容器节点内。如果按照类型分配失败,则放置在默认父节点下。</para>
/// </param>
/// <param name="defaultParentNode">
/// <para>Default parent. If null is passed, the instantiated node is not put into the parent. You need to place it manually, which is quite useful for delaying setting the parent node.</para>
/// <para>默认父节点如果传入null则不会将实例化后的节点放入父节点内。您需要手动放置这对于延迟设置父节点相当有用。</para>
/// </param>
/// <returns>
/// <para>If new node cannot cast to given type, return null</para>
/// <para>如果创建的节点无法转型至指定的类型返回null</para>
/// </returns>
public static T? InstantiatePackedScene<T>(PackedScene packedScene, Node? defaultParentNode = null,
bool assignedByRootNodeType = true)
where T : class
{
//null is returned if the type conversion fails.
//在类型转换失败时返回null。
LogCat.WhenCaughtException(e);
var node = InstantiatePackedScene(packedScene, defaultParentNode, assignedByRootNodeType);
// 检查类型转化,成功返回结果
if (node is T result) return result;
//如果转型失败,释放所创建的节点
LogCat.LogWarningWithFormat("warning_node_cannot_cast_to",node,nameof(T));
node.QueueFree();
return null;
}
}
}