示例#1
0
        public static void Install(Inv.Application application)
        {
            application.Title = "MegaDungeon";
            var surface = application.Window.NewSurface();
            var h       = application.Window.Height;
            var w       = application.Window.Width;
            var start   = DateTime.UtcNow;
            var ui      = new MegaDungeonUI(surface, 60, 40);
            var end     = DateTime.UtcNow;
            var ms      = (end - start).TotalMilliseconds;

            Console.WriteLine($"Initialized in {ms} milliseconds");

            surface.ArrangeEvent += () =>
            {
                Surface_ArrangeEvent(surface);
            };

            application.Window.Transition(surface);

            surface.ComposeEvent += () =>
            {
                Surface_ComposeEvent(ui);
            };

            surface.KeystrokeEvent += (keyStroke) =>
            {
                Surface_KeystrokeEvent(keyStroke, ui);
            };
            Console.WriteLine("Boot completed.");
        }
示例#2
0
 // Fires up to 60 times a second.
 static void Surface_ComposeEvent(MegaDungeonUI ui)
 {
 }
示例#3
0
 static void Surface_KeystrokeEvent(Keystroke keystroke, MegaDungeonUI ui)
 {
     // Console.WriteLine($"{keystroke.Modifier}{keystroke.Key}");
     ui.AcceptInput(keystroke);
 }