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
65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Numerics;
|
|
using System.Runtime.InteropServices;
|
|
using Client;
|
|
using Client.ConsoleForms;
|
|
using Client.ConsoleForms.Parameters;
|
|
using Common;
|
|
using Tofvesson.Crypto;
|
|
|
|
namespace ConsoleForms
|
|
{
|
|
|
|
class Program
|
|
{
|
|
private static readonly RandomProvider provider = new RegularRandomProvider(new Random(1337));
|
|
public static TextWriter DebugStream = new DebugAdapterWriter();
|
|
private static ConsoleController controller = ConsoleController.singleton;
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
// Set up timestamps in debug output
|
|
DebugStream = new TimeStampWriter(DebugStream, "HH:mm:ss.fff");
|
|
|
|
Padding p = new AbsolutePadding(2, 2, 1, 1);
|
|
|
|
Console.CursorVisible = false;
|
|
Console.Title = "Tofvesson Enterprises"; // Set console title
|
|
|
|
// Start with the networking context
|
|
ContextManager manager = new ContextManager();
|
|
|
|
manager.LoadContext(new NetContext(manager));
|
|
|
|
// Start input listener loop. Graphics happen here too (triggered by keystrokes)
|
|
ConsoleController.KeyEvent info = new ConsoleController.KeyEvent(default(ConsoleKeyInfo))
|
|
{
|
|
ValidEvent = false
|
|
};
|
|
bool first = true;
|
|
do
|
|
{
|
|
if (first) first = false;
|
|
else info = controller.ReadKey();
|
|
|
|
bool b = manager.Update(info), haskey = false;
|
|
while (b)
|
|
{
|
|
System.Threading.Thread.Sleep(25);
|
|
haskey = _kbhit() != 0;
|
|
if (haskey) info = controller.ReadKey(false);
|
|
b = manager.Update(info, haskey);
|
|
controller.Draw();
|
|
}
|
|
} while (!info.ValidEvent || info.Event.Key != ConsoleKey.Escape);
|
|
}
|
|
|
|
// Detects if a key has been hit without blocking
|
|
[DllImport("msvcrt")]
|
|
public static extern int _kbhit();
|
|
}
|
|
} |