mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 将所有小写的命名空间导入更正为首字母大写格式 - 统一 GFramework 框架的命名空间引用规范 - 修复 core、ecs、godot 等模块的命名空间导入错误 - 标准化文档示例代码中的 using 语句格式 - 确保所有文档中的命名空间引用保持一致性 - 更新 global using 语句以匹配正确的命名空间格式
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using GFramework.Game.Abstractions.Setting;
|
|
using GFramework.Game.Abstractions.Setting.Data;
|
|
using Godot;
|
|
|
|
namespace GFramework.Godot.Setting;
|
|
|
|
/// <summary>
|
|
/// Godot图形设置应用器
|
|
/// </summary>
|
|
/// <param name="model">设置模型接口</param>
|
|
public class GodotGraphicsSettings(ISettingsModel model) : IResetApplyAbleSettings
|
|
{
|
|
/// <summary>
|
|
/// 应用图形设置到Godot引擎
|
|
/// </summary>
|
|
/// <returns>异步任务</returns>
|
|
public async Task Apply()
|
|
{
|
|
var settings = model.GetData<GraphicsSettings>();
|
|
// 创建分辨率向量
|
|
var size = new Vector2I(settings.ResolutionWidth, settings.ResolutionHeight);
|
|
|
|
// 设置窗口边框状态
|
|
DisplayServer.WindowSetFlag(DisplayServer.WindowFlags.Borderless, settings.Fullscreen);
|
|
|
|
// 设置窗口模式(全屏或窗口化)
|
|
DisplayServer.WindowSetMode(
|
|
settings.Fullscreen
|
|
? DisplayServer.WindowMode.ExclusiveFullscreen
|
|
: DisplayServer.WindowMode.Windowed
|
|
);
|
|
|
|
// 非全屏模式下设置窗口大小和居中位置
|
|
if (!settings.Fullscreen)
|
|
{
|
|
DisplayServer.WindowSetSize(size);
|
|
var screen = DisplayServer.GetPrimaryScreen();
|
|
var screenSize = DisplayServer.ScreenGetSize(screen);
|
|
var pos = (screenSize - size) / 2;
|
|
DisplayServer.WindowSetPosition(pos);
|
|
}
|
|
|
|
await Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 重置图形设置
|
|
/// </summary>
|
|
public void Reset()
|
|
{
|
|
model.GetData<GraphicsSettings>().Reset();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取图形设置的数据对象。
|
|
/// 该属性提供对图形设置数据的只读访问。
|
|
/// </summary>
|
|
public ISettingsData Data { get; } = model.GetData<GraphicsSettings>();
|
|
|
|
/// <summary>
|
|
/// 获取图形设置数据的类型。
|
|
/// 该属性返回图形设置数据的具体类型信息。
|
|
/// </summary>
|
|
public Type DataType { get; } = typeof(GraphicsSettings);
|
|
} |