75 lines
2.6 KiB
C#
75 lines
2.6 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();
|
|
NetContext networking = new NetContext(manager);
|
|
|
|
if (CheckIsNewUser()) manager.LoadContext(new IntroContext(manager, () => manager.LoadContext(networking)));
|
|
else manager.LoadContext(networking);
|
|
|
|
// 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);
|
|
}
|
|
|
|
private static bool CheckIsNewUser()
|
|
{
|
|
if (File.Exists(".cfvfy")) return false;
|
|
File.Create(".cfvfy").Close();
|
|
File.SetAttributes(".cfvfy", FileAttributes.Hidden);
|
|
return true;
|
|
}
|
|
|
|
// Detects if a key has been hit without blocking
|
|
[DllImport("msvcrt")]
|
|
public static extern int _kbhit();
|
|
}
|
|
} |