recrownedgtk/RecrownedGTK.Tools/ConsoleInterface/ConsoleUtilities.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2020-02-17 02:44:21 +00:00
using System;
using System.Text;
namespace RecrownedGTK.Tools.ConsoleInterface
2020-02-17 02:44:21 +00:00
{
internal class ConsoleUtilities
{
public static string WrapMessageToConsoleWidth(string message)
{
string[] words = message.Split(' ');
StringBuilder stringBuilder = new StringBuilder();
int currentLineSize = 0;
for (int i = 0; i < words.Length; i++)
{
if (currentLineSize + words[i].Length >= Console.BufferWidth - Console.CursorLeft -1)
{
currentLineSize = 0;
stringBuilder.AppendLine();
}
if (words[i].Contains("\n"))
{
currentLineSize = 0;
}
currentLineSize += words[i].Length + 1;
if (words[i].Contains("\n"))
{
currentLineSize -= 2;
}
stringBuilder.Append(words[i]);
if (i + 1 < words.Length)
{
stringBuilder.Append(' ');
}
}
stringBuilder.AppendLine();
2020-02-17 02:44:21 +00:00
return stringBuilder.ToString();
}
}
}