classafTerminal::AnsiBuf
sys::Obj afTerminal::AnsiBuf
Generates a sequence of ANSI escape codes.
Note that generated SGR command sequences are optimised where possible.
const static Int ESC := 27
The
ESC
char,0x1B
.Convenience for
print()
.Convenience for
printChar()
.This backspace()
Convenience for printChar(
\b
).Sets the background colour to the given Color. Any alpha value is ignored. If
null
is passed, this method does nothing.ansi-sequence: ESC[48;2;${r};${g};${b}m
Sets the background colour to the given palette colour (0..255). If
null
is passed, this method does nothing.ansi-sequence: ESC[48;5;${i}m
This bgReset()
Resets the foreground colour to default.
ansi-sequence: ESC[49m
Sets the background colour to the given RGB integer. If
null
is passed, this method does nothing.- bits 16-23 red
- bits 8-15 green
- bits 0-7 blue
For example orange would be
0xFF_A5_00
.ansi-sequence: ESC[48;2;${r};${g};${b}m
Turns bold on or off.
ansi-sequence: ESC[1m or ESC[21m
This clear()
Clear the contents of the string buffer so that is has a size of zero. Return this.
This clearLine()
Clears the current line. The cursor position is unaffected.
ansi-sequence: ESC[2K
This clearLineToEnd()
Clears the current line from the cursor to the end. The cursor position is unaffected.
ansi-sequence: ESC[0K
This clearLineToStart()
Clears the current line from the cursor to the start. The cursor position is unaffected.
ansi-sequence: ESC[1K
This clearScreen()
Clears the screen.
ansi-sequence: ESC[2J
This conceal(Bool onOff := true)
Turns concealed text on or off.
ansi-sequence: ESC[8m or ESC[28m
Not implemented.
This crossedOut(Bool onOff := true)
Turns crossed out on or off.
ansi-sequence: ESC[4m or ESC[24m
Note this is represented by a squiggly underline in the ANSI Terminal.
This csi()
Writes the Control Sequence Initiator.
ansi-sequence: ESC[
Moves the cursor up a number of rows. Passing in
0
ornull
does nothing.ansi-sequence: ESC[${rows}B
This curEnd()
Moves the cursor to the end of the current line.
ansi-sequence: ESC[w
Note this is an Alien-Factory extension - not an ANSI standard.
This curHome()
Moves the cursor to the start of the current line.
ansi-sequence: ESC[v
Note this is an Alien-Factory extension - not an ANSI standard.
This curHorizonal(Int? column := 1)
Moves the cursor to an absolute column position. Note that ANSI standards state that
column
is 1 based, socurHorizonal(1)
returns the cursor to the start of the line. Passing in0
ornull
does nothing.ansi-sequence: ESC[${col}G
Moves the cursor left a number of rows. Passing in
0
ornull
does nothing.ansi-sequence: ESC[${cols}D
This curRestore()
Restores the cursor position - both horizontal and vertical. Does nothing if a cursor position has not yet been saved.
ansi-sequence: ESC[u
Moves the cursor right a number of rows. Passing in
0
ornull
does nothing.ansi-sequence: ESC[${cols}C
This curSave()
Saves the cursor position - both horizontal and vertical.
ansi-sequence: ESC[s
Moves the cursor up a number of rows. Passing in
0
ornull
does nothing.ansi-sequence: ESC[${rows}A
Sets the foreground colour to the given Color. Any alpha value is ignored. If
null
is passed, this method does nothing.ansi-sequence: ESC[38;2;${r};${g};${b}m
Sets the foreground colour to the given palette colour. (0..255) If
null
is passed, this method does nothing.ansi-sequence: ESC[38;5;${i}m
This fgReset()
Resets the foreground colour to default.
ansi-sequence: ESC[39m
Sets the foreground colour to the given RGB integer. If
null
is passed, this method does nothing.- bits 16-23 red
- bits 8-15 green
- bits 0-7 blue
For example orange would be
0xFF_A5_00
.ansi-sequence: ESC[38;2;${r};${g};${b}m
This italic(Bool onOff := true)
Turns italics on or off.
ansi-sequence: ESC[3m or ESC[23m
new make(Str? str := null)
Creates an
AnsiBuf
instance , optionally with the given string / ANSI sequence.This newLine()
Convenience for printChar(
\n
).Adds
x.toStr
to the end of this buffer. Ifx
is null then the string "null" is added.Optimised implementation for
print(ch.toChar)
.This printFandoc(Str fandoc, Int? maxWidth := null)
Prints the given fandoc string to the buffer, converting bold and italic formatting to their ANSI representation.
If
maxWidth
is given then all text is wrapped at that width.Pass the terminal column width as
maxWidth
to ensure all text is visible on screen.Adds
x.toStr + "\n"
to the end of this buffer. Ifx
is null then the string "null" is added.static Str removeEscapeCodes(Str str)
Removes all escape codes and non-printable characters from the given string.
This reset()
Resets text to:
- default foreground colour
- default background colour
- non-bold
- non-italics
- no underline
ansi-sequence: ESC[m
Int size()
Returns the number of chars in the buf.
Str toAnsi()
Returns the contents of this ANSI buffer as a string.
Str toPlain()
Returns a copy of this ANSI string with all the escape codes and non-printable characters removed.
virtual override Str toStr()
Returns
toAnsi()
.This underline(Bool onOff := true)
Turns underline on or off.
ansi-sequence: ESC[4m or ESC[24m
Convenience for
print()
.Convenience for
printChar()
.