110 lines
2.2 KiB
Go
110 lines
2.2 KiB
Go
package stone
|
|
|
|
type Color uint8
|
|
|
|
const (
|
|
ColorBackground Color = 0x0
|
|
ColorSelection Color = 0x1
|
|
ColorForeground Color = 0x2
|
|
ColorApplication Color = 0x3
|
|
)
|
|
|
|
type Style uint8
|
|
|
|
const (
|
|
StyleNormal Style = iota
|
|
StyleBold Style = iota >> 1
|
|
StyleItalic
|
|
StyleBoldItalic Style = StyleBold | StyleItalic
|
|
)
|
|
|
|
type Cell struct {
|
|
color Color
|
|
style Style
|
|
content rune
|
|
}
|
|
|
|
func (cell Cell) Color (color Color) {
|
|
color = cell.color
|
|
return
|
|
}
|
|
|
|
func (cell Cell) Style (style Style) {
|
|
style = cell.style
|
|
return
|
|
}
|
|
|
|
func (cell Cell) Rune () (content rune) {
|
|
content = cell.content
|
|
return
|
|
}
|
|
|
|
type Buffer struct {
|
|
content []Cell
|
|
width int
|
|
height int
|
|
}
|
|
|
|
func (buffer *Buffer) Size () (width, height int) {
|
|
width = buffer.width
|
|
height = buffer.height
|
|
return
|
|
}
|
|
|
|
func (buffer *Buffer) SetSize (width, height int) {
|
|
buffer.width = width
|
|
buffer.height = height
|
|
buffer.content = make([]Cell, width * height)
|
|
}
|
|
|
|
func (buffer *Buffer) Cell (x, y int) (cell Cell) {
|
|
cell = buffer.content[x + y * buffer.width]
|
|
return
|
|
}
|
|
|
|
func (buffer *Buffer) SetColor (x, y int, color Color) {
|
|
buffer.content[x + y * buffer.width].color = color
|
|
}
|
|
|
|
func (buffer *Buffer) SetStyle (x, y int, style Style) {
|
|
buffer.content[x + y * buffer.width].style = style
|
|
}
|
|
|
|
func (buffer *Buffer) SetRune (x, y int, content rune) {
|
|
buffer.content[x + y * buffer.width].content = content
|
|
}
|
|
|
|
type DamageBuffer struct {
|
|
Buffer
|
|
clean []bool
|
|
}
|
|
|
|
func (buffer *DamageBuffer) SetSize (width, height int) {
|
|
buffer.Buffer.SetSize(width, height)
|
|
buffer.clean = make([]bool, width * height)
|
|
}
|
|
|
|
func (buffer *DamageBuffer) SetColor (x, y int, color Color) {
|
|
buffer.Buffer.SetColor(x, y, color)
|
|
buffer.clean[x + y * buffer.width] = false
|
|
}
|
|
|
|
func (buffer *DamageBuffer) SetStyle (x, y int, style Style) {
|
|
buffer.Buffer.SetStyle(x, y, style)
|
|
buffer.clean[x + y * buffer.width] = false
|
|
}
|
|
|
|
func (buffer *DamageBuffer) SetRune (x, y int, content rune) {
|
|
buffer.Buffer.SetRune(x, y, content)
|
|
buffer.clean[x + y * buffer.width] = false
|
|
}
|
|
|
|
func (buffer *DamageBuffer) Clean (x, y int) (clean bool) {
|
|
clean = buffer.clean[x + y * buffer.width]
|
|
return
|
|
}
|
|
|
|
func (buffer *DamageBuffer) MarkClean (x, y int) {
|
|
buffer.clean[x + y * buffer.width] = true
|
|
}
|