* Reworked padding rendering (now handled natively by View) * Fixed how ConsoleController renders dirty views * Explicitly added padding to the LayoutMeta dimensions computation * Added support for updating passwords in SessionContext * Completed account display system * Added many more resources * Simplified internationalization * Added clientside representations for accounts and transations * MOAR COMMENTS! * Optimized account serialization * Corrected issue where copying a user simply copied references to the user accounts; not actually copying accounts (which caused jank) * Fixed timestamp for TimeStampWriter * Probably some other minor things
65 lines
2.2 KiB
C#
65 lines
2.2 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 Tofvesson.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) && !controller.ShouldExit);
|
|
}
|
|
|
|
// Detects if a key has been hit without blocking
|
|
[DllImport("msvcrt")]
|
|
public static extern int _kbhit();
|
|
}
|
|
} |