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
102 lines
4.1 KiB
C#
102 lines
4.1 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 DialogView : TextView
|
|
{
|
|
public delegate void SelectListener(DialogView view, int selectionIndex, string selection);
|
|
|
|
protected readonly ViewData[] options;
|
|
protected int select;
|
|
protected SelectListener listener;
|
|
|
|
public int Select
|
|
{
|
|
get => select;
|
|
set => select = value < 0 ? 0 : value >= options.Length ? options.Length - 1 : value;
|
|
}
|
|
public override Region Occlusion => new Region(new Rectangle(-1, -1, ContentWidth + 4, ContentHeight + 2));
|
|
|
|
public ConsoleColor SelectColor { get; set; }
|
|
public ConsoleColor NotSelectColor { get; set; }
|
|
public string[] Options { get => options.Transform(d => d.InnerText); }
|
|
|
|
private static int ComputeLength(Tuple<string, string>[] opts) => opts.CollectiveLength(true) + opts.Length - 1;
|
|
|
|
public DialogView(ViewData parameters, LangManager lang) :
|
|
base(parameters.SetAttribute("width",
|
|
Math.Max(
|
|
parameters.AttribueAsInt("width") < 1 ? parameters.NestedText("Text").Length : parameters.AttribueAsInt("width"),
|
|
ComputeLength(parameters.Get("Options")?.CollectSub("Option") ?? new Tuple<string, string>[0])
|
|
)), lang)
|
|
{
|
|
ViewData optionsData = parameters.Get("Options");
|
|
this.options = optionsData.nestedData.Filter(p => p.Name.Equals("Option")).ToArray();
|
|
this.select = parameters.AttribueAsInt("select");
|
|
ContentHeight += 2;
|
|
select = select < 0 ? 0 : select >= options.Length ? 0 : select;
|
|
SelectColor = (ConsoleColor)parameters.AttribueAsInt("select_color", (int)ConsoleColor.Gray);
|
|
NotSelectColor = (ConsoleColor)parameters.AttribueAsInt("unselect_color", (int)ConsoleColor.White);
|
|
}
|
|
|
|
protected override void _Draw(int left, ref int top)
|
|
{
|
|
DrawEmptyPadding(left, ref top, padding.Top());
|
|
base.DrawContent(left, ref top);
|
|
DrawEmptyPadding(left, ref top, 1);
|
|
DrawOptions(left, ref top);
|
|
DrawEmptyPadding(left, ref top, padding.Bottom());
|
|
}
|
|
|
|
protected virtual void DrawOptions(int left, ref int top)
|
|
{
|
|
int pl = padding.Left(), pr = padding.Right();
|
|
Console.SetCursorPosition(left, top++);
|
|
|
|
int pad = MaxWidth - options.CollectiveLength() - options.Length + pl + pr;
|
|
int lpad = (int)(pad / 2f);
|
|
Console.BackgroundColor = BackgroundColor;
|
|
Console.Write(Filler(' ', lpad));
|
|
for (int i = 0; i < options.Length; ++i)
|
|
{
|
|
Console.BackgroundColor = i == select ? SelectColor : NotSelectColor;
|
|
Console.Write(options[i].InnerText);
|
|
Console.BackgroundColor = BackgroundColor;
|
|
Console.Write(' ');
|
|
}
|
|
Console.Write(Filler(' ', pad - lpad));
|
|
}
|
|
|
|
public override bool HandleKeyEvent(ConsoleController.KeyEvent evt, bool inFocus)
|
|
{
|
|
bool changed = base.HandleKeyEvent(evt, inFocus);
|
|
ConsoleKeyInfo info = evt.Event;
|
|
if (!evt.ValidEvent || !inFocus) return changed;
|
|
switch (info.Key)
|
|
{
|
|
case ConsoleKey.LeftArrow:
|
|
if (select > 0) --select;
|
|
break;
|
|
case ConsoleKey.RightArrow:
|
|
if (select < options.Length - 1) ++select;
|
|
break;
|
|
case ConsoleKey.Enter:
|
|
ParseAction(options[select])();
|
|
listener?.Invoke(this, select, options[select].InnerText);
|
|
return changed;
|
|
default:
|
|
return changed;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public void RegisterSelectListener(SelectListener listener) => this.listener = listener;
|
|
}
|
|
}
|