private/ConvertTo-SpectreDecoration.ps1
function ConvertTo-SpectreDecoration { param( [Parameter(Mandatory)] [String]$String, [switch]$AllowMarkup ) Write-Debug "Module: $($ExecutionContext.SessionState.Module.Name) Command: $($MyInvocation.MyCommand.Name) Param: $($PSBoundParameters.GetEnumerator())" $lookup = [PwshSpectreConsole.VTCodes.Parser]::Parse($String) $ht = @{ decoration = [Spectre.Console.Decoration]::None fg = [Spectre.Console.Color]::Default bg = [Spectre.Console.Color]::Default } foreach ($item in $lookup) { # Write-Debug "Type: $($item.type) Value: $($item.value) Position: $($item.position) Color: $($item.color)" if ($item.value -eq 'None') { continue } $conversion = switch ($item.type) { '4bit' { if ($item.value -gt 0 -and $item.value -le 15) { [Spectre.Console.Color]::FromConsoleColor($item.value) } else { # spectre doesn't appear to have a way to convert from 4bit. # e.g all $PSStyle colors 30-37, 40-47 and 90-97, 100-107 # this will return the closest color in 8bit. [Spectre.Console.Color]::FromConsoleColor((ConvertFrom-ConsoleColor $item.value)) } } '8bit' { [Spectre.Console.Color]::FromInt32($item.value) } '24bit' { [Spectre.Console.Color]::new($item.value.Red, $item.value.Green, $item.value.Blue) } 'decoration' { [Spectre.Console.Decoration]::Parse([Spectre.Console.Decoration], $item.Value, $true) } } if ($item.type -eq 'decoration') { $ht.decoration = $conversion } if ($item.position -eq 'foreground') { $ht.fg = $conversion } elseif ($item.position -eq 'background') { $ht.bg = $conversion } } $String = [System.Management.Automation.Host.PSHostUserInterface]::GetOutputString($String, $false) Write-Debug "Clean: '$String' deco: '$($ht.decoration)' fg: '$($ht.fg)' bg: '$($ht.bg)'" if ($AllowMarkup) { return [Spectre.Console.Markup]::new($String, [Spectre.Console.Style]::new($ht.fg, $ht.bg, $ht.decoration)) } return [Spectre.Console.Text]::new($String, [Spectre.Console.Style]::new($ht.fg, $ht.bg, $ht.decoration)) } |