-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvterm-libvterm.go
122 lines (107 loc) · 2.82 KB
/
vterm-libvterm.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
//go:build libvterm
// +build libvterm
package vterm
/*
#cgo CFLAGS: -I${SRCDIR}/libvterm/include
#cgo LDFLAGS: ${SRCDIR}/libvterm/.libs/libvterm.a
#include <vterm.h>
*/
import "C"
import "image/color"
// To get the rgb value from a VTermColor instance, call state.ConvertVTermColorToRGB
type VTermColor struct {
color C.VTermColor
}
func NewVTermColorRGB(col color.Color) VTermColor {
var r, g, b uint8
colRGBA, ok := col.(color.RGBA)
if ok {
r, g, b = colRGBA.R, colRGBA.G, colRGBA.B
} else {
r16, g16, b16, _ := col.RGBA()
r = uint8(r16 >> 8)
g = uint8(g16 >> 8)
b = uint8(b16 >> 8)
}
var t C.VTermColor
C.vterm_color_rgb(&t, C.uchar(r), C.uchar(g), C.uchar(b))
return VTermColor{t}
}
func NewVTermColorIndexed(index uint8) VTermColor {
var t C.VTermColor
t[0] |= 1
t[1] = index
return VTermColor{t}
}
func (c *VTermColor) IsIndex() bool {
return c.color[0]&1 > 0
}
func (c *VTermColor) IsRGB() bool {
return c.color[0]&1 == 0
}
func (c *VTermColor) GetRGB() (r, g, b uint8, ok bool) {
if c.IsRGB() {
return uint8(c.color[1]), uint8(c.color[2]), uint8(c.color[3]), true
} else {
return 0, 0, 0, false
}
}
func (c *VTermColor) GetIndex() (index uint8, ok bool) {
if c.IsIndex() {
return uint8(c.color[1]), true
} else {
return 0, false
}
}
func (sc *ScreenCell) Fg() color.Color {
return color.RGBA{
R: uint8(sc.cell.fg[1]),
G: uint8(sc.cell.fg[2]),
B: uint8(sc.cell.fg[3]),
A: uint8(255),
}
}
func (sc *ScreenCell) Bg() color.Color {
return color.RGBA{
R: uint8(sc.cell.bg[1]),
G: uint8(sc.cell.bg[2]),
B: uint8(sc.cell.bg[3]),
A: uint8(255),
}
}
func (s *State) ConvertVTermColorToRGB(col VTermColor) color.RGBA {
if col.IsRGB() {
arr := col.color
return color.RGBA{uint8(arr[1]), uint8(arr[2]), uint8(arr[3]), 255}
}
cColor := col.color
C.vterm_state_convert_color_to_rgb(s.state, &cColor)
return color.RGBA{uint8(cColor[1]), uint8(cColor[2]), uint8(cColor[3]), 255}
}
func (s *State) SetDefaultColors(fg, bg VTermColor) {
C.vterm_state_set_default_colors(s.state, &fg.color, &bg.color)
}
// index between 0 and 15, 0-7 are normal colors and 8-15 are bright colors.
func (s *State) SetPaletteColor(index int, col VTermColor) {
if index < 0 || index >= 16 {
panic("Index out of range")
}
C.vterm_state_set_palette_color(s.state, C.int(index), &col.color)
}
func (s *State) GetDefaultColors() (fg, bg VTermColor) {
c_fg := C.VTermColor{}
c_bg := C.VTermColor{}
C.vterm_state_get_default_colors(s.state, &c_fg, &c_bg)
fg = VTermColor{c_fg}
bg = VTermColor{c_bg}
return
}
// index between 0 and 15, 0-7 are normal colors and 8-15 are bright colors.
func (s *State) GetPaletteColor(index int) VTermColor {
if index < 0 || index >= 16 {
panic("Index out of range")
}
c_color := C.VTermColor{}
C.vterm_state_get_palette_color(s.state, C.int(index), &c_color)
return VTermColor{c_color}
}