Traveller/scripts/map/room/RoomFactory.cs

83 lines
2.5 KiB
C#
Raw Normal View History

using System.Collections.Generic;
using System.IO;
using ColdMint.scripts.utils;
2024-04-28 13:55:19 +00:00
using Godot;
using FileAccess = Godot.FileAccess;
2024-04-28 13:55:19 +00:00
namespace ColdMint.scripts.map.room;
/// <summary>
/// <para>The room template factory is used to generate room templates</para>
/// <para>房间模板工厂用于生成房间模板</para>
/// </summary>
public static class RoomFactory
{
/// <summary>
/// <para>A room template sets a path to a room resource</para>
/// <para>房间模板集转房间资源路径</para>
/// </summary>
/// <param name="roomTemplateSet"></param>
/// <returns>
/// <para>Returned value Checked for the existence of the file.</para>
/// <para>返回值已检验文件是否存在。</para>
/// </returns>
public static string[] RoomTemplateSetToRoomRes(string[] roomTemplateSet)
{
var resList = new List<string>();
foreach (var roomTemplate in roomTemplateSet)
{
var roomTemplatePath = ResUtils.GetRunTimeResPath(roomTemplate);
//Detects whether it is a folder
//检测是否为文件夹
if (DirAccess.DirExistsAbsolute(roomTemplatePath))
{
using var dir = DirAccess.Open(roomTemplatePath);
if (dir != null)
{
dir.ListDirBegin();
var fileName = dir.GetNext();
while (!string.IsNullOrEmpty(fileName))
{
if (!dir.CurrentIsDir())
{
resList.Add(Path.Join(roomTemplatePath, fileName));
}
fileName = dir.GetNext();
}
}
}
if (FileAccess.FileExists(roomTemplatePath))
{
resList.Add(roomTemplatePath);
}
}
return resList.ToArray();
}
2024-04-28 13:55:19 +00:00
/// <summary>
/// <para>CreateRoom</para>
/// <para>创建房间模板</para>
/// </summary>
/// <param name="resPath"></param>
/// <returns></returns>
public static Room? CreateRoom(string resPath)
2024-04-28 13:55:19 +00:00
{
//If the file does not exist, null is returned
//如果文件不存在则返回null
var exists = FileAccess.FileExists(resPath);
if (!exists)
{
return null;
}
2024-04-28 13:55:19 +00:00
var room = new Room
{
RoomScene = GD.Load<PackedScene>(ResUtils.GetEditorResPath(resPath))
2024-04-28 13:55:19 +00:00
};
return room;
}
}