forked from charmbracelet/freeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansi.go
243 lines (221 loc) · 7.67 KB
/
ansi.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package main
import (
"fmt"
"github.com/beevik/etree"
"github.com/charmbracelet/x/ansi"
"github.com/mattn/go-runewidth"
)
type dispatcher struct {
scale float64
svg *etree.Element
bg *etree.Element
config *Config
lines []*etree.Element
row int
col int
bgWidth int
}
func (p *dispatcher) dispatch(s ansi.Sequence) {
switch s := s.(type) {
case ansi.Rune:
p.Print(rune(s))
case ansi.ControlCode:
p.Execute(byte(s))
case ansi.CsiSequence:
p.CsiDispatch(s)
}
}
func (p *dispatcher) Print(r rune) {
p.row = clamp(p.row, 0, len(p.lines)-1)
// insert the rune in the last tspan
children := p.lines[p.row].ChildElements()
var lastChild *etree.Element
isFirstChild := len(children) == 0
if isFirstChild {
lastChild = etree.NewElement("tspan")
lastChild.CreateAttr("xml:space", "preserve")
p.lines[p.row].AddChild(lastChild)
} else {
lastChild = children[len(children)-1]
}
if runewidth.RuneWidth(r) > 1 {
newChild := lastChild.Copy()
newChild.SetText(string(r))
newChild.CreateAttr("dx", fmt.Sprintf("%.2fpx", (p.config.Font.Size/5)*p.scale))
p.lines[p.row].AddChild(newChild)
} else {
lastChild.SetText(lastChild.Text() + string(r))
}
p.col += runewidth.RuneWidth(r)
if p.bg != nil {
p.bgWidth += runewidth.RuneWidth(r)
}
}
func (p *dispatcher) Execute(code byte) {
if code == '\t' {
for p.col%16 != 0 {
p.Print(' ')
}
}
if code == '\n' {
p.endBackground()
p.row++
p.col = 0
}
}
const fontHeightToWidthRatio = 1.68
func (p *dispatcher) beginBackground(fill string) {
rect := etree.NewElement("rect")
rect.CreateAttr("fill", fill)
topOffset := p.config.Padding[top] + p.config.Margin[top] + (((p.config.Font.Size + p.config.LineHeight) / 5) * p.scale)
rowMultiplier := p.config.Font.Size * p.config.LineHeight
y := fmt.Sprintf("%.2fpx", float64(p.row)*rowMultiplier+topOffset)
x := p.scale * float64(p.col) * (p.config.Font.Size / fontHeightToWidthRatio)
x += float64(p.config.Margin[left] + p.config.Padding[left])
if p.config.ShowLineNumbers {
x += float64(p.config.Font.Size) * 3
}
rect.CreateAttr("x", fmt.Sprintf("%.2fpx", x))
rect.CreateAttr("y", y)
rect.CreateAttr("height", fmt.Sprintf("%.2fpx", p.config.Font.Size*p.config.LineHeight+1))
p.bg = rect
}
func (p *dispatcher) endBackground() {
if p.bg == nil {
return
}
width := (float64(p.bgWidth) + 0.5) * p.scale
if p.bgWidth == 0 {
width = 0
}
p.bg.CreateAttr("width", fmt.Sprintf("%.5fpx", width*(p.config.Font.Size/fontHeightToWidthRatio)))
p.svg.InsertChildAt(0, p.bg)
p.bg = nil
p.bgWidth = 0
}
func (p *dispatcher) CsiDispatch(s ansi.CsiSequence) {
if s.Cmd != 'm' {
// ignore incomplete or non Style (SGR) sequences
return
}
span := etree.NewElement("tspan")
span.CreateAttr("xml:space", "preserve")
reset := func() {
// reset ANSI, this is done by creating a new empty tspan,
// which would reset all the styles such that when text is appended to the last
// child of this line there is no styling applied.
p.lines[p.row].AddChild(span)
p.endBackground()
}
if len(s.Params) == 0 {
// zero params means reset
reset()
return
}
var i int
for i < len(s.Params) {
v := s.Param(i)
switch v {
case 0:
reset()
case 1:
// span.CreateAttr("font-weight", "bold")
p.lines[p.row].AddChild(span)
case 9:
span.CreateAttr("text-decoration", "line-through")
p.lines[p.row].AddChild(span)
case 3:
span.CreateAttr("font-style", "italic")
p.lines[p.row].AddChild(span)
case 4:
span.CreateAttr("text-decoration", "underline")
p.lines[p.row].AddChild(span)
case 30, 31, 32, 33, 34, 35, 36, 37, 90, 91, 92, 93, 94, 95, 96, 97:
span.CreateAttr("fill", ansiPalette[v])
p.lines[p.row].AddChild(span)
case 38:
i++
switch s.Param(i) {
case 5:
n := s.Param(i + 1)
i++
fill := palette[n]
span.CreateAttr("fill", fill)
p.lines[p.row].AddChild(span)
case 2:
span.CreateAttr("fill", fmt.Sprintf("#%02x%02x%02x", s.Param(i+1), s.Param(i+2), s.Param(i+3)))
p.lines[p.row].AddChild(span)
i += 3
}
case 48:
p.endBackground()
i++
switch s.Param(i) {
case 5:
n := s.Param(i + 1)
i++
fill := palette[n]
p.beginBackground(fill)
case 2:
fill := fmt.Sprintf("#%02x%02x%02x", s.Param(i+1), s.Param(i+2), s.Param(i+3))
p.beginBackground(fill)
i += 3
}
case 100, 101, 102, 103, 104, 105, 106, 107:
p.beginBackground(ansiPalette[v])
}
i++
}
}
var ansiPalette = map[int]string{
30: "#282a2e", // black
31: "#D74E6F", // red
32: "#31BB71", // green
33: "#D3E561", // yellow
34: "#8056FF", // blue
35: "#ED61D7", // magenta
36: "#04D7D7", // cyan
37: "#C5C8C6", // white
90: "#4B4B4B", // bright black
91: "#FE5F86", // bright red
92: "#00D787", // bright green
93: "#EBFF71", // bright yellow
94: "#8F69FF", // bright blue
95: "#FF7AEA", // bright magenta
96: "#00FEFE", // bright cyan
97: "#FFFFFF", // bright white
}
var palette = []string{
"#000000", "#800000", "#008000", "#808000", "#000080", "#800080", "#008080", "#c0c0c0",
"#808080", "#ff0000", "#00ff00", "#ffff00", "#0000ff", "#ff00ff", "#00ffff", "#ffffff",
"#000000", "#00005f", "#000087", "#0000af", "#0000d7", "#0000ff", "#005f00", "#005f5f",
"#005f87", "#005faf", "#005fd7", "#005fff", "#008700", "#00875f", "#008787", "#0087af",
"#0087d7", "#0087ff", "#00af00", "#00af5f", "#00af87", "#00afaf", "#00afd7", "#00afff",
"#00d700", "#00d75f", "#00d787", "#00d7af", "#00d7d7", "#00d7ff", "#00ff00", "#00ff5f",
"#00ff87", "#00ffaf", "#00ffd7", "#00ffff", "#5f0000", "#5f005f", "#5f0087", "#5f00af",
"#5f00d7", "#5f00ff", "#5f5f00", "#5f5f5f", "#5f5f87", "#5f5faf", "#5f5fd7", "#5f5fff",
"#5f8700", "#5f875f", "#5f8787", "#5f87af", "#5f87d7", "#5f87ff", "#5faf00", "#5faf5f",
"#5faf87", "#5fafaf", "#5fafd7", "#5fafff", "#5fd700", "#5fd75f", "#5fd787", "#5fd7af",
"#5fd7d7", "#5fd7ff", "#5fff00", "#5fff5f", "#5fff87", "#5fffaf", "#5fffd7", "#5fffff",
"#870000", "#87005f", "#870087", "#8700af", "#8700d7", "#8700ff", "#875f00", "#875f5f",
"#875f87", "#875faf", "#875fd7", "#875fff", "#878700", "#87875f", "#878787", "#8787af",
"#8787d7", "#8787ff", "#87af00", "#87af5f", "#87af87", "#87afaf", "#87afd7", "#87afff",
"#87d700", "#87d75f", "#87d787", "#87d7af", "#87d7d7", "#87d7ff", "#87ff00", "#87ff5f",
"#87ff87", "#87ffaf", "#87ffd7", "#87ffff", "#af0000", "#af005f", "#af0087", "#af00af",
"#af00d7", "#af00ff", "#af5f00", "#af5f5f", "#af5f87", "#af5faf", "#af5fd7", "#af5fff",
"#af8700", "#af875f", "#af8787", "#af87af", "#af87d7", "#af87ff", "#afaf00", "#afaf5f",
"#afaf87", "#afafaf", "#afafd7", "#afafff", "#afd700", "#afd75f", "#afd787", "#afd7af",
"#afd7d7", "#afd7ff", "#afff00", "#afff5f", "#afff87", "#afffaf", "#afffd7", "#afffff",
"#d70000", "#d7005f", "#d70087", "#d700af", "#d700d7", "#d700ff", "#d75f00", "#d75f5f",
"#d75f87", "#d75faf", "#d75fd7", "#d75fff", "#d78700", "#d7875f", "#d78787", "#d787af",
"#d787d7", "#d787ff", "#d7af00", "#d7af5f", "#d7af87", "#d7afaf", "#d7afd7", "#d7afff",
"#d7d700", "#d7d75f", "#d7d787", "#d7d7af", "#d7d7d7", "#d7d7ff", "#d7ff00", "#d7ff5f",
"#d7ff87", "#d7ffaf", "#d7ffd7", "#d7ffff", "#ff0000", "#ff005f", "#ff0087", "#ff00af",
"#ff00d7", "#ff00ff", "#ff5f00", "#ff5f5f", "#ff5f87", "#ff5faf", "#ff5fd7", "#ff5fff",
"#ff8700", "#ff875f", "#ff8787", "#ff87af", "#ff87d7", "#ff87ff", "#ffaf00", "#ffaf5f",
"#ffaf87", "#ffafaf", "#ffafd7", "#ffafff", "#ffd700", "#ffd75f", "#ffd787", "#ffd7af",
"#ffd7d7", "#ffd7ff", "#ffff00", "#ffff5f", "#ffff87", "#ffffaf", "#ffffd7", "#ffffff",
"#080808", "#121212", "#1c1c1c", "#262626", "#303030", "#3a3a3a", "#444444", "#4e4e4e",
"#585858", "#606060", "#666666", "#767676", "#808080", "#8a8a8a", "#949494", "#9e9e9e",
"#a8a8a8", "#b2b2b2", "#bcbcbc", "#c6c6c6", "#d0d0d0", "#dadada", "#e4e4e4", "#eeeeee",
}