Refactorings: * BinaryCollector -> BitWriter * BinaryDistributor -> BitReader Additions: * Output class for making serverside output pretty and more readable * Better RSA keys (private keys withheld) Changes: * Minor changes to all views and their rendering * Added corrective resizing to resize listener to prevent errant window sizes * Removed "default" language in favour of a purely priority-based system * NetContext now attempts to verify server identity before continuing to next context * Simplified common operations in Context * Minor updates to some layouts * Completed translations for english and swedish * Promise system now supports internal processing before notifying original caller * Bank interactor methods are now async * Added support for multiple accounts per user (separate repositories for money) * Removed test code from client program * Updated Database to support multiple accounts * Reimplemented RSA on the server side purely as an identity verification system on top of the networking layer (rather than part of the layer) * Added Account management endpoints * Added full support for System-sourced transactions * Added Account availability endpoint * Added verbose error responses
121 lines
4.4 KiB
C#
121 lines
4.4 KiB
C#
using Client.ConsoleForms.Parameters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Client.ConsoleForms.Graphics
|
|
{
|
|
public class ListView : View
|
|
{
|
|
protected readonly List<Tuple<string, View>> innerViews = new List<Tuple<string, View>>();
|
|
|
|
public int SelectedView { get; set; }
|
|
public int ViewCount { get => innerViews.Count; }
|
|
public ConsoleColor SelectBackground { get; set; }
|
|
public ConsoleColor SelectText { get; set; }
|
|
|
|
|
|
public override Region Occlusion => new Region(new Rectangle(-padding.Left(), -padding.Top(), ContentWidth + padding.Right(), ContentHeight + padding.Bottom()));
|
|
|
|
public ListView(ViewData parameters, LangManager lang) : base(parameters, lang)
|
|
{
|
|
SelectBackground = (ConsoleColor)parameters.AttribueAsInt("background_select_color", (int)ConsoleColor.Gray);
|
|
SelectText = (ConsoleColor)parameters.AttribueAsInt("text_select_color", (int)ConsoleColor.Gray);
|
|
|
|
|
|
int maxWidth = parameters.AttribueAsInt("width", -1);
|
|
bool limited = maxWidth != -1;
|
|
|
|
foreach (var view in parameters.nestedData.FirstOrNull(n => n.Name.Equals("Views"))?.nestedData ?? new List<ViewData>())
|
|
{
|
|
// Limit content width
|
|
if (limited && view.AttribueAsInt("width") > maxWidth) view.attributes["width"] = maxWidth.ToString();
|
|
|
|
Tuple<string, View> v = ConsoleController.LoadView(parameters.attributes["xmlns"], view, I18n); // Load the view in with standard namespace
|
|
v.Item2.DrawBorder = false;
|
|
innerViews.Add(v);
|
|
|
|
if (!limited) maxWidth = Math.Max(v.Item2.ContentWidth, maxWidth);
|
|
|
|
ContentHeight += v.Item2.ContentHeight + 1;
|
|
}
|
|
++ContentHeight;
|
|
|
|
SelectedView = 0;
|
|
|
|
ContentWidth = maxWidth;
|
|
}
|
|
|
|
public View GetView(string name) => innerViews.FirstOrNull(v => v.Item1.Equals(name))?.Item2;
|
|
|
|
protected override void _Draw(int left, ref int top)
|
|
{
|
|
foreach(var view in innerViews)
|
|
{
|
|
DrawBlankLine(left, ref top);
|
|
ConsoleColor
|
|
bgHold = view.Item2.BackgroundColor,
|
|
fgHold = view.Item2.TextColor;
|
|
|
|
if(view == innerViews[SelectedView])
|
|
{
|
|
view.Item2.BackgroundColor = SelectBackground;
|
|
//view.Item2.TextColor = SelectText;
|
|
}
|
|
Region sub = new Region(new Rectangle(0, 0, ContentWidth, view.Item2.ContentHeight)).Subtract(view.Item2.Occlusion);
|
|
|
|
sub.Offset(left, top);
|
|
|
|
ConsoleController.ClearRegion(sub, view.Item2.BackgroundColor);
|
|
|
|
DrawView(left - 1, ref top, view.Item2);
|
|
|
|
if (view == innerViews[SelectedView])
|
|
{
|
|
view.Item2.BackgroundColor = bgHold;
|
|
view.Item2.TextColor = fgHold;
|
|
}
|
|
}
|
|
DrawBlankLine(left, ref top);
|
|
}
|
|
|
|
protected virtual void DrawView(int left, ref int top, View v) => v.Draw(left, ref top);
|
|
|
|
protected virtual void DrawBlankLine(int left, ref int top)
|
|
{
|
|
ResetRenderColors();
|
|
Console.SetCursorPosition(left, top++);
|
|
Console.Write(Filler(' ', ContentWidth));
|
|
}
|
|
|
|
public override bool HandleKeyEvent(ConsoleController.KeyEvent info, bool inFocus)
|
|
{
|
|
if (!inFocus) return false;
|
|
if (innerViews[SelectedView].Item2.HandleKeyEvent(info, inFocus)) return true;
|
|
else if (!info.ValidEvent) return false;
|
|
|
|
// Handle navigation
|
|
switch (info.Event.Key)
|
|
{
|
|
case ConsoleKey.UpArrow:
|
|
if (SelectedView > 0)
|
|
{
|
|
info.ValidEvent = false;
|
|
--SelectedView;
|
|
return true;
|
|
}
|
|
break;
|
|
case ConsoleKey.DownArrow:
|
|
if(SelectedView < innerViews.Count - 1)
|
|
{
|
|
info.ValidEvent = false;
|
|
++SelectedView;
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
|
|
return base.HandleKeyEvent(info, inFocus);
|
|
}
|
|
}
|
|
}
|