Implemented floating point value deserialization Separated Elliptic Curve Point class to its own file
73 lines
2.3 KiB
C#
73 lines
2.3 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
using Client;
|
|
using Client.ConsoleForms;
|
|
using Client.ConsoleForms.Parameters;
|
|
using Common;
|
|
|
|
namespace ConsoleForms
|
|
{
|
|
class Program
|
|
{
|
|
public static TextWriter DebugStream = new DebugAdapterWriter();
|
|
private static ConsoleController controller = ConsoleController.singleton;
|
|
|
|
static void Main(string[] args)
|
|
{
|
|
// Set up timestamps in debug output
|
|
DebugStream = new TimeStampWriter(DebugStream, "HH:mm:ss.fff");
|
|
|
|
|
|
|
|
byte[] serialized;
|
|
|
|
using (BinaryCollector collector = new BinaryCollector(2))
|
|
{
|
|
collector.Push(true);
|
|
collector.Push(new double[] { 6.0, 5.0 });
|
|
serialized = collector.ToArray();
|
|
}
|
|
|
|
BinaryDistributor bd = new BinaryDistributor(serialized);
|
|
bool bit = bd.ReadBit();
|
|
double[] result = bd.ReadDoubleArray();
|
|
|
|
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();
|
|
}
|
|
} |