// // NetDriver.cs: The System.Console-based .NET driver, works on Windows and Unix, but is not particularly efficient. // // Authors: // Miguel de Icaza (miguel@gnome.org) // using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using NStack; namespace Terminal.Gui { internal class NetDriver : ConsoleDriver { int cols, rows, top; public override int Cols => cols; public override int Rows => rows; public override int Top => top; public override HeightSize HeightSize { get; set; } // The format is rows, columns and 3 values on the last column: Rune, Attribute and Dirty Flag int [,,] contents; bool [] dirtyLine; void UpdateOffscreen () { int cols = Cols; int rows = Rows; contents = new int [rows, cols, 3]; dirtyLine = new bool [rows]; for (int row = 0; row < rows; row++) { for (int c = 0; c < cols; c++) { contents [row, c, 0] = ' '; contents [row, c, 1] = (ushort)Colors.TopLevel.Normal; contents [row, c, 2] = 0; dirtyLine [row] = true; } } } static bool sync = false; // Current row, and current col, tracked by Move/AddCh only int ccol, crow; public override void Move (int col, int row) { ccol = col; crow = row; } public override void AddRune (Rune rune) { rune = MakePrintable (rune); if (Clip.Contains (ccol, crow)) { contents [crow, ccol, 0] = (int)(uint)rune; contents [crow, ccol, 1] = currentAttribute; contents [crow, ccol, 2] = 1; dirtyLine [crow] = true; } ccol++; var runeWidth = Rune.ColumnWidth (rune); if (runeWidth > 1) { for (int i = 1; i < runeWidth; i++) { contents [crow, ccol, 2] = 0; ccol++; } } //if (ccol == Cols) { // ccol = 0; // if (crow + 1 < Rows) // crow++; //} if (sync) { UpdateScreen (); } } public override void AddStr (ustring str) { foreach (var rune in str) AddRune (rune); } public override void End () { Console.ResetColor (); Clear (); } void Clear () { if (Rows > 0) { Console.Clear (); } } static Attribute MakeColor (ConsoleColor f, ConsoleColor b) { // Encode the colors into the int value. return new Attribute () { value = ((((int)f) & 0xffff) << 16) | (((int)b) & 0xffff) }; } bool isWinPlatform; public override void Init (Action terminalResized) { TerminalResized = terminalResized; Console.TreatControlCAsInput = true; var p = Environment.OSVersion.Platform; if (p == PlatformID.Win32NT || p == PlatformID.Win32S || p == PlatformID.Win32Windows) { isWinPlatform = true; } Colors.TopLevel = new ColorScheme (); Colors.Base = new ColorScheme (); Colors.Dialog = new ColorScheme (); Colors.Menu = new ColorScheme (); Colors.Error = new ColorScheme (); Colors.TopLevel.Normal = MakeColor (ConsoleColor.Green, ConsoleColor.Black); Colors.TopLevel.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkCyan); Colors.TopLevel.HotNormal = MakeColor (ConsoleColor.DarkYellow, ConsoleColor.Black); Colors.TopLevel.HotFocus = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.DarkCyan); Colors.Base.Normal = MakeColor (ConsoleColor.White, ConsoleColor.Blue); Colors.Base.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Cyan); Colors.Base.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.Blue); Colors.Base.HotFocus = MakeColor (ConsoleColor.Yellow, ConsoleColor.Cyan); // Focused, // Selected, Hot: Yellow on Black // Selected, text: white on black // Unselected, hot: yellow on cyan // unselected, text: same as unfocused Colors.Menu.HotFocus = MakeColor (ConsoleColor.Yellow, ConsoleColor.Black); Colors.Menu.Focus = MakeColor (ConsoleColor.White, ConsoleColor.Black); Colors.Menu.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.Cyan); Colors.Menu.Normal = MakeColor (ConsoleColor.White, ConsoleColor.Cyan); Colors.Menu.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Cyan); Colors.Dialog.Normal = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); Colors.Dialog.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Cyan); Colors.Dialog.HotNormal = MakeColor (ConsoleColor.Blue, ConsoleColor.Gray); Colors.Dialog.HotFocus = MakeColor (ConsoleColor.Blue, ConsoleColor.Cyan); Colors.Error.Normal = MakeColor (ConsoleColor.White, ConsoleColor.Red); Colors.Error.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); Colors.Error.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.Red); Colors.Error.HotFocus = Colors.Error.HotNormal; Clear (); ResizeScreen (); UpdateOffscreen (); } void ResizeScreen () { const int Min_WindowWidth = 14; switch (HeightSize) { case HeightSize.WindowHeight: if (Console.WindowHeight > 0) { // Can raise an exception while is still resizing. try { // Not supported on Unix. if (isWinPlatform) { #pragma warning disable CA1416 Console.CursorTop = 0; Console.CursorLeft = 0; Console.WindowTop = 0; Console.WindowLeft = 0; Console.SetBufferSize (Math.Max (Min_WindowWidth, Console.WindowWidth), Console.WindowHeight); #pragma warning restore CA1416 } else { //Console.Out.Write ($"\x1b[8;{Console.WindowHeight};{Console.WindowWidth}t"); //Console.Out.Flush (); Console.Out.Write ($"\x1b[0;0" + $";{Console.WindowHeight};" + $"{Math.Max (Min_WindowWidth, Console.WindowWidth)}w"); } } catch (System.IO.IOException) { return; } catch (ArgumentOutOfRangeException) { return; } } cols = Console.WindowWidth; rows = Console.WindowHeight; top = 0; break; case HeightSize.BufferHeight: if (isWinPlatform && Console.WindowHeight > 0) { // Can raise an exception while is still resizing. try { #pragma warning disable CA1416 Console.WindowTop = Math.Max (Math.Min (top, Console.BufferHeight - Console.WindowHeight), 0); #pragma warning restore CA1416 } catch (Exception) { return; } } else { Console.Out.Write ($"\x1b[{top};{Console.WindowLeft}" + $";{Console.BufferHeight}" + $";{Math.Max (Min_WindowWidth, Console.BufferWidth)}w"); } cols = Console.BufferWidth; rows = Console.BufferHeight; break; } Clip = new Rect (0, 0, Cols, Rows); } public override Attribute MakeAttribute (Color fore, Color back) { return MakeColor ((ConsoleColor)fore, (ConsoleColor)back); } int redrawColor = -1; void SetColor (int color) { redrawColor = color; IEnumerable values = Enum.GetValues (typeof (ConsoleColor)) .OfType () .Select (s => (int)s); if (values.Contains (color & 0xffff)) { Console.BackgroundColor = (ConsoleColor)(color & 0xffff); } if (values.Contains ((color >> 16) & 0xffff)) { Console.ForegroundColor = (ConsoleColor)((color >> 16) & 0xffff); } } public override void UpdateScreen () { if (winChanging || Console.WindowHeight == 0 || (HeightSize == HeightSize.WindowHeight && Rows != Console.WindowHeight) || (HeightSize == HeightSize.BufferHeight && Rows != Console.BufferHeight)) { return; } int top = Top; int rows = Math.Min (Console.WindowHeight + top, Rows); int cols = Cols; for (int row = top; row < rows; row++) { if (!dirtyLine [row]) { continue; } dirtyLine [row] = false; int [,,] damage = new int [0, 0, 0]; for (int col = 0; col < cols; col++) { if (contents [row, col, 2] != 1) { continue; } if (Console.WindowHeight > 0) { // Could happens that the windows is still resizing and the col is bigger than Console.WindowWidth. try { Console.SetCursorPosition (col, row); } catch (Exception) { return; } } for (; col < cols && contents [row, col, 2] == 1; col++) { var color = contents [row, col, 1]; if (color != redrawColor) { SetColor (color); } Console.Write ((char)contents [row, col, 0]); contents [row, col, 2] = 0; } } } UpdateCursor (); } public override void Refresh () { UpdateScreen (); } public override void UpdateCursor () { // Prevents the exception of size changing during resizing. try { if (ccol >= 0 && ccol <= cols && crow >= 0 && crow <= rows) { Console.SetCursorPosition (ccol, crow); } } catch (System.IO.IOException) { } catch (ArgumentOutOfRangeException) { } } public override void StartReportingMouseMoves () { } public override void StopReportingMouseMoves () { } public override void Suspend () { } int currentAttribute; public override void SetAttribute (Attribute c) { currentAttribute = c.value; } Key MapKey (ConsoleKeyInfo keyInfo) { MapKeyModifiers (keyInfo); switch (keyInfo.Key) { case ConsoleKey.Escape: return Key.Esc; case ConsoleKey.Tab: return keyInfo.Modifiers == ConsoleModifiers.Shift ? Key.BackTab : Key.Tab; case ConsoleKey.Home: return Key.Home; case ConsoleKey.End: return Key.End; case ConsoleKey.LeftArrow: return Key.CursorLeft; case ConsoleKey.RightArrow: return Key.CursorRight; case ConsoleKey.UpArrow: return Key.CursorUp; case ConsoleKey.DownArrow: return Key.CursorDown; case ConsoleKey.PageUp: return Key.PageUp; case ConsoleKey.PageDown: return Key.PageDown; case ConsoleKey.Enter: return Key.Enter; case ConsoleKey.Spacebar: return Key.Space; case ConsoleKey.Backspace: return Key.Backspace; case ConsoleKey.Delete: return Key.Delete; case ConsoleKey.Oem1: case ConsoleKey.Oem2: case ConsoleKey.Oem3: case ConsoleKey.Oem4: case ConsoleKey.Oem5: case ConsoleKey.Oem6: case ConsoleKey.Oem7: case ConsoleKey.Oem8: case ConsoleKey.Oem102: case ConsoleKey.OemPeriod: case ConsoleKey.OemComma: case ConsoleKey.OemPlus: case ConsoleKey.OemMinus: return (Key)((uint)keyInfo.KeyChar); } var key = keyInfo.Key; if (key >= ConsoleKey.A && key <= ConsoleKey.Z) { var delta = key - ConsoleKey.A; if (keyInfo.Modifiers == ConsoleModifiers.Control) { return (Key)(((uint)Key.CtrlMask) | ((uint)Key.A + delta)); } if (keyInfo.Modifiers == ConsoleModifiers.Alt) { return (Key)(((uint)Key.AltMask) | ((uint)Key.A + delta)); } if ((keyInfo.Modifiers & (ConsoleModifiers.Alt | ConsoleModifiers.Control)) != 0) { if (keyInfo.KeyChar == 0 || (keyInfo.KeyChar != 0 && keyInfo.KeyChar >= 1 && keyInfo.KeyChar <= 26)) { return (Key)((uint)Key.A + delta); } } return (Key)((uint)keyInfo.KeyChar); } if (key >= ConsoleKey.D0 && key <= ConsoleKey.D9) { var delta = key - ConsoleKey.D0; if (keyInfo.Modifiers == ConsoleModifiers.Alt) { return (Key)(((uint)Key.AltMask) | ((uint)Key.D0 + delta)); } if (keyInfo.Modifiers == ConsoleModifiers.Control) { return (Key)(((uint)Key.CtrlMask) | ((uint)Key.D0 + delta)); } if ((keyInfo.Modifiers & (ConsoleModifiers.Alt | ConsoleModifiers.Control)) != 0) { if (keyInfo.KeyChar == 0 || keyInfo.KeyChar == 30) { return (Key)((uint)Key.D0 + delta); } } return (Key)((uint)keyInfo.KeyChar); } if (key >= ConsoleKey.F1 && key <= ConsoleKey.F12) { var delta = key - ConsoleKey.F1; if ((keyInfo.Modifiers & (ConsoleModifiers.Shift | ConsoleModifiers.Alt | ConsoleModifiers.Control)) != 0) { return (Key)((uint)Key.F1 + delta); } return (Key)((uint)Key.F1 + delta); } if (keyInfo.KeyChar != 0) { return (Key)((uint)keyInfo.KeyChar); } return (Key)(0xffffffff); } KeyModifiers keyModifiers; void MapKeyModifiers (ConsoleKeyInfo keyInfo) { if (keyModifiers == null) keyModifiers = new KeyModifiers (); if ((keyInfo.Modifiers & ConsoleModifiers.Shift) != 0) keyModifiers.Shift = true; if ((keyInfo.Modifiers & ConsoleModifiers.Control) != 0) keyModifiers.Ctrl = true; if ((keyInfo.Modifiers & ConsoleModifiers.Alt) != 0) keyModifiers.Alt = true; } bool winChanging; public override void PrepareToRun (MainLoop mainLoop, Action keyHandler, Action keyDownHandler, Action keyUpHandler, Action mouseHandler) { // Note: Net doesn't support keydown/up events and thus any passed keyDown/UpHandlers will never be called (mainLoop.Driver as NetMainLoop).KeyPressed = (consoleKey) => { var map = MapKey (consoleKey); if (map == (Key)0xffffffff) { return; } keyHandler (new KeyEvent (map, keyModifiers)); keyUpHandler (new KeyEvent (map, keyModifiers)); keyModifiers = null; }; (mainLoop.Driver as NetMainLoop).WinChanged = (e) => { winChanging = true; top = e; ResizeScreen (); UpdateOffscreen (); winChanging = false; TerminalResized.Invoke (); }; } public override void SetColors (ConsoleColor foreground, ConsoleColor background) { } public override void SetColors (short foregroundColorId, short backgroundColorId) { } public override void CookMouse () { } public override void UncookMouse () { } // // These are for the .NET driver, but running natively on Windows, wont run // on the Mono emulation // } /// /// Mainloop intended to be used with the .NET System.Console API, and can /// be used on Windows and Unix, it is cross platform but lacks things like /// file descriptor monitoring. /// /// /// This implementation is used for NetDriver. /// internal class NetMainLoop : IMainLoopDriver { ManualResetEventSlim keyReady = new ManualResetEventSlim (false); ManualResetEventSlim waitForProbe = new ManualResetEventSlim (false); ManualResetEventSlim winChange = new ManualResetEventSlim (false); Queue keyResult = new Queue (); MainLoop mainLoop; ConsoleDriver consoleDriver; bool winChanged; int newTop; CancellationTokenSource tokenSource = new CancellationTokenSource (); /// /// Invoked when a Key is pressed. /// public Action KeyPressed; public Action WinChanged; /// /// Initializes the class with the console driver. /// /// /// Passing a consoleDriver is provided to capture windows resizing. /// /// The console driver used by this Net main loop. public NetMainLoop (ConsoleDriver consoleDriver = null) { if (consoleDriver == null) { throw new ArgumentNullException ("Console driver instance must be provided."); } this.consoleDriver = consoleDriver; } void KeyReader () { while (true) { waitForProbe.Wait (); waitForProbe.Reset (); if (keyResult.Count == 0) { keyResult.Enqueue (Console.ReadKey (true)); } keyReady.Set (); } } void CheckWinChange () { while (true) { winChange.Wait (); winChange.Reset (); WaitWinChange (); winChanged = true; keyReady.Set (); } } void WaitWinChange () { while (true) { switch (consoleDriver.HeightSize) { case HeightSize.WindowHeight: if (Console.WindowWidth != consoleDriver.Cols || Console.WindowHeight != consoleDriver.Rows) { return; } break; case HeightSize.BufferHeight: if (Console.BufferWidth != consoleDriver.Cols || Console.BufferHeight != consoleDriver.Rows || Console.WindowTop != consoleDriver.Top) { newTop = Console.WindowTop; return; } break; } } } void IMainLoopDriver.Setup (MainLoop mainLoop) { this.mainLoop = mainLoop; Task.Run (KeyReader); Task.Run (CheckWinChange); } void IMainLoopDriver.Wakeup () { keyReady.Set (); } bool IMainLoopDriver.EventsPending (bool wait) { waitForProbe.Set (); winChange.Set (); if (CheckTimers (wait, out var waitTimeout)) { return true; } try { if (!tokenSource.IsCancellationRequested) { keyReady.Wait (waitTimeout, tokenSource.Token); } } catch (OperationCanceledException) { return true; } finally { keyReady.Reset (); } if (!tokenSource.IsCancellationRequested) { return keyResult.Count > 0 || CheckTimers (wait, out _) || winChanged; } tokenSource.Dispose (); tokenSource = new CancellationTokenSource (); return true; } bool CheckTimers (bool wait, out int waitTimeout) { long now = DateTime.UtcNow.Ticks; if (mainLoop.timeouts.Count > 0) { waitTimeout = (int)((mainLoop.timeouts.Keys [0] - now) / TimeSpan.TicksPerMillisecond); if (waitTimeout < 0) return true; } else { waitTimeout = -1; } if (!wait) waitTimeout = 0; int ic; lock (mainLoop.idleHandlers) { ic = mainLoop.idleHandlers.Count; } return ic > 0; } void IMainLoopDriver.MainIteration () { if (keyResult.Count > 0) { KeyPressed?.Invoke (keyResult.Dequeue ().Value); } if (winChanged) { winChanged = false; WinChanged.Invoke (newTop); } } } }