BankProject/Client/Program.cs
GabrielTofvesson 308639da5f Fully implemented Binary Collector and Distributor
- Added zigzag decoding
  - Added floating point value compression by reinterpreting and serializing floating point values as integer values
  - Moved serialization code to common code project
2018-04-10 17:44:38 +02:00

79 lines
2.5 KiB
C#

using System;
using System.IO;
using System.Runtime.InteropServices;
using Client;
using Client.ConsoleForms;
using Client.ConsoleForms.Parameters;
using Common;
using Tofvesson.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(4))
{
collector.Push(true);
collector.Push(new double[] { 6.0, 123 });
collector.Push(new float[] { 512, 1.2f, 1.337f});
collector.Push(5);
serialized = collector.ToArray();
}
BinaryDistributor bd = new BinaryDistributor(serialized);
bool bit = bd.ReadBit();
double[] result = bd.ReadDoubleArray();
float[] f = bd.ReadFloatArray();
int number = bd.ReadInt();
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();
}
}