mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 02:24:30 +08:00
- 将SceneRouterBase和UiRouterBase继承自新的RouterBase基类 - 移除原有的守卫管理相关代码,统一使用基类实现 - 更新路由栈操作使用基类提供的Stack属性 - 重写Current、Contains等方法以使用基类实现 - 在CI工作流中启用并发测试执行以提升性能 - 添加等待步骤确保并发测试完成 - 更新项目文件排除测试项目的编译 - 在解决方案文件中添加GFramework.Game.Tests项目引用 - 新增RouterBase基类提供通用路由管理功能
38 lines
1.6 KiB
C#
38 lines
1.6 KiB
C#
// Copyright (c) 2026 GeWuYou
|
||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
// you may not use this file except in compliance with the License.
|
||
// You may obtain a copy of the License at
|
||
//
|
||
// http://www.apache.org/licenses/LICENSE-2.0
|
||
//
|
||
// Unless required by applicable law or agreed to in writing, software
|
||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
// See the License for the specific language governing permissions and
|
||
// limitations under the License.
|
||
|
||
using GFramework.Game.Abstractions.Routing;
|
||
|
||
namespace GFramework.Game.Abstractions.Scene;
|
||
|
||
/// <summary>
|
||
/// 场景路由守卫接口,用于在场景切换前进行权限检查和条件验证。
|
||
/// 实现此接口可以拦截场景的进入和离开操作。
|
||
/// </summary>
|
||
public interface ISceneRouteGuard : IRouteGuard<ISceneBehavior>
|
||
{
|
||
/// <summary>
|
||
/// 异步检查是否允许进入指定场景。
|
||
/// </summary>
|
||
/// <param name="sceneKey">目标场景的唯一标识符。</param>
|
||
/// <param name="param">场景进入参数,可能包含初始化数据或上下文信息。</param>
|
||
/// <returns>如果允许进入则返回 true,否则返回 false。</returns>
|
||
Task<bool> CanEnterAsync(string sceneKey, ISceneEnterParam? param);
|
||
|
||
/// <summary>
|
||
/// 异步检查是否允许离开指定场景。
|
||
/// </summary>
|
||
/// <param name="sceneKey">当前场景的唯一标识符。</param>
|
||
/// <returns>如果允许离开则返回 true,否则返回 false。</returns>
|
||
new Task<bool> CanLeaveAsync(string sceneKey);
|
||
} |