| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- #nullable enable
- namespace Terminal.Gui.Drivers;
- /// <summary>
- /// Abstract base class to assist with implementing <see cref="IConsoleOutput"/>.
- /// </summary>
- public abstract class OutputBase
- {
- private CursorVisibility? _cachedCursorVisibility;
- // Last text style used, for updating style with EscSeqUtils.CSI_AppendTextStyleChange().
- private TextStyle _redrawTextStyle = TextStyle.None;
- /// <summary>
- /// Changes the visibility of the cursor in the terminal to the specified <paramref name="visibility"/> e.g.
- /// the flashing indicator, invisible, box indicator etc.
- /// </summary>
- /// <param name="visibility"></param>
- public abstract void SetCursorVisibility (CursorVisibility visibility);
- /// <inheritdoc cref="IConsoleOutput.Write(IOutputBuffer)"/>
- public virtual void Write (IOutputBuffer buffer)
- {
- if (ConsoleDriver.RunningUnitTests)
- {
- return;
- }
- var top = 0;
- var left = 0;
- int rows = buffer.Rows;
- int cols = buffer.Cols;
- var output = new StringBuilder ();
- Attribute? redrawAttr = null;
- int lastCol = -1;
- CursorVisibility? savedVisibility = _cachedCursorVisibility;
- SetCursorVisibility (CursorVisibility.Invisible);
- const int MAX_CHARS_PER_RUNE = 2;
- Span<char> runeBuffer = stackalloc char [MAX_CHARS_PER_RUNE];
- for (int row = top; row < rows; row++)
- {
- if (!SetCursorPositionImpl (0, row))
- {
- return;
- }
- output.Clear ();
- for (int col = left; col < cols; col++)
- {
- lastCol = -1;
- var outputWidth = 0;
- for (; col < cols; col++)
- {
- if (!buffer.Contents [row, col].IsDirty)
- {
- if (output.Length > 0)
- {
- WriteToConsole (output, ref lastCol, row, ref outputWidth);
- }
- else if (lastCol == -1)
- {
- lastCol = col;
- }
- if (lastCol + 1 < cols)
- {
- lastCol++;
- }
- continue;
- }
- if (lastCol == -1)
- {
- lastCol = col;
- }
- Attribute? attribute = buffer.Contents [row, col].Attribute;
- if (attribute is { })
- {
- Attribute attr = attribute.Value;
- // Performance: Only send the escape sequence if the attribute has changed.
- if (attr != redrawAttr)
- {
- redrawAttr = attr;
- AppendOrWriteAttribute (output, attr, _redrawTextStyle);
- _redrawTextStyle = attr.Style;
- }
- }
- outputWidth++;
- // Avoid Rune.ToString() by appending the rune chars.
- Rune rune = buffer.Contents [row, col].Rune;
- int runeCharsWritten = rune.EncodeToUtf16 (runeBuffer);
- ReadOnlySpan<char> runeChars = runeBuffer [..runeCharsWritten];
- output.Append (runeChars);
- if (buffer.Contents [row, col].CombiningMarks.Count > 0)
- {
- // AtlasEngine does not support NON-NORMALIZED combining marks in a way
- // compatible with the driver architecture. Any CMs (except in the first col)
- // are correctly combined with the base char, but are ALSO treated as 1 column
- // width codepoints E.g. `echo "[e`u{0301}`u{0301}]"` will output `[é ]`.
- //
- // For now, we just ignore the list of CMs.
- //foreach (var combMark in Contents [row, col].CombiningMarks) {
- // output.Append (combMark);
- }
- else if (rune.IsSurrogatePair () && rune.GetColumns () < 2)
- {
- WriteToConsole (output, ref lastCol, row, ref outputWidth);
- SetCursorPositionImpl (col - 1, row);
- }
- buffer.Contents [row, col].IsDirty = false;
- }
- }
- if (output.Length > 0)
- {
- SetCursorPositionImpl (lastCol, row);
- // Wrap URLs with OSC 8 hyperlink sequences using the new Osc8UrlLinker
- StringBuilder processed = Osc8UrlLinker.WrapOsc8 (output);
- Write (processed);
- }
- }
- foreach (SixelToRender s in Application.Sixel)
- {
- if (!string.IsNullOrWhiteSpace (s.SixelData))
- {
- SetCursorPositionImpl (s.ScreenPosition.X, s.ScreenPosition.Y);
- Console.Out.Write (s.SixelData);
- }
- }
- SetCursorVisibility (savedVisibility ?? CursorVisibility.Default);
- _cachedCursorVisibility = savedVisibility;
- }
- /// <summary>
- /// Changes the color and text style of the console to the given <paramref name="attr"/> and
- /// <paramref name="redrawTextStyle"/>.
- /// If command can be buffered in line with other output (e.g. CSI sequence) then it should be appended to
- /// <paramref name="output"/>
- /// otherwise the relevant output state should be flushed directly (e.g. by calling relevant win 32 API method)
- /// </summary>
- /// <param name="output"></param>
- /// <param name="attr"></param>
- /// <param name="redrawTextStyle"></param>
- protected abstract void AppendOrWriteAttribute (StringBuilder output, Attribute attr, TextStyle redrawTextStyle);
- /// <summary>
- /// When overriden in derived class, positions the terminal output cursor to the specified point on the screen.
- /// </summary>
- /// <param name="screenPositionX">Column to move cursor to</param>
- /// <param name="screenPositionY">Row to move cursor to</param>
- /// <returns></returns>
- protected abstract bool SetCursorPositionImpl (int screenPositionX, int screenPositionY);
- /// <summary>
- /// Output the contents of the <paramref name="output"/> to the console.
- /// </summary>
- /// <param name="output"></param>
- protected abstract void Write (StringBuilder output);
- private void WriteToConsole (StringBuilder output, ref int lastCol, int row, ref int outputWidth)
- {
- SetCursorPositionImpl (lastCol, row);
- // Wrap URLs with OSC 8 hyperlink sequences using the new Osc8UrlLinker
- StringBuilder processed = Osc8UrlLinker.WrapOsc8 (output);
- Write (processed);
- output.Clear ();
- lastCol += outputWidth;
- outputWidth = 0;
- }
- }
|