* Added accounts types (savings and checking) * FS flush optimized balance computation * Automatic daily rate growth computations
191 lines
6.7 KiB
C#
191 lines
6.7 KiB
C#
using Client.ConsoleForms.Parameters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tofvesson.Collections;
|
|
|
|
namespace Client.ConsoleForms.Graphics
|
|
{
|
|
public class TextView : View
|
|
{
|
|
protected string[] text;
|
|
protected string[] text_render;
|
|
protected int maxWidth, maxHeight;
|
|
|
|
private string _text;
|
|
public string Text
|
|
{
|
|
get => _text;
|
|
protected set
|
|
{
|
|
_text = value;
|
|
text = _text.Split(' ');
|
|
|
|
// Compute the layout of the text to be rendered
|
|
text_render = ComputeTextDimensions(this.text);
|
|
int actualWidth = 0;
|
|
foreach (var t in text_render) if (actualWidth < t.Length) actualWidth = t.Length;
|
|
ContentWidth = maxWidth;// + padding.Left() + padding.Right();
|
|
ContentHeight = text_render.Length;// + padding.Top() + padding.Bottom();
|
|
Dirty = true;
|
|
}
|
|
}
|
|
|
|
public override Region Occlusion => new Region(
|
|
new Rectangle(
|
|
-padding.Left() - (DrawBorder ? 2 : 0), // Left bound
|
|
-padding.Top() - (DrawBorder ? 1 : 0), // Top bound
|
|
ContentWidth + padding.Right() + padding.Left() + (DrawBorder ? 2 : 0), // Right bound
|
|
ContentHeight + padding.Bottom() + padding.Top() + (DrawBorder ? 1 : 0) // Bottom bound
|
|
)
|
|
);
|
|
|
|
//public char Border { get; set; }
|
|
//public ConsoleColor BorderColor { get; set; }
|
|
|
|
public TextView(ViewData parameters, LangManager lang) : base(parameters, lang)
|
|
{
|
|
Border = ' ';
|
|
int widest = 0;
|
|
foreach (var t in parameters.NestedText("Text").Split('\n'))
|
|
if (t.Length > widest)
|
|
widest = t.Length;
|
|
this.maxWidth = parameters.AttribueAsInt("width") < 1 ? widest : parameters.AttribueAsInt("width");
|
|
this.maxHeight = parameters.AttribueAsInt("height", -1);
|
|
|
|
this.text = (Text = parameters.NestedText("Text")).Split(' ');
|
|
}
|
|
|
|
protected virtual string[] ComputeTextDimensions(string[] text)
|
|
{
|
|
if (maxHeight == 0)
|
|
return new string[0];
|
|
|
|
// Extract newlines
|
|
List<string> l = new List<string>();
|
|
int afterCount = 0;
|
|
foreach (var t in text)
|
|
{
|
|
string txt = t;
|
|
while (txt.StartsWith("\n"))
|
|
{
|
|
l.Add("\n");
|
|
txt = txt.Substring(1);
|
|
}
|
|
while (txt.EndsWith("\n"))
|
|
{
|
|
++afterCount;
|
|
txt = txt.Substring(0, txt.Length - 1);
|
|
}
|
|
|
|
var lines = txt.Split('\n');
|
|
for (int i = 0; i < lines.Length; ++i)
|
|
{
|
|
l.Add(lines[i]);
|
|
if (i != lines.Length - 1) l.Add("\n");
|
|
}
|
|
|
|
while (afterCount-- > 0) l.Add("\n");
|
|
|
|
}
|
|
|
|
BoundedList<string> generate = new BoundedList<string>(maxHeight);
|
|
|
|
int height = 0;
|
|
|
|
for (int i = 0; i < l.Count; ++i)
|
|
{
|
|
bool hasHeight = height < generate.Count;
|
|
string get = height >= generate.Count ? null : generate[height];
|
|
if (l[i].Equals("\n"))
|
|
{
|
|
if (hasHeight) generate[height] = get ?? "";
|
|
else if (!generate.Add("")) goto Done;
|
|
++height;
|
|
continue;
|
|
}
|
|
|
|
if (get == null || get.Length == 0)
|
|
{
|
|
if(hasHeight) generate[height] = l[i];
|
|
else if (!generate.Add(l[i])) goto Done;
|
|
}
|
|
else generate[height] = get + " " + l[i];
|
|
}
|
|
Done:
|
|
return generate.ToArray();
|
|
}
|
|
|
|
private static string[] Subsplit(string s, int max)
|
|
{
|
|
int nlCount = 0;
|
|
for (int i = 0; i < s.Length; ++i) if (s[i] == '\n') ++nlCount;
|
|
|
|
string[] result = new string[((s.Length - nlCount) / max) + nlCount + ((s.Length - nlCount) % max != 0 ? 1 : 0)];
|
|
|
|
int read = 0;
|
|
for (int i = 0; i < result.Length; ++i)
|
|
{
|
|
StringBuilder subCollect = new StringBuilder();
|
|
int idx = read;
|
|
int valid = 0;
|
|
while (idx < s.Length && valid < max)
|
|
{
|
|
char c = s[idx];
|
|
subCollect.Append(c);
|
|
++idx;
|
|
if (c != '\n') ++valid;
|
|
}
|
|
string sub = subCollect.ToString();
|
|
if (sub.Contains('\n'))
|
|
{
|
|
while (sub.Contains('\n'))
|
|
{
|
|
result[i++] = sub.Substring(0, sub.IndexOf('\n'));
|
|
sub = sub.Substring(sub.IndexOf('\n') + 1);
|
|
}
|
|
if (i < result.Length) result[i] = sub;
|
|
}
|
|
else result[i] = s.Substring(read, Math.Min(s.Length - read, read + max));
|
|
read += valid;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
private static bool WillSubSplit(string s, int max) => ((s.Length / max) + (s.Length % max != 0 ? 1 : 0)) > 1 || s.Contains('\n');
|
|
|
|
protected override void _Draw(int left, ref int top)
|
|
{
|
|
//DrawEmptyPadding(left, ref top, padding.Top());
|
|
DrawContent(left, ref top);
|
|
//DrawEmptyPadding(left, ref top, padding.Bottom());
|
|
}
|
|
|
|
protected void DrawContent(int left, ref int top)
|
|
{
|
|
int pl = padding.Left(), pr = padding.Right();
|
|
Console.BackgroundColor = BackgroundColor;
|
|
Console.ForegroundColor = TextColor;
|
|
for (int i = 0; i < text_render.Length; ++i)
|
|
{
|
|
Console.SetCursorPosition(left, top++);
|
|
Console.Write(/*Filler(' ', pl) + */text_render[i] + Filler(' ', ContentWidth - text_render[i].Length)/* + Filler(' ', pr)*/);
|
|
}
|
|
}
|
|
|
|
|
|
protected void DrawEmptyPadding(int left, ref int top, int padHeight)
|
|
{
|
|
//int pl = padding.Left(), pr = padding.Right();
|
|
for (int i = padHeight; i > 0; --i)
|
|
{
|
|
Console.SetCursorPosition(left, top++);
|
|
Console.BackgroundColor = BackgroundColor;
|
|
Console.Write(Filler(' ', ContentWidth/* + pl + pr*/));
|
|
}
|
|
}
|
|
}
|
|
}
|