mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 22:59:47 +00:00
Some checks are pending
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
using System.Text;
|
|
|
|
namespace SharedTools;
|
|
|
|
public static class LuaTable
|
|
{
|
|
public static string Create(ref StringBuilder sb, string tableVariableName, IReadOnlyDictionary<string, string> keyValuePairs, IReadOnlyDictionary<string, string>? commentContent = null, CancellationToken cancellationToken = default)
|
|
{
|
|
//
|
|
// Add the UI_TEXT_CONTENT table:
|
|
//
|
|
sb.AppendLine($$"""{{tableVariableName}} = {}""");
|
|
foreach (var kvp in keyValuePairs.OrderBy(x => x.Key))
|
|
{
|
|
if (cancellationToken.IsCancellationRequested)
|
|
return sb.ToString();
|
|
|
|
var key = kvp.Key;
|
|
var value = kvp.Value.Replace("\n", " ").Trim();
|
|
var commentValue = commentContent is null ? value : commentContent.GetValueOrDefault(key, value);
|
|
|
|
// Remove the "UI_TEXT_CONTENT." prefix from the key:
|
|
const string UI_TEXT_CONTENT = "UI_TEXT_CONTENT.";
|
|
var keyWithoutPrefix = key.StartsWith(UI_TEXT_CONTENT, StringComparison.OrdinalIgnoreCase) ? key[UI_TEXT_CONTENT.Length..] : key;
|
|
|
|
// Replace all dots in the key with colons:
|
|
keyWithoutPrefix = keyWithoutPrefix.Replace(".", "::");
|
|
|
|
// Add a comment with the original text content:
|
|
sb.AppendLine();
|
|
sb.AppendLine($"-- {commentValue}");
|
|
|
|
// Add the assignment to the UI_TEXT_CONTENT table:
|
|
sb.AppendLine($"""
|
|
UI_TEXT_CONTENT["{keyWithoutPrefix}"] = "{LuaTools.EscapeLuaString(value)}"
|
|
""");
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
} |